All the necessary mySQL tables for those who wish to install before an upgrader...
[koha.git] / misc / marc21_simple_bib_frameworks.sql
1 -- *******************************************************
2 --       SIMPLE KOHA MARC 21 BIBLIOGRAPHIC FRAMEWORKS     
3 --                 POST-INSTALLATION SCRIPT               
4 --                                                        
5 --                  PRETEST VERSION 0.1.5                 
6 --                       2006-09-19                       
7 --                                                        
8 --                         drafted                        
9 --                   by thd for LibLime                   
10 --                                                        
11 --         with a frameworks nomenclature correction      
12 --                  by kados at LibLime                   
13 --                                                        
14 --                          WITH                          
15 --                                                        
16 --  KOHA MARC 21 STANDARD DEFAULT BIBLIOGRAPHIC FRAMEWORK 
17 --                 POST-INSTALLATION SCRIPT               
18 --                                                        
19 --                  PRETEST VERSION 0.2.1                 
20 --                       2006-09-19                       
21 --                                                        
22 --  original default requiring greater user customisation 
23 --               created by a few Koha Hands              
24 --                 guided by Paul POULAIN                 
25 --                                                        
26 --       revised and greatly enlarged to completion,      
27 --            well not quite complete yet today           
28 --        but close enough for someone to have use,       
29 --                   by thd for LibLime                   
30 -- *******************************************************
31
32
33
34 -- *********************************************************************
35 --                                                                      
36 -- STOP, DO NOT PROCEED FURTHER WITHOUT FIRST DUMPIMPING                
37 -- biblio_framework, marc_tag_structure, AND marc_subfield_structure    
38 -- TABLES IF NOT THE ENTIRE KOHA DATABASE.                              
39 --                                                                      
40 -- However, if you have a Koha installation with no bibliographic       
41 -- framework modifications or no records yet then this script should do 
42 -- no harm and actually help protect you from future data loss when     
43 -- editing bibliographic records including holdings information.        
44 --                                                                      
45 -- Code still needs to be written for preserving information from       
46 -- installed bibliographic and authority frameworks and then updating   
47 -- the frameworks and the bibliographic records losslessly.  A modest   
48 -- task but everything takes time.                                      
49 --                                                                      
50 -- Despite the above warning, you are more likely to loose data from    
51 -- bibliographic records held in Koha if your bibliographic framework   
52 -- is less complete than the one provided in this file rather than from 
53 -- possible risks from the simple design of the this installation       
54 -- script.                                                              
55 --                                                                      
56 -- If you have an existing Koha installation, your default Koha MARC 21 
57 -- bibliographic framework will not be updated from the standard Koha   
58 -- update script.  This SQL script will update your bibliographic       
59 -- framework and should be applied after you have run the standard Koha 
60 -- update script.                                                       
61 --                                                                      
62 -- See comments below for some provisions that may need adjusting to    
63 -- support your Koha database.                                          
64 --                                                                      
65 -- Always run rebuildnonmarc.pl after updating with this or later       
66 -- versions of this script.                                             
67 --                                                                      
68 -- A complete MySQL Koha SQL database may be dumped for backup with the 
69 -- following command syntax as one line where the -h option is only     
70 -- needed if applying this script for a database held on a remote       
71 -- server.                                                              
72 --                                                                      
73 -- mysqldump --allow-keywords --single-transaction                      
74 -- [-h YourMySQLServername] -u YourKohaMySQLUsername -p                 
75 -- YourKohaDatabasename > KohaBackup.sql                                
76 --                                                                      
77 -- Now that you have been warned, this SQL file may be run and          
78 -- imported using the following command syntax as one line where the    
79 -- -h option is only needed if applying this script for a database held 
80 -- on a remote server.                                                  
81 --                                                                      
82 -- mysql [-h YourMySQLServername] -uYourKohaMySQLUsername               
83 -- -p YourKohaDatabasename < /path/to/marc21_simple_bib_frameworks.sql  
84 --                                                                      
85 -- *********************************************************************
86
87
88 DROP TABLE IF EXISTS `biblio_framework`;
89 CREATE TABLE IF NOT EXISTS `biblio_framework` (
90   `frameworkcode` varchar(4) NOT NULL default '',
91   `frameworktext` char(255) NOT NULL default '',
92   PRIMARY KEY  (`frameworkcode`)
93 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
94
95 -- ADJUST ME
96 -- Uncomment the line below and adjust if needed.
97 -- ENGINE=MyISAM DEFAULT CHARSET=utf8
98
99 ;
100
101
102
103 -- More columns specifying more details about the independent control 
104 -- of indicators are needed, etc.  However, some subfield columns are 
105 -- more important for short term issues.                              
106
107
108 DROP TABLE IF EXISTS `marc_tag_structure`;
109 CREATE TABLE IF NOT EXISTS `marc_tag_structure` (
110   `tagfield` char(3) NOT NULL default '',
111   `liblibrarian` char(255) NOT NULL default '',
112   `libopac` char(255) NOT NULL default '',
113   `repeatable` tinyint(4) NOT NULL default '0',
114   `mandatory` tinyint(4) NOT NULL default '0',
115   `authorised_value` char(10) default NULL,
116   `frameworkcode` varchar(4) NOT NULL default '',
117   PRIMARY KEY  (`frameworkcode`,`tagfield`)
118   
119 )
120
121 -- ADJUST ME
122 -- Uncomment the line below and adjust if needed.
123 -- ENGINE=MyISAM DEFAULT CHARSET=utf8
124
125 ;
126
127
128
129 -- More columns specifying more details about the utility of the subfields 
130 -- and their usual relative order are needed.  Other columns could use a
131 -- somewhat larger size with semantically meaningful labels.
132
133
134 DROP TABLE IF EXISTS `marc_subfield_structure`;
135 CREATE TABLE IF NOT EXISTS `marc_subfield_structure` (
136   `tagfield` varchar(3) NOT NULL default '',
137   `tagsubfield` char(1) NOT NULL default '',
138   `liblibrarian` varchar(255) NOT NULL default '',
139   `libopac` varchar(255) NOT NULL default '',
140   `repeatable` tinyint(4) NOT NULL default '0',
141   `mandatory` tinyint(4) NOT NULL default '0',
142   `kohafield` varchar(40) default NULL,
143   `tab` tinyint(1) default NULL,
144   `authorised_value` varchar(10) default NULL,
145   `authtypecode` varchar(10) default NULL,
146   `value_builder` varchar(80) default NULL,
147   `isurl` tinyint(1) default NULL,
148   `hidden` tinyint(1) default NULL,
149   `frameworkcode` varchar(4) NOT NULL default '',
150   `seealso` text default NULL,
151   `link` varchar(80) default NULL,
152   PRIMARY KEY  (`frameworkcode`,`tagfield`,`tagsubfield`),
153   KEY `kohafield_2` (`kohafield`),
154   KEY `tab` (`frameworkcode`,`tab`),
155   KEY `kohafield` (`frameworkcode`,`kohafield`)
156   
157 )
158
159 -- ADJUST ME
160 -- Uncomment the line below and adjust if needed.
161 -- ENGINE=MyISAM DEFAULT CHARSET=utf8
162
163 ;
164
165
166
167 -- ********************************
168 -- SIMPLE KOHA MARC 21 FRAMEWORKS. 
169 -- ********************************
170
171
172 INSERT INTO `biblio_framework` VALUES ('BKS', 'Books, Booklets, Workbooks');
173 INSERT INTO `biblio_framework` VALUES ('CF', 'CD-ROMs, DVD-ROMs, General Online Resources');
174 INSERT INTO `biblio_framework` VALUES ('SR', 'Audio Cassettes, CDs');
175 INSERT INTO `biblio_framework` VALUES ('VR', 'DVDs, VHS');
176 INSERT INTO `biblio_framework` VALUES ('AR', 'Models');
177 INSERT INTO `biblio_framework` VALUES ('KT', 'Kits');
178 INSERT INTO `biblio_framework` VALUES ('IR', 'Binders');
179 INSERT INTO `biblio_framework` VALUES ('SER', 'Serials');
180
181
182 -- ******************************************************
183
184
185
186 -- ******************************************************
187 -- KOHA RECORD AND HOLDINGS MANAGEMENT FIELDS/SUBFIELDS. 
188 -- ******************************************************
189
190 -- These ought to be adjusted for different less conflicting and more 
191 -- rationally chosen fields and subfields but I had left that for last. 
192
193 -- ADJUST ME
194 -- Use values from your dump of marc_tag_structure and marc_subfield_structure 
195 -- to provide support for your Koha database.
196
197
198 -- ******************************************************
199
200 -- Original Record ID Field/Subfields 
201
202
203 -- INSERT INTO `marc_tag_structure` VALUES ('090', 'KOHA DATA', 'KOHA DATA', 1, 0, '', ''); 
204
205 -- INSERT INTO marc_subfield_structure VALUES ('090', 'a', 'Koha Itemtype (NR)', 'Koha Itemtype (NR)', 0, 0, NULL, -1, NULL, NULL, '', NULL, '', NULL, NULL); 
206 -- INSERT INTO marc_subfield_structure VALUES ('090', 'b', 'Koha Dewey Subclass (NR)', 'Koha Dewey Subclass (NR)', 0, 0, NULL, -1, NULL, NULL, '', NULL, '', NULL, NULL); 
207 -- INSERT INTO marc_subfield_structure VALUES ('090', 'c', 'Koha biblionumber (NR)', 'Koha biblionumber (NR)', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, '', NULL, NULL); 
208 -- INSERT INTO marc_subfield_structure VALUES ('090', 'd', 'Koha biblioitemnumber (NR)', 'Koha biblioitemnumber (NR)', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, '', NULL, NULL); 
209
210
211 -- Current Record ID Field/Subfields 
212
213
214 INSERT INTO `marc_tag_structure` VALUES ('090', 'SYSTEM CONTROL NUMBERS (KOHA)', 'SYSTEM CONTROL NUMBERS (KOHA)', 1, 0, '', '');
215
216 INSERT INTO `marc_subfield_structure` VALUES ('090', 'a', 'Item type [OBSOLETE]', 'Item type [OBSOLETE]', 0, 0, NULL, -1, NULL, NULL, '', NULL, -5, '', '', '');
217 INSERT INTO `marc_subfield_structure` VALUES ('090', 'b', 'Koha Dewey Subclass [OBSOLETE]', 'Koha Dewey Subclass [OBSOLETE]', 0, 0, NULL, 0, NULL, NULL, '', NULL, -5, '', '', '');
218 INSERT INTO `marc_subfield_structure` VALUES ('090', 'c', 'Koha biblionumber', 'Koha biblionumber', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, -5, '', '', '');
219 INSERT INTO `marc_subfield_structure` VALUES ('090', 'd', 'Koha biblioitemnumber', 'Koha biblioitemnumber', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, -5, '', '', '');
220
221
222 -- ******************************************************
223
224 -- Original primary biblioitems Field/Subfields 
225
226
227 -- INSERT INTO `marc_tag_structure` VALUES ('942', 'Biblioitem information', 'General classification', 0, 0, '', ''); 
228
229 -- INSERT INTO marc_subfield_structure VALUES ('942', 'a', 'Institution code', 'Institution code', 0, 0, '', 5, '', '', '', NULL, '', NULL, NULL); 
230 -- INSERT INTO marc_subfield_structure VALUES ('942', 'c', 'item type', 'item type', 0, 0, 'biblioitems.itemtype', 5, 'itemtypes', '', '', NULL, '', NULL, NULL); 
231 -- INSERT INTO marc_subfield_structure VALUES ('942', 'k', 'dewey', 'dewey', 0, 0, 'biblioitems.classification', 5, '', '', '', NULL, '', NULL, NULL); 
232
233
234 -- Current primary biblioitems Field/Subfields 
235
236
237 INSERT INTO `marc_tag_structure` VALUES ('942', 'ADDED ENTRY ELEMENTS (KOHA)', 'ADDED ENTRY ELEMENTS (KOHA)', 0, 0, '', '');
238
239 INSERT INTO `marc_subfield_structure` VALUES ('942', 'a', 'Institution code [OBSOLETE]', 'Institution code [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -5, '', '', '');
240 INSERT INTO `marc_subfield_structure` VALUES ('942', 'c', 'Item type', 'Item type', 0, 1, 'biblioitems.itemtype', 9, 'itemtypes', '', '', NULL, 0, '', '', '');
241 INSERT INTO `marc_subfield_structure` VALUES ('942', 'j', 'Location (call number prefix code)', 'Location (call number prefix code)', 0, 0, 'biblioitems.classification', 9, '', '', '', NULL, 0, '', '', '');
242 INSERT INTO `marc_subfield_structure` VALUES ('942', 'k', 'Classification base (DDC to decimal or LCC letter class padded after single letter classes with trailing 0', 'Classification base', 0, 0, 'biblioitems.dewey', 9, '', '', '', NULL, 0, '', '', '');
243 INSERT INTO `marc_subfield_structure` VALUES ('942', 'l', 'Classification subclass (DDC after decimal or LCC number after letters', 'Classification subclass', 0, 0, 'biblioitems.subclass', 9, '', '', '', NULL, 0, '', '', '');
244
245
246 -- ******************************************************
247
248 -- Original items Field/Subfields 
249
250
251 -- INSERT INTO `marc_tag_structure` VALUES ('952', 'ITEM INFORMATION', 'ITEM INFORMATION', 1, 0, '', ''); 
252
253 -- INSERT INTO marc_subfield_structure VALUES ('952', 'b', 'homebranch', 'homebranch', 0, 0, 'items.homebranch', 10, 'branches', '', '', '', '', NULL, NULL); 
254 -- INSERT INTO marc_subfield_structure VALUES ('952', 'd', 'holdingbranch', 'holdingbranch', 0, 0, 'items.holdingbranch', 10, 'branches', '', '', '\'952b\'', '', NULL, NULL); 
255 -- INSERT INTO marc_subfield_structure VALUES ('952', 'p', 'barcode', 'barcode', 0, 1, 'items.barcode', 10, '', '', '', '', '', NULL, NULL); 
256 -- INSERT INTO marc_subfield_structure VALUES ('952', 'r', 'price', 'price', 0, 0, 'items.replacementprice', 10, '', '', '', '', '', NULL, NULL); 
257 -- INSERT INTO marc_subfield_structure VALUES ('952', 'v', 'dateaccessioned', 'dateaccessioned', 0, 0, 'items.dateaccessioned', 10, '', '', '', '', '', NULL, NULL); 
258 -- INSERT INTO marc_subfield_structure VALUES ('952', 'y', 'notforloan', 'notforloan', 0, 0, 'items.notforloan', 10, '', '', '', '', '', NULL, NULL); 
259 -- INSERT INTO marc_subfield_structure VALUES ('952', 'u', 'itemnumber', 'itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', '', '', NULL, NULL); 
260
261
262
263 -- Recommended items Field/Subfields 
264
265
266 -- INSERT INTO `marc_tag_structure` VALUES ('95k', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', '');
267
268 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '0', 'Item status (withdrawn) (similar to 876-8 $j)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, '', '', '');
269 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '1', 'Item status (lost) (similar to 876-8 $j)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, '', '', '');
270 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '2', 'Source of classification or shelving scheme (similar to 852 $2)', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
271 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '3', 'Materials specified (similar to 852, 876-8 $3)', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, '', '', '');
272 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '4', 'Use restrictions (similar to 506 $a, 876-8 $h)', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, '', '', '');
273 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '6', 'Linkage (similar to 852, 876-8 $6)', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, '', '', '');
274 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '8', 'Sequence number (similar to 852, 876-8 $8)', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
275 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '9', 'Koha itemnumber (autogenerated similar to 852, 876-8 $3 $8 $t combined)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, '', '', '');
276 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'a', 'Location (homebranch) (similar to 852 $a)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, '', '', '');
277 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'b', 'Sublocation or collection (holdingbranch) (similar to 852 $b)', 'Sublocation or collection (holdingbranch)', 1, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, '', '', '');
278 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'c', 'Shelving location (similar to 852 $c, 876-8 $l)', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, '', '', '');
279 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'd', 'Date acquired (similar to 541, 876-8 $d)', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, '', '', '');
280 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'e', 'Source of acquisition (similar to 541 $a, 876-8 $e)', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, '', '', '');
281 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'f', 'Coded location qualifier (similar to 852 $f)', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
282 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'g', 'Non-coded location qualifier (similar to 852 $g)', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
283 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'h', 'Classification part (similar to 852 $h)', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
284 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'i', 'Item part (similar to 852 $i)', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
285 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'j', 'Shelving control number (similar to 852 $j)', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
286 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'k', 'Call number prefix (similar to 852 $k)', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
287 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'l', 'Shelving form of title (similar to 852 $l)', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
288 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'm', 'Call number suffix (similar to 852 $m)', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
289 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'n', 'Country code (similar to 852 $n)', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
290 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'o', 'Call number (similar to 852 $k $h $i $m combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, '', '', '');
291 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'p', 'Piece designation (barcode) (similar to 852, 876-8 $p)', 'Piece designation (barcode)', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, '', '', '');
292 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'q', 'Piece physical condition (similar to 562 $a, 852 $q)', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
293 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'r', 'Invalid or canceled piece designation (canceled barcode) (similar to 876-8 $r)', 'Invalid or canceled piece designation (canceled barcode)', 1, 0, '', 10, '', '', '', NULL, -1, '', '', '');
294 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 's', 'Copyright article-fee code (similar to 018 $a, 852 $s)', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
295 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 't', 'Copy number (similar to 852, 876-8 $t)', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
296 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'u', 'Cost, normal purchase price (similar to 541 $h, 876-8 $c)', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, '', '', '');
297 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'v', 'Cost, replacement price (similar to 365 $b, 876-8 $c)', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, '', '', '');
298 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'w', 'Price effective from (similar to 365 $f)', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, '', '', '');
299 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'x', 'Nonpublic note (similar to 852, 876-8 $x)', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, '', '', '');
300 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'y', 'Use restrictions (not for loan) (similar to 506 $a, 876-8 $h)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, '', '', '');
301 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'z', 'Public note (similar to 852, 876-8 $z)', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, '', '', '');
302
303
304
305 -- Current items Field/Subfields 
306
307
308 INSERT INTO `marc_tag_structure` VALUES ('952', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', '');
309
310 INSERT INTO `marc_subfield_structure` VALUES ('952', '0', 'Item status (withdrawn)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, '', '', '');
311 INSERT INTO `marc_subfield_structure` VALUES ('952', '1', 'Item status (lost)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, '', '', '');
312 INSERT INTO `marc_subfield_structure` VALUES ('952', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
313 INSERT INTO `marc_subfield_structure` VALUES ('952', '3', 'Materials specified', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, '', '', '');
314 INSERT INTO `marc_subfield_structure` VALUES ('952', '4', 'Use restrictions', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, '', '', '');
315 INSERT INTO `marc_subfield_structure` VALUES ('952', '6', 'Linkage', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, '', '', '');
316 INSERT INTO `marc_subfield_structure` VALUES ('952', '8', 'Sequence number', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
317 INSERT INTO `marc_subfield_structure` VALUES ('952', '9', 'Cost, normal purchase price', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, '', '', '');
318 INSERT INTO `marc_subfield_structure` VALUES ('952', 'a', 'Canceled barcode', 'Canceled barcode', 1, 0, '', 10, '', '', '', NULL, -1, '', '', '');
319 INSERT INTO `marc_subfield_structure` VALUES ('952', 'b', 'Location (homebranch)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, '', '', '');
320 INSERT INTO `marc_subfield_structure` VALUES ('952', 'c', 'Shelving location', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, '', '', '');
321 INSERT INTO `marc_subfield_structure` VALUES ('952', 'd', 'Sublocation or collection (holdingbranch)', 'Sublocation or collection (holdingbranch)', 0, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, '', '''952b''', '');
322 INSERT INTO `marc_subfield_structure` VALUES ('952', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, '', '', '');
323 INSERT INTO `marc_subfield_structure` VALUES ('952', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
324 INSERT INTO `marc_subfield_structure` VALUES ('952', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
325 INSERT INTO `marc_subfield_structure` VALUES ('952', 'h', 'Classification part', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
326 INSERT INTO `marc_subfield_structure` VALUES ('952', 'i', 'Item part', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
327 INSERT INTO `marc_subfield_structure` VALUES ('952', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
328 INSERT INTO `marc_subfield_structure` VALUES ('952', 'k', 'Call number (combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, '', '', '');
329 INSERT INTO `marc_subfield_structure` VALUES ('952', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
330 INSERT INTO `marc_subfield_structure` VALUES ('952', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
331 INSERT INTO `marc_subfield_structure` VALUES ('952', 'n', 'Country code', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
332 INSERT INTO `marc_subfield_structure` VALUES ('952', 'o', 'Call number prefix', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
333 INSERT INTO `marc_subfield_structure` VALUES ('952', 'p', 'Barcode', 'Barcode', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, '', '', '');
334 INSERT INTO `marc_subfield_structure` VALUES ('952', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
335 INSERT INTO `marc_subfield_structure` VALUES ('952', 'r', 'Cost, replacement price', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, '', '', '');
336 INSERT INTO `marc_subfield_structure` VALUES ('952', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, '', '', '');
337 INSERT INTO `marc_subfield_structure` VALUES ('952', 't', 'Copy number', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, '', '', '');
338 INSERT INTO `marc_subfield_structure` VALUES ('952', 'u', 'Koha itemnumber (autogenerated)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, '', '', '');
339 INSERT INTO `marc_subfield_structure` VALUES ('952', 'v', 'Date acquired', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, '', '', '');
340 INSERT INTO `marc_subfield_structure` VALUES ('952', 'w', 'Price effective from', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, '', '', '');
341 INSERT INTO `marc_subfield_structure` VALUES ('952', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, '', '', '');
342 INSERT INTO `marc_subfield_structure` VALUES ('952', 'y', 'Use restrictions (not for loan)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, '', '', '');
343 INSERT INTO `marc_subfield_structure` VALUES ('952', 'z', 'Public note', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, '', '', '');
344
345
346 -- *******************************************************
347
348
349
350 -- *******************************************************
351 -- MARC 21 FIELDS/SUBFIELDS AND COMMMONLY USED EXTENSIONS 
352 -- *******************************************************
353
354
355 -- A Few local use codes need specifying.  Several seealso, plugin, and 
356 -- authority framework columns need improving.  $9 for authority record linking 
357 -- needs to be added where not already provided by RLIN specifications. 
358 -- Needs checking for errors but probably tolerable for use on a production. 
359 -- A server can be upgraded easily from later versions of this file.
360 --                                                                          
361 -- In the absense of more column support for qualifying the relative 
362 -- importance of subfields to the record editor, some modest modification of 
363 -- the default framework is needed setting the not-useful non-Koha holdings 
364 -- subfields to not managed in Koha.
365
366 -- MARC fields including letters as part of the field identifier are from RLIN
367 -- and should be expected to remain along with RLIN $% subfields.  RLIN has 
368 -- been using letters in fields because there are not enough local use number 
369 -- fields which have not already been specified for very large union catalogue 
370 -- networks such as RLIN itself.
371
372
373 -- Fields ending in c, o, or r are temporary placeholders for information from
374 -- a numeric value until a non-conflicting way to treat the content under the
375 -- proper original numeric field is adopted.  090 for LC call numbers is much 
376 -- too common and important so 999 is also provided as a temporary place 
377 -- holder until all Koha code for finding control fields has been changed from 
378 -- a numeric test of < 10 to a regular expression match of m/^00/ to prevent 
379 -- mistaken matching of fields with letters such as 09o if they were control 
380 -- fields.
381
382
383 INSERT INTO `marc_tag_structure` VALUES ('000', 'LEADER', 'LEADER', 0, 1, '', '');
384 INSERT INTO `marc_tag_structure` VALUES ('001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 0, '', '');
385 INSERT INTO `marc_tag_structure` VALUES ('003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 1, '', '');
386 INSERT INTO `marc_tag_structure` VALUES ('005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 1, '', '');
387 INSERT INTO `marc_tag_structure` VALUES ('006', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 1, 0, '', '');
388 INSERT INTO `marc_tag_structure` VALUES ('007', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 1, 0, '', '');
389 INSERT INTO `marc_tag_structure` VALUES ('008', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 0, 1, '', '');
390 INSERT INTO `marc_tag_structure` VALUES ('009', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 1, 0, '', '');
391 INSERT INTO `marc_tag_structure` VALUES ('010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, '', '');
392 INSERT INTO `marc_tag_structure` VALUES ('011', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 0, 0, '', '');
393 INSERT INTO `marc_tag_structure` VALUES ('013', 'PATENT CONTROL INFORMATION', 'PATENT CONTROL INFORMATION', 1, 0, '', '');
394 INSERT INTO `marc_tag_structure` VALUES ('015', 'NATIONAL BIBLIOGRAPHY NUMBER', 'NATIONAL BIBLIOGRAPHY NUMBER', 1, 0, '', '');
395 INSERT INTO `marc_tag_structure` VALUES ('016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, '', '');
396 INSERT INTO `marc_tag_structure` VALUES ('017', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 1, 0, '', '');
397 INSERT INTO `marc_tag_structure` VALUES ('018', 'COPYRIGHT ARTICLE-FEE CODE', 'COPYRIGHT ARTICLE-FEE CODE', 0, 0, '', '');
398 INSERT INTO `marc_tag_structure` VALUES ('01e', 'CODED FIELD ERROR (RLIN)', 'CODED FIELD ERROR (RLIN)', 1, 0, '', '');
399 INSERT INTO `marc_tag_structure` VALUES ('020', 'INTERNATIONAL STANDARD BOOK NUMBER', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL, '');
400 INSERT INTO `marc_tag_structure` VALUES ('022', 'INTERNATIONAL STANDARD SERIAL NUMBER', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL, '');
401 INSERT INTO `marc_tag_structure` VALUES ('023', 'STANDARD FILM NUMBER (VM) [DELETED]', 'STANDARD FILM NUMBER (VM) [DELETED]', 1, 0, NULL, '');
402 INSERT INTO `marc_tag_structure` VALUES ('024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL, '');
403 INSERT INTO `marc_tag_structure` VALUES ('025', 'OVERSEAS ACQUISITION NUMBER', 'OVERSEAS ACQUISITION NUMBER', 1, 0, '', '');
404 INSERT INTO `marc_tag_structure` VALUES ('026', 'FINGERPRINT IDENTIFIER', 'FINGERPRINT IDENTIFIER', 1, 0, '', '');
405 INSERT INTO `marc_tag_structure` VALUES ('027', 'STANDARD TECHNICAL REPORT NUMBER', 'STANDARD TECHNICAL REPORT NUMBER', 1, 0, '', '');
406 INSERT INTO `marc_tag_structure` VALUES ('028', 'PUBLISHER NUMBER', 'PUBLISHER NUMBER', 1, 0, NULL, '');
407 INSERT INTO `marc_tag_structure` VALUES ('029', 'OTHER SYSTEM CONTROL NUMBER (OCLC)', ' (OCLC)', 1, 0, '', '');
408 INSERT INTO `marc_tag_structure` VALUES ('030', 'CODEN DESIGNATION', 'CODEN DESIGNATION', 1, 0, '', '');
409 INSERT INTO `marc_tag_structure` VALUES ('031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, '', '');
410 INSERT INTO `marc_tag_structure` VALUES ('032', 'POSTAL REGISTRATION NUMBER', 'POSTAL REGISTRATION NUMBER', 1, 0, '', '');
411 INSERT INTO `marc_tag_structure` VALUES ('033', 'DATE/TIME AND PLACE OF AN EVENT', 'DATE/TIME AND PLACE OF AN EVENT', 1, 0, '', '');
412 INSERT INTO `marc_tag_structure` VALUES ('034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, '', '');
413 INSERT INTO `marc_tag_structure` VALUES ('035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL, '');
414 INSERT INTO `marc_tag_structure` VALUES ('036', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 0, 0, '', '');
415 INSERT INTO `marc_tag_structure` VALUES ('037', 'SOURCE OF ACQUISITION', 'SOURCE OF ACQUISITION', 1, 0, NULL, '');
416 INSERT INTO `marc_tag_structure` VALUES ('038', 'RECORD CONTENT LICENSOR', 'RECORD CONTENT LICENSOR', 0, 0, '', '');
417 INSERT INTO `marc_tag_structure` VALUES ('039', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 0, 0, '', '');
418 INSERT INTO `marc_tag_structure` VALUES ('040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 1, NULL, '');
419 INSERT INTO `marc_tag_structure` VALUES ('041', 'LANGUAGE CODE', 'LANGUAGE CODE', 1, 0, '', '');
420 INSERT INTO `marc_tag_structure` VALUES ('042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, '', '');
421 INSERT INTO `marc_tag_structure` VALUES ('043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL, '');
422 INSERT INTO `marc_tag_structure` VALUES ('044', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 0, 0, '', '');
423 INSERT INTO `marc_tag_structure` VALUES ('045', 'TIME PERIOD OF CONTENT', 'TIME PERIOD OF CONTENT', 0, 0, '', '');
424 INSERT INTO `marc_tag_structure` VALUES ('046', 'SPECIAL CODED DATES', 'SPECIAL CODED DATES', 1, 0, '', '');
425 INSERT INTO `marc_tag_structure` VALUES ('047', 'FORM OF MUSICAL COMPOSITION CODE', 'FORM OF MUSICAL COMPOSITION CODE', 0, 0, '', '');
426 INSERT INTO `marc_tag_structure` VALUES ('048', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 1, 0, '', '');
427 INSERT INTO `marc_tag_structure` VALUES ('049', 'LOCAL HOLDINGS (OCLC)', 'LOCAL HOLDINGS (OCLC)', 0, 0, '', '');
428 INSERT INTO `marc_tag_structure` VALUES ('050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL, '');
429 INSERT INTO `marc_tag_structure` VALUES ('051', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 1, 0, NULL, '');
430 INSERT INTO `marc_tag_structure` VALUES ('052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL, '');
431 INSERT INTO `marc_tag_structure` VALUES ('055', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 1, 0, NULL, '');
432 INSERT INTO `marc_tag_structure` VALUES ('060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL, '');
433 INSERT INTO `marc_tag_structure` VALUES ('061', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 1, 0, NULL, '');
434 INSERT INTO `marc_tag_structure` VALUES ('066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL, '');
435 INSERT INTO `marc_tag_structure` VALUES ('070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL, '');
436 INSERT INTO `marc_tag_structure` VALUES ('071', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 1, 0, NULL, '');
437 INSERT INTO `marc_tag_structure` VALUES ('072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL, '');
438 INSERT INTO `marc_tag_structure` VALUES ('074', 'GPO ITEM NUMBER', 'GPO ITEM NUMBER', 1, 0, NULL, '');
439 INSERT INTO `marc_tag_structure` VALUES ('080', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, '');
440 INSERT INTO `marc_tag_structure` VALUES ('082', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, '');
441 INSERT INTO `marc_tag_structure` VALUES ('084', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL, '');
442 INSERT INTO `marc_tag_structure` VALUES ('086', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL, '');
443 INSERT INTO `marc_tag_structure` VALUES ('087', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 1, 0, NULL, '');
444 INSERT INTO `marc_tag_structure` VALUES ('088', 'REPORT NUMBER', 'REPORT NUMBER', 1, 0, NULL, '');
445 INSERT INTO `marc_tag_structure` VALUES ('09o', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', '');
446 INSERT INTO `marc_tag_structure` VALUES ('091', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 0, 0, '', '');
447 INSERT INTO `marc_tag_structure` VALUES ('092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, '', '');
448 INSERT INTO `marc_tag_structure` VALUES ('096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, '', '');
449 INSERT INTO `marc_tag_structure` VALUES ('098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, '', '');
450 INSERT INTO `marc_tag_structure` VALUES ('099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, '', '');
451 INSERT INTO `marc_tag_structure` VALUES ('100', 'MAIN ENTRY--PERSONAL NAME', 'MAIN ENTRY--PERSONAL NAME', 0, 0, NULL, '');
452 INSERT INTO `marc_tag_structure` VALUES ('110', 'MAIN ENTRY--CORPORATE NAME', 'MAIN ENTRY--CORPORATE NAME', 0, 0, NULL, '');
453 INSERT INTO `marc_tag_structure` VALUES ('111', 'MAIN ENTRY--MEETING NAME', 'MAIN ENTRY--MEETING NAME', 0, 0, NULL, '');
454 INSERT INTO `marc_tag_structure` VALUES ('130', 'MAIN ENTRY--UNIFORM TITLE', 'MAIN ENTRY--UNIFORM TITLE', 0, 0, NULL, '');
455 INSERT INTO `marc_tag_structure` VALUES ('210', 'ABBREVIATED TITLE', 'ABBREVIATED TITLE', 1, 0, NULL, '');
456 INSERT INTO `marc_tag_structure` VALUES ('211', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 1, 0, NULL, '');
457 INSERT INTO `marc_tag_structure` VALUES ('212', 'VARIANT ACCESS TITLE [OBSOLETE]', 'VARIANT ACCESS TITLE [OBSOLETE]', 1, 0, NULL, '');
458 INSERT INTO `marc_tag_structure` VALUES ('214', 'AUGMENTED TITLE [OBSOLETE]', 'AUGMENTED TITLE [OBSOLETE]', 1, 0, NULL, '');
459 INSERT INTO `marc_tag_structure` VALUES ('222', 'KEY TITLE', 'KEY TITLE', 1, 0, NULL, '');
460 INSERT INTO `marc_tag_structure` VALUES ('240', 'UNIFORM TITLE', 'UNIFORM TITLE', 0, 0, 'Unititle', '');
461 INSERT INTO `marc_tag_structure` VALUES ('241', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 0, 0, '', '');
462 INSERT INTO `marc_tag_structure` VALUES ('242', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 1, 0, NULL, '');
463 INSERT INTO `marc_tag_structure` VALUES ('243', 'COLLECTIVE UNIFORM TITLE', 'COLLECTIVE UNIFORM TITLE', 0, 0, '', '');
464 INSERT INTO `marc_tag_structure` VALUES ('245', 'TITLE STATEMENT', 'TITLE STATEMENT', 0, 1, '', '');
465 INSERT INTO `marc_tag_structure` VALUES ('246', 'VARYING FORM OF TITLE', 'VARYING FORM OF TITLE', 1, 0, NULL, '');
466 INSERT INTO `marc_tag_structure` VALUES ('247', 'FORMER TITLE', 'FORMER TITLE', 1, 0, NULL, '');
467 INSERT INTO `marc_tag_structure` VALUES ('250', 'EDITION STATEMENT', 'EDITION STATEMENT', 0, 0, NULL, '');
468 INSERT INTO `marc_tag_structure` VALUES ('254', 'MUSICAL PRESENTATION STATEMENT', 'MUSICAL PRESENTATION STATEMENT', 0, 0, NULL, '');
469 INSERT INTO `marc_tag_structure` VALUES ('255', 'CARTOGRAPHIC MATHEMATICAL DATA', 'CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL, '');
470 INSERT INTO `marc_tag_structure` VALUES ('256', 'COMPUTER FILE CHARACTERISTICS', 'COMPUTER FILE CHARACTERISTICS', 0, 0, NULL, '');
471 INSERT INTO `marc_tag_structure` VALUES ('257', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 0, 0, NULL, '');
472 INSERT INTO `marc_tag_structure` VALUES ('258', 'PHILATELIC ISSUE DATE', 'PHILATELIC ISSUE DATE', 1, 0, NULL, '');
473 INSERT INTO `marc_tag_structure` VALUES ('260', 'PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 'PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 1, 0, NULL, '');
474 INSERT INTO `marc_tag_structure` VALUES ('261', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, NULL, '');
475 INSERT INTO `marc_tag_structure` VALUES ('262', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 0, 0, NULL, '');
476 INSERT INTO `marc_tag_structure` VALUES ('263', 'PROJECTED PUBLICATION DATE', 'PROJECTED PUBLICATION DATE', 0, 0, NULL, '');
477 INSERT INTO `marc_tag_structure` VALUES ('265', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 0, 0, NULL, '');
478 INSERT INTO `marc_tag_structure` VALUES ('270', 'ADDRESS', 'ADDRESS', 1, 0, NULL, '');
479 INSERT INTO `marc_tag_structure` VALUES ('300', 'PHYSICAL DESCRIPTION', 'PHYSICAL DESCRIPTION', 1, 1, NULL, '');
480 INSERT INTO `marc_tag_structure` VALUES ('301', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 0, 0, NULL, '');
481 INSERT INTO `marc_tag_structure` VALUES ('302', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 0, 0, NULL, '');
482 INSERT INTO `marc_tag_structure` VALUES ('303', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 0, 0, NULL, '');
483 INSERT INTO `marc_tag_structure` VALUES ('304', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 0, 0, NULL, '');
484 INSERT INTO `marc_tag_structure` VALUES ('305', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 0, 0, NULL, '');
485 INSERT INTO `marc_tag_structure` VALUES ('306', 'PLAYING TIME', 'PLAYING TIME', 0, 0, NULL, '');
486 INSERT INTO `marc_tag_structure` VALUES ('307', 'HOURS, ETC.', 'HOURS, ETC.', 1, 0, NULL, '');
487 INSERT INTO `marc_tag_structure` VALUES ('308', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 1, 0, NULL, '');
488 INSERT INTO `marc_tag_structure` VALUES ('310', 'CURRENT PUBLICATION FREQUENCY', 'CURRENT PUBLICATION FREQUENCY', 0, 0, NULL, '');
489 INSERT INTO `marc_tag_structure` VALUES ('315', 'FREQUENCY (CF MP) [OBSOLETE]', 'FREQUENCY (CF MP) [OBSOLETE]', 0, 0, NULL, '');
490 INSERT INTO `marc_tag_structure` VALUES ('321', 'FORMER PUBLICATION FREQUENCY', 'FORMER PUBLICATION FREQUENCY', 1, 0, NULL, '');
491 INSERT INTO `marc_tag_structure` VALUES ('340', 'PHYSICAL MEDIUM', 'PHYSICAL MEDIUM', 1, 0, NULL, '');
492 INSERT INTO `marc_tag_structure` VALUES ('342', 'GEOSPATIAL REFERENCE DATA', 'GEOSPATIAL REFERENCE DATA', 1, 0, NULL, '');
493 INSERT INTO `marc_tag_structure` VALUES ('343', 'PLANAR COORDINATE DATA', 'PLANAR COORDINATE DATA', 1, 0, NULL, '');
494 INSERT INTO `marc_tag_structure` VALUES ('350', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 1, 0, NULL, '');
495 INSERT INTO `marc_tag_structure` VALUES ('351', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 1, 0, NULL, '');
496 INSERT INTO `marc_tag_structure` VALUES ('352', 'DIGITAL GRAPHIC REPRESENTATION', 'DIGITAL GRAPHIC REPRESENTATION', 1, 0, NULL, '');
497 INSERT INTO `marc_tag_structure` VALUES ('355', 'SECURITY CLASSIFICATION CONTROL', 'SECURITY CLASSIFICATION CONTROL', 1, 0, NULL, '');
498 INSERT INTO `marc_tag_structure` VALUES ('357', 'ORIGINATOR DISSEMINATION CONTROL', 'ORIGINATOR DISSEMINATION CONTROL', 0, 0, NULL, '');
499 INSERT INTO `marc_tag_structure` VALUES ('359', 'RENTAL PRICE (VM) [OBSOLETE]', 'RENTAL PRICE (VM) [OBSOLETE]', 0, 0, NULL, '');
500 INSERT INTO `marc_tag_structure` VALUES ('362', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 1, 0, NULL, '');
501 INSERT INTO `marc_tag_structure` VALUES ('365', 'TRADE PRICE', 'TRADE PRICE', 1, 0, NULL, '');
502 INSERT INTO `marc_tag_structure` VALUES ('366', 'TRADE AVAILABILITY INFORMATION', 'TRADE AVAILABILITY INFORMATION', 1, 0, NULL, '');
503 INSERT INTO `marc_tag_structure` VALUES ('400', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, '');
504 INSERT INTO `marc_tag_structure` VALUES ('410', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, '');
505 INSERT INTO `marc_tag_structure` VALUES ('411', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, '');
506 INSERT INTO `marc_tag_structure` VALUES ('440', 'SERIES STATEMENT/ADDED ENTRY--TITLE', 'SERIES STATEMENT/ADDED ENTRY--TITLE', 1, 0, NULL, '');
507 INSERT INTO `marc_tag_structure` VALUES ('490', 'SERIES STATEMENT', 'SERIES STATEMENT', 1, 0, '', '');
508 INSERT INTO `marc_tag_structure` VALUES ('500', 'GENERAL NOTE', 'GENERAL NOTE', 1, 0, NULL, '');
509 INSERT INTO `marc_tag_structure` VALUES ('501', 'WITH NOTE', 'WITH NOTE', 1, 0, NULL, '');
510 INSERT INTO `marc_tag_structure` VALUES ('502', 'DISSERTATION NOTE', 'DISSERTATION NOTE', 1, 0, NULL, '');
511 INSERT INTO `marc_tag_structure` VALUES ('503', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 1, 0, NULL, '');
512 INSERT INTO `marc_tag_structure` VALUES ('504', 'BIBLIOGRAPHY, ETC. NOTE', 'BIBLIOGRAPHY, ETC. NOTE', 1, 0, NULL, '');
513 INSERT INTO `marc_tag_structure` VALUES ('505', 'FORMATTED CONTENTS NOTE', 'FORMATTED CONTENTS NOTE', 1, 0, NULL, '');
514 INSERT INTO `marc_tag_structure` VALUES ('506', 'RESTRICTIONS ON ACCESS NOTE', 'RESTRICTIONS ON ACCESS NOTE', 1, 0, NULL, '');
515 INSERT INTO `marc_tag_structure` VALUES ('507', 'SCALE NOTE FOR GRAPHIC MATERIAL', 'SCALE NOTE FOR GRAPHIC MATERIAL', 0, 0, NULL, '');
516 INSERT INTO `marc_tag_structure` VALUES ('508', 'CREATION/PRODUCTION CREDITS NOTE', 'CREATION/PRODUCTION CREDITS NOTE', 1, 0, NULL, '');
517 INSERT INTO `marc_tag_structure` VALUES ('509', 'INFORMAL NOTES (RLIN)', 'INFORMAL NOTES (RLIN)', 0, 0, NULL, '');
518 INSERT INTO `marc_tag_structure` VALUES ('510', 'CITATION/REFERENCES NOTE', 'CITATION/REFERENCES NOTE', 1, 0, NULL, '');
519 INSERT INTO `marc_tag_structure` VALUES ('511', 'PARTICIPANT OR PERFORMER NOTE', 'PARTICIPANT OR PERFORMER NOTE', 1, 0, NULL, '');
520 INSERT INTO `marc_tag_structure` VALUES ('512', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 1, 0, NULL, '');
521 INSERT INTO `marc_tag_structure` VALUES ('513', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 1, 0, NULL, '');
522 INSERT INTO `marc_tag_structure` VALUES ('514', 'DATA QUALITY NOTE', 'DATA QUALITY NOTE', 0, 0, NULL, '');
523 INSERT INTO `marc_tag_structure` VALUES ('515', 'NUMBERING PECULIARITIES NOTE', 'NUMBERING PECULIARITIES NOTE', 1, 0, NULL, '');
524 INSERT INTO `marc_tag_structure` VALUES ('516', 'TYPE OF COMPUTER FILE OR DATA NOTE', 'TYPE OF COMPUTER FILE OR DATA NOTE', 1, 0, NULL, '');
525 INSERT INTO `marc_tag_structure` VALUES ('517', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 0, 0, NULL, '');
526 INSERT INTO `marc_tag_structure` VALUES ('518', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 1, 0, NULL, '');
527 INSERT INTO `marc_tag_structure` VALUES ('520', 'SUMMARY, ETC.', 'SUMMARY, ETC.', 1, 0, NULL, '');
528 INSERT INTO `marc_tag_structure` VALUES ('521', 'TARGET AUDIENCE NOTE', 'TARGET AUDIENCE NOTE', 1, 0, NULL, '');
529 INSERT INTO `marc_tag_structure` VALUES ('522', 'GEOGRAPHIC COVERAGE NOTE', 'GEOGRAPHIC COVERAGE NOTE', 1, 0, NULL, '');
530 INSERT INTO `marc_tag_structure` VALUES ('523', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 0, 0, NULL, '');
531 INSERT INTO `marc_tag_structure` VALUES ('524', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 1, 0, NULL, '');
532 INSERT INTO `marc_tag_structure` VALUES ('525', 'SUPPLEMENT NOTE', 'SUPPLEMENT NOTE', 0, 0, NULL, '');
533 INSERT INTO `marc_tag_structure` VALUES ('526', 'STUDY PROGRAM INFORMATION NOTE', 'STUDY PROGRAM INFORMATION NOTE', 0, 0, NULL, '');
534 INSERT INTO `marc_tag_structure` VALUES ('527', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 1, 0, NULL, '');
535 INSERT INTO `marc_tag_structure` VALUES ('530', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 1, 0, NULL, '');
536 INSERT INTO `marc_tag_structure` VALUES ('533', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, '');
537 INSERT INTO `marc_tag_structure` VALUES ('534', 'ORIGINAL VERSION NOTE', 'ORIGINAL VERSION NOTE', 1, 0, NULL, '');
538 INSERT INTO `marc_tag_structure` VALUES ('535', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 1, 0, NULL, '');
539 INSERT INTO `marc_tag_structure` VALUES ('536', 'FUNDING INFORMATION NOTE', 'FUNDING INFORMATION NOTE', 1, 0, NULL, '');
540 INSERT INTO `marc_tag_structure` VALUES ('537', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 0, 0, NULL, '');
541 INSERT INTO `marc_tag_structure` VALUES ('538', 'SYSTEM DETAILS NOTE', 'SYSTEM DETAILS NOTE', 1, 0, NULL, '');
542 INSERT INTO `marc_tag_structure` VALUES ('540', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, '');
543 INSERT INTO `marc_tag_structure` VALUES ('541', 'IMMEDIATE SOURCE OF ACQUISITION NOTE', 'IMMEDIATE SOURCE OF ACQUISITION NOTE', 1, 0, NULL, '');
544 INSERT INTO `marc_tag_structure` VALUES ('543', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 1, 0, NULL, '');
545 INSERT INTO `marc_tag_structure` VALUES ('544', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 1, 0, NULL, '');
546 INSERT INTO `marc_tag_structure` VALUES ('546', 'LANGUAGE NOTE', 'LANGUAGE NOTE', 1, 0, NULL, '');
547 INSERT INTO `marc_tag_structure` VALUES ('547', 'FORMER TITLE COMPLEXITY NOTE', 'FORMER TITLE COMPLEXITY NOTE', 1, 0, NULL, '');
548 INSERT INTO `marc_tag_structure` VALUES ('550', 'ISSUING BODY NOTE', 'ISSUING BODY NOTE', 1, 0, NULL, '');
549 INSERT INTO `marc_tag_structure` VALUES ('552', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 1, 0, NULL, '');
550 INSERT INTO `marc_tag_structure` VALUES ('555', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 1, 0, NULL, '');
551 INSERT INTO `marc_tag_structure` VALUES ('556', 'INFORMATION ABOUT DOCUMENTATION NOTE', 'INFORMATION ABOUT DOCUMENTATION NOTE', 1, 0, NULL, '');
552 INSERT INTO `marc_tag_structure` VALUES ('561', 'OWNERSHIP AND CUSTODIAL HISTORY', 'OWNERSHIP AND CUSTODIAL HISTORY', 1, 0, NULL, '');
553 INSERT INTO `marc_tag_structure` VALUES ('562', 'COPY AND VERSION IDENTIFICATION NOTE', 'COPY AND VERSION IDENTIFICATION NOTE', 1, 0, NULL, '');
554 INSERT INTO `marc_tag_structure` VALUES ('563', 'BINDING INFORMATION', 'BINDING INFORMATION', 1, 0, NULL, '');
555 INSERT INTO `marc_tag_structure` VALUES ('565', 'CASE FILE CHARACTERISTICS NOTE', 'CASE FILE CHARACTERISTICS NOTE', 1, 0, NULL, '');
556 INSERT INTO `marc_tag_structure` VALUES ('567', 'METHODOLOGY NOTE', 'METHODOLOGY NOTE', 1, 0, NULL, '');
557 INSERT INTO `marc_tag_structure` VALUES ('570', 'EDITOR NOTE (SE) [OBSOLETE]', 'EDITOR NOTE (SE) [OBSOLETE]', 1, 0, NULL, '');
558 INSERT INTO `marc_tag_structure` VALUES ('580', 'LINKING ENTRY COMPLEXITY NOTE', 'LINKING ENTRY COMPLEXITY NOTE', 1, 0, NULL, '');
559 INSERT INTO `marc_tag_structure` VALUES ('581', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 1, 0, NULL, '');
560 INSERT INTO `marc_tag_structure` VALUES ('582', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 1, 0, NULL, '');
561 INSERT INTO `marc_tag_structure` VALUES ('583', 'ACTION NOTE', 'ACTION NOTE', 1, 0, NULL, '');
562 INSERT INTO `marc_tag_structure` VALUES ('584', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 1, 0, NULL, '');
563 INSERT INTO `marc_tag_structure` VALUES ('585', 'EXHIBITIONS NOTE', 'EXHIBITIONS NOTE', 1, 0, NULL, '');
564 INSERT INTO `marc_tag_structure` VALUES ('586', 'AWARDS NOTE', 'AWARDS NOTE', 1, 0, NULL, '');
565 INSERT INTO `marc_tag_structure` VALUES ('590', 'LOCAL NOTE (RLIN)', 'LOCAL NOTE (RLIN)', 1, 0, NULL, '');
566 INSERT INTO `marc_tag_structure` VALUES ('600', 'SUBJECT ADDED ENTRY--PERSONAL NAME', 'SUBJECT ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, '');
567 INSERT INTO `marc_tag_structure` VALUES ('610', 'SUBJECT ADDED ENTRY--CORPORATE NAME', 'SUBJECT ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, '');
568 INSERT INTO `marc_tag_structure` VALUES ('611', 'SUBJECT ADDED ENTRY--MEETING NAME', 'SUBJECT ADDED ENTRY--MEETING NAME', 1, 0, NULL, '');
569 INSERT INTO `marc_tag_structure` VALUES ('630', 'SUBJECT ADDED ENTRY--UNIFORM TITLE', 'SUBJECT ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, '');
570 INSERT INTO `marc_tag_structure` VALUES ('648', 'SUBJECT ADDED ENTRY--CHRONOLOGICAL TERM', 'SUBJECT ADDED ENTRY--CHRONOLOGICAL TERM', 1, 0, NULL, '');
571 INSERT INTO `marc_tag_structure` VALUES ('650', 'SUBJECT ADDED ENTRY--TOPICAL TERM', 'SUBJECT ADDED ENTRY--TOPICAL TERM', 1, 0, NULL, '');
572 INSERT INTO `marc_tag_structure` VALUES ('651', 'SUBJECT ADDED ENTRY--GEOGRAPHIC NAME', 'SUBJECT ADDED ENTRY--GEOGRAPHIC NAME', 1, 0, NULL, '');
573 INSERT INTO `marc_tag_structure` VALUES ('652', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 1, 0, NULL, '');
574 INSERT INTO `marc_tag_structure` VALUES ('653', 'INDEX TERM--UNCONTROLLED', 'INDEX TERM--UNCONTROLLED', 1, 0, NULL, '');
575 INSERT INTO `marc_tag_structure` VALUES ('654', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 1, 0, NULL, '');
576 INSERT INTO `marc_tag_structure` VALUES ('655', 'INDEX TERM--GENRE/FORM', 'INDEX TERM--GENRE/FORM', 1, 0, NULL, '');
577 INSERT INTO `marc_tag_structure` VALUES ('656', 'INDEX TERM--OCCUPATION', 'INDEX TERM--OCCUPATION', 1, 0, NULL, '');
578 INSERT INTO `marc_tag_structure` VALUES ('657', 'INDEX TERM--FUNCTION', 'INDEX TERM--FUNCTION', 1, 0, NULL, '');
579 INSERT INTO `marc_tag_structure` VALUES ('658', 'INDEX TERM--CURRICULUM OBJECTIVE', 'INDEX TERM--CURRICULUM OBJECTIVE', 1, 0, NULL, '');
580 INSERT INTO `marc_tag_structure` VALUES ('662', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, '');
581 INSERT INTO `marc_tag_structure` VALUES ('690', 'LOCAL SUBJECT ADDED ENTRY--TOPICAL TERM (OCLC, RLIN)', 'LOCAL SUBJECT ADDED ENTRY--TOPICAL TERM (OCLC, RLIN)', 1, 0, '', '');
582 INSERT INTO `marc_tag_structure` VALUES ('691', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 1, 0, '', '');
583 INSERT INTO `marc_tag_structure` VALUES ('696', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', '');
584 INSERT INTO `marc_tag_structure` VALUES ('697', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', '');
585 INSERT INTO `marc_tag_structure` VALUES ('698', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', '');
586 INSERT INTO `marc_tag_structure` VALUES ('699', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', '');
587 INSERT INTO `marc_tag_structure` VALUES ('700', 'ADDED ENTRY--PERSONAL NAME', 'ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, '');
588 INSERT INTO `marc_tag_structure` VALUES ('705', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, '');
589 INSERT INTO `marc_tag_structure` VALUES ('710', 'ADDED ENTRY--CORPORATE NAME', 'ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, '');
590 INSERT INTO `marc_tag_structure` VALUES ('711', 'ADDED ENTRY--MEETING NAME', 'ADDED ENTRY--MEETING NAME', 1, 0, NULL, '');
591 INSERT INTO `marc_tag_structure` VALUES ('715', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, '');
592 INSERT INTO `marc_tag_structure` VALUES ('720', 'ADDED ENTRY--UNCONTROLLED NAME', 'ADDED ENTRY--UNCONTROLLED NAME', 1, 0, NULL, '');
593 INSERT INTO `marc_tag_structure` VALUES ('730', 'ADDED ENTRY--UNIFORM TITLE', 'ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, '');
594 INSERT INTO `marc_tag_structure` VALUES ('740', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 1, 0, NULL, '');
595 INSERT INTO `marc_tag_structure` VALUES ('752', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, '');
596 INSERT INTO `marc_tag_structure` VALUES ('753', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 1, 0, NULL, '');
597 INSERT INTO `marc_tag_structure` VALUES ('754', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 1, 0, NULL, '');
598 INSERT INTO `marc_tag_structure` VALUES ('755', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 1, 0, NULL, '');
599 INSERT INTO `marc_tag_structure` VALUES ('760', 'MAIN SERIES ENTRY', 'MAIN SERIES ENTRY', 1, 0, NULL, '');
600 INSERT INTO `marc_tag_structure` VALUES ('762', 'SUBSERIES ENTRY', 'SUBSERIES ENTRY', 1, 0, NULL, '');
601 INSERT INTO `marc_tag_structure` VALUES ('765', 'ORIGINAL LANGUAGE ENTRY', 'ORIGINAL LANGUAGE ENTRY', 1, 0, NULL, '');
602 INSERT INTO `marc_tag_structure` VALUES ('767', 'TRANSLATION ENTRY', 'TRANSLATION ENTRY', 1, 0, NULL, '');
603 INSERT INTO `marc_tag_structure` VALUES ('770', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 1, 0, NULL, '');
604 INSERT INTO `marc_tag_structure` VALUES ('772', 'SUPPLEMENT PARENT ENTRY', 'SUPPLEMENT PARENT ENTRY', 1, 0, NULL, '');
605 INSERT INTO `marc_tag_structure` VALUES ('773', 'HOST ITEM ENTRY', 'HOST ITEM ENTRY', 1, 0, NULL, '');
606 INSERT INTO `marc_tag_structure` VALUES ('774', 'CONSTITUENT UNIT ENTRY', 'CONSTITUENT UNIT ENTRY', 1, 0, NULL, '');
607 INSERT INTO `marc_tag_structure` VALUES ('775', 'OTHER EDITION ENTRY', 'OTHER EDITION ENTRY', 1, 0, NULL, '');
608 INSERT INTO `marc_tag_structure` VALUES ('776', 'ADDITIONAL PHYSICAL FORM ENTRY', 'ADDITIONAL PHYSICAL FORM ENTRY', 1, 0, NULL, '');
609 INSERT INTO `marc_tag_structure` VALUES ('777', 'ISSUED WITH ENTRY', 'ISSUED WITH ENTRY', 1, 0, NULL, '');
610 INSERT INTO `marc_tag_structure` VALUES ('780', 'PRECEDING ENTRY', 'PRECEDING ENTRY', 1, 0, NULL, '');
611 INSERT INTO `marc_tag_structure` VALUES ('785', 'SUCCEEDING ENTRY', 'SUCCEEDING ENTRY', 1, 0, NULL, '');
612 INSERT INTO `marc_tag_structure` VALUES ('786', 'DATA SOURCE ENTRY', 'DATA SOURCE ENTRY', 1, 0, NULL, '');
613 INSERT INTO `marc_tag_structure` VALUES ('787', 'NONSPECIFIC RELATIONSHIP ENTRY', 'NONSPECIFIC RELATIONSHIP ENTRY', 1, 0, NULL, '');
614 INSERT INTO `marc_tag_structure` VALUES ('789', 'COMPONENT ITEM ENTRY (RLIN)', 'COMPONENT ITEM ENTRY (RLIN)', 1, 0, '', '');
615 INSERT INTO `marc_tag_structure` VALUES ('796', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', '');
616 INSERT INTO `marc_tag_structure` VALUES ('797', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', '');
617 INSERT INTO `marc_tag_structure` VALUES ('798', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', '');
618 INSERT INTO `marc_tag_structure` VALUES ('799', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', '');
619 INSERT INTO `marc_tag_structure` VALUES ('800', 'SERIES ADDED ENTRY--PERSONAL NAME', 'SERIES ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, '');
620 INSERT INTO `marc_tag_structure` VALUES ('810', 'SERIES ADDED ENTRY--CORPORATE NAME', 'SERIES ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, '');
621 INSERT INTO `marc_tag_structure` VALUES ('811', 'SERIES ADDED ENTRY--MEETING NAME', 'SERIES ADDED ENTRY--MEETING NAME', 1, 0, NULL, '');
622 INSERT INTO `marc_tag_structure` VALUES ('830', 'SERIES ADDED ENTRY--UNIFORM TITLE', 'SERIES ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, '');
623 INSERT INTO `marc_tag_structure` VALUES ('840', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 1, 0, NULL, '');
624 INSERT INTO `marc_tag_structure` VALUES ('841', 'HOLDINGS CODED DATA VALUES', 'HOLDINGS CODED DATA VALUES', 0, 0, NULL, '');
625 INSERT INTO `marc_tag_structure` VALUES ('842', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 0, 0, NULL, '');
626 INSERT INTO `marc_tag_structure` VALUES ('843', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, '');
627 INSERT INTO `marc_tag_structure` VALUES ('844', 'NAME OF UNIT', 'NAME OF UNIT', 0, 0, NULL, '');
628 INSERT INTO `marc_tag_structure` VALUES ('845', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, '');
629 INSERT INTO `marc_tag_structure` VALUES ('850', 'HOLDING INSTITUTION', 'HOLDING INSTITUTION', 1, 0, NULL, '');
630 INSERT INTO `marc_tag_structure` VALUES ('851', 'LOCATION [OBSOLETE]', 'LOCATION [OBSOLETE]', 1, 0, NULL, '');
631 INSERT INTO `marc_tag_structure` VALUES ('852', 'LOCATION/CALL NUMBER', 'LOCATION/CALL NUMBER', 1, 0, NULL, '');
632 INSERT INTO `marc_tag_structure` VALUES ('853', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, '');
633 INSERT INTO `marc_tag_structure` VALUES ('854', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 1, 0, NULL, '');
634 INSERT INTO `marc_tag_structure` VALUES ('855', 'CAPTIONS AND PATTERN--INDEXES', 'CAPTIONS AND PATTERN--INDEXES', 1, 0, NULL, '');
635 INSERT INTO `marc_tag_structure` VALUES ('856', 'ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL, '');
636 INSERT INTO `marc_tag_structure` VALUES ('859', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', '');
637 INSERT INTO `marc_tag_structure` VALUES ('863', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, '');
638 INSERT INTO `marc_tag_structure` VALUES ('864', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 1, 0, NULL, '');
639 INSERT INTO `marc_tag_structure` VALUES ('865', 'ENUMERATION AND CHRONOLOGY--INDEXES', 'ENUMERATION AND CHRONOLOGY--INDEXES', 1, 0, NULL, '');
640 INSERT INTO `marc_tag_structure` VALUES ('866', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, '');
641 INSERT INTO `marc_tag_structure` VALUES ('867', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 1, 0, NULL, '');
642 INSERT INTO `marc_tag_structure` VALUES ('868', 'TEXTUAL HOLDINGS--INDEXES', 'TEXTUAL HOLDINGS--INDEXES', 1, 0, NULL, '');
643 INSERT INTO `marc_tag_structure` VALUES ('870', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 1, 0, NULL, '');
644 INSERT INTO `marc_tag_structure` VALUES ('871', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 1, 0, NULL, '');
645 INSERT INTO `marc_tag_structure` VALUES ('872', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 1, 0, NULL, '');
646 INSERT INTO `marc_tag_structure` VALUES ('873', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 1, 0, NULL, '');
647 INSERT INTO `marc_tag_structure` VALUES ('876', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, '');
648 INSERT INTO `marc_tag_structure` VALUES ('877', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 1, 0, NULL, '');
649 INSERT INTO `marc_tag_structure` VALUES ('878', 'ITEM INFORMATION--INDEXES', 'ITEM INFORMATION--INDEXES', 1, 0, NULL, '');
650 INSERT INTO `marc_tag_structure` VALUES ('880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL, '');
651 INSERT INTO `marc_tag_structure` VALUES ('886', 'FOREIGN MARC INFORMATION FIELD', 'FOREIGN MARC INFORMATION FIELD', 1, 0, NULL, '');
652 INSERT INTO `marc_tag_structure` VALUES ('887', 'NON-MARC INFORMATION FIELD', 'NON-MARC INFORMATION FIELD', 1, 0, NULL, '');
653 INSERT INTO `marc_tag_structure` VALUES ('896', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', '');
654 INSERT INTO `marc_tag_structure` VALUES ('897', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', '');
655 INSERT INTO `marc_tag_structure` VALUES ('898', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', '');
656 INSERT INTO `marc_tag_structure` VALUES ('899', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', '');
657 INSERT INTO `marc_tag_structure` VALUES ('89e', 'ERRONEOUS FIELD, ERR (RLIN)', 'ERRONEOUS FIELD, ERR (RLIN)', 1, 0, '', '');
658 INSERT INTO `marc_tag_structure` VALUES ('900', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 1, 0, '', '');
659 INSERT INTO `marc_tag_structure` VALUES ('901', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 1, 0, '', '');
660 INSERT INTO `marc_tag_structure` VALUES ('902', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 1, 0, '', '');
661 INSERT INTO `marc_tag_structure` VALUES ('903', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 1, 0, '', '');
662 INSERT INTO `marc_tag_structure` VALUES ('904', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 1, 0, '', '');
663 INSERT INTO `marc_tag_structure` VALUES ('905', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 1, 0, '', '');
664 INSERT INTO `marc_tag_structure` VALUES ('906', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 1, 0, '', '');
665 INSERT INTO `marc_tag_structure` VALUES ('907', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 1, 0, '', '');
666 INSERT INTO `marc_tag_structure` VALUES ('908', 'PUT COMMAND PARAMETER (RLIN)', 'PUT COMMAND PARAMETER (RLIN)', 0, 0, '', '');
667 INSERT INTO `marc_tag_structure` VALUES ('910', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 1, 0, '', '');
668 INSERT INTO `marc_tag_structure` VALUES ('91o', 'USER-OPTION DATA (COLC)', 'USER-OPTION DATA (OCLC)', 0, 0, '', '');
669 INSERT INTO `marc_tag_structure` VALUES ('91r', 'RLG STANDARDS NOTE (RLIN)', 'RLG STANDARDS NOTE (RLIN)', 1, 0, '', '');
670 INSERT INTO `marc_tag_structure` VALUES ('911', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 1, 0, '', '');
671 INSERT INTO `marc_tag_structure` VALUES ('930', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 1, 0, '', '');
672 INSERT INTO `marc_tag_structure` VALUES ('93r', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 1, 0, '', '');
673 INSERT INTO `marc_tag_structure` VALUES ('936', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 0, 0, '', '');
674 INSERT INTO `marc_tag_structure` VALUES ('940', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', '');
675 INSERT INTO `marc_tag_structure` VALUES ('941', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', '');
676 INSERT INTO `marc_tag_structure` VALUES ('943', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', '');
677 INSERT INTO `marc_tag_structure` VALUES ('945', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', '');
678 INSERT INTO `marc_tag_structure` VALUES ('94c', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', '');
679 INSERT INTO `marc_tag_structure` VALUES ('946', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', '');
680 INSERT INTO `marc_tag_structure` VALUES ('947', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', '');
681 INSERT INTO `marc_tag_structure` VALUES ('948', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 1, 0, '', '');
682 INSERT INTO `marc_tag_structure` VALUES ('949', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', '');
683 INSERT INTO `marc_tag_structure` VALUES ('94a', 'ANALYSIS TREATMENT NOTE (RLIN)', 'ANALYSIS TREATMENT NOTE (RLIN)', 1, 0, '', '');
684 INSERT INTO `marc_tag_structure` VALUES ('94b', 'TREATMENT CODES (RLIN)', 'TREATMENT CODES (RLIN)', 1, 0, '', '');
685 INSERT INTO `marc_tag_structure` VALUES ('950', 'LOCAL HOLDINGS (RLIN)', 'LOCAL HOLDINGS (RLIN)', 1, 0, '', '');
686 INSERT INTO `marc_tag_structure` VALUES ('951', 'EQUIVALENCE OR CROSS-REFERENCE--GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', '');
687 INSERT INTO `marc_tag_structure` VALUES ('95c', 'EQUIVALENCE OR CROSS-REFERENCE--HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', '');
688 INSERT INTO `marc_tag_structure` VALUES ('95r', 'CLUSTER MEMBER (RLIN)', 'CLUSTER MEMBER (RLIN)', 1, 0, '', '');
689 INSERT INTO `marc_tag_structure` VALUES ('955', 'COPY-LEVEL INFORMATION (RLIN)', 'COPY-LEVEL INFORMATION (RLIN)', 1, 0, '', '');
690 INSERT INTO `marc_tag_structure` VALUES ('956', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 1, 0, '', '');
691 INSERT INTO `marc_tag_structure` VALUES ('960', 'PHYSICAL LOCATION (RLIN)', 'PHYSICAL LOCATION (RLIN)', 1, 0, '', '');
692 INSERT INTO `marc_tag_structure` VALUES ('967', 'ADDITIONAL ESTC CODES (RLIN)', 'ADDITIONAL ESTC CODES (RLIN)', 1, 0, '', '');
693 INSERT INTO `marc_tag_structure` VALUES ('980', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 1, 0, '', '');
694 INSERT INTO `marc_tag_structure` VALUES ('981', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 1, 0, '', '');
695 INSERT INTO `marc_tag_structure` VALUES ('982', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 1, 0, '', '');
696 INSERT INTO `marc_tag_structure` VALUES ('983', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--TITLE/UNIFORM TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE--SERIES STATEMENT-TITLE/UNIFORM TITLE [LOCAL, CANADA]', 1, 0, '', '');
697 INSERT INTO `marc_tag_structure` VALUES ('984', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 1, 0, '', '');
698 INSERT INTO `marc_tag_structure` VALUES ('987', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 1, 0, '', '');
699 INSERT INTO `marc_tag_structure` VALUES ('990', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 1, 0, '', '');
700 INSERT INTO `marc_tag_structure` VALUES ('995', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 1, 0, '', '');
701 INSERT INTO `marc_tag_structure` VALUES ('998', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', '');
702 INSERT INTO `marc_tag_structure` VALUES ('999', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', '');
703 INSERT INTO `marc_tag_structure` VALUES ('b99', 'PRIVATE LOCAL INFORMATION (RLIN)', 'PRIVATE LOCAL INFORMATION (RLIN)', 1, 0, '', '');
704 INSERT INTO `marc_tag_structure` VALUES ('u01', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 0, 0, '', '');
705 INSERT INTO `marc_tag_structure` VALUES ('u02', 'STANDARD NUMBER (RLIN)', 'STANDARD NUMBER (RLIN)', 0, 0, '', '');
706 INSERT INTO `marc_tag_structure` VALUES ('u08', 'CODED INFORMATION (RLIN)', 'CODED INFORMATION (RLIN)', 0, 0, '', '');
707 INSERT INTO `marc_tag_structure` VALUES ('u10', 'REQUESTER IDENTIFICATION (RLIN)', 'REQUESTER IDENTIFICATION (RLIN)', 1, 0, '', '');
708 INSERT INTO `marc_tag_structure` VALUES ('u11', 'DEPARTMENT REPORT REQUEST (RLIN)', 'DEPARTMENT REPORT REQUEST (RLIN)', 1, 0, '', '');
709 INSERT INTO `marc_tag_structure` VALUES ('u20', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 0, 0, '', '');
710 INSERT INTO `marc_tag_structure` VALUES ('u21', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 0, 0, '', '');
711 INSERT INTO `marc_tag_structure` VALUES ('u22', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 0, 0, '', '');
712 INSERT INTO `marc_tag_structure` VALUES ('u25', 'SUPPLIER REPORT(S) (RLIN)', 'SUPPLIER REPORT(S) (RLIN)', 0, 0, '', '');
713 INSERT INTO `marc_tag_structure` VALUES ('u30', 'INTERVALS (RLIN)', 'INTERVALS (RLIN)', 0, 0, '', '');
714 INSERT INTO `marc_tag_structure` VALUES ('u31', 'CLAIM COUNTS (RLIN)', 'CLAIM COUNTS (RLIN)', 0, 0, '', '');
715 INSERT INTO `marc_tag_structure` VALUES ('u33', 'INVOICE CLAIM (RLIN)', 'INVOICE CLAIM (RLIN)', 0, 0, '', '');
716 INSERT INTO `marc_tag_structure` VALUES ('u34', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 0, 0, '', '');
717 INSERT INTO `marc_tag_structure` VALUES ('u40', 'EXTENDED PROCUREMENT CODES (RLIN)', 'EXTENDED PROCUREMENT CODES (RLIN)', 0, 0, '', '');
718 INSERT INTO `marc_tag_structure` VALUES ('u50', 'ACQUISITIONS NOTES (RLIN)', 'ACQUISITIONS NOTES (RLIN)', 0, 0, '', '');
719 INSERT INTO `marc_tag_structure` VALUES ('u51', 'SELECTION NOTES (RLIN)', 'SELECTION NOTES (RLIN)', 0, 0, '', '');
720 INSERT INTO `marc_tag_structure` VALUES ('u52', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 0, 0, '', '');
721 INSERT INTO `marc_tag_structure` VALUES ('u53', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 0, 0, '', '');
722 INSERT INTO `marc_tag_structure` VALUES ('u54', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 0, 0, '', '');
723 INSERT INTO `marc_tag_structure` VALUES ('u55', 'CATALOGING NOTES (RLIN)', 'CATALOGING NOTES (RLIN)', 0, 0, '', '');
724 INSERT INTO `marc_tag_structure` VALUES ('u5f', 'ACCOUNTING NOTES (RLIN)', 'ACCOUNTING NOTES (RLIN)', 0, 0, '', '');
725 INSERT INTO `marc_tag_structure` VALUES ('u70', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 0, 0, '', '');
726 INSERT INTO `marc_tag_structure` VALUES ('u71', 'FUND ACCOUNT (RLIN)', 'FUND ACCOUNT (RLIN)', 0, 0, '', '');
727 INSERT INTO `marc_tag_structure` VALUES ('u75', 'ITEM DETAILS (RLIN)', 'ITEM DETAILS (RLIN)', 1, 0, '', '');
728 INSERT INTO `marc_tag_structure` VALUES ('u7f', 'PRICE INFORMATION (RLIN)', 'PRICE INFORMATION (RLIN)', 1, 0, '', '');
729 INSERT INTO `marc_tag_structure` VALUES ('u90', 'TAPE OUTPUT, TAPE (RLIN)', 'TAPE OUTPUT, TAPE (RLIN)', 0, 0, '', '');
730 INSERT INTO `marc_tag_structure` VALUES ('ufi', 'FISCAL INFORMATION, FI (RLIN)', 'FISCAL INFORMATION, FI (RLIN)', 1, 0, '', '');
731
732
733
734 INSERT INTO `marc_subfield_structure` VALUES ('000', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_leader.pl', 0, 0, '', '', '');
735 INSERT INTO `marc_subfield_structure` VALUES ('001', '@', 'control field', 'control field', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
736 INSERT INTO `marc_subfield_structure` VALUES ('003', '@', 'control field', 'control field', 0, 1, '', 0, '', '', 'marc21_field_003.pl', 0, 0, '', '', '');
737 INSERT INTO `marc_subfield_structure` VALUES ('005', '@', 'control field', 'control field', 0, 1, '', 0, '', '', 'marc21_field_005.pl', 0, 0, '', '', '');
738 INSERT INTO `marc_subfield_structure` VALUES ('006', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_006.pl', 0, -1, '', '', '');
739 INSERT INTO `marc_subfield_structure` VALUES ('007', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_007.pl', 0, 0, '', '', '');
740 INSERT INTO `marc_subfield_structure` VALUES ('008', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_field_008.pl', 0, 0, '', '', '');
741 INSERT INTO `marc_subfield_structure` VALUES ('009', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
742 INSERT INTO `marc_subfield_structure` VALUES ('010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', NULL, 0, -6, '', '', '');
743 INSERT INTO `marc_subfield_structure` VALUES ('010', 'a', 'LC control number', 'LC control number', 0, 0, 'biblioitems.lccn', 0, '', '', '', 0, 0, '', '', '');
744 INSERT INTO `marc_subfield_structure` VALUES ('010', 'b', 'NUCMC control number', 'NUCMC control number', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
745 INSERT INTO `marc_subfield_structure` VALUES ('010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
746 INSERT INTO `marc_subfield_structure` VALUES ('011', 'a', 'LC control number', 'LC control number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
747 INSERT INTO `marc_subfield_structure` VALUES ('013', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, '', '', '');
748 INSERT INTO `marc_subfield_structure` VALUES ('013', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
749 INSERT INTO `marc_subfield_structure` VALUES ('013', 'a', 'Number', 'Number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
750 INSERT INTO `marc_subfield_structure` VALUES ('013', 'b', 'Country', 'Country', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
751 INSERT INTO `marc_subfield_structure` VALUES ('013', 'c', 'Type of number', 'Type of number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
752 INSERT INTO `marc_subfield_structure` VALUES ('013', 'd', 'Date', 'Date', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
753 INSERT INTO `marc_subfield_structure` VALUES ('013', 'e', 'Status', 'Status', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
754 INSERT INTO `marc_subfield_structure` VALUES ('013', 'f', 'Party to document', 'Party to document', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
755 INSERT INTO `marc_subfield_structure` VALUES ('015', '2', 'Source', 'Source', 0, 0, '', 0, '', '', NULL, 0, 0, '', '', '');
756 INSERT INTO `marc_subfield_structure` VALUES ('015', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
757 INSERT INTO `marc_subfield_structure` VALUES ('015', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
758 INSERT INTO `marc_subfield_structure` VALUES ('015', 'a', 'National bibliography number', 'National bibliography number', 1, 0, '', 0, '', '', '', 0, 0, '', '', '');
759 INSERT INTO `marc_subfield_structure` VALUES ('016', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
760 INSERT INTO `marc_subfield_structure` VALUES ('016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
761 INSERT INTO `marc_subfield_structure` VALUES ('016', 'a', 'Record control number', 'Record control number', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
762 INSERT INTO `marc_subfield_structure` VALUES ('016', 'z', 'Canceled or invalid record control number', 'Canceled or invalid record control number', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
763 INSERT INTO `marc_subfield_structure` VALUES ('017', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
764 INSERT INTO `marc_subfield_structure` VALUES ('017', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
765 INSERT INTO `marc_subfield_structure` VALUES ('017', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
766 INSERT INTO `marc_subfield_structure` VALUES ('017', 'a', 'Copyright or legal deposit number', 'Copyright or legal deposit number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
767 INSERT INTO `marc_subfield_structure` VALUES ('017', 'b', 'Assigning agency', 'Assigning agency', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
768 INSERT INTO `marc_subfield_structure` VALUES ('017', 'd', 'Date', 'Date', 0, 0, '', 0, '', '', NULL, 0, -6, '', '', '');
769 INSERT INTO `marc_subfield_structure` VALUES ('017', 'i', 'Display text', 'Display text', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
770 INSERT INTO `marc_subfield_structure` VALUES ('018', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
771 INSERT INTO `marc_subfield_structure` VALUES ('018', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
772 INSERT INTO `marc_subfield_structure` VALUES ('018', 'a', 'Copyright article-fee code', 'Copyright article-fee code', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
773 INSERT INTO `marc_subfield_structure` VALUES ('01e', 'a', 'Coded field error', 'Coded field error', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
774 INSERT INTO `marc_subfield_structure` VALUES ('020', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
775 INSERT INTO `marc_subfield_structure` VALUES ('020', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
776 INSERT INTO `marc_subfield_structure` VALUES ('020', 'a', 'International Standard Book Number', 'International Standard Book Number', 0, 0, 'biblioitems.isbn', 0, '', '', '', 0, 0, '', '', '');
777 INSERT INTO `marc_subfield_structure` VALUES ('020', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
778 INSERT INTO `marc_subfield_structure` VALUES ('020', 'z', 'Cancelled/invalid ISBN', 'Cancelled/invalid ISBN', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
779 INSERT INTO `marc_subfield_structure` VALUES ('022', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
780 INSERT INTO `marc_subfield_structure` VALUES ('022', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
781 INSERT INTO `marc_subfield_structure` VALUES ('022', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
782 INSERT INTO `marc_subfield_structure` VALUES ('022', 'a', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, 'biblioitems.issn', 0, '', '', '', 0, 0, '', '', '');
783 INSERT INTO `marc_subfield_structure` VALUES ('022', 'y', 'Incorrect ISSN', 'Incorrect ISSN', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
784 INSERT INTO `marc_subfield_structure` VALUES ('022', 'z', 'Canceled ISSN', 'Canceled ISSN', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
785 INSERT INTO `marc_subfield_structure` VALUES ('023', 'a', 'Standard film number', 'Standard film number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
786 INSERT INTO `marc_subfield_structure` VALUES ('024', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
787 INSERT INTO `marc_subfield_structure` VALUES ('024', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
788 INSERT INTO `marc_subfield_structure` VALUES ('024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
789 INSERT INTO `marc_subfield_structure` VALUES ('024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
790 INSERT INTO `marc_subfield_structure` VALUES ('024', 'b', 'Additional codes following the standard number [OBSOLETE]', 'Additional codes following the standard number [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
791 INSERT INTO `marc_subfield_structure` VALUES ('024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
792 INSERT INTO `marc_subfield_structure` VALUES ('024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
793 INSERT INTO `marc_subfield_structure` VALUES ('024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
794 INSERT INTO `marc_subfield_structure` VALUES ('025', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
795 INSERT INTO `marc_subfield_structure` VALUES ('025', 'a', 'Overseas acquisition number', 'Overseas acquisition number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
796 INSERT INTO `marc_subfield_structure` VALUES ('026', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
797 INSERT INTO `marc_subfield_structure` VALUES ('026', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
798 INSERT INTO `marc_subfield_structure` VALUES ('026', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
799 INSERT INTO `marc_subfield_structure` VALUES ('026', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
800 INSERT INTO `marc_subfield_structure` VALUES ('026', 'a', 'First and second groups of characters', 'First and second groups of characters', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
801 INSERT INTO `marc_subfield_structure` VALUES ('026', 'b', 'Third and fourth groups of characters', 'Third and fourth groups of characters', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
802 INSERT INTO `marc_subfield_structure` VALUES ('026', 'c', 'Date', 'Date', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
803 INSERT INTO `marc_subfield_structure` VALUES ('026', 'd', 'Number of volume or part', 'Number of volume or part', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
804 INSERT INTO `marc_subfield_structure` VALUES ('026', 'e', 'unparsed fingerprint', 'unparsed fingerprint', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
805 INSERT INTO `marc_subfield_structure` VALUES ('027', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
806 INSERT INTO `marc_subfield_structure` VALUES ('027', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
807 INSERT INTO `marc_subfield_structure` VALUES ('027', 'a', 'Standard technical report number', 'Standard technical report number', 0, 0, '', 0, '', '', '', 0, -1, '', '', '');
808 INSERT INTO `marc_subfield_structure` VALUES ('027', 'z', 'Canceled/invalid number', 'Canceled/invalid number', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
809 INSERT INTO `marc_subfield_structure` VALUES ('028', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
810 INSERT INTO `marc_subfield_structure` VALUES ('028', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
811 INSERT INTO `marc_subfield_structure` VALUES ('028', 'a', 'Publisher number', 'Publisher number', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
812 INSERT INTO `marc_subfield_structure` VALUES ('028', 'b', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
813 INSERT INTO `marc_subfield_structure` VALUES ('030', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
814 INSERT INTO `marc_subfield_structure` VALUES ('030', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
815 INSERT INTO `marc_subfield_structure` VALUES ('030', 'a', 'CODEN', 'CODEN', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
816 INSERT INTO `marc_subfield_structure` VALUES ('030', 'z', 'Canceled/invalid CODEN', 'Canceled/invalid CODEN', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
817 INSERT INTO `marc_subfield_structure` VALUES ('031', '2', 'System code', 'System code', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
818 INSERT INTO `marc_subfield_structure` VALUES ('031', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
819 INSERT INTO `marc_subfield_structure` VALUES ('031', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
820 INSERT INTO `marc_subfield_structure` VALUES ('031', 'a', 'Number of work', 'Number of work', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
821 INSERT INTO `marc_subfield_structure` VALUES ('031', 'b', 'Number of movement', 'Number of movement', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
822 INSERT INTO `marc_subfield_structure` VALUES ('031', 'c', 'Number of excerpt', 'Number of excerpt', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
823 INSERT INTO `marc_subfield_structure` VALUES ('031', 'd', 'Caption or heading', 'Caption or heading', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
824 INSERT INTO `marc_subfield_structure` VALUES ('031', 'e', 'Role', 'Role', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
825 INSERT INTO `marc_subfield_structure` VALUES ('031', 'g', 'Clef', 'Clef', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
826 INSERT INTO `marc_subfield_structure` VALUES ('031', 'm', 'Voice/instrument', 'Voice/instrument', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
827 INSERT INTO `marc_subfield_structure` VALUES ('031', 'n', 'Key signature', 'Key signature', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
828 INSERT INTO `marc_subfield_structure` VALUES ('031', 'o', 'Time signature', 'Time signature', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
829 INSERT INTO `marc_subfield_structure` VALUES ('031', 'p', 'Musical notation', 'Musical notation', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
830 INSERT INTO `marc_subfield_structure` VALUES ('031', 'q', 'General note', 'General note', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
831 INSERT INTO `marc_subfield_structure` VALUES ('031', 'r', 'Key or mode', 'Key or mode', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
832 INSERT INTO `marc_subfield_structure` VALUES ('031', 's', 'Coded validity note', 'Coded validity note', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
833 INSERT INTO `marc_subfield_structure` VALUES ('031', 't', 'Text incipit', 'Text incipit', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
834 INSERT INTO `marc_subfield_structure` VALUES ('031', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 0, '', '', '', 1, -6, '', '', '');
835 INSERT INTO `marc_subfield_structure` VALUES ('031', 'y', 'Link text', 'Link text', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
836 INSERT INTO `marc_subfield_structure` VALUES ('031', 'z', 'Public note', 'Public note', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
837 INSERT INTO `marc_subfield_structure` VALUES ('032', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, '', '', '');
838 INSERT INTO `marc_subfield_structure` VALUES ('032', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
839 INSERT INTO `marc_subfield_structure` VALUES ('032', 'a', 'Postal registration number', 'Postal registration number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
840 INSERT INTO `marc_subfield_structure` VALUES ('032', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
841 INSERT INTO `marc_subfield_structure` VALUES ('033', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
842 INSERT INTO `marc_subfield_structure` VALUES ('033', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
843 INSERT INTO `marc_subfield_structure` VALUES ('033', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
844 INSERT INTO `marc_subfield_structure` VALUES ('033', 'a', 'Formatted date/time', 'Formatted date/time', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
845 INSERT INTO `marc_subfield_structure` VALUES ('033', 'b', 'Geographic classification area code', 'Geographic classification area code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
846 INSERT INTO `marc_subfield_structure` VALUES ('033', 'c', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
847 INSERT INTO `marc_subfield_structure` VALUES ('034', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
848 INSERT INTO `marc_subfield_structure` VALUES ('034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
849 INSERT INTO `marc_subfield_structure` VALUES ('034', 'a', 'Category of scale', 'Category of scale', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
850 INSERT INTO `marc_subfield_structure` VALUES ('034', 'b', 'Constant ratio linear horizontal scale', 'Constant ratio linear horizontal scale', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
851 INSERT INTO `marc_subfield_structure` VALUES ('034', 'c', 'Constant ratio linear vertical scale', 'Constant ratio linear vertical scale', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
852 INSERT INTO `marc_subfield_structure` VALUES ('034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
853 INSERT INTO `marc_subfield_structure` VALUES ('034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
854 INSERT INTO `marc_subfield_structure` VALUES ('034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
855 INSERT INTO `marc_subfield_structure` VALUES ('034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
856 INSERT INTO `marc_subfield_structure` VALUES ('034', 'h', 'Angular scale', 'Angular scale', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
857 INSERT INTO `marc_subfield_structure` VALUES ('034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
858 INSERT INTO `marc_subfield_structure` VALUES ('034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
859 INSERT INTO `marc_subfield_structure` VALUES ('034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
860 INSERT INTO `marc_subfield_structure` VALUES ('034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
861 INSERT INTO `marc_subfield_structure` VALUES ('034', 'p', 'Equinox', 'Equinox', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
862 INSERT INTO `marc_subfield_structure` VALUES ('034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
863 INSERT INTO `marc_subfield_structure` VALUES ('034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
864 INSERT INTO `marc_subfield_structure` VALUES ('035', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
865 INSERT INTO `marc_subfield_structure` VALUES ('035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
866 INSERT INTO `marc_subfield_structure` VALUES ('035', 'a', 'System control number', 'System control number', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
867 INSERT INTO `marc_subfield_structure` VALUES ('035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
868 INSERT INTO `marc_subfield_structure` VALUES ('036', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
869 INSERT INTO `marc_subfield_structure` VALUES ('036', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
870 INSERT INTO `marc_subfield_structure` VALUES ('036', 'a', 'Original study number', 'Original study number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
871 INSERT INTO `marc_subfield_structure` VALUES ('036', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
872 INSERT INTO `marc_subfield_structure` VALUES ('037', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
873 INSERT INTO `marc_subfield_structure` VALUES ('037', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
874 INSERT INTO `marc_subfield_structure` VALUES ('037', 'a', 'Stock number', 'Stock number', 0, 0, '', 0, '', '', '', 0, -1, '', '', '');
875 INSERT INTO `marc_subfield_structure` VALUES ('037', 'b', 'Source of stock number/acquisition', 'Source of stock number/acquisition', 0, 0, '', 0, '', '', '', 0, -1, '', '', '');
876 INSERT INTO `marc_subfield_structure` VALUES ('037', 'c', 'Terms of availability', 'Terms of availability', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
877 INSERT INTO `marc_subfield_structure` VALUES ('037', 'f', 'Form of issue', 'Form of issue', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
878 INSERT INTO `marc_subfield_structure` VALUES ('037', 'g', 'Additional format characteristics', 'Additional format characteristics', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
879 INSERT INTO `marc_subfield_structure` VALUES ('037', 'n', 'Note', 'Note', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
880 INSERT INTO `marc_subfield_structure` VALUES ('038', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
881 INSERT INTO `marc_subfield_structure` VALUES ('038', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
882 INSERT INTO `marc_subfield_structure` VALUES ('038', 'a', 'Record content licensor', 'Record content licensor', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
883 INSERT INTO `marc_subfield_structure` VALUES ('039', 'a', 'Level of rules in bibliographic description', 'Level of rules in bibliographic description', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
884 INSERT INTO `marc_subfield_structure` VALUES ('039', 'b', 'Level of effort used to assign nonsubject heading access points', 'Level of effort used to assign nonsubject heading access points', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
885 INSERT INTO `marc_subfield_structure` VALUES ('039', 'c', 'Level of effort used to assign subject headings', 'Level of effort used to assign subject headings', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
886 INSERT INTO `marc_subfield_structure` VALUES ('039', 'd', 'Level of effort used to assign classification', 'Level of effort used to assign classification', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
887 INSERT INTO `marc_subfield_structure` VALUES ('039', 'e', 'Number of fixed field character positions coded', 'Number of fixed field character positions coded', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
888 INSERT INTO `marc_subfield_structure` VALUES ('040', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
889 INSERT INTO `marc_subfield_structure` VALUES ('040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
890 INSERT INTO `marc_subfield_structure` VALUES ('040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
891 INSERT INTO `marc_subfield_structure` VALUES ('040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
892 INSERT INTO `marc_subfield_structure` VALUES ('040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 1, '', 0, '', '', '', 0, 0, '', '', '');
893 INSERT INTO `marc_subfield_structure` VALUES ('040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, '', 0, '', '', '', 0, 0, '', '', '');
894 INSERT INTO `marc_subfield_structure` VALUES ('040', 'e', 'Description conventions', 'Description conventions', 0, 0, '', 0, '', '', '', 0, -1, '', '', '');
895 INSERT INTO `marc_subfield_structure` VALUES ('041', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
896 INSERT INTO `marc_subfield_structure` VALUES ('041', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
897 INSERT INTO `marc_subfield_structure` VALUES ('041', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
898 INSERT INTO `marc_subfield_structure` VALUES ('041', 'a', 'Language code of text/sound track or separate title', 'Language code of text/sound track or separate title', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
899 INSERT INTO `marc_subfield_structure` VALUES ('041', 'b', 'Language code of summary or abstract/overprinted title or subtitle', 'Language code of summary or abstract/overprinted title or subtitle', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
900 INSERT INTO `marc_subfield_structure` VALUES ('041', 'c', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
901 INSERT INTO `marc_subfield_structure` VALUES ('041', 'd', 'Language code of sung or spoken text', 'Language code of sung or spoken text', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
902 INSERT INTO `marc_subfield_structure` VALUES ('041', 'e', 'Language code of librettos', 'Language code of librettos', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
903 INSERT INTO `marc_subfield_structure` VALUES ('041', 'f', 'Language code of table of contents', 'Language code of table of contents', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
904 INSERT INTO `marc_subfield_structure` VALUES ('041', 'g', 'Language code of accompanying material other than librettos', 'Language code of accompanying material other than librettos', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
905 INSERT INTO `marc_subfield_structure` VALUES ('041', 'h', 'Language code of original and/or intermediate translations of text', 'Language code of original and/or intermediate translations of text', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
906 INSERT INTO `marc_subfield_structure` VALUES ('042', 'a', 'Authentication code', 'Authentication code', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
907 INSERT INTO `marc_subfield_structure` VALUES ('043', '2', 'Source of local code', 'Source of local code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
908 INSERT INTO `marc_subfield_structure` VALUES ('043', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
909 INSERT INTO `marc_subfield_structure` VALUES ('043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
910 INSERT INTO `marc_subfield_structure` VALUES ('043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
911 INSERT INTO `marc_subfield_structure` VALUES ('043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
912 INSERT INTO `marc_subfield_structure` VALUES ('043', 'c', 'ISO code', 'ISO code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
913 INSERT INTO `marc_subfield_structure` VALUES ('044', '2', 'Source of local subentity code', 'Source of local subentity code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
914 INSERT INTO `marc_subfield_structure` VALUES ('044', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
915 INSERT INTO `marc_subfield_structure` VALUES ('044', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
916 INSERT INTO `marc_subfield_structure` VALUES ('044', 'a', 'MARC country code', 'MARC country code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
917 INSERT INTO `marc_subfield_structure` VALUES ('044', 'b', 'Local subentity code', 'Local subentity code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
918 INSERT INTO `marc_subfield_structure` VALUES ('044', 'c', 'ISO country code', 'ISO country code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
919 INSERT INTO `marc_subfield_structure` VALUES ('045', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
920 INSERT INTO `marc_subfield_structure` VALUES ('045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
921 INSERT INTO `marc_subfield_structure` VALUES ('045', 'a', 'Time period code', 'Time period code', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
922 INSERT INTO `marc_subfield_structure` VALUES ('045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
923 INSERT INTO `marc_subfield_structure` VALUES ('045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
924 INSERT INTO `marc_subfield_structure` VALUES ('046', '2', 'Source of date', 'Source of date', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
925 INSERT INTO `marc_subfield_structure` VALUES ('046', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
926 INSERT INTO `marc_subfield_structure` VALUES ('046', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
927 INSERT INTO `marc_subfield_structure` VALUES ('046', 'a', 'Type of date code', 'Type of date code', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
928 INSERT INTO `marc_subfield_structure` VALUES ('046', 'b', 'Date 1 (B.C. date)', 'Date 1 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
929 INSERT INTO `marc_subfield_structure` VALUES ('046', 'c', 'Date 1 (C.E. date)', 'Date 1 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
930 INSERT INTO `marc_subfield_structure` VALUES ('046', 'd', 'Date 2 (B.C. date)', 'Date 2 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
931 INSERT INTO `marc_subfield_structure` VALUES ('046', 'e', 'Date 2 (C.E. date)', 'Date 2 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
932 INSERT INTO `marc_subfield_structure` VALUES ('046', 'j', 'Date resource modified', 'Date resource modified', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
933 INSERT INTO `marc_subfield_structure` VALUES ('046', 'k', 'Beginning or single date created', 'Beginning or single date created', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
934 INSERT INTO `marc_subfield_structure` VALUES ('046', 'l', 'Ending date created', 'Ending date created', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
935 INSERT INTO `marc_subfield_structure` VALUES ('046', 'm', 'Beginning of date valid', 'Beginning of date valid', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
936 INSERT INTO `marc_subfield_structure` VALUES ('046', 'n', 'End of date valid', 'End of date valid', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
937 INSERT INTO `marc_subfield_structure` VALUES ('047', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
938 INSERT INTO `marc_subfield_structure` VALUES ('047', 'a', 'Form of musical composition code', 'Form of musical composition code', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
939 INSERT INTO `marc_subfield_structure` VALUES ('048', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -1, '', '', '');
940 INSERT INTO `marc_subfield_structure` VALUES ('048', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
941 INSERT INTO `marc_subfield_structure` VALUES ('048', 'a', 'Performer or ensemble', 'Performer or ensemble', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
942 INSERT INTO `marc_subfield_structure` VALUES ('048', 'b', 'Soloist', 'Soloist', 1, 0, '', 0, '', '', '', 0, -1, '', '', '');
943 INSERT INTO `marc_subfield_structure` VALUES ('049', 'a', 'Holding library', 'Holding library', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
944 INSERT INTO `marc_subfield_structure` VALUES ('049', 'c', 'Copy statement', 'Copy statement', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
945 INSERT INTO `marc_subfield_structure` VALUES ('049', 'd', 'Definition of bibliographic subdivisions', 'Definition of bibliographic subdivisions', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
946 INSERT INTO `marc_subfield_structure` VALUES ('049', 'l', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
947 INSERT INTO `marc_subfield_structure` VALUES ('049', 'm', 'Missing elements', 'Missing elements', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
948 INSERT INTO `marc_subfield_structure` VALUES ('049', 'n', 'Notes about holdings', 'Notes about holdings', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
949 INSERT INTO `marc_subfield_structure` VALUES ('049', 'o', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
950 INSERT INTO `marc_subfield_structure` VALUES ('049', 'p', 'Secondary bibliographic subdivision', 'Secondary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
951 INSERT INTO `marc_subfield_structure` VALUES ('049', 'q', 'Third bibliographic subdivision', 'Third bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
952 INSERT INTO `marc_subfield_structure` VALUES ('049', 'r', 'Fourth bibliographic subdivision', 'Fourth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
953 INSERT INTO `marc_subfield_structure` VALUES ('049', 's', 'Fifth bibliographic subdivision', 'Fifth bibliographic subdivision', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
954 INSERT INTO `marc_subfield_structure` VALUES ('049', 't', 'Sixth bibliographic subdivision', 'Sixth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
955 INSERT INTO `marc_subfield_structure` VALUES ('049', 'u', 'Seventh bibliographic subdivision', 'Seventh bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
956 INSERT INTO `marc_subfield_structure` VALUES ('049', 'v', 'Primary bibliographic subdivision', 'Primary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
957 INSERT INTO `marc_subfield_structure` VALUES ('049', 'y', 'Inclusive dates of publication or coverage', 'Inclusive dates of publication or coverage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
958 INSERT INTO `marc_subfield_structure` VALUES ('050', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
959 INSERT INTO `marc_subfield_structure` VALUES ('050', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
960 INSERT INTO `marc_subfield_structure` VALUES ('050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
961 INSERT INTO `marc_subfield_structure` VALUES ('050', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, 0, '', '', '');
962 INSERT INTO `marc_subfield_structure` VALUES ('050', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, 0, '', '', '');
963 INSERT INTO `marc_subfield_structure` VALUES ('050', 'd', 'Supplementary class number (MU) [OBSOLETE]', 'Supplementary class number (MU) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
964 INSERT INTO `marc_subfield_structure` VALUES ('051', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
965 INSERT INTO `marc_subfield_structure` VALUES ('051', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
966 INSERT INTO `marc_subfield_structure` VALUES ('051', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
967 INSERT INTO `marc_subfield_structure` VALUES ('051', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
968 INSERT INTO `marc_subfield_structure` VALUES ('052', '2', 'Code Source', 'Code Source', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
969 INSERT INTO `marc_subfield_structure` VALUES ('052', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
970 INSERT INTO `marc_subfield_structure` VALUES ('052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
971 INSERT INTO `marc_subfield_structure` VALUES ('052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
972 INSERT INTO `marc_subfield_structure` VALUES ('052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
973 INSERT INTO `marc_subfield_structure` VALUES ('052', 'c', 'Subject (MP) [OBSOLETE]', 'Subject (MP) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
974 INSERT INTO `marc_subfield_structure` VALUES ('052', 'd', 'Populated place name', 'Populated place name', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
975 INSERT INTO `marc_subfield_structure` VALUES ('055', '2', 'Source of call/class number', 'Source of call/class number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
976 INSERT INTO `marc_subfield_structure` VALUES ('055', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
977 INSERT INTO `marc_subfield_structure` VALUES ('055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
978 INSERT INTO `marc_subfield_structure` VALUES ('055', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
979 INSERT INTO `marc_subfield_structure` VALUES ('055', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
980 INSERT INTO `marc_subfield_structure` VALUES ('060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
981 INSERT INTO `marc_subfield_structure` VALUES ('060', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
982 INSERT INTO `marc_subfield_structure` VALUES ('060', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
983 INSERT INTO `marc_subfield_structure` VALUES ('061', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
984 INSERT INTO `marc_subfield_structure` VALUES ('061', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
985 INSERT INTO `marc_subfield_structure` VALUES ('061', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
986 INSERT INTO `marc_subfield_structure` VALUES ('061', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
987 INSERT INTO `marc_subfield_structure` VALUES ('066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
988 INSERT INTO `marc_subfield_structure` VALUES ('066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
989 INSERT INTO `marc_subfield_structure` VALUES ('066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
990 INSERT INTO `marc_subfield_structure` VALUES ('070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
991 INSERT INTO `marc_subfield_structure` VALUES ('070', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
992 INSERT INTO `marc_subfield_structure` VALUES ('070', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
993 INSERT INTO `marc_subfield_structure` VALUES ('071', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
994 INSERT INTO `marc_subfield_structure` VALUES ('071', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
995 INSERT INTO `marc_subfield_structure` VALUES ('071', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
996 INSERT INTO `marc_subfield_structure` VALUES ('071', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
997 INSERT INTO `marc_subfield_structure` VALUES ('072', '2', 'Source', 'Source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
998 INSERT INTO `marc_subfield_structure` VALUES ('072', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
999 INSERT INTO `marc_subfield_structure` VALUES ('072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1000 INSERT INTO `marc_subfield_structure` VALUES ('072', 'a', 'Subject category code', 'Subject category code', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1001 INSERT INTO `marc_subfield_structure` VALUES ('072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1002 INSERT INTO `marc_subfield_structure` VALUES ('074', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1003 INSERT INTO `marc_subfield_structure` VALUES ('074', 'a', 'GPO item number', 'GPO item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, '', '', '');
1004 INSERT INTO `marc_subfield_structure` VALUES ('074', 'z', 'Canceled/invalid GPO item number', 'Canceled/invalid GPO item number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -1, '', '', '');
1005 INSERT INTO `marc_subfield_structure` VALUES ('080', '2', 'Edition identifier', 'Edition identifier', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1006 INSERT INTO `marc_subfield_structure` VALUES ('080', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1007 INSERT INTO `marc_subfield_structure` VALUES ('080', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1008 INSERT INTO `marc_subfield_structure` VALUES ('080', 'a', 'Universal Decimal Classification number', 'Universal Decimal Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1009 INSERT INTO `marc_subfield_structure` VALUES ('080', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1010 INSERT INTO `marc_subfield_structure` VALUES ('080', 'x', 'Common auxiliary subdivision', 'Common auxiliary subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1011 INSERT INTO `marc_subfield_structure` VALUES ('082', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, 0, '', '', '');
1012 INSERT INTO `marc_subfield_structure` VALUES ('082', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1013 INSERT INTO `marc_subfield_structure` VALUES ('082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1014 INSERT INTO `marc_subfield_structure` VALUES ('082', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, 0, '', '', '');
1015 INSERT INTO `marc_subfield_structure` VALUES ('082', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, 0, '', '', '');
1016 INSERT INTO `marc_subfield_structure` VALUES ('084', '2', 'Source of number', 'Source of number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1017 INSERT INTO `marc_subfield_structure` VALUES ('084', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1018 INSERT INTO `marc_subfield_structure` VALUES ('084', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1019 INSERT INTO `marc_subfield_structure` VALUES ('084', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1020 INSERT INTO `marc_subfield_structure` VALUES ('084', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1021 INSERT INTO `marc_subfield_structure` VALUES ('086', '2', 'Number source', 'Number source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, '', '', '');
1022 INSERT INTO `marc_subfield_structure` VALUES ('086', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1023 INSERT INTO `marc_subfield_structure` VALUES ('086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1024 INSERT INTO `marc_subfield_structure` VALUES ('086', 'a', 'Classification number', 'Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, '', '', '');
1025 INSERT INTO `marc_subfield_structure` VALUES ('086', 'z', 'Canceled/invalid classification number', 'Canceled/invalid classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -1, '', '', '');
1026 INSERT INTO `marc_subfield_structure` VALUES ('087', 'a', 'Report number [OBSOLETE, CAN/MARC]', 'Report number [OBSOLETE, CAN/MARC]', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1027 INSERT INTO `marc_subfield_structure` VALUES ('087', 'z', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
1028 INSERT INTO `marc_subfield_structure` VALUES ('088', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1029 INSERT INTO `marc_subfield_structure` VALUES ('088', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1030 INSERT INTO `marc_subfield_structure` VALUES ('088', 'a', 'Report number', 'Report number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1031 INSERT INTO `marc_subfield_structure` VALUES ('088', 'z', 'Canceled/invalid report number', 'Canceled/invalid report number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, '', '', '');
1032 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
1033 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1034 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1035 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1036 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1037 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1038 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1039 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1040 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1041 INSERT INTO `marc_subfield_structure` VALUES ('09o', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1042 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1043 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1044 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
1045 INSERT INTO `marc_subfield_structure` VALUES ('091', 'a', 'Microfilm shelf location', 'Microfilm shelf location', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1046 INSERT INTO `marc_subfield_structure` VALUES ('092', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1047 INSERT INTO `marc_subfield_structure` VALUES ('092', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1048 INSERT INTO `marc_subfield_structure` VALUES ('092', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1049 INSERT INTO `marc_subfield_structure` VALUES ('092', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1050 INSERT INTO `marc_subfield_structure` VALUES ('092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1051 INSERT INTO `marc_subfield_structure` VALUES ('096', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1052 INSERT INTO `marc_subfield_structure` VALUES ('096', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1053 INSERT INTO `marc_subfield_structure` VALUES ('096', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1054 INSERT INTO `marc_subfield_structure` VALUES ('096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1055 INSERT INTO `marc_subfield_structure` VALUES ('098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1056 INSERT INTO `marc_subfield_structure` VALUES ('098', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1057 INSERT INTO `marc_subfield_structure` VALUES ('098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1058 INSERT INTO `marc_subfield_structure` VALUES ('099', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, -6, '', '', '');
1059 INSERT INTO `marc_subfield_structure` VALUES ('099', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1060 INSERT INTO `marc_subfield_structure` VALUES ('099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
1061 INSERT INTO `marc_subfield_structure` VALUES ('100', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', 0, 0, '', '', '');
1062 INSERT INTO `marc_subfield_structure` VALUES ('100', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', 0, -6, '', '', '');
1063 INSERT INTO `marc_subfield_structure` VALUES ('100', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', 0, -6, '', '', '');
1064 INSERT INTO `marc_subfield_structure` VALUES ('100', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1065 INSERT INTO `marc_subfield_structure` VALUES ('100', 'a', 'Personal name', 'Personal name', 0, 0, 'biblio.author', 1, '', '', '', 0, 0, '', '''100b'',''100c'',''100q'',''100d'',''100e'',''110a'',''110b'',''110c'',''110d'',''110e'',''700a'',''700b'',''700c'',''700q'',''700d'',''700e'',''710a'',''710b'',''710c'',''710d'',''710e'',''720a'',''720e'',''900a''', '');
1066 INSERT INTO `marc_subfield_structure` VALUES ('100', 'b', 'Numeration', 'Numeration', 0, 0, '', 1, '', '', '', 0, -1, '', '', '');
1067 INSERT INTO `marc_subfield_structure` VALUES ('100', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 1, '', '', '', 0, -1, '', '', '');
1068 INSERT INTO `marc_subfield_structure` VALUES ('100', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 1, '', '', '', 0, 0, '', '', '');
1069 INSERT INTO `marc_subfield_structure` VALUES ('100', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', 0, 0, '', '', '');
1070 INSERT INTO `marc_subfield_structure` VALUES ('100', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', 0, -6, '', '', '');
1071 INSERT INTO `marc_subfield_structure` VALUES ('100', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', 0, -6, '', '', '');
1072 INSERT INTO `marc_subfield_structure` VALUES ('100', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 1, '', '', '', 0, -6, '', '', '');
1073 INSERT INTO `marc_subfield_structure` VALUES ('100', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', 0, -6, '', '', '');
1074 INSERT INTO `marc_subfield_structure` VALUES ('100', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', 0, -6, '', '', '');
1075 INSERT INTO `marc_subfield_structure` VALUES ('100', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, '', '', '');
1076 INSERT INTO `marc_subfield_structure` VALUES ('100', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, '', '', '');
1077 INSERT INTO `marc_subfield_structure` VALUES ('100', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 1, '', '', '', 0, 0, '', '', '');
1078 INSERT INTO `marc_subfield_structure` VALUES ('100', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', 0, -6, '', '', '');
1079 INSERT INTO `marc_subfield_structure` VALUES ('100', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', 0, -6, '', '', '');
1080 INSERT INTO `marc_subfield_structure` VALUES ('110', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', NULL, 0, '', '', '');
1081 INSERT INTO `marc_subfield_structure` VALUES ('110', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1082 INSERT INTO `marc_subfield_structure` VALUES ('110', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1083 INSERT INTO `marc_subfield_structure` VALUES ('110', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1084 INSERT INTO `marc_subfield_structure` VALUES ('110', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 1, '', '', '', NULL, 0, '', '', '');
1085 INSERT INTO `marc_subfield_structure` VALUES ('110', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 1, '', '', '', NULL, 0, '', '', '');
1086 INSERT INTO `marc_subfield_structure` VALUES ('110', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 1, '', '', '', NULL, -1, '', '', '');
1087 INSERT INTO `marc_subfield_structure` VALUES ('110', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 1, '', '', '', NULL, -1, '', '', '');
1088 INSERT INTO `marc_subfield_structure` VALUES ('110', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', NULL, 0, '', '', '');
1089 INSERT INTO `marc_subfield_structure` VALUES ('110', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1090 INSERT INTO `marc_subfield_structure` VALUES ('110', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1091 INSERT INTO `marc_subfield_structure` VALUES ('110', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1092 INSERT INTO `marc_subfield_structure` VALUES ('110', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1093 INSERT INTO `marc_subfield_structure` VALUES ('110', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1094 INSERT INTO `marc_subfield_structure` VALUES ('110', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1095 INSERT INTO `marc_subfield_structure` VALUES ('110', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1096 INSERT INTO `marc_subfield_structure` VALUES ('110', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', NULL, -6, '', '', '');
1097 INSERT INTO `marc_subfield_structure` VALUES ('111', '4', 'Relator code', 'Relator code', 1, 0, NULL, 1, NULL, NULL, '', NULL, 0, '', '', '');
1098 INSERT INTO `marc_subfield_structure` VALUES ('111', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1099 INSERT INTO `marc_subfield_structure` VALUES ('111', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1100 INSERT INTO `marc_subfield_structure` VALUES ('111', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1101 INSERT INTO `marc_subfield_structure` VALUES ('111', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, 0, '', '', '');
1102 INSERT INTO `marc_subfield_structure` VALUES ('111', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1103 INSERT INTO `marc_subfield_structure` VALUES ('111', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, 0, '', '', '');
1104 INSERT INTO `marc_subfield_structure` VALUES ('111', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, 0, '', '', '');
1105 INSERT INTO `marc_subfield_structure` VALUES ('111', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 1, NULL, NULL, '', NULL, 0, '', '', '');
1106 INSERT INTO `marc_subfield_structure` VALUES ('111', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1107 INSERT INTO `marc_subfield_structure` VALUES ('111', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1108 INSERT INTO `marc_subfield_structure` VALUES ('111', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1109 INSERT INTO `marc_subfield_structure` VALUES ('111', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1110 INSERT INTO `marc_subfield_structure` VALUES ('111', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1111 INSERT INTO `marc_subfield_structure` VALUES ('111', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1112 INSERT INTO `marc_subfield_structure` VALUES ('111', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1113 INSERT INTO `marc_subfield_structure` VALUES ('111', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1114 INSERT INTO `marc_subfield_structure` VALUES ('111', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1115 INSERT INTO `marc_subfield_structure` VALUES ('130', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1116 INSERT INTO `marc_subfield_structure` VALUES ('130', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1117 INSERT INTO `marc_subfield_structure` VALUES ('130', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1118 INSERT INTO `marc_subfield_structure` VALUES ('130', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, '', '', '');
1119 INSERT INTO `marc_subfield_structure` VALUES ('130', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1120 INSERT INTO `marc_subfield_structure` VALUES ('130', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1121 INSERT INTO `marc_subfield_structure` VALUES ('130', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1122 INSERT INTO `marc_subfield_structure` VALUES ('130', 'h', 'Medium', 'Medium', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1123 INSERT INTO `marc_subfield_structure` VALUES ('130', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1124 INSERT INTO `marc_subfield_structure` VALUES ('130', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, '', '', '');
1125 INSERT INTO `marc_subfield_structure` VALUES ('130', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1126 INSERT INTO `marc_subfield_structure` VALUES ('130', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1127 INSERT INTO `marc_subfield_structure` VALUES ('130', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1128 INSERT INTO `marc_subfield_structure` VALUES ('130', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1129 INSERT INTO `marc_subfield_structure` VALUES ('130', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, '', '', '');
1130 INSERT INTO `marc_subfield_structure` VALUES ('130', 's', 'Version', 'Version', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1131 INSERT INTO `marc_subfield_structure` VALUES ('130', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, '', '', '');
1132 INSERT INTO `marc_subfield_structure` VALUES ('210', '2', 'Source', 'Source', 1, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1133 INSERT INTO `marc_subfield_structure` VALUES ('210', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1134 INSERT INTO `marc_subfield_structure` VALUES ('210', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1135 INSERT INTO `marc_subfield_structure` VALUES ('210', 'a', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1136 INSERT INTO `marc_subfield_structure` VALUES ('210', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1137 INSERT INTO `marc_subfield_structure` VALUES ('211', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1138 INSERT INTO `marc_subfield_structure` VALUES ('211', 'a', 'Acronym or shortened title', 'Acronym or shortened title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1139 INSERT INTO `marc_subfield_structure` VALUES ('212', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1140 INSERT INTO `marc_subfield_structure` VALUES ('212', 'a', 'Variant access title', 'Variant access title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1141 INSERT INTO `marc_subfield_structure` VALUES ('214', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1142 INSERT INTO `marc_subfield_structure` VALUES ('214', 'a', 'Augmented title', 'Augmented title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1143 INSERT INTO `marc_subfield_structure` VALUES ('222', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1144 INSERT INTO `marc_subfield_structure` VALUES ('222', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1145 INSERT INTO `marc_subfield_structure` VALUES ('222', 'a', 'Key title', 'Key title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1146 INSERT INTO `marc_subfield_structure` VALUES ('222', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1147 INSERT INTO `marc_subfield_structure` VALUES ('240', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1148 INSERT INTO `marc_subfield_structure` VALUES ('240', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1149 INSERT INTO `marc_subfield_structure` VALUES ('240', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1150 INSERT INTO `marc_subfield_structure` VALUES ('240', 'a', 'Uniform title', 'Uniform title', 0, 0, 'biblio.unititle', 2, '', '', '', 1, -1, '', '', '');
1151 INSERT INTO `marc_subfield_structure` VALUES ('240', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1152 INSERT INTO `marc_subfield_structure` VALUES ('240', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1153 INSERT INTO `marc_subfield_structure` VALUES ('240', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1154 INSERT INTO `marc_subfield_structure` VALUES ('240', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, '', '', '');
1155 INSERT INTO `marc_subfield_structure` VALUES ('240', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1156 INSERT INTO `marc_subfield_structure` VALUES ('240', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, '', '', '');
1157 INSERT INTO `marc_subfield_structure` VALUES ('240', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1158 INSERT INTO `marc_subfield_structure` VALUES ('240', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1159 INSERT INTO `marc_subfield_structure` VALUES ('240', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1160 INSERT INTO `marc_subfield_structure` VALUES ('240', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1161 INSERT INTO `marc_subfield_structure` VALUES ('240', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -1, '', '', '');
1162 INSERT INTO `marc_subfield_structure` VALUES ('240', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, '', '', '');
1163 INSERT INTO `marc_subfield_structure` VALUES ('241', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1164 INSERT INTO `marc_subfield_structure` VALUES ('241', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1165 INSERT INTO `marc_subfield_structure` VALUES ('242', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1166 INSERT INTO `marc_subfield_structure` VALUES ('242', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1167 INSERT INTO `marc_subfield_structure` VALUES ('242', 'a', 'Title', 'Title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1168 INSERT INTO `marc_subfield_structure` VALUES ('242', 'b', 'Remainder of title', 'Remainder of title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1169 INSERT INTO `marc_subfield_structure` VALUES ('242', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1170 INSERT INTO `marc_subfield_structure` VALUES ('242', 'd', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1171 INSERT INTO `marc_subfield_structure` VALUES ('242', 'e', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1172 INSERT INTO `marc_subfield_structure` VALUES ('242', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1173 INSERT INTO `marc_subfield_structure` VALUES ('242', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1174 INSERT INTO `marc_subfield_structure` VALUES ('242', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1175 INSERT INTO `marc_subfield_structure` VALUES ('242', 'y', 'Language code of translated title', 'Language code of translated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1176 INSERT INTO `marc_subfield_structure` VALUES ('243', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1177 INSERT INTO `marc_subfield_structure` VALUES ('243', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1178 INSERT INTO `marc_subfield_structure` VALUES ('243', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1179 INSERT INTO `marc_subfield_structure` VALUES ('243', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 2, '', '', '', 1, -1, '', '', '');
1180 INSERT INTO `marc_subfield_structure` VALUES ('243', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1181 INSERT INTO `marc_subfield_structure` VALUES ('243', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1182 INSERT INTO `marc_subfield_structure` VALUES ('243', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1183 INSERT INTO `marc_subfield_structure` VALUES ('243', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, '', '', '');
1184 INSERT INTO `marc_subfield_structure` VALUES ('243', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1185 INSERT INTO `marc_subfield_structure` VALUES ('243', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, '', '', '');
1186 INSERT INTO `marc_subfield_structure` VALUES ('243', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1187 INSERT INTO `marc_subfield_structure` VALUES ('243', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1188 INSERT INTO `marc_subfield_structure` VALUES ('243', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1189 INSERT INTO `marc_subfield_structure` VALUES ('243', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, '', '', '');
1190 INSERT INTO `marc_subfield_structure` VALUES ('243', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, '', '', '');
1191 INSERT INTO `marc_subfield_structure` VALUES ('243', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, '', '', '');
1192 INSERT INTO `marc_subfield_structure` VALUES ('245', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1193 INSERT INTO `marc_subfield_structure` VALUES ('245', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1194 INSERT INTO `marc_subfield_structure` VALUES ('245', 'a', 'Title', 'Title', 0, 1, 'biblio.title', 2, '', '', '', NULL, 0, '', '''245b'',''245f'',''245g'',''245k'',''245n'',''245p'',''245s'',''245h'',''246i'',''246a'',''246b'',''246f'',''246g'',''246n'',''246p'',''246h'',''242a'',''242b'',''242n'',''242p'',''242h''', '');
1195 INSERT INTO `marc_subfield_structure` VALUES ('245', 'b', 'Remainder of title', 'Remainder of title', 0, 0, 'bibliosubtitle.subtitle', 2, '', '', '', NULL, 0, '', '', '');
1196 INSERT INTO `marc_subfield_structure` VALUES ('245', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 2, '', '', '', NULL, 0, '', '', '');
1197 INSERT INTO `marc_subfield_structure` VALUES ('245', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series: (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1198 INSERT INTO `marc_subfield_structure` VALUES ('245', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1199 INSERT INTO `marc_subfield_structure` VALUES ('245', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1200 INSERT INTO `marc_subfield_structure` VALUES ('245', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1201 INSERT INTO `marc_subfield_structure` VALUES ('245', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, 0, '', '', '');
1202 INSERT INTO `marc_subfield_structure` VALUES ('245', 'k', 'Form', 'Form', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1203 INSERT INTO `marc_subfield_structure` VALUES ('245', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1204 INSERT INTO `marc_subfield_structure` VALUES ('245', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1205 INSERT INTO `marc_subfield_structure` VALUES ('245', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1206 INSERT INTO `marc_subfield_structure` VALUES ('246', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1207 INSERT INTO `marc_subfield_structure` VALUES ('246', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1208 INSERT INTO `marc_subfield_structure` VALUES ('246', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1209 INSERT INTO `marc_subfield_structure` VALUES ('246', 'a', 'Title proper/short title', 'Title proper/short title', 0, 0, '', 2, '', '', '', NULL, -1, '', '', '');
1210 INSERT INTO `marc_subfield_structure` VALUES ('246', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -1, '', '', '');
1211 INSERT INTO `marc_subfield_structure` VALUES ('246', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1212 INSERT INTO `marc_subfield_structure` VALUES ('246', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1213 INSERT INTO `marc_subfield_structure` VALUES ('246', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1214 INSERT INTO `marc_subfield_structure` VALUES ('246', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1215 INSERT INTO `marc_subfield_structure` VALUES ('246', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -1, '', '', '');
1216 INSERT INTO `marc_subfield_structure` VALUES ('246', 'i', 'Display text', 'Display text', 0, 0, '', 2, '', '', '', NULL, -1, '', '', '');
1217 INSERT INTO `marc_subfield_structure` VALUES ('246', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1218 INSERT INTO `marc_subfield_structure` VALUES ('246', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1219 INSERT INTO `marc_subfield_structure` VALUES ('247', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1220 INSERT INTO `marc_subfield_structure` VALUES ('247', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1221 INSERT INTO `marc_subfield_structure` VALUES ('247', 'a', 'Title', 'Title', 0, 0, '', 2, '', '', '', NULL, -1, '', '', '');
1222 INSERT INTO `marc_subfield_structure` VALUES ('247', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -1, '', '', '');
1223 INSERT INTO `marc_subfield_structure` VALUES ('247', 'd', 'Designation of section (SE) [OBSOLETE]', 'Designation of section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1224 INSERT INTO `marc_subfield_structure` VALUES ('247', 'e', 'Name of part/section (SE) [OBSOLETE]', 'Name of part/section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1225 INSERT INTO `marc_subfield_structure` VALUES ('247', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1226 INSERT INTO `marc_subfield_structure` VALUES ('247', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1227 INSERT INTO `marc_subfield_structure` VALUES ('247', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -1, '', '', '');
1228 INSERT INTO `marc_subfield_structure` VALUES ('247', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1229 INSERT INTO `marc_subfield_structure` VALUES ('247', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1230 INSERT INTO `marc_subfield_structure` VALUES ('247', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1231 INSERT INTO `marc_subfield_structure` VALUES ('250', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1232 INSERT INTO `marc_subfield_structure` VALUES ('250', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1233 INSERT INTO `marc_subfield_structure` VALUES ('250', 'a', 'Edition statement', 'Edition statement', 0, 0, '', 2, '', '', '', NULL, 0, '', '', '');
1234 INSERT INTO `marc_subfield_structure` VALUES ('250', 'b', 'Remainder of edition statement', 'Remainder of edition statement', 0, 0, '', 2, '', '', '', NULL, 0, '', '', '');
1235 INSERT INTO `marc_subfield_structure` VALUES ('254', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1236 INSERT INTO `marc_subfield_structure` VALUES ('254', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1237 INSERT INTO `marc_subfield_structure` VALUES ('254', 'a', 'Musical presentation statement', 'Musical presentation statement', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1238 INSERT INTO `marc_subfield_structure` VALUES ('255', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1239 INSERT INTO `marc_subfield_structure` VALUES ('255', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1240 INSERT INTO `marc_subfield_structure` VALUES ('255', 'a', 'Statement of scale', 'Statement of scale', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1241 INSERT INTO `marc_subfield_structure` VALUES ('255', 'b', 'Statement of projection', 'Statement of projection', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1242 INSERT INTO `marc_subfield_structure` VALUES ('255', 'c', 'Statement of coordinates', 'Statement of coordinates', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1243 INSERT INTO `marc_subfield_structure` VALUES ('255', 'd', 'Statement of zone', 'Statement of zone', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1244 INSERT INTO `marc_subfield_structure` VALUES ('255', 'e', 'Statement of equinox', 'Statement of equinox', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1245 INSERT INTO `marc_subfield_structure` VALUES ('255', 'f', 'Outer G-ring coordinate pairs', 'Outer G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1246 INSERT INTO `marc_subfield_structure` VALUES ('255', 'g', 'Exclusion G-ring coordinate pairs', 'Exclusion G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1247 INSERT INTO `marc_subfield_structure` VALUES ('256', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1248 INSERT INTO `marc_subfield_structure` VALUES ('256', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1249 INSERT INTO `marc_subfield_structure` VALUES ('256', 'a', 'Computer file characteristics', 'Computer file characteristics', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1250 INSERT INTO `marc_subfield_structure` VALUES ('257', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1251 INSERT INTO `marc_subfield_structure` VALUES ('257', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1252 INSERT INTO `marc_subfield_structure` VALUES ('257', 'a', 'Country of producing entity', 'Country of producing entity', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1253 INSERT INTO `marc_subfield_structure` VALUES ('258', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1254 INSERT INTO `marc_subfield_structure` VALUES ('258', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1255 INSERT INTO `marc_subfield_structure` VALUES ('258', 'a', 'Issuing jurisdiction', 'Issuing jurisdiction', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1256 INSERT INTO `marc_subfield_structure` VALUES ('258', 'b', 'Denomination', 'Denomination', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1257 INSERT INTO `marc_subfield_structure` VALUES ('260', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1258 INSERT INTO `marc_subfield_structure` VALUES ('260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1259 INSERT INTO `marc_subfield_structure` VALUES ('260', 'a', 'Place of publication, distribution, etc', 'Place of publication, distribution, etc', 1, 0, 'biblioitems.place', 2, '', '', '', NULL, 0, '', '', '');
1260 INSERT INTO `marc_subfield_structure` VALUES ('260', 'b', 'Name of publisher, distributor, etc', 'Name of publisher, distributor, etc', 1, 0, 'biblioitems.publishercode', 2, '', '', '', NULL, 0, '', '', '');
1261 INSERT INTO `marc_subfield_structure` VALUES ('260', 'c', 'Date of publication, distribution, etc', 'Date of publication, distribution, etc', 1, 0, 'biblio.copyrightdate', 2, '', '', '', NULL, 0, '', '', '');
1262 INSERT INTO `marc_subfield_structure` VALUES ('260', 'd', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1263 INSERT INTO `marc_subfield_structure` VALUES ('260', 'e', 'Place of manufacture', 'Place of manufacture', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1264 INSERT INTO `marc_subfield_structure` VALUES ('260', 'f', 'Manufacturer', 'Manufacturer', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1265 INSERT INTO `marc_subfield_structure` VALUES ('260', 'g', 'Date of manufacture', 'Date of manufacture', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1266 INSERT INTO `marc_subfield_structure` VALUES ('260', 'k', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1267 INSERT INTO `marc_subfield_structure` VALUES ('260', 'l', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1268 INSERT INTO `marc_subfield_structure` VALUES ('261', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1269 INSERT INTO `marc_subfield_structure` VALUES ('261', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1270 INSERT INTO `marc_subfield_structure` VALUES ('261', 'a', 'Producing company', 'Producing company', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1271 INSERT INTO `marc_subfield_structure` VALUES ('261', 'b', 'Releasing company (primary distributor)', 'Releasing company (primary distributor)', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1272 INSERT INTO `marc_subfield_structure` VALUES ('261', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1273 INSERT INTO `marc_subfield_structure` VALUES ('261', 'd', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1274 INSERT INTO `marc_subfield_structure` VALUES ('261', 'e', 'Contractual producer', 'Contractual producer', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1275 INSERT INTO `marc_subfield_structure` VALUES ('261', 'f', 'Place of production, release, etc.', 'Place of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1276 INSERT INTO `marc_subfield_structure` VALUES ('262', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1277 INSERT INTO `marc_subfield_structure` VALUES ('262', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1278 INSERT INTO `marc_subfield_structure` VALUES ('262', 'a', 'Place of production, release, etc.', 'Place of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1279 INSERT INTO `marc_subfield_structure` VALUES ('262', 'b', 'Publisher or trade name', 'Publisher or trade name', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1280 INSERT INTO `marc_subfield_structure` VALUES ('262', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1281 INSERT INTO `marc_subfield_structure` VALUES ('262', 'k', 'Serial identification', 'Serial identification', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1282 INSERT INTO `marc_subfield_structure` VALUES ('262', 'l', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1283 INSERT INTO `marc_subfield_structure` VALUES ('263', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1284 INSERT INTO `marc_subfield_structure` VALUES ('263', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1285 INSERT INTO `marc_subfield_structure` VALUES ('263', 'a', 'Projected publication date', 'Projected publication date', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1286 INSERT INTO `marc_subfield_structure` VALUES ('265', '6', 'Linkage [OBSOLETE]', 'Linkage [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1287 INSERT INTO `marc_subfield_structure` VALUES ('265', 'a', 'Source for acquisition/subscription address [OBSOLETE]', 'Source for acquisition/subscription address [OBSOLETE]', 1, 0, '', 2, '', '', '', NULL, -6, '', '', '');
1288 INSERT INTO `marc_subfield_structure` VALUES ('270', '4', 'Relator code', 'Relator code', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1289 INSERT INTO `marc_subfield_structure` VALUES ('270', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1290 INSERT INTO `marc_subfield_structure` VALUES ('270', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, '', '', '');
1291 INSERT INTO `marc_subfield_structure` VALUES ('270', 'a', 'Address', 'Address', 1, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1292 INSERT INTO `marc_subfield_structure` VALUES ('270', 'b', 'City', 'City', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1293 INSERT INTO `marc_subfield_structure` VALUES ('270', 'c', 'State or province', 'State or province', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1294 INSERT INTO `marc_subfield_structure` VALUES ('270', 'd', 'Country', 'Country', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1295 INSERT INTO `marc_subfield_structure` VALUES ('270', 'e', 'Postal code', 'Postal code', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1296 INSERT INTO `marc_subfield_structure` VALUES ('270', 'f', 'Terms preceding attention name', 'Terms preceding attention name', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1297 INSERT INTO `marc_subfield_structure` VALUES ('270', 'g', 'Attention name', 'Attention name', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1298 INSERT INTO `marc_subfield_structure` VALUES ('270', 'h', 'Attention position', 'Attention position', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1299 INSERT INTO `marc_subfield_structure` VALUES ('270', 'i', 'Type of address', 'Type of address', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1300 INSERT INTO `marc_subfield_structure` VALUES ('270', 'j', 'Specialized telephone number', 'Specialized telephone number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1301 INSERT INTO `marc_subfield_structure` VALUES ('270', 'k', 'Telephone number', 'Telephone number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1302 INSERT INTO `marc_subfield_structure` VALUES ('270', 'l', 'Fax number', 'Fax number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1303 INSERT INTO `marc_subfield_structure` VALUES ('270', 'm', 'Electronic mail address', 'Electronic mail address', 1, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1304 INSERT INTO `marc_subfield_structure` VALUES ('270', 'n', 'TDD or TTY number', 'TDD or TTY number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1305 INSERT INTO `marc_subfield_structure` VALUES ('270', 'p', 'Contact person', 'Contact person', 1, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1306 INSERT INTO `marc_subfield_structure` VALUES ('270', 'q', 'Title of contact person', 'Title of contact person', 1, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1307 INSERT INTO `marc_subfield_structure` VALUES ('270', 'r', 'Hours', 'Hours', 1, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1308 INSERT INTO `marc_subfield_structure` VALUES ('270', 'z', 'Public note', 'Public note', 1, 0, NULL, 2, NULL, NULL, '', NULL, -1, '', '', '');
1309 INSERT INTO `marc_subfield_structure` VALUES ('300', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1310 INSERT INTO `marc_subfield_structure` VALUES ('300', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1311 INSERT INTO `marc_subfield_structure` VALUES ('300', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1312 INSERT INTO `marc_subfield_structure` VALUES ('300', 'a', 'Extent', 'Extent', 1, 1, 'biblioitems.pages', 3, '', '', '', NULL, 0, '', '', '');
1313 INSERT INTO `marc_subfield_structure` VALUES ('300', 'b', 'Other physical details', 'Other physical details', 0, 0, 'biblioitems.illus', 3, '', '', '', 0, 0, '', '', '');
1314 INSERT INTO `marc_subfield_structure` VALUES ('300', 'c', 'Dimensions', 'Dimensions', 1, 0, 'biblioitems.size', 3, '', '', '', NULL, 0, '', '', '');
1315 INSERT INTO `marc_subfield_structure` VALUES ('300', 'd', 'Accompanying material [OBSOLETE, CAN/MARC]', 'Accompanying material [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1316 INSERT INTO `marc_subfield_structure` VALUES ('300', 'e', 'Accompanying material', 'Accompanying material', 0, 0, '', 3, '', '', '', NULL, 0, '', '', '');
1317 INSERT INTO `marc_subfield_structure` VALUES ('300', 'f', 'Type of unit', 'Type of unit', 1, 0, '', 3, '', '', '', NULL, 0, '', '', '');
1318 INSERT INTO `marc_subfield_structure` VALUES ('300', 'g', 'Size of unit', 'Size of unit', 1, 0, '', 3, '', '', '', NULL, 0, '', '', '');
1319 INSERT INTO `marc_subfield_structure` VALUES ('300', 'k', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1320 INSERT INTO `marc_subfield_structure` VALUES ('300', 'm', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1321 INSERT INTO `marc_subfield_structure` VALUES ('300', 'n', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1322 INSERT INTO `marc_subfield_structure` VALUES ('301', 'a', 'Extent of item', 'Extent of item', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1323 INSERT INTO `marc_subfield_structure` VALUES ('301', 'b', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1324 INSERT INTO `marc_subfield_structure` VALUES ('301', 'c', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', NULL, NULL, -6, '', '', '');
1325 INSERT INTO `marc_subfield_structure` VALUES ('301', 'd', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1326 INSERT INTO `marc_subfield_structure` VALUES ('301', 'e', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1327 INSERT INTO `marc_subfield_structure` VALUES ('301', 'f', 'Speed', 'Speed', 0, 0, '', 3, '', '', NULL, NULL, -6, '', '', '');
1328 INSERT INTO `marc_subfield_structure` VALUES ('302', 'a', 'Page count', 'Page count', 0, 0, '', 3, '', '', NULL, NULL, -6, '', '', '');
1329 INSERT INTO `marc_subfield_structure` VALUES ('303', 'a', 'Unit count', 'Unit count', 0, 0, '', 3, '', '', NULL, NULL, -6, '', '', '');
1330 INSERT INTO `marc_subfield_structure` VALUES ('304', 'a', 'Linear footage', 'Linear footage', 0, 0, '', 3, '', '', NULL, NULL, -6, '', '', '');
1331 INSERT INTO `marc_subfield_structure` VALUES ('305', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1332 INSERT INTO `marc_subfield_structure` VALUES ('305', 'a', 'Extent', 'Extent', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1333 INSERT INTO `marc_subfield_structure` VALUES ('305', 'b', 'Other physical details', 'Other physical details', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1334 INSERT INTO `marc_subfield_structure` VALUES ('305', 'c', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', NULL, NULL, -6, '', '', '');
1335 INSERT INTO `marc_subfield_structure` VALUES ('305', 'd', 'Microgroove or standard', 'Microgroove or standard', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1336 INSERT INTO `marc_subfield_structure` VALUES ('305', 'e', 'Stereophonic, monaural', 'Stereophonic, monaural', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1337 INSERT INTO `marc_subfield_structure` VALUES ('305', 'f', 'Number of tracks', 'Number of tracks', 0, 0, '', 3, '', '', NULL, NULL, -6, '', '', '');
1338 INSERT INTO `marc_subfield_structure` VALUES ('305', 'm', 'Serial identification', 'Serial identification', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1339 INSERT INTO `marc_subfield_structure` VALUES ('305', 'n', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 3, '', '', NULL, NULL, -6, '', '', '');
1340 INSERT INTO `marc_subfield_structure` VALUES ('306', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1341 INSERT INTO `marc_subfield_structure` VALUES ('306', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1342 INSERT INTO `marc_subfield_structure` VALUES ('306', 'a', 'Playing time', 'Playing time', 0, 0, '', 3, '', '', '', NULL, 0, '', '', '');
1343 INSERT INTO `marc_subfield_structure` VALUES ('307', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1344 INSERT INTO `marc_subfield_structure` VALUES ('307', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1345 INSERT INTO `marc_subfield_structure` VALUES ('307', 'a', 'Hours', 'Hours', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1346 INSERT INTO `marc_subfield_structure` VALUES ('307', 'b', 'Additional information', 'Additional information', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1347 INSERT INTO `marc_subfield_structure` VALUES ('308', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1348 INSERT INTO `marc_subfield_structure` VALUES ('308', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1349 INSERT INTO `marc_subfield_structure` VALUES ('308', 'a', 'Number of reels', 'Number of reels', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1350 INSERT INTO `marc_subfield_structure` VALUES ('308', 'b', 'Footage', 'Footage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1351 INSERT INTO `marc_subfield_structure` VALUES ('308', 'c', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1352 INSERT INTO `marc_subfield_structure` VALUES ('308', 'd', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1353 INSERT INTO `marc_subfield_structure` VALUES ('308', 'e', 'Width', 'Width', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1354 INSERT INTO `marc_subfield_structure` VALUES ('308', 'f', 'Presentation format', 'Presentation format', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1355 INSERT INTO `marc_subfield_structure` VALUES ('310', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1356 INSERT INTO `marc_subfield_structure` VALUES ('310', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1357 INSERT INTO `marc_subfield_structure` VALUES ('310', 'a', 'Current publication frequency', 'Current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -1, '', '', '');
1358 INSERT INTO `marc_subfield_structure` VALUES ('310', 'b', 'Date of current publication frequency', 'Date of current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1359 INSERT INTO `marc_subfield_structure` VALUES ('315', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1360 INSERT INTO `marc_subfield_structure` VALUES ('315', 'a', 'Frequency', 'Frequency', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1361 INSERT INTO `marc_subfield_structure` VALUES ('315', 'b', 'Dates of frequency', 'Dates of frequency', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1362 INSERT INTO `marc_subfield_structure` VALUES ('321', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1363 INSERT INTO `marc_subfield_structure` VALUES ('321', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1364 INSERT INTO `marc_subfield_structure` VALUES ('321', 'a', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1365 INSERT INTO `marc_subfield_structure` VALUES ('321', 'b', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1366 INSERT INTO `marc_subfield_structure` VALUES ('340', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1367 INSERT INTO `marc_subfield_structure` VALUES ('340', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1368 INSERT INTO `marc_subfield_structure` VALUES ('340', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1369 INSERT INTO `marc_subfield_structure` VALUES ('340', 'a', 'Material base and configuration', 'Material base and configuration', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1370 INSERT INTO `marc_subfield_structure` VALUES ('340', 'b', 'Dimensions', 'Dimensions', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1371 INSERT INTO `marc_subfield_structure` VALUES ('340', 'c', 'Materials applied to surface', 'Materials applied to surface', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1372 INSERT INTO `marc_subfield_structure` VALUES ('340', 'd', 'Information recording technique', 'Information recording technique', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1373 INSERT INTO `marc_subfield_structure` VALUES ('340', 'e', 'Support', 'Support', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1374 INSERT INTO `marc_subfield_structure` VALUES ('340', 'f', 'Production rate/ratio', 'Production rate/ratio', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1375 INSERT INTO `marc_subfield_structure` VALUES ('340', 'h', 'Location within medium', 'Location within medium', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1376 INSERT INTO `marc_subfield_structure` VALUES ('340', 'i', 'Technical specifications of medium', 'Technical specifications of medium', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1377 INSERT INTO `marc_subfield_structure` VALUES ('342', '2', 'Reference method used', 'Reference method used', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1378 INSERT INTO `marc_subfield_structure` VALUES ('342', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1379 INSERT INTO `marc_subfield_structure` VALUES ('342', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1380 INSERT INTO `marc_subfield_structure` VALUES ('342', 'a', 'Name', 'Name', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1381 INSERT INTO `marc_subfield_structure` VALUES ('342', 'b', 'Coordinate or distance units', 'Coordinate or distance units', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1382 INSERT INTO `marc_subfield_structure` VALUES ('342', 'c', 'Latitude resolution', 'Latitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1383 INSERT INTO `marc_subfield_structure` VALUES ('342', 'd', 'Longitude resolution', 'Longitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1384 INSERT INTO `marc_subfield_structure` VALUES ('342', 'e', 'Standard parallel or oblique line latitude', 'Standard parallel or oblique line latitude', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1385 INSERT INTO `marc_subfield_structure` VALUES ('342', 'f', 'Oblique line longitude', 'Oblique line longitude', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1386 INSERT INTO `marc_subfield_structure` VALUES ('342', 'g', 'Longitude of central meridian or projection center', 'Longitude of central meridian or projection center', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1387 INSERT INTO `marc_subfield_structure` VALUES ('342', 'h', 'Latitude of projection origin or projection center', 'Latitude of projection origin or projection center', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1388 INSERT INTO `marc_subfield_structure` VALUES ('342', 'i', 'False easting', 'False easting', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1389 INSERT INTO `marc_subfield_structure` VALUES ('342', 'j', 'False northing', 'False northing', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1390 INSERT INTO `marc_subfield_structure` VALUES ('342', 'k', 'Scale factor', 'Scale factor', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1391 INSERT INTO `marc_subfield_structure` VALUES ('342', 'l', 'Height of perspective point above surface', 'Height of perspective point above surface', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1392 INSERT INTO `marc_subfield_structure` VALUES ('342', 'm', 'Azimuthal angle', 'Azimuthal angle', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1393 INSERT INTO `marc_subfield_structure` VALUES ('342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole', 'Azimuth measure point longitude or straight vertical longitude from pole', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1394 INSERT INTO `marc_subfield_structure` VALUES ('342', 'o', 'Landsat number and path number', 'Landsat number and path number', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1395 INSERT INTO `marc_subfield_structure` VALUES ('342', 'p', 'Zone identifier', 'Zone identifier', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1396 INSERT INTO `marc_subfield_structure` VALUES ('342', 'q', 'Ellipsoid name', 'Ellipsoid name', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1397 INSERT INTO `marc_subfield_structure` VALUES ('342', 'r', 'Semi-major axis', 'Semi-major axis', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1398 INSERT INTO `marc_subfield_structure` VALUES ('342', 's', 'Denominator of flattening ratio', 'Denominator of flattening ratio', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1399 INSERT INTO `marc_subfield_structure` VALUES ('342', 't', 'Vertical resolution', 'Vertical resolution', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1400 INSERT INTO `marc_subfield_structure` VALUES ('342', 'u', 'Vertical encoding method', 'Vertical encoding method', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1401 INSERT INTO `marc_subfield_structure` VALUES ('342', 'v', 'Local planar, local, or other projection or grid description', 'Local planar, local, or other projection or grid description', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1402 INSERT INTO `marc_subfield_structure` VALUES ('342', 'w', 'Local planar or local georeference information', 'Local planar or local georeference information', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1403 INSERT INTO `marc_subfield_structure` VALUES ('343', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1404 INSERT INTO `marc_subfield_structure` VALUES ('343', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1405 INSERT INTO `marc_subfield_structure` VALUES ('343', 'a', 'Planar coordinate encoding method', 'Planar coordinate encoding method', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1406 INSERT INTO `marc_subfield_structure` VALUES ('343', 'b', 'Planar distance units', 'Planar distance units', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1407 INSERT INTO `marc_subfield_structure` VALUES ('343', 'c', 'Abscissa resolution', 'Abscissa resolution', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1408 INSERT INTO `marc_subfield_structure` VALUES ('343', 'd', 'Ordinate resolution', 'Ordinate resolution', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1409 INSERT INTO `marc_subfield_structure` VALUES ('343', 'e', 'Distance resolution', 'Distance resolution', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1410 INSERT INTO `marc_subfield_structure` VALUES ('343', 'f', 'Bearing resolution', 'Bearing resolution', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1411 INSERT INTO `marc_subfield_structure` VALUES ('343', 'g', 'Bearing unit', 'Bearing unit', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1412 INSERT INTO `marc_subfield_structure` VALUES ('343', 'h', 'Bearing reference direction', 'Bearing reference direction', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1413 INSERT INTO `marc_subfield_structure` VALUES ('343', 'i', 'Bearing reference meridian', 'Bearing reference meridian', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1414 INSERT INTO `marc_subfield_structure` VALUES ('350', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1415 INSERT INTO `marc_subfield_structure` VALUES ('350', 'a', 'Price', 'Price', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1416 INSERT INTO `marc_subfield_structure` VALUES ('350', 'b', 'Form of issue', 'Form of issue', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1417 INSERT INTO `marc_subfield_structure` VALUES ('351', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1418 INSERT INTO `marc_subfield_structure` VALUES ('351', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1419 INSERT INTO `marc_subfield_structure` VALUES ('351', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1420 INSERT INTO `marc_subfield_structure` VALUES ('351', 'a', 'Organization', 'Organization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1421 INSERT INTO `marc_subfield_structure` VALUES ('351', 'b', 'Arrangement', 'Arrangement', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1422 INSERT INTO `marc_subfield_structure` VALUES ('351', 'c', 'Hierarchical level', 'Hierarchical level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1423 INSERT INTO `marc_subfield_structure` VALUES ('352', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1424 INSERT INTO `marc_subfield_structure` VALUES ('352', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1425 INSERT INTO `marc_subfield_structure` VALUES ('352', 'a', 'Direct reference method', 'Direct reference method', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1426 INSERT INTO `marc_subfield_structure` VALUES ('352', 'b', 'Object type', 'Object type', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1427 INSERT INTO `marc_subfield_structure` VALUES ('352', 'c', 'Object count', 'Object count', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1428 INSERT INTO `marc_subfield_structure` VALUES ('352', 'd', 'Row count', 'Row count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1429 INSERT INTO `marc_subfield_structure` VALUES ('352', 'e', 'Column count', 'Column count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1430 INSERT INTO `marc_subfield_structure` VALUES ('352', 'f', 'Vertical count', 'Vertical count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1431 INSERT INTO `marc_subfield_structure` VALUES ('352', 'g', 'VPF topology level', 'VPF topology level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1432 INSERT INTO `marc_subfield_structure` VALUES ('352', 'i', 'Indirect reference description', 'Indirect reference description', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1433 INSERT INTO `marc_subfield_structure` VALUES ('355', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1434 INSERT INTO `marc_subfield_structure` VALUES ('355', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1435 INSERT INTO `marc_subfield_structure` VALUES ('355', 'a', 'Security classification', 'Security classification', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1436 INSERT INTO `marc_subfield_structure` VALUES ('355', 'b', 'Handling instructions', 'Handling instructions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1437 INSERT INTO `marc_subfield_structure` VALUES ('355', 'c', 'External dissemination information', 'External dissemination information', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1438 INSERT INTO `marc_subfield_structure` VALUES ('355', 'd', 'Downgrading or declassification event', 'Downgrading or declassification event', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1439 INSERT INTO `marc_subfield_structure` VALUES ('355', 'e', 'Classification system', 'Classification system', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1440 INSERT INTO `marc_subfield_structure` VALUES ('355', 'f', 'Country of origin code', 'Country of origin code', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1441 INSERT INTO `marc_subfield_structure` VALUES ('355', 'g', 'Downgrading date', 'Downgrading date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1442 INSERT INTO `marc_subfield_structure` VALUES ('355', 'h', 'Declassification date', 'Declassification date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1443 INSERT INTO `marc_subfield_structure` VALUES ('355', 'j', 'Authorization', 'Authorization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1444 INSERT INTO `marc_subfield_structure` VALUES ('357', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1445 INSERT INTO `marc_subfield_structure` VALUES ('357', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1446 INSERT INTO `marc_subfield_structure` VALUES ('357', 'a', 'Originator control term', 'Originator control term', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1447 INSERT INTO `marc_subfield_structure` VALUES ('357', 'b', 'Originating agency', 'Originating agency', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1448 INSERT INTO `marc_subfield_structure` VALUES ('357', 'c', 'Authorized recipients of material', 'Authorized recipients of material', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1449 INSERT INTO `marc_subfield_structure` VALUES ('357', 'g', 'Other restrictions', 'Other restrictions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1450 INSERT INTO `marc_subfield_structure` VALUES ('359', 'a', 'Rental price', 'Rental price', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1451 INSERT INTO `marc_subfield_structure` VALUES ('362', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1452 INSERT INTO `marc_subfield_structure` VALUES ('362', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1453 INSERT INTO `marc_subfield_structure` VALUES ('362', 'a', 'Dates of publication and/or sequential designation', 'Dates of publication and/or sequential designation', 0, 0, 'biblioitems.volumedesc', 3, NULL, NULL, '', NULL, -1, '', '', '');
1454 INSERT INTO `marc_subfield_structure` VALUES ('362', 'z', 'Source of information', 'Source of information', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, '', '', '');
1455 INSERT INTO `marc_subfield_structure` VALUES ('365', '2', 'Source of price type code', 'Source of price type code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1456 INSERT INTO `marc_subfield_structure` VALUES ('365', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1457 INSERT INTO `marc_subfield_structure` VALUES ('365', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1458 INSERT INTO `marc_subfield_structure` VALUES ('365', 'a', 'Price type code', 'Price type code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1459 INSERT INTO `marc_subfield_structure` VALUES ('365', 'b', 'Price amount', 'Price amount', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1460 INSERT INTO `marc_subfield_structure` VALUES ('365', 'c', 'Price type code', 'Price type code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1461 INSERT INTO `marc_subfield_structure` VALUES ('365', 'd', 'Unit of pricing', 'Unit of pricing', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1462 INSERT INTO `marc_subfield_structure` VALUES ('365', 'e', 'Price note', 'Price note', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1463 INSERT INTO `marc_subfield_structure` VALUES ('365', 'f', 'Price effective from', 'Price effective from', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1464 INSERT INTO `marc_subfield_structure` VALUES ('365', 'g', 'Price effective until', 'Price effective until', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1465 INSERT INTO `marc_subfield_structure` VALUES ('365', 'h', 'Tax rate 1', 'Tax rate 1', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1466 INSERT INTO `marc_subfield_structure` VALUES ('365', 'i', 'Tax rate 2', 'Tax rate 2', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1467 INSERT INTO `marc_subfield_structure` VALUES ('365', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1468 INSERT INTO `marc_subfield_structure` VALUES ('365', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1469 INSERT INTO `marc_subfield_structure` VALUES ('365', 'm', 'Identification of pricing entity', 'Identification of pricing entity', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1470 INSERT INTO `marc_subfield_structure` VALUES ('366', '2', 'Source of availability status code', 'Source of availability status code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1471 INSERT INTO `marc_subfield_structure` VALUES ('366', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1472 INSERT INTO `marc_subfield_structure` VALUES ('366', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, '', '', '');
1473 INSERT INTO `marc_subfield_structure` VALUES ('366', 'a', 'Publishers\' compressed title identification', 'Publishers\' compressed title identification', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1474 INSERT INTO `marc_subfield_structure` VALUES ('366', 'b', 'Detailed date of publication', 'Detailed date of publication', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1475 INSERT INTO `marc_subfield_structure` VALUES ('366', 'c', 'Availability status code', 'Availability status code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1476 INSERT INTO `marc_subfield_structure` VALUES ('366', 'd', 'Expected next availability date', 'Expected next availability date', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1477 INSERT INTO `marc_subfield_structure` VALUES ('366', 'e', 'Note', 'Note', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1478 INSERT INTO `marc_subfield_structure` VALUES ('366', 'f', 'Publishers\' discount category', 'Publishers\' discount category', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1479 INSERT INTO `marc_subfield_structure` VALUES ('366', 'g', 'Date made out of print', 'Date made out of print', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1480 INSERT INTO `marc_subfield_structure` VALUES ('366', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1481 INSERT INTO `marc_subfield_structure` VALUES ('366', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1482 INSERT INTO `marc_subfield_structure` VALUES ('366', 'm', 'Identification of agency', 'Identification of agency', 0, 0, '', 3, '', '', '', NULL, -1, '', '', '');
1483 INSERT INTO `marc_subfield_structure` VALUES ('400', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', 0, -6, '', '', '');
1484 INSERT INTO `marc_subfield_structure` VALUES ('400', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1485 INSERT INTO `marc_subfield_structure` VALUES ('400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', 0, -6, '', '', '');
1486 INSERT INTO `marc_subfield_structure` VALUES ('400', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1487 INSERT INTO `marc_subfield_structure` VALUES ('400', 'a', 'Personal name', 'Personal name', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1488 INSERT INTO `marc_subfield_structure` VALUES ('400', 'b', 'Numeration', 'Numeration', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1489 INSERT INTO `marc_subfield_structure` VALUES ('400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 4, '', '', '', 0, -6, '', '', '');
1490 INSERT INTO `marc_subfield_structure` VALUES ('400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1491 INSERT INTO `marc_subfield_structure` VALUES ('400', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', 0, -6, '', '', '');
1492 INSERT INTO `marc_subfield_structure` VALUES ('400', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1493 INSERT INTO `marc_subfield_structure` VALUES ('400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1494 INSERT INTO `marc_subfield_structure` VALUES ('400', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', 0, -6, '', '', '');
1495 INSERT INTO `marc_subfield_structure` VALUES ('400', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1496 INSERT INTO `marc_subfield_structure` VALUES ('400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, '', '', '');
1497 INSERT INTO `marc_subfield_structure` VALUES ('400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, '', '', '');
1498 INSERT INTO `marc_subfield_structure` VALUES ('400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1499 INSERT INTO `marc_subfield_structure` VALUES ('400', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1500 INSERT INTO `marc_subfield_structure` VALUES ('400', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '');
1501 INSERT INTO `marc_subfield_structure` VALUES ('400', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1502 INSERT INTO `marc_subfield_structure` VALUES ('400', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1503 INSERT INTO `marc_subfield_structure` VALUES ('410', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1504 INSERT INTO `marc_subfield_structure` VALUES ('410', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1505 INSERT INTO `marc_subfield_structure` VALUES ('410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1506 INSERT INTO `marc_subfield_structure` VALUES ('410', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
1507 INSERT INTO `marc_subfield_structure` VALUES ('410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1508 INSERT INTO `marc_subfield_structure` VALUES ('410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1509 INSERT INTO `marc_subfield_structure` VALUES ('410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1510 INSERT INTO `marc_subfield_structure` VALUES ('410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1511 INSERT INTO `marc_subfield_structure` VALUES ('410', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1512 INSERT INTO `marc_subfield_structure` VALUES ('410', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1513 INSERT INTO `marc_subfield_structure` VALUES ('410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1514 INSERT INTO `marc_subfield_structure` VALUES ('410', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1515 INSERT INTO `marc_subfield_structure` VALUES ('410', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1516 INSERT INTO `marc_subfield_structure` VALUES ('410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1517 INSERT INTO `marc_subfield_structure` VALUES ('410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1518 INSERT INTO `marc_subfield_structure` VALUES ('410', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1519 INSERT INTO `marc_subfield_structure` VALUES ('410', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1520 INSERT INTO `marc_subfield_structure` VALUES ('410', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1521 INSERT INTO `marc_subfield_structure` VALUES ('410', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1522 INSERT INTO `marc_subfield_structure` VALUES ('411', '4', 'Relator code', 'Relator code', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1523 INSERT INTO `marc_subfield_structure` VALUES ('411', '6', 'Linkage', 'Linkage', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1524 INSERT INTO `marc_subfield_structure` VALUES ('411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1525 INSERT INTO `marc_subfield_structure` VALUES ('411', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1526 INSERT INTO `marc_subfield_structure` VALUES ('411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1527 INSERT INTO `marc_subfield_structure` VALUES ('411', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1528 INSERT INTO `marc_subfield_structure` VALUES ('411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1529 INSERT INTO `marc_subfield_structure` VALUES ('411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1530 INSERT INTO `marc_subfield_structure` VALUES ('411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1531 INSERT INTO `marc_subfield_structure` VALUES ('411', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1532 INSERT INTO `marc_subfield_structure` VALUES ('411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1533 INSERT INTO `marc_subfield_structure` VALUES ('411', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1534 INSERT INTO `marc_subfield_structure` VALUES ('411', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1535 INSERT INTO `marc_subfield_structure` VALUES ('411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1536 INSERT INTO `marc_subfield_structure` VALUES ('411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1537 INSERT INTO `marc_subfield_structure` VALUES ('411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1538 INSERT INTO `marc_subfield_structure` VALUES ('411', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1539 INSERT INTO `marc_subfield_structure` VALUES ('411', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, '', '', '');
1540 INSERT INTO `marc_subfield_structure` VALUES ('411', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1541 INSERT INTO `marc_subfield_structure` VALUES ('411', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1542 INSERT INTO `marc_subfield_structure` VALUES ('440', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1543 INSERT INTO `marc_subfield_structure` VALUES ('440', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1544 INSERT INTO `marc_subfield_structure` VALUES ('440', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1545 INSERT INTO `marc_subfield_structure` VALUES ('440', 'a', 'Title', 'Title', 0, 0, 'biblio.seriestitle', 4, '', '', '', NULL, 0, '', '', '');
1546 INSERT INTO `marc_subfield_structure` VALUES ('440', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 'biblioitems.number', 4, '', '', '', NULL, 0, '', '', '');
1547 INSERT INTO `marc_subfield_structure` VALUES ('440', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, 0, '', '', '');
1548 INSERT INTO `marc_subfield_structure` VALUES ('440', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, 'biblioitems.volume', 4, '', '', '', NULL, 0, '', '', '');
1549 INSERT INTO `marc_subfield_structure` VALUES ('440', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, 0, '', '', '');
1550 INSERT INTO `marc_subfield_structure` VALUES ('490', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1551 INSERT INTO `marc_subfield_structure` VALUES ('490', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', NULL, NULL, -6, '', '', '');
1552 INSERT INTO `marc_subfield_structure` VALUES ('490', 'a', 'Series statement', 'Series statement', 1, 0, '', 4, '', '', '', NULL, -1, '', '', '');
1553 INSERT INTO `marc_subfield_structure` VALUES ('490', 'l', 'Library of Congress call number', 'Library of Congress call number', 0, 0, '', 4, '', '', '', NULL, -6, '', '', '');
1554 INSERT INTO `marc_subfield_structure` VALUES ('490', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 1, 0, '', 4, '', '', '', NULL, -1, '', '', '');
1555 INSERT INTO `marc_subfield_structure` VALUES ('490', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -1, '', '', '');
1556 INSERT INTO `marc_subfield_structure` VALUES ('500', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1557 INSERT INTO `marc_subfield_structure` VALUES ('500', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1558 INSERT INTO `marc_subfield_structure` VALUES ('500', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1559 INSERT INTO `marc_subfield_structure` VALUES ('500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1560 INSERT INTO `marc_subfield_structure` VALUES ('500', 'a', 'General note', 'General note', 0, 0, 'biblio.notes', 5, '', '', '', NULL, 0, '', '', '');
1561 INSERT INTO `marc_subfield_structure` VALUES ('500', 'l', 'Library of Congress call number (SE) [OBSOLETE]', 'Library of Congress call number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1562 INSERT INTO `marc_subfield_structure` VALUES ('500', 'n', 'n (RLIN) [OBSOLETE]', 'n (RLIN) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1563 INSERT INTO `marc_subfield_structure` VALUES ('500', 'x', 'International Standard Serial Number (SE) [OBSOLETE]', 'International Standard Serial Number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1564 INSERT INTO `marc_subfield_structure` VALUES ('500', 'z', 'Source of note information (AM SE) [OBSOLETE]', 'Source of note information (AM SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1565 INSERT INTO `marc_subfield_structure` VALUES ('501', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1566 INSERT INTO `marc_subfield_structure` VALUES ('501', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1567 INSERT INTO `marc_subfield_structure` VALUES ('501', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1568 INSERT INTO `marc_subfield_structure` VALUES ('501', 'a', 'With note', 'With note', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1569 INSERT INTO `marc_subfield_structure` VALUES ('502', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1570 INSERT INTO `marc_subfield_structure` VALUES ('502', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1571 INSERT INTO `marc_subfield_structure` VALUES ('502', 'a', 'Dissertation note', 'Dissertation note', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1572 INSERT INTO `marc_subfield_structure` VALUES ('503', '8', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1573 INSERT INTO `marc_subfield_structure` VALUES ('503', 'a', 'Bibliographic history note', 'Bibliographic history note', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1574 INSERT INTO `marc_subfield_structure` VALUES ('504', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1575 INSERT INTO `marc_subfield_structure` VALUES ('504', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1576 INSERT INTO `marc_subfield_structure` VALUES ('504', 'a', 'Bibliography, etc', 'Bibliography, etc', 0, 0, '', 5, NULL, NULL, '', NULL, 0, '', '', '');
1577 INSERT INTO `marc_subfield_structure` VALUES ('504', 'b', 'Number of references', 'Number of references', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1578 INSERT INTO `marc_subfield_structure` VALUES ('505', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1579 INSERT INTO `marc_subfield_structure` VALUES ('505', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1580 INSERT INTO `marc_subfield_structure` VALUES ('505', 'a', 'Formatted contents note', 'Formatted contents note', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1581 INSERT INTO `marc_subfield_structure` VALUES ('505', 'g', 'Miscellaneous information', 'Miscellaneous information', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1582 INSERT INTO `marc_subfield_structure` VALUES ('505', 'r', 'Statement of responsibility', 'Statement of responsibility', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1583 INSERT INTO `marc_subfield_structure` VALUES ('505', 't', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1584 INSERT INTO `marc_subfield_structure` VALUES ('505', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, 0, '', '', '');
1585 INSERT INTO `marc_subfield_structure` VALUES ('506', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1586 INSERT INTO `marc_subfield_structure` VALUES ('506', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1587 INSERT INTO `marc_subfield_structure` VALUES ('506', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1588 INSERT INTO `marc_subfield_structure` VALUES ('506', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1589 INSERT INTO `marc_subfield_structure` VALUES ('506', 'a', 'Terms governing access', 'Terms governing access', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1590 INSERT INTO `marc_subfield_structure` VALUES ('506', 'b', 'Jurisdiction', 'Jurisdiction', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1591 INSERT INTO `marc_subfield_structure` VALUES ('506', 'c', 'Physical access provisions', 'Physical access provisions', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1592 INSERT INTO `marc_subfield_structure` VALUES ('506', 'd', 'Authorized users', 'Authorized users', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1593 INSERT INTO `marc_subfield_structure` VALUES ('506', 'e', 'Authorization', 'Authorization', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1594 INSERT INTO `marc_subfield_structure` VALUES ('506', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, '', '', '');
1595 INSERT INTO `marc_subfield_structure` VALUES ('507', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1596 INSERT INTO `marc_subfield_structure` VALUES ('507', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1597 INSERT INTO `marc_subfield_structure` VALUES ('507', 'a', 'Representative fraction of scale note', 'Representative fraction of scale note', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1598 INSERT INTO `marc_subfield_structure` VALUES ('507', 'b', 'Remainder of scale note', 'Remainder of scale note', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1599 INSERT INTO `marc_subfield_structure` VALUES ('508', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1600 INSERT INTO `marc_subfield_structure` VALUES ('508', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1601 INSERT INTO `marc_subfield_structure` VALUES ('508', 'a', 'Creation/production credits note', 'Creation/production credits note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1602 INSERT INTO `marc_subfield_structure` VALUES ('509', 'a', 'Informal Notes', 'Informal Notes', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1603 INSERT INTO `marc_subfield_structure` VALUES ('510', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1604 INSERT INTO `marc_subfield_structure` VALUES ('510', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1605 INSERT INTO `marc_subfield_structure` VALUES ('510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1606 INSERT INTO `marc_subfield_structure` VALUES ('510', 'a', 'Name of source', 'Name of source', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1607 INSERT INTO `marc_subfield_structure` VALUES ('510', 'b', 'Coverage of source', 'Coverage of source', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1608 INSERT INTO `marc_subfield_structure` VALUES ('510', 'c', 'Location within source', 'Location within source', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1609 INSERT INTO `marc_subfield_structure` VALUES ('510', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1610 INSERT INTO `marc_subfield_structure` VALUES ('511', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1611 INSERT INTO `marc_subfield_structure` VALUES ('511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1612 INSERT INTO `marc_subfield_structure` VALUES ('511', 'a', 'Participant or performer note', 'Participant or performer note', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1613 INSERT INTO `marc_subfield_structure` VALUES ('512', '6', 'Linkage', 'Linkage', 0, 0, '', -1, '', '', '', NULL, -6, '', '', '');
1614 INSERT INTO `marc_subfield_structure` VALUES ('512', 'a', 'Earlier or later volumes separately cataloged note', 'Earlier or later volumes separately cataloged note', 0, 0, '', -1, '', '', '', NULL, -6, '', '', '');
1615 INSERT INTO `marc_subfield_structure` VALUES ('513', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1616 INSERT INTO `marc_subfield_structure` VALUES ('513', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1617 INSERT INTO `marc_subfield_structure` VALUES ('513', 'a', 'Type of report', 'Type of report', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1618 INSERT INTO `marc_subfield_structure` VALUES ('513', 'b', 'Period covered', 'Period covered', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1619 INSERT INTO `marc_subfield_structure` VALUES ('514', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1620 INSERT INTO `marc_subfield_structure` VALUES ('514', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1621 INSERT INTO `marc_subfield_structure` VALUES ('514', 'a', 'Attribute accuracy report', 'Attribute accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1622 INSERT INTO `marc_subfield_structure` VALUES ('514', 'b', 'Attribute accuracy value', 'Attribute accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1623 INSERT INTO `marc_subfield_structure` VALUES ('514', 'c', 'Attribute accuracy explanation', 'Attribute accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1624 INSERT INTO `marc_subfield_structure` VALUES ('514', 'd', 'Logical consistency report', 'Logical consistency report', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1625 INSERT INTO `marc_subfield_structure` VALUES ('514', 'e', 'Completeness report', 'Completeness report', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1626 INSERT INTO `marc_subfield_structure` VALUES ('514', 'f', 'Horizontal position accuracy report', 'Horizontal position accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1627 INSERT INTO `marc_subfield_structure` VALUES ('514', 'g', 'Horizontal position accuracy value', 'Horizontal position accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1628 INSERT INTO `marc_subfield_structure` VALUES ('514', 'h', 'Horizontal position accuracy explanation', 'Horizontal position accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1629 INSERT INTO `marc_subfield_structure` VALUES ('514', 'i', 'Vertical positional accuracy report', 'Vertical positional accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1630 INSERT INTO `marc_subfield_structure` VALUES ('514', 'j', 'Vertical positional accuracy value', 'Vertical positional accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1631 INSERT INTO `marc_subfield_structure` VALUES ('514', 'k', 'Vertical positional accuracy explanation', 'Vertical positional accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1632 INSERT INTO `marc_subfield_structure` VALUES ('514', 'm', 'Cloud cover', 'Cloud cover', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1633 INSERT INTO `marc_subfield_structure` VALUES ('514', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, '', '', '');
1634 INSERT INTO `marc_subfield_structure` VALUES ('514', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1635 INSERT INTO `marc_subfield_structure` VALUES ('515', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1636 INSERT INTO `marc_subfield_structure` VALUES ('515', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1637 INSERT INTO `marc_subfield_structure` VALUES ('515', 'a', 'Numbering peculiarities note', 'Numbering peculiarities note', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1638 INSERT INTO `marc_subfield_structure` VALUES ('515', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, '', -1, '', '', '', NULL, -6, '', '', '');
1639 INSERT INTO `marc_subfield_structure` VALUES ('516', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1640 INSERT INTO `marc_subfield_structure` VALUES ('516', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1641 INSERT INTO `marc_subfield_structure` VALUES ('516', 'a', 'Type of computer file or data note', 'Type of computer file or data note', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1642 INSERT INTO `marc_subfield_structure` VALUES ('517', 'a', 'Different formats', 'Different formats', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1643 INSERT INTO `marc_subfield_structure` VALUES ('517', 'b', 'Content descriptors', 'Content descriptors', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1644 INSERT INTO `marc_subfield_structure` VALUES ('517', 'c', 'Additional animation techniques', 'Additional animation techniques', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1645 INSERT INTO `marc_subfield_structure` VALUES ('518', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1646 INSERT INTO `marc_subfield_structure` VALUES ('518', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1647 INSERT INTO `marc_subfield_structure` VALUES ('518', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1648 INSERT INTO `marc_subfield_structure` VALUES ('518', 'a', 'Date/time and place of an event note', 'Date/time and place of an event note', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1649 INSERT INTO `marc_subfield_structure` VALUES ('520', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1650 INSERT INTO `marc_subfield_structure` VALUES ('520', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1651 INSERT INTO `marc_subfield_structure` VALUES ('520', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1652 INSERT INTO `marc_subfield_structure` VALUES ('520', 'a', 'Summary, etc', 'Summary, etc', 0, 0, 'biblio.abstract', 5, '', '', '', NULL, 0, '', '', '');
1653 INSERT INTO `marc_subfield_structure` VALUES ('520', 'b', 'Expansion of summary note', 'Expansion of summary note', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1654 INSERT INTO `marc_subfield_structure` VALUES ('520', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, 0, '', '', '');
1655 INSERT INTO `marc_subfield_structure` VALUES ('520', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1656 INSERT INTO `marc_subfield_structure` VALUES ('521', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1657 INSERT INTO `marc_subfield_structure` VALUES ('521', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1658 INSERT INTO `marc_subfield_structure` VALUES ('521', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1659 INSERT INTO `marc_subfield_structure` VALUES ('521', 'a', 'Target audience note', 'Target audience note', 1, 0, NULL, 5, NULL, NULL, '', NULL, 0, '', '', '');
1660 INSERT INTO `marc_subfield_structure` VALUES ('521', 'b', 'Source', 'Source', 0, 0, NULL, 5, NULL, NULL, '', NULL, 0, '', '', '');
1661 INSERT INTO `marc_subfield_structure` VALUES ('522', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1662 INSERT INTO `marc_subfield_structure` VALUES ('522', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1663 INSERT INTO `marc_subfield_structure` VALUES ('522', 'a', 'Geographic coverage note', 'Geographic coverage note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1664 INSERT INTO `marc_subfield_structure` VALUES ('523', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1665 INSERT INTO `marc_subfield_structure` VALUES ('523', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1666 INSERT INTO `marc_subfield_structure` VALUES ('523', 'a', 'Time period of content note', 'Time period of content note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1667 INSERT INTO `marc_subfield_structure` VALUES ('524', '2', 'Source of schema used', 'Source of schema used', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1668 INSERT INTO `marc_subfield_structure` VALUES ('524', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1669 INSERT INTO `marc_subfield_structure` VALUES ('524', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1670 INSERT INTO `marc_subfield_structure` VALUES ('524', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1671 INSERT INTO `marc_subfield_structure` VALUES ('524', 'a', 'Preferred citation of described materials note', 'Preferred citation of described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, 0, '', '', '');
1672 INSERT INTO `marc_subfield_structure` VALUES ('525', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1673 INSERT INTO `marc_subfield_structure` VALUES ('525', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1674 INSERT INTO `marc_subfield_structure` VALUES ('525', 'a', 'Supplement note', 'Supplement note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1675 INSERT INTO `marc_subfield_structure` VALUES ('525', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1676 INSERT INTO `marc_subfield_structure` VALUES ('526', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1677 INSERT INTO `marc_subfield_structure` VALUES ('526', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1678 INSERT INTO `marc_subfield_structure` VALUES ('526', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1679 INSERT INTO `marc_subfield_structure` VALUES ('526', 'a', 'Program name', 'Program name', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1680 INSERT INTO `marc_subfield_structure` VALUES ('526', 'b', 'Interest level', 'Interest level', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1681 INSERT INTO `marc_subfield_structure` VALUES ('526', 'c', 'Reading level', 'Reading level', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1682 INSERT INTO `marc_subfield_structure` VALUES ('526', 'd', 'Title point value', 'Title point value', 0, 0, '', 5, '', '', '', NULL, 0, '', '', '');
1683 INSERT INTO `marc_subfield_structure` VALUES ('526', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1684 INSERT INTO `marc_subfield_structure` VALUES ('526', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 5, '', '', '', NULL, 6, '', '', '');
1685 INSERT INTO `marc_subfield_structure` VALUES ('526', 'z', 'Public note', 'Public note', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1686 INSERT INTO `marc_subfield_structure` VALUES ('527', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1687 INSERT INTO `marc_subfield_structure` VALUES ('527', 'a', 'Censorship note', 'Censorship note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1688 INSERT INTO `marc_subfield_structure` VALUES ('530', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1689 INSERT INTO `marc_subfield_structure` VALUES ('530', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1690 INSERT INTO `marc_subfield_structure` VALUES ('530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1691 INSERT INTO `marc_subfield_structure` VALUES ('530', 'a', 'Additional physical form available note', 'Additional physical form available note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1692 INSERT INTO `marc_subfield_structure` VALUES ('530', 'b', 'Availability source', 'Availability source', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1693 INSERT INTO `marc_subfield_structure` VALUES ('530', 'c', 'Availability conditions', 'Availability conditions', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1694 INSERT INTO `marc_subfield_structure` VALUES ('530', 'd', 'Order number', 'Order number', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1695 INSERT INTO `marc_subfield_structure` VALUES ('530', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -1, '', '', '');
1696 INSERT INTO `marc_subfield_structure` VALUES ('530', 'z', 'Source of note information (AM CF VM SE) [OBSOLETE]', 'Source of note information (AM CF VM SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1697 INSERT INTO `marc_subfield_structure` VALUES ('533', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1698 INSERT INTO `marc_subfield_structure` VALUES ('533', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1699 INSERT INTO `marc_subfield_structure` VALUES ('533', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1700 INSERT INTO `marc_subfield_structure` VALUES ('533', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1701 INSERT INTO `marc_subfield_structure` VALUES ('533', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1702 INSERT INTO `marc_subfield_structure` VALUES ('533', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1703 INSERT INTO `marc_subfield_structure` VALUES ('533', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1704 INSERT INTO `marc_subfield_structure` VALUES ('533', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1705 INSERT INTO `marc_subfield_structure` VALUES ('533', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1706 INSERT INTO `marc_subfield_structure` VALUES ('533', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1707 INSERT INTO `marc_subfield_structure` VALUES ('533', 'm', 'Dates and/or sequential designation of issues reproduced', 'Dates and/or sequential designation of issues reproduced', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1708 INSERT INTO `marc_subfield_structure` VALUES ('533', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1709 INSERT INTO `marc_subfield_structure` VALUES ('534', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1710 INSERT INTO `marc_subfield_structure` VALUES ('534', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1711 INSERT INTO `marc_subfield_structure` VALUES ('534', 'a', 'Main entry of original', 'Main entry of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1712 INSERT INTO `marc_subfield_structure` VALUES ('534', 'b', 'Edition statement of original', 'Edition statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1713 INSERT INTO `marc_subfield_structure` VALUES ('534', 'c', 'Publication, distribution, etc', 'Publication, distribution, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1714 INSERT INTO `marc_subfield_structure` VALUES ('534', 'e', 'Physical description, etc', 'Physical description, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1715 INSERT INTO `marc_subfield_structure` VALUES ('534', 'f', 'Series statement of original', 'Series statement of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1716 INSERT INTO `marc_subfield_structure` VALUES ('534', 'k', 'Key title of original', 'Key title of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1717 INSERT INTO `marc_subfield_structure` VALUES ('534', 'l', 'Location of original', 'Location of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1718 INSERT INTO `marc_subfield_structure` VALUES ('534', 'm', 'Material specific details', 'Material specific details', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1719 INSERT INTO `marc_subfield_structure` VALUES ('534', 'n', 'Note about original', 'Note about original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1720 INSERT INTO `marc_subfield_structure` VALUES ('534', 'p', 'Introductory phrase', 'Introductory phrase', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1721 INSERT INTO `marc_subfield_structure` VALUES ('534', 't', 'Title statement of original', 'Title statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1722 INSERT INTO `marc_subfield_structure` VALUES ('534', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1723 INSERT INTO `marc_subfield_structure` VALUES ('534', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1724 INSERT INTO `marc_subfield_structure` VALUES ('535', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1725 INSERT INTO `marc_subfield_structure` VALUES ('535', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1726 INSERT INTO `marc_subfield_structure` VALUES ('535', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1727 INSERT INTO `marc_subfield_structure` VALUES ('535', 'a', 'Custodian', 'Custodian', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1728 INSERT INTO `marc_subfield_structure` VALUES ('535', 'b', 'Postal address', 'Postal address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1729 INSERT INTO `marc_subfield_structure` VALUES ('535', 'c', 'Country', 'Country', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1730 INSERT INTO `marc_subfield_structure` VALUES ('535', 'd', 'Telecommunications address', 'Telecommunications address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1731 INSERT INTO `marc_subfield_structure` VALUES ('535', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1732 INSERT INTO `marc_subfield_structure` VALUES ('536', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1733 INSERT INTO `marc_subfield_structure` VALUES ('536', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1734 INSERT INTO `marc_subfield_structure` VALUES ('536', 'a', 'Text of note', 'Text of note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1735 INSERT INTO `marc_subfield_structure` VALUES ('536', 'b', 'Contract number', 'Contract number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1736 INSERT INTO `marc_subfield_structure` VALUES ('536', 'c', 'Grant number', 'Grant number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1737 INSERT INTO `marc_subfield_structure` VALUES ('536', 'd', 'Undifferentiated number', 'Undifferentiated number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1738 INSERT INTO `marc_subfield_structure` VALUES ('536', 'e', 'Program element number', 'Program element number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1739 INSERT INTO `marc_subfield_structure` VALUES ('536', 'f', 'Project number', 'Project number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1740 INSERT INTO `marc_subfield_structure` VALUES ('536', 'g', 'Task number', 'Task number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1741 INSERT INTO `marc_subfield_structure` VALUES ('536', 'h', 'Work unit number', 'Work unit number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1742 INSERT INTO `marc_subfield_structure` VALUES ('537', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1743 INSERT INTO `marc_subfield_structure` VALUES ('537', 'a', 'Source of data note', 'Source of data note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1744 INSERT INTO `marc_subfield_structure` VALUES ('538', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1745 INSERT INTO `marc_subfield_structure` VALUES ('538', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1746 INSERT INTO `marc_subfield_structure` VALUES ('538', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1747 INSERT INTO `marc_subfield_structure` VALUES ('538', 'a', 'System details note', 'System details note', 0, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1748 INSERT INTO `marc_subfield_structure` VALUES ('538', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1749 INSERT INTO `marc_subfield_structure` VALUES ('538', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, '', '', '');
1750 INSERT INTO `marc_subfield_structure` VALUES ('540', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1751 INSERT INTO `marc_subfield_structure` VALUES ('540', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1752 INSERT INTO `marc_subfield_structure` VALUES ('540', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1753 INSERT INTO `marc_subfield_structure` VALUES ('540', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1754 INSERT INTO `marc_subfield_structure` VALUES ('540', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1755 INSERT INTO `marc_subfield_structure` VALUES ('540', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1756 INSERT INTO `marc_subfield_structure` VALUES ('540', 'c', 'Authorization', 'Authorization', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1757 INSERT INTO `marc_subfield_structure` VALUES ('540', 'd', 'Authorized users', 'Authorized users', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1758 INSERT INTO `marc_subfield_structure` VALUES ('540', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, '', '', '');
1759 INSERT INTO `marc_subfield_structure` VALUES ('541', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1760 INSERT INTO `marc_subfield_structure` VALUES ('541', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1761 INSERT INTO `marc_subfield_structure` VALUES ('541', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1762 INSERT INTO `marc_subfield_structure` VALUES ('541', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1763 INSERT INTO `marc_subfield_structure` VALUES ('541', 'a', 'Source of acquisition', 'Source of acquisition', 0, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1764 INSERT INTO `marc_subfield_structure` VALUES ('541', 'b', 'Address', 'Address', 0, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1765 INSERT INTO `marc_subfield_structure` VALUES ('541', 'c', 'Method of acquisition', 'Method of acquisition', 0, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1766 INSERT INTO `marc_subfield_structure` VALUES ('541', 'd', 'Date of acquisition', 'Date of acquisition', 0, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1767 INSERT INTO `marc_subfield_structure` VALUES ('541', 'e', 'Accession number', 'Accession number', 0, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1768 INSERT INTO `marc_subfield_structure` VALUES ('541', 'f', 'Owner', 'Owner', 0, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1769 INSERT INTO `marc_subfield_structure` VALUES ('541', 'h', 'Purchase price', 'Purchase price', 0, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1770 INSERT INTO `marc_subfield_structure` VALUES ('541', 'n', 'Extent', 'Extent', 0, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1771 INSERT INTO `marc_subfield_structure` VALUES ('541', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 5, '', '', '', NULL, 1, '', '', '');
1772 INSERT INTO `marc_subfield_structure` VALUES ('543', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1773 INSERT INTO `marc_subfield_structure` VALUES ('543', 'a', 'Solicitation information note', 'Solicitation information note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1774 INSERT INTO `marc_subfield_structure` VALUES ('544', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1775 INSERT INTO `marc_subfield_structure` VALUES ('544', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1776 INSERT INTO `marc_subfield_structure` VALUES ('544', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1777 INSERT INTO `marc_subfield_structure` VALUES ('544', 'a', 'Custodian', 'Custodian', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1778 INSERT INTO `marc_subfield_structure` VALUES ('544', 'b', 'Address', 'Address', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1779 INSERT INTO `marc_subfield_structure` VALUES ('544', 'c', 'Country', 'Country', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1780 INSERT INTO `marc_subfield_structure` VALUES ('544', 'd', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1781 INSERT INTO `marc_subfield_structure` VALUES ('544', 'e', 'Provenance', 'Provenance', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1782 INSERT INTO `marc_subfield_structure` VALUES ('544', 'n', 'Note', 'Note', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1783 INSERT INTO `marc_subfield_structure` VALUES ('545', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1784 INSERT INTO `marc_subfield_structure` VALUES ('545', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1785 INSERT INTO `marc_subfield_structure` VALUES ('545', 'a', 'Biographical or historical note', 'Biographical or historical note', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1786 INSERT INTO `marc_subfield_structure` VALUES ('545', 'b', 'Expansion', 'Expansion', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1787 INSERT INTO `marc_subfield_structure` VALUES ('545', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, '', '', '');
1788 INSERT INTO `marc_subfield_structure` VALUES ('546', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1789 INSERT INTO `marc_subfield_structure` VALUES ('546', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1790 INSERT INTO `marc_subfield_structure` VALUES ('546', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1791 INSERT INTO `marc_subfield_structure` VALUES ('546', 'a', 'Language note', 'Language note', 0, 0, NULL, 5, NULL, NULL, '', NULL, 0, '', '', '');
1792 INSERT INTO `marc_subfield_structure` VALUES ('546', 'b', 'Information code or alphabet', 'Information code or alphabet', 1, 0, NULL, 5, NULL, NULL, '', NULL, 0, '', '', '');
1793 INSERT INTO `marc_subfield_structure` VALUES ('546', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1794 INSERT INTO `marc_subfield_structure` VALUES ('547', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1795 INSERT INTO `marc_subfield_structure` VALUES ('547', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1796 INSERT INTO `marc_subfield_structure` VALUES ('547', 'a', 'Former title complexity note', 'Former title complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1797 INSERT INTO `marc_subfield_structure` VALUES ('547', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1798 INSERT INTO `marc_subfield_structure` VALUES ('550', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1799 INSERT INTO `marc_subfield_structure` VALUES ('550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1800 INSERT INTO `marc_subfield_structure` VALUES ('550', 'a', 'Issuing body note', 'Issuing body note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1801 INSERT INTO `marc_subfield_structure` VALUES ('550', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1802 INSERT INTO `marc_subfield_structure` VALUES ('552', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1803 INSERT INTO `marc_subfield_structure` VALUES ('552', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1804 INSERT INTO `marc_subfield_structure` VALUES ('552', 'a', 'Entity type label', 'Entity type label', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1805 INSERT INTO `marc_subfield_structure` VALUES ('552', 'b', 'Entity type definition and source', 'Entity type definition and source', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1806 INSERT INTO `marc_subfield_structure` VALUES ('552', 'c', 'Attribute label', 'Attribute label', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1807 INSERT INTO `marc_subfield_structure` VALUES ('552', 'd', 'Attribute definition and source', 'Attribute definition and source', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1808 INSERT INTO `marc_subfield_structure` VALUES ('552', 'e', 'Enumerated domain value', 'Enumerated domain value', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1809 INSERT INTO `marc_subfield_structure` VALUES ('552', 'f', 'Enumerated domain value definition and source', 'Enumerated domain value definition and source', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1810 INSERT INTO `marc_subfield_structure` VALUES ('552', 'g', 'Range domain minimum and maximum', 'Range domain minimum and maximum', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1811 INSERT INTO `marc_subfield_structure` VALUES ('552', 'h', 'Codeset name and source', 'Codeset name and source', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1812 INSERT INTO `marc_subfield_structure` VALUES ('552', 'i', 'Unrepresentable domain', 'Unrepresentable domain', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1813 INSERT INTO `marc_subfield_structure` VALUES ('552', 'j', 'Attribute units of measurement and resolution', 'Attribute units of measurement and resolution', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1814 INSERT INTO `marc_subfield_structure` VALUES ('552', 'k', 'Beginning date and ending date of attribute values', 'Beginning date and ending date of attribute values', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1815 INSERT INTO `marc_subfield_structure` VALUES ('552', 'l', 'Attribute value accuracy', 'Attribute value accuracy', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1816 INSERT INTO `marc_subfield_structure` VALUES ('552', 'm', 'Attribute value accuracy explanation', 'Attribute value accuracy explanation', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1817 INSERT INTO `marc_subfield_structure` VALUES ('552', 'n', 'Attribute measurement frequency', 'Attribute measurement frequency', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1818 INSERT INTO `marc_subfield_structure` VALUES ('552', 'o', 'Entity and attribute overview', 'Entity and attribute overview', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1819 INSERT INTO `marc_subfield_structure` VALUES ('552', 'p', 'Entity and attribute detail citation', 'Entity and attribute detail citation', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1820 INSERT INTO `marc_subfield_structure` VALUES ('552', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, '', '', '');
1821 INSERT INTO `marc_subfield_structure` VALUES ('552', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1822 INSERT INTO `marc_subfield_structure` VALUES ('555', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1823 INSERT INTO `marc_subfield_structure` VALUES ('555', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1824 INSERT INTO `marc_subfield_structure` VALUES ('555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1825 INSERT INTO `marc_subfield_structure` VALUES ('555', 'a', 'Cumulative index/finding aids note', 'Cumulative index/finding aids note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1826 INSERT INTO `marc_subfield_structure` VALUES ('555', 'b', 'Availability source', 'Availability source', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1827 INSERT INTO `marc_subfield_structure` VALUES ('555', 'c', 'Degree of control', 'Degree of control', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1828 INSERT INTO `marc_subfield_structure` VALUES ('555', 'd', 'Bibliographic reference', 'Bibliographic reference', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1829 INSERT INTO `marc_subfield_structure` VALUES ('555', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -1, '', '', '');
1830 INSERT INTO `marc_subfield_structure` VALUES ('556', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1831 INSERT INTO `marc_subfield_structure` VALUES ('556', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1832 INSERT INTO `marc_subfield_structure` VALUES ('556', 'a', 'Information about documentation note', 'Information about documentation note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1833 INSERT INTO `marc_subfield_structure` VALUES ('556', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1834 INSERT INTO `marc_subfield_structure` VALUES ('561', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1835 INSERT INTO `marc_subfield_structure` VALUES ('561', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1836 INSERT INTO `marc_subfield_structure` VALUES ('561', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1837 INSERT INTO `marc_subfield_structure` VALUES ('561', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1838 INSERT INTO `marc_subfield_structure` VALUES ('561', 'a', 'History', 'History', 0, 0, '', 5, '', '', '', NULL, 6, '', '', '');
1839 INSERT INTO `marc_subfield_structure` VALUES ('561', 'b', 'Time of collation [OBSOLETE]', 'Time of collation [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, 6, '', '', '');
1840 INSERT INTO `marc_subfield_structure` VALUES ('562', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1841 INSERT INTO `marc_subfield_structure` VALUES ('562', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, '', '', '');
1842 INSERT INTO `marc_subfield_structure` VALUES ('562', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1843 INSERT INTO `marc_subfield_structure` VALUES ('562', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1844 INSERT INTO `marc_subfield_structure` VALUES ('562', 'a', 'Identifying markings', 'Identifying markings', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1845 INSERT INTO `marc_subfield_structure` VALUES ('562', 'b', 'Copy identification', 'Copy identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1846 INSERT INTO `marc_subfield_structure` VALUES ('562', 'c', 'Version identification', 'Version identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1847 INSERT INTO `marc_subfield_structure` VALUES ('562', 'd', 'Presentation format', 'Presentation format', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1848 INSERT INTO `marc_subfield_structure` VALUES ('562', 'e', 'Number of copies', 'Number of copies', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1849 INSERT INTO `marc_subfield_structure` VALUES ('563', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1850 INSERT INTO `marc_subfield_structure` VALUES ('563', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, '', '', '');
1851 INSERT INTO `marc_subfield_structure` VALUES ('563', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1852 INSERT INTO `marc_subfield_structure` VALUES ('563', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1853 INSERT INTO `marc_subfield_structure` VALUES ('563', 'a', 'Binding note', 'Binding note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1854 INSERT INTO `marc_subfield_structure` VALUES ('563', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -1, '', '', '');
1855 INSERT INTO `marc_subfield_structure` VALUES ('565', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1856 INSERT INTO `marc_subfield_structure` VALUES ('565', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1857 INSERT INTO `marc_subfield_structure` VALUES ('565', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1858 INSERT INTO `marc_subfield_structure` VALUES ('565', 'a', 'Number of cases/variables', 'Number of cases/variables', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1859 INSERT INTO `marc_subfield_structure` VALUES ('565', 'b', 'Name of variable', 'Name of variable', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1860 INSERT INTO `marc_subfield_structure` VALUES ('565', 'c', 'Unit of analysis', 'Unit of analysis', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1861 INSERT INTO `marc_subfield_structure` VALUES ('565', 'd', 'Universe of data', 'Universe of data', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1862 INSERT INTO `marc_subfield_structure` VALUES ('565', 'e', 'Filing scheme or code', 'Filing scheme or code', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1863 INSERT INTO `marc_subfield_structure` VALUES ('567', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1864 INSERT INTO `marc_subfield_structure` VALUES ('567', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1865 INSERT INTO `marc_subfield_structure` VALUES ('567', 'a', 'Methodology note', 'Methodology note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1866 INSERT INTO `marc_subfield_structure` VALUES ('570', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1867 INSERT INTO `marc_subfield_structure` VALUES ('570', 'a', 'Editor note', 'Editor note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1868 INSERT INTO `marc_subfield_structure` VALUES ('570', 'z', 'Source of note information', 'Source of note information', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1869 INSERT INTO `marc_subfield_structure` VALUES ('580', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1870 INSERT INTO `marc_subfield_structure` VALUES ('580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1871 INSERT INTO `marc_subfield_structure` VALUES ('580', 'a', 'Linking entry complexity note', 'Linking entry complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1872 INSERT INTO `marc_subfield_structure` VALUES ('580', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1873 INSERT INTO `marc_subfield_structure` VALUES ('581', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1874 INSERT INTO `marc_subfield_structure` VALUES ('581', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1875 INSERT INTO `marc_subfield_structure` VALUES ('581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1876 INSERT INTO `marc_subfield_structure` VALUES ('581', 'a', 'Publications about described materials note', 'Publications about described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1877 INSERT INTO `marc_subfield_structure` VALUES ('581', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1878 INSERT INTO `marc_subfield_structure` VALUES ('582', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1879 INSERT INTO `marc_subfield_structure` VALUES ('582', 'a', 'Related computer files note', 'Related computer files note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1880 INSERT INTO `marc_subfield_structure` VALUES ('583', '2', 'Source of term', 'Source of term', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1881 INSERT INTO `marc_subfield_structure` VALUES ('583', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1882 INSERT INTO `marc_subfield_structure` VALUES ('583', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1883 INSERT INTO `marc_subfield_structure` VALUES ('583', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1884 INSERT INTO `marc_subfield_structure` VALUES ('583', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1885 INSERT INTO `marc_subfield_structure` VALUES ('583', 'a', 'Action', 'Action', 0, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1886 INSERT INTO `marc_subfield_structure` VALUES ('583', 'b', 'Action identification', 'Action identification', 1, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1887 INSERT INTO `marc_subfield_structure` VALUES ('583', 'c', 'Time/date of action', 'Time/date of action', 1, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1888 INSERT INTO `marc_subfield_structure` VALUES ('583', 'd', 'Action interval', 'Action interval', 1, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1889 INSERT INTO `marc_subfield_structure` VALUES ('583', 'e', 'Contingency for action', 'Contingency for action', 1, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1890 INSERT INTO `marc_subfield_structure` VALUES ('583', 'f', 'Authorization', 'Authorization', 1, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1891 INSERT INTO `marc_subfield_structure` VALUES ('583', 'h', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1892 INSERT INTO `marc_subfield_structure` VALUES ('583', 'i', 'Method of action', 'Method of action', 1, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1893 INSERT INTO `marc_subfield_structure` VALUES ('583', 'j', 'Site of action', 'Site of action', 1, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1894 INSERT INTO `marc_subfield_structure` VALUES ('583', 'k', 'Action agent', 'Action agent', 1, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1895 INSERT INTO `marc_subfield_structure` VALUES ('583', 'l', 'Status', 'Status', 1, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1896 INSERT INTO `marc_subfield_structure` VALUES ('583', 'n', 'Extent', 'Extent', 1, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1897 INSERT INTO `marc_subfield_structure` VALUES ('583', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1898 INSERT INTO `marc_subfield_structure` VALUES ('583', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, '', '', '');
1899 INSERT INTO `marc_subfield_structure` VALUES ('583', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 5, '', '', '', NULL, 4, '', '', '');
1900 INSERT INTO `marc_subfield_structure` VALUES ('583', 'z', 'Public note', 'Public note', 1, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1901 INSERT INTO `marc_subfield_structure` VALUES ('584', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1902 INSERT INTO `marc_subfield_structure` VALUES ('584', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1903 INSERT INTO `marc_subfield_structure` VALUES ('584', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1904 INSERT INTO `marc_subfield_structure` VALUES ('584', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1905 INSERT INTO `marc_subfield_structure` VALUES ('584', 'a', 'Accumulation', 'Accumulation', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1906 INSERT INTO `marc_subfield_structure` VALUES ('584', 'b', 'Frequency of use', 'Frequency of use', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1907 INSERT INTO `marc_subfield_structure` VALUES ('585', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1908 INSERT INTO `marc_subfield_structure` VALUES ('585', '5', 'Institution to which field applies', 'Institution to which field applies', 0, -6, '', 5, '', '', '', NULL, -6, '', '', '');
1909 INSERT INTO `marc_subfield_structure` VALUES ('585', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1910 INSERT INTO `marc_subfield_structure` VALUES ('585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, '', '', '');
1911 INSERT INTO `marc_subfield_structure` VALUES ('585', 'a', 'Exhibitions note', 'Exhibitions note', 0, 0, '', 5, '', '', '', NULL, -1, '', '', '');
1912 INSERT INTO `marc_subfield_structure` VALUES ('586', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1913 INSERT INTO `marc_subfield_structure` VALUES ('586', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1914 INSERT INTO `marc_subfield_structure` VALUES ('586', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1915 INSERT INTO `marc_subfield_structure` VALUES ('586', 'a', 'Awards note', 'Awards note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, '', '', '');
1916 INSERT INTO `marc_subfield_structure` VALUES ('590', '6', 'Linkage (RLIN)', 'Linkage (RLIN)', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1917 INSERT INTO `marc_subfield_structure` VALUES ('590', '8', 'Field link and sequence number (RLIN)', 'Field link and sequence number (RLIN)', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1918 INSERT INTO `marc_subfield_structure` VALUES ('590', 'a', 'Local note', 'Local note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1919 INSERT INTO `marc_subfield_structure` VALUES ('590', 'b', 'Provenance (VM) [OBSOLETE]', 'Provenance (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1920 INSERT INTO `marc_subfield_structure` VALUES ('590', 'c', 'Condition of individual reels (VM) [OBSOLETE]', 'Condition of individual reels (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1921 INSERT INTO `marc_subfield_structure` VALUES ('590', 'd', 'Origin of safety copy (VM) [OBSOLETE]', 'Origin of safety copy (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, '', '', '');
1922 INSERT INTO `marc_subfield_structure` VALUES ('600', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1923 INSERT INTO `marc_subfield_structure` VALUES ('600', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1924 INSERT INTO `marc_subfield_structure` VALUES ('600', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1925 INSERT INTO `marc_subfield_structure` VALUES ('600', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1926 INSERT INTO `marc_subfield_structure` VALUES ('600', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1927 INSERT INTO `marc_subfield_structure` VALUES ('600', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1928 INSERT INTO `marc_subfield_structure` VALUES ('600', 'a', 'Personal name', 'Personal name', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1929 INSERT INTO `marc_subfield_structure` VALUES ('600', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -1, '', '', '');
1930 INSERT INTO `marc_subfield_structure` VALUES ('600', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -1, '', '', '');
1931 INSERT INTO `marc_subfield_structure` VALUES ('600', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1932 INSERT INTO `marc_subfield_structure` VALUES ('600', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1933 INSERT INTO `marc_subfield_structure` VALUES ('600', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1934 INSERT INTO `marc_subfield_structure` VALUES ('600', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1935 INSERT INTO `marc_subfield_structure` VALUES ('600', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1936 INSERT INTO `marc_subfield_structure` VALUES ('600', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1937 INSERT INTO `marc_subfield_structure` VALUES ('600', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1938 INSERT INTO `marc_subfield_structure` VALUES ('600', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1939 INSERT INTO `marc_subfield_structure` VALUES ('600', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1940 INSERT INTO `marc_subfield_structure` VALUES ('600', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1941 INSERT INTO `marc_subfield_structure` VALUES ('600', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1942 INSERT INTO `marc_subfield_structure` VALUES ('600', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1943 INSERT INTO `marc_subfield_structure` VALUES ('600', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1944 INSERT INTO `marc_subfield_structure` VALUES ('600', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1945 INSERT INTO `marc_subfield_structure` VALUES ('600', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1946 INSERT INTO `marc_subfield_structure` VALUES ('600', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1947 INSERT INTO `marc_subfield_structure` VALUES ('600', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1948 INSERT INTO `marc_subfield_structure` VALUES ('600', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1949 INSERT INTO `marc_subfield_structure` VALUES ('600', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1950 INSERT INTO `marc_subfield_structure` VALUES ('600', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1951 INSERT INTO `marc_subfield_structure` VALUES ('600', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1952 INSERT INTO `marc_subfield_structure` VALUES ('610', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1953 INSERT INTO `marc_subfield_structure` VALUES ('610', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1954 INSERT INTO `marc_subfield_structure` VALUES ('610', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1955 INSERT INTO `marc_subfield_structure` VALUES ('610', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1956 INSERT INTO `marc_subfield_structure` VALUES ('610', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1957 INSERT INTO `marc_subfield_structure` VALUES ('610', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1958 INSERT INTO `marc_subfield_structure` VALUES ('610', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1959 INSERT INTO `marc_subfield_structure` VALUES ('610', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1960 INSERT INTO `marc_subfield_structure` VALUES ('610', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -1, '', '', '');
1961 INSERT INTO `marc_subfield_structure` VALUES ('610', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -1, '', '', '');
1962 INSERT INTO `marc_subfield_structure` VALUES ('610', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1963 INSERT INTO `marc_subfield_structure` VALUES ('610', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1964 INSERT INTO `marc_subfield_structure` VALUES ('610', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1965 INSERT INTO `marc_subfield_structure` VALUES ('610', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1966 INSERT INTO `marc_subfield_structure` VALUES ('610', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1967 INSERT INTO `marc_subfield_structure` VALUES ('610', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1968 INSERT INTO `marc_subfield_structure` VALUES ('610', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1969 INSERT INTO `marc_subfield_structure` VALUES ('610', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1970 INSERT INTO `marc_subfield_structure` VALUES ('610', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1971 INSERT INTO `marc_subfield_structure` VALUES ('610', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1972 INSERT INTO `marc_subfield_structure` VALUES ('610', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1973 INSERT INTO `marc_subfield_structure` VALUES ('610', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1974 INSERT INTO `marc_subfield_structure` VALUES ('610', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1975 INSERT INTO `marc_subfield_structure` VALUES ('610', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
1976 INSERT INTO `marc_subfield_structure` VALUES ('610', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1977 INSERT INTO `marc_subfield_structure` VALUES ('610', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1978 INSERT INTO `marc_subfield_structure` VALUES ('610', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1979 INSERT INTO `marc_subfield_structure` VALUES ('610', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
1980 INSERT INTO `marc_subfield_structure` VALUES ('611', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
1981 INSERT INTO `marc_subfield_structure` VALUES ('611', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1982 INSERT INTO `marc_subfield_structure` VALUES ('611', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1983 INSERT INTO `marc_subfield_structure` VALUES ('611', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1984 INSERT INTO `marc_subfield_structure` VALUES ('611', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1985 INSERT INTO `marc_subfield_structure` VALUES ('611', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
1986 INSERT INTO `marc_subfield_structure` VALUES ('611', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
1987 INSERT INTO `marc_subfield_structure` VALUES ('611', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, '', '', '');
1988 INSERT INTO `marc_subfield_structure` VALUES ('611', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
1989 INSERT INTO `marc_subfield_structure` VALUES ('611', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
1990 INSERT INTO `marc_subfield_structure` VALUES ('611', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
1991 INSERT INTO `marc_subfield_structure` VALUES ('611', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1992 INSERT INTO `marc_subfield_structure` VALUES ('611', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1993 INSERT INTO `marc_subfield_structure` VALUES ('611', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1994 INSERT INTO `marc_subfield_structure` VALUES ('611', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1995 INSERT INTO `marc_subfield_structure` VALUES ('611', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1996 INSERT INTO `marc_subfield_structure` VALUES ('611', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1997 INSERT INTO `marc_subfield_structure` VALUES ('611', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1998 INSERT INTO `marc_subfield_structure` VALUES ('611', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
1999 INSERT INTO `marc_subfield_structure` VALUES ('611', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2000 INSERT INTO `marc_subfield_structure` VALUES ('611', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
2001 INSERT INTO `marc_subfield_structure` VALUES ('611', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2002 INSERT INTO `marc_subfield_structure` VALUES ('611', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
2003 INSERT INTO `marc_subfield_structure` VALUES ('611', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
2004 INSERT INTO `marc_subfield_structure` VALUES ('611', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
2005 INSERT INTO `marc_subfield_structure` VALUES ('611', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
2006 INSERT INTO `marc_subfield_structure` VALUES ('630', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, '', '', '');
2007 INSERT INTO `marc_subfield_structure` VALUES ('630', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2008 INSERT INTO `marc_subfield_structure` VALUES ('630', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2009 INSERT INTO `marc_subfield_structure` VALUES ('630', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2010 INSERT INTO `marc_subfield_structure` VALUES ('630', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2011 INSERT INTO `marc_subfield_structure` VALUES ('630', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2012 INSERT INTO `marc_subfield_structure` VALUES ('630', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2013 INSERT INTO `marc_subfield_structure` VALUES ('630', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2014 INSERT INTO `marc_subfield_structure` VALUES ('630', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, '', '', '');
2015 INSERT INTO `marc_subfield_structure` VALUES ('630', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2016 INSERT INTO `marc_subfield_structure` VALUES ('630', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2017 INSERT INTO `marc_subfield_structure` VALUES ('630', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2018 INSERT INTO `marc_subfield_structure` VALUES ('630', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2019 INSERT INTO `marc_subfield_structure` VALUES ('630', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2020 INSERT INTO `marc_subfield_structure` VALUES ('630', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2021 INSERT INTO `marc_subfield_structure` VALUES ('630', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2022 INSERT INTO `marc_subfield_structure` VALUES ('630', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2023 INSERT INTO `marc_subfield_structure` VALUES ('630', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2024 INSERT INTO `marc_subfield_structure` VALUES ('630', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2025 INSERT INTO `marc_subfield_structure` VALUES ('630', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2026 INSERT INTO `marc_subfield_structure` VALUES ('630', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2027 INSERT INTO `marc_subfield_structure` VALUES ('630', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2028 INSERT INTO `marc_subfield_structure` VALUES ('630', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2029 INSERT INTO `marc_subfield_structure` VALUES ('630', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2030 INSERT INTO `marc_subfield_structure` VALUES ('630', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2031 INSERT INTO `marc_subfield_structure` VALUES ('648', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2032 INSERT INTO `marc_subfield_structure` VALUES ('648', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2033 INSERT INTO `marc_subfield_structure` VALUES ('648', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2034 INSERT INTO `marc_subfield_structure` VALUES ('648', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2035 INSERT INTO `marc_subfield_structure` VALUES ('648', 'a', 'Chronological term', 'Chronological term', 0, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2036 INSERT INTO `marc_subfield_structure` VALUES ('648', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2037 INSERT INTO `marc_subfield_structure` VALUES ('648', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2038 INSERT INTO `marc_subfield_structure` VALUES ('648', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2039 INSERT INTO `marc_subfield_structure` VALUES ('648', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2040 INSERT INTO `marc_subfield_structure` VALUES ('650', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, 0, '', '', '');
2041 INSERT INTO `marc_subfield_structure` VALUES ('650', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2042 INSERT INTO `marc_subfield_structure` VALUES ('650', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2043 INSERT INTO `marc_subfield_structure` VALUES ('650', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2044 INSERT INTO `marc_subfield_structure` VALUES ('650', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, '', '', '');
2045 INSERT INTO `marc_subfield_structure` VALUES ('650', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2046 INSERT INTO `marc_subfield_structure` VALUES ('650', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 'bibliosubject.subject', 6, '', '', '', 0, 0, '', '''6003'',''600a'',''600b'',''600c'',''600d'',''600e'',''600f'',''600g'',''600h'',''600k'',''600l'',''600m'',''600n'',''600o'',''600p'',''600r'',''600s'',''600t'',''600u'',''600x'',''600z'',''600y'',''600v'',''6103'',''610a'',''610b'',''610c'',''610d'',''610e'',''610f'',''610g'',''610h'',''610k'',''610l'',''610m'',''610n'',''610o'',''610p'',''610r'',''610s'',''610t'',''610u'',''610x'',''610z'',''610y'',''610v'',''6113'',''611a'',''611b'',''611c'',''611d'',''611e'',''611f'',''611g'',''611h'',''611k'',''611l'',''611m'',''611n'',''611o'',''611p'',''611r'',''611s'',''611t'',''611u'',''611x'',''611z'',''611y'',''611v'',''630a'',''630b'',''630c'',''630d'',''630e'',''630f'',''630g'',''630h'',''630k'',''630l'',''630m'',''630n'',''630o'',''630p'',''630r'',''630s'',''630t'',''630x'',''630z'',''630y'',''630v'',''6483'',''648a'',''648x'',''648z'',''648y'',''648v'',''6503'',''650b'',''650c'',''650d'',''650e'',''650x'',''650z'',''650y'',''650v'',''6513'',''651a'',''651b'',''651c'',''651d'',''651e'',''651x'',''651z'',''651y'',''651v'',''653a'',''6543'',''654a'',''654b'',''654x'',''654z'',''654y'',''654v'',''6553'',''655a'',''655b'',''655x'',''655z'',''655y'',''655v'',''6563'',''656a'',''656k'',''656x'',''656z'',''656y'',''656v'',''6573'',''657a'',''657x'',''657z'',''657y'',''657v'',''658a'',''658b'',''658c'',''658d'',''658v''', '');
2047 INSERT INTO `marc_subfield_structure` VALUES ('650', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, '', '', '');
2048 INSERT INTO `marc_subfield_structure` VALUES ('650', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, '', '', '');
2049 INSERT INTO `marc_subfield_structure` VALUES ('650', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -1, '', '', '');
2050 INSERT INTO `marc_subfield_structure` VALUES ('650', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -1, '', '', '');
2051 INSERT INTO `marc_subfield_structure` VALUES ('650', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, 0, '', '', '');
2052 INSERT INTO `marc_subfield_structure` VALUES ('650', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, 0, '', '', '');
2053 INSERT INTO `marc_subfield_structure` VALUES ('650', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, 0, '', '', '');
2054 INSERT INTO `marc_subfield_structure` VALUES ('650', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, 0, '', '', '');
2055 INSERT INTO `marc_subfield_structure` VALUES ('651', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2056 INSERT INTO `marc_subfield_structure` VALUES ('651', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2057 INSERT INTO `marc_subfield_structure` VALUES ('651', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2058 INSERT INTO `marc_subfield_structure` VALUES ('651', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2059 INSERT INTO `marc_subfield_structure` VALUES ('651', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2060 INSERT INTO `marc_subfield_structure` VALUES ('651', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2061 INSERT INTO `marc_subfield_structure` VALUES ('651', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2062 INSERT INTO `marc_subfield_structure` VALUES ('651', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2063 INSERT INTO `marc_subfield_structure` VALUES ('651', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, '', '', '');
2064 INSERT INTO `marc_subfield_structure` VALUES ('651', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2065 INSERT INTO `marc_subfield_structure` VALUES ('651', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2066 INSERT INTO `marc_subfield_structure` VALUES ('651', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2067 INSERT INTO `marc_subfield_structure` VALUES ('651', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2068 INSERT INTO `marc_subfield_structure` VALUES ('652', 'a', 'Geographic name of place element', 'Geographic name of place element', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2069 INSERT INTO `marc_subfield_structure` VALUES ('652', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2070 INSERT INTO `marc_subfield_structure` VALUES ('652', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2071 INSERT INTO `marc_subfield_structure` VALUES ('652', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2072 INSERT INTO `marc_subfield_structure` VALUES ('653', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2073 INSERT INTO `marc_subfield_structure` VALUES ('653', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2074 INSERT INTO `marc_subfield_structure` VALUES ('653', 'a', 'Uncontrolled term', 'Uncontrolled term', 1, 0, NULL, 6, NULL, NULL, '', NULL, 0, '', '', '');
2075 INSERT INTO `marc_subfield_structure` VALUES ('654', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2076 INSERT INTO `marc_subfield_structure` VALUES ('654', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2077 INSERT INTO `marc_subfield_structure` VALUES ('654', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2078 INSERT INTO `marc_subfield_structure` VALUES ('654', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2079 INSERT INTO `marc_subfield_structure` VALUES ('654', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2080 INSERT INTO `marc_subfield_structure` VALUES ('654', 'a', 'Focus term', 'Focus term', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2081 INSERT INTO `marc_subfield_structure` VALUES ('654', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2082 INSERT INTO `marc_subfield_structure` VALUES ('654', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2083 INSERT INTO `marc_subfield_structure` VALUES ('654', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, '', '', '');
2084 INSERT INTO `marc_subfield_structure` VALUES ('654', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2085 INSERT INTO `marc_subfield_structure` VALUES ('654', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2086 INSERT INTO `marc_subfield_structure` VALUES ('654', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2087 INSERT INTO `marc_subfield_structure` VALUES ('654', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2088 INSERT INTO `marc_subfield_structure` VALUES ('655', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2089 INSERT INTO `marc_subfield_structure` VALUES ('655', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2090 INSERT INTO `marc_subfield_structure` VALUES ('655', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2091 INSERT INTO `marc_subfield_structure` VALUES ('655', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2092 INSERT INTO `marc_subfield_structure` VALUES ('655', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2093 INSERT INTO `marc_subfield_structure` VALUES ('655', 'a', 'Genre/form data or focus term', 'Genre/form data or focus term', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2094 INSERT INTO `marc_subfield_structure` VALUES ('655', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2095 INSERT INTO `marc_subfield_structure` VALUES ('655', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2096 INSERT INTO `marc_subfield_structure` VALUES ('655', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2097 INSERT INTO `marc_subfield_structure` VALUES ('655', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2098 INSERT INTO `marc_subfield_structure` VALUES ('655', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2099 INSERT INTO `marc_subfield_structure` VALUES ('655', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2100 INSERT INTO `marc_subfield_structure` VALUES ('656', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2101 INSERT INTO `marc_subfield_structure` VALUES ('656', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2102 INSERT INTO `marc_subfield_structure` VALUES ('656', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2103 INSERT INTO `marc_subfield_structure` VALUES ('656', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2104 INSERT INTO `marc_subfield_structure` VALUES ('656', 'a', 'Occupation', 'Occupation', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2105 INSERT INTO `marc_subfield_structure` VALUES ('656', 'k', 'Form', 'Form', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2106 INSERT INTO `marc_subfield_structure` VALUES ('656', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2107 INSERT INTO `marc_subfield_structure` VALUES ('656', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2108 INSERT INTO `marc_subfield_structure` VALUES ('656', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2109 INSERT INTO `marc_subfield_structure` VALUES ('656', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2110 INSERT INTO `marc_subfield_structure` VALUES ('657', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2111 INSERT INTO `marc_subfield_structure` VALUES ('657', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2112 INSERT INTO `marc_subfield_structure` VALUES ('657', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2113 INSERT INTO `marc_subfield_structure` VALUES ('657', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2114 INSERT INTO `marc_subfield_structure` VALUES ('657', 'a', 'Function', 'Function', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2115 INSERT INTO `marc_subfield_structure` VALUES ('657', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2116 INSERT INTO `marc_subfield_structure` VALUES ('657', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2117 INSERT INTO `marc_subfield_structure` VALUES ('657', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2118 INSERT INTO `marc_subfield_structure` VALUES ('657', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2119 INSERT INTO `marc_subfield_structure` VALUES ('658', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2120 INSERT INTO `marc_subfield_structure` VALUES ('658', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2121 INSERT INTO `marc_subfield_structure` VALUES ('658', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2122 INSERT INTO `marc_subfield_structure` VALUES ('658', 'a', 'Main curriculum objective', 'Main curriculum objective', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2123 INSERT INTO `marc_subfield_structure` VALUES ('658', 'b', 'Subordinate curriculum objective', 'Subordinate curriculum objective', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2124 INSERT INTO `marc_subfield_structure` VALUES ('658', 'c', 'Curriculum code', 'Curriculum code', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2125 INSERT INTO `marc_subfield_structure` VALUES ('658', 'd', 'Correlation factor', 'Correlation factor', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2126 INSERT INTO `marc_subfield_structure` VALUES ('662', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2127 INSERT INTO `marc_subfield_structure` VALUES ('662', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2128 INSERT INTO `marc_subfield_structure` VALUES ('662', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2129 INSERT INTO `marc_subfield_structure` VALUES ('662', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2130 INSERT INTO `marc_subfield_structure` VALUES ('662', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2131 INSERT INTO `marc_subfield_structure` VALUES ('662', 'a', 'Country or larger entity', 'Country or larger entity', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2132 INSERT INTO `marc_subfield_structure` VALUES ('662', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2133 INSERT INTO `marc_subfield_structure` VALUES ('662', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2134 INSERT INTO `marc_subfield_structure` VALUES ('662', 'd', 'City', 'City', 0, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2135 INSERT INTO `marc_subfield_structure` VALUES ('662', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, '', '', '');
2136 INSERT INTO `marc_subfield_structure` VALUES ('662', 'f', 'City subsection', 'City subsection', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2137 INSERT INTO `marc_subfield_structure` VALUES ('662', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2138 INSERT INTO `marc_subfield_structure` VALUES ('662', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, '', 6, '', '', '', NULL, 0, '', '', '');
2139 INSERT INTO `marc_subfield_structure` VALUES ('690', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2140 INSERT INTO `marc_subfield_structure` VALUES ('690', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, 0, '', '', '');
2141 INSERT INTO `marc_subfield_structure` VALUES ('690', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2142 INSERT INTO `marc_subfield_structure` VALUES ('690', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2143 INSERT INTO `marc_subfield_structure` VALUES ('690', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, '', '', '');
2144 INSERT INTO `marc_subfield_structure` VALUES ('690', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2145 INSERT INTO `marc_subfield_structure` VALUES ('690', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, '', 6, '', '', '', 0, 0, '', '', '');
2146 INSERT INTO `marc_subfield_structure` VALUES ('690', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, '', '', '');
2147 INSERT INTO `marc_subfield_structure` VALUES ('690', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2148 INSERT INTO `marc_subfield_structure` VALUES ('690', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -1, '', '', '');
2149 INSERT INTO `marc_subfield_structure` VALUES ('690', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -1, '', '', '');
2150 INSERT INTO `marc_subfield_structure` VALUES ('690', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, 0, '', '', '');
2151 INSERT INTO `marc_subfield_structure` VALUES ('690', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, 0, '', '', '');
2152 INSERT INTO `marc_subfield_structure` VALUES ('690', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, 0, '', '', '');
2153 INSERT INTO `marc_subfield_structure` VALUES ('690', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, 0, '', '', '');
2154 INSERT INTO `marc_subfield_structure` VALUES ('691', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2155 INSERT INTO `marc_subfield_structure` VALUES ('691', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2156 INSERT INTO `marc_subfield_structure` VALUES ('691', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2157 INSERT INTO `marc_subfield_structure` VALUES ('691', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2158 INSERT INTO `marc_subfield_structure` VALUES ('691', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2159 INSERT INTO `marc_subfield_structure` VALUES ('691', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2160 INSERT INTO `marc_subfield_structure` VALUES ('691', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2161 INSERT INTO `marc_subfield_structure` VALUES ('691', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2162 INSERT INTO `marc_subfield_structure` VALUES ('691', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2163 INSERT INTO `marc_subfield_structure` VALUES ('691', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2164 INSERT INTO `marc_subfield_structure` VALUES ('691', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2165 INSERT INTO `marc_subfield_structure` VALUES ('691', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2166 INSERT INTO `marc_subfield_structure` VALUES ('696', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2167 INSERT INTO `marc_subfield_structure` VALUES ('696', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2168 INSERT INTO `marc_subfield_structure` VALUES ('696', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2169 INSERT INTO `marc_subfield_structure` VALUES ('696', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2170 INSERT INTO `marc_subfield_structure` VALUES ('696', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2171 INSERT INTO `marc_subfield_structure` VALUES ('696', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2172 INSERT INTO `marc_subfield_structure` VALUES ('696', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2173 INSERT INTO `marc_subfield_structure` VALUES ('696', 'a', 'Personal name', 'Personal name', 0, 0, '', 3, '', '', '', NULL, -6, '', '', '');
2174 INSERT INTO `marc_subfield_structure` VALUES ('696', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2175 INSERT INTO `marc_subfield_structure` VALUES ('696', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2176 INSERT INTO `marc_subfield_structure` VALUES ('696', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2177 INSERT INTO `marc_subfield_structure` VALUES ('696', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2178 INSERT INTO `marc_subfield_structure` VALUES ('696', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2179 INSERT INTO `marc_subfield_structure` VALUES ('696', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2180 INSERT INTO `marc_subfield_structure` VALUES ('696', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2181 INSERT INTO `marc_subfield_structure` VALUES ('696', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2182 INSERT INTO `marc_subfield_structure` VALUES ('696', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2183 INSERT INTO `marc_subfield_structure` VALUES ('696', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2184 INSERT INTO `marc_subfield_structure` VALUES ('696', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2185 INSERT INTO `marc_subfield_structure` VALUES ('696', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2186 INSERT INTO `marc_subfield_structure` VALUES ('696', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2187 INSERT INTO `marc_subfield_structure` VALUES ('696', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2188 INSERT INTO `marc_subfield_structure` VALUES ('696', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2189 INSERT INTO `marc_subfield_structure` VALUES ('696', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2190 INSERT INTO `marc_subfield_structure` VALUES ('696', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2191 INSERT INTO `marc_subfield_structure` VALUES ('696', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2192 INSERT INTO `marc_subfield_structure` VALUES ('696', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2193 INSERT INTO `marc_subfield_structure` VALUES ('696', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2194 INSERT INTO `marc_subfield_structure` VALUES ('696', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2195 INSERT INTO `marc_subfield_structure` VALUES ('696', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2196 INSERT INTO `marc_subfield_structure` VALUES ('696', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2197 INSERT INTO `marc_subfield_structure` VALUES ('697', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2198 INSERT INTO `marc_subfield_structure` VALUES ('697', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2199 INSERT INTO `marc_subfield_structure` VALUES ('697', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2200 INSERT INTO `marc_subfield_structure` VALUES ('697', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2201 INSERT INTO `marc_subfield_structure` VALUES ('697', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2202 INSERT INTO `marc_subfield_structure` VALUES ('697', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2203 INSERT INTO `marc_subfield_structure` VALUES ('697', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2204 INSERT INTO `marc_subfield_structure` VALUES ('697', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2205 INSERT INTO `marc_subfield_structure` VALUES ('697', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2206 INSERT INTO `marc_subfield_structure` VALUES ('697', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2207 INSERT INTO `marc_subfield_structure` VALUES ('697', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2208 INSERT INTO `marc_subfield_structure` VALUES ('697', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2209 INSERT INTO `marc_subfield_structure` VALUES ('697', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2210 INSERT INTO `marc_subfield_structure` VALUES ('697', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2211 INSERT INTO `marc_subfield_structure` VALUES ('697', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2212 INSERT INTO `marc_subfield_structure` VALUES ('697', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2213 INSERT INTO `marc_subfield_structure` VALUES ('697', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2214 INSERT INTO `marc_subfield_structure` VALUES ('697', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2215 INSERT INTO `marc_subfield_structure` VALUES ('697', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2216 INSERT INTO `marc_subfield_structure` VALUES ('697', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2217 INSERT INTO `marc_subfield_structure` VALUES ('697', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2218 INSERT INTO `marc_subfield_structure` VALUES ('697', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2219 INSERT INTO `marc_subfield_structure` VALUES ('697', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2220 INSERT INTO `marc_subfield_structure` VALUES ('697', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2221 INSERT INTO `marc_subfield_structure` VALUES ('697', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2222 INSERT INTO `marc_subfield_structure` VALUES ('697', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2223 INSERT INTO `marc_subfield_structure` VALUES ('697', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2224 INSERT INTO `marc_subfield_structure` VALUES ('697', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2225 INSERT INTO `marc_subfield_structure` VALUES ('697', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
2226 INSERT INTO `marc_subfield_structure` VALUES ('698', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2227 INSERT INTO `marc_subfield_structure` VALUES ('698', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2228 INSERT INTO `marc_subfield_structure` VALUES ('698', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2229 INSERT INTO `marc_subfield_structure` VALUES ('698', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2230 INSERT INTO `marc_subfield_structure` VALUES ('698', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2231 INSERT INTO `marc_subfield_structure` VALUES ('698', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2232 INSERT INTO `marc_subfield_structure` VALUES ('698', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2233 INSERT INTO `marc_subfield_structure` VALUES ('698', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2234 INSERT INTO `marc_subfield_structure` VALUES ('698', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, '', '', '');
2235 INSERT INTO `marc_subfield_structure` VALUES ('698', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2236 INSERT INTO `marc_subfield_structure` VALUES ('698', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2237 INSERT INTO `marc_subfield_structure` VALUES ('698', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2238 INSERT INTO `marc_subfield_structure` VALUES ('698', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2239 INSERT INTO `marc_subfield_structure` VALUES ('698', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2240 INSERT INTO `marc_subfield_structure` VALUES ('698', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2241 INSERT INTO `marc_subfield_structure` VALUES ('698', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2242 INSERT INTO `marc_subfield_structure` VALUES ('698', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2243 INSERT INTO `marc_subfield_structure` VALUES ('698', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2244 INSERT INTO `marc_subfield_structure` VALUES ('698', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2245 INSERT INTO `marc_subfield_structure` VALUES ('698', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2246 INSERT INTO `marc_subfield_structure` VALUES ('698', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2247 INSERT INTO `marc_subfield_structure` VALUES ('698', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2248 INSERT INTO `marc_subfield_structure` VALUES ('698', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2249 INSERT INTO `marc_subfield_structure` VALUES ('698', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2250 INSERT INTO `marc_subfield_structure` VALUES ('698', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2251 INSERT INTO `marc_subfield_structure` VALUES ('698', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2252 INSERT INTO `marc_subfield_structure` VALUES ('698', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2253 INSERT INTO `marc_subfield_structure` VALUES ('699', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, '', '', '');
2254 INSERT INTO `marc_subfield_structure` VALUES ('699', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2255 INSERT INTO `marc_subfield_structure` VALUES ('699', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2256 INSERT INTO `marc_subfield_structure` VALUES ('699', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2257 INSERT INTO `marc_subfield_structure` VALUES ('699', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2258 INSERT INTO `marc_subfield_structure` VALUES ('699', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, '', '', '');
2259 INSERT INTO `marc_subfield_structure` VALUES ('699', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2260 INSERT INTO `marc_subfield_structure` VALUES ('699', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2261 INSERT INTO `marc_subfield_structure` VALUES ('699', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2262 INSERT INTO `marc_subfield_structure` VALUES ('699', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2263 INSERT INTO `marc_subfield_structure` VALUES ('699', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2264 INSERT INTO `marc_subfield_structure` VALUES ('699', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2265 INSERT INTO `marc_subfield_structure` VALUES ('699', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2266 INSERT INTO `marc_subfield_structure` VALUES ('699', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2267 INSERT INTO `marc_subfield_structure` VALUES ('699', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2268 INSERT INTO `marc_subfield_structure` VALUES ('699', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2269 INSERT INTO `marc_subfield_structure` VALUES ('699', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2270 INSERT INTO `marc_subfield_structure` VALUES ('699', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2271 INSERT INTO `marc_subfield_structure` VALUES ('699', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2272 INSERT INTO `marc_subfield_structure` VALUES ('699', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2273 INSERT INTO `marc_subfield_structure` VALUES ('699', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2274 INSERT INTO `marc_subfield_structure` VALUES ('699', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2275 INSERT INTO `marc_subfield_structure` VALUES ('699', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, '', '', '');
2276 INSERT INTO `marc_subfield_structure` VALUES ('700', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2277 INSERT INTO `marc_subfield_structure` VALUES ('700', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, 0, '', '', '');
2278 INSERT INTO `marc_subfield_structure` VALUES ('700', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2279 INSERT INTO `marc_subfield_structure` VALUES ('700', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2280 INSERT INTO `marc_subfield_structure` VALUES ('700', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2281 INSERT INTO `marc_subfield_structure` VALUES ('700', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2282 INSERT INTO `marc_subfield_structure` VALUES ('700', 'a', 'Personal name', 'Personal name', 0, 0, 'additionalauthors.author', 7, '', '', '', NULL, 0, '', '', '');
2283 INSERT INTO `marc_subfield_structure` VALUES ('700', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2284 INSERT INTO `marc_subfield_structure` VALUES ('700', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2285 INSERT INTO `marc_subfield_structure` VALUES ('700', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, 0, '', '', '');
2286 INSERT INTO `marc_subfield_structure` VALUES ('700', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, 0, '', '', '');
2287 INSERT INTO `marc_subfield_structure` VALUES ('700', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2288 INSERT INTO `marc_subfield_structure` VALUES ('700', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2289 INSERT INTO `marc_subfield_structure` VALUES ('700', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2290 INSERT INTO `marc_subfield_structure` VALUES ('700', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2291 INSERT INTO `marc_subfield_structure` VALUES ('700', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2292 INSERT INTO `marc_subfield_structure` VALUES ('700', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2293 INSERT INTO `marc_subfield_structure` VALUES ('700', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2294 INSERT INTO `marc_subfield_structure` VALUES ('700', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2295 INSERT INTO `marc_subfield_structure` VALUES ('700', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2296 INSERT INTO `marc_subfield_structure` VALUES ('700', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2297 INSERT INTO `marc_subfield_structure` VALUES ('700', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, 0, '', '', '');
2298 INSERT INTO `marc_subfield_structure` VALUES ('700', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2299 INSERT INTO `marc_subfield_structure` VALUES ('700', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2300 INSERT INTO `marc_subfield_structure` VALUES ('700', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2301 INSERT INTO `marc_subfield_structure` VALUES ('700', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2302 INSERT INTO `marc_subfield_structure` VALUES ('700', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2303 INSERT INTO `marc_subfield_structure` VALUES ('705', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2304 INSERT INTO `marc_subfield_structure` VALUES ('705', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2305 INSERT INTO `marc_subfield_structure` VALUES ('705', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2306 INSERT INTO `marc_subfield_structure` VALUES ('705', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2307 INSERT INTO `marc_subfield_structure` VALUES ('705', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2308 INSERT INTO `marc_subfield_structure` VALUES ('705', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2309 INSERT INTO `marc_subfield_structure` VALUES ('705', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2310 INSERT INTO `marc_subfield_structure` VALUES ('705', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2311 INSERT INTO `marc_subfield_structure` VALUES ('705', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2312 INSERT INTO `marc_subfield_structure` VALUES ('705', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2313 INSERT INTO `marc_subfield_structure` VALUES ('705', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2314 INSERT INTO `marc_subfield_structure` VALUES ('705', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2315 INSERT INTO `marc_subfield_structure` VALUES ('705', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2316 INSERT INTO `marc_subfield_structure` VALUES ('705', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2317 INSERT INTO `marc_subfield_structure` VALUES ('705', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2318 INSERT INTO `marc_subfield_structure` VALUES ('705', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2319 INSERT INTO `marc_subfield_structure` VALUES ('705', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2320 INSERT INTO `marc_subfield_structure` VALUES ('710', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2321 INSERT INTO `marc_subfield_structure` VALUES ('710', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, 0, '', '', '');
2322 INSERT INTO `marc_subfield_structure` VALUES ('710', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2323 INSERT INTO `marc_subfield_structure` VALUES ('710', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2324 INSERT INTO `marc_subfield_structure` VALUES ('710', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2325 INSERT INTO `marc_subfield_structure` VALUES ('710', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2326 INSERT INTO `marc_subfield_structure` VALUES ('710', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, 0, '', '', '');
2327 INSERT INTO `marc_subfield_structure` VALUES ('710', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, 0, '', '', '');
2328 INSERT INTO `marc_subfield_structure` VALUES ('710', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2329 INSERT INTO `marc_subfield_structure` VALUES ('710', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2330 INSERT INTO `marc_subfield_structure` VALUES ('710', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, 0, '', '', '');
2331 INSERT INTO `marc_subfield_structure` VALUES ('710', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2332 INSERT INTO `marc_subfield_structure` VALUES ('710', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2333 INSERT INTO `marc_subfield_structure` VALUES ('710', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2334 INSERT INTO `marc_subfield_structure` VALUES ('710', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2335 INSERT INTO `marc_subfield_structure` VALUES ('710', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2336 INSERT INTO `marc_subfield_structure` VALUES ('710', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2337 INSERT INTO `marc_subfield_structure` VALUES ('710', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2338 INSERT INTO `marc_subfield_structure` VALUES ('710', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2339 INSERT INTO `marc_subfield_structure` VALUES ('710', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2340 INSERT INTO `marc_subfield_structure` VALUES ('710', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2341 INSERT INTO `marc_subfield_structure` VALUES ('710', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2342 INSERT INTO `marc_subfield_structure` VALUES ('710', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2343 INSERT INTO `marc_subfield_structure` VALUES ('710', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2344 INSERT INTO `marc_subfield_structure` VALUES ('710', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2345 INSERT INTO `marc_subfield_structure` VALUES ('711', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2346 INSERT INTO `marc_subfield_structure` VALUES ('711', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, 0, '', '', '');
2347 INSERT INTO `marc_subfield_structure` VALUES ('711', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2348 INSERT INTO `marc_subfield_structure` VALUES ('711', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2349 INSERT INTO `marc_subfield_structure` VALUES ('711', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2350 INSERT INTO `marc_subfield_structure` VALUES ('711', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2351 INSERT INTO `marc_subfield_structure` VALUES ('711', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, 0, '', '', '');
2352 INSERT INTO `marc_subfield_structure` VALUES ('711', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2353 INSERT INTO `marc_subfield_structure` VALUES ('711', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, 0, '', '', '');
2354 INSERT INTO `marc_subfield_structure` VALUES ('711', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, 0, '', '', '');
2355 INSERT INTO `marc_subfield_structure` VALUES ('711', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, 0, '', '', '');
2356 INSERT INTO `marc_subfield_structure` VALUES ('711', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2357 INSERT INTO `marc_subfield_structure` VALUES ('711', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2358 INSERT INTO `marc_subfield_structure` VALUES ('711', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2359 INSERT INTO `marc_subfield_structure` VALUES ('711', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2360 INSERT INTO `marc_subfield_structure` VALUES ('711', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2361 INSERT INTO `marc_subfield_structure` VALUES ('711', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2362 INSERT INTO `marc_subfield_structure` VALUES ('711', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2363 INSERT INTO `marc_subfield_structure` VALUES ('711', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2364 INSERT INTO `marc_subfield_structure` VALUES ('711', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2365 INSERT INTO `marc_subfield_structure` VALUES ('711', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2366 INSERT INTO `marc_subfield_structure` VALUES ('711', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2367 INSERT INTO `marc_subfield_structure` VALUES ('711', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2368 INSERT INTO `marc_subfield_structure` VALUES ('715', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, '', '', '');
2369 INSERT INTO `marc_subfield_structure` VALUES ('715', 'a', 'Corporate name or jurisdiction name', 'Corporate name or jurisdiction name', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2370 INSERT INTO `marc_subfield_structure` VALUES ('715', 'b', 'Subordinate unit', 'Subordinate unit', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2371 INSERT INTO `marc_subfield_structure` VALUES ('715', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2372 INSERT INTO `marc_subfield_structure` VALUES ('715', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2373 INSERT INTO `marc_subfield_structure` VALUES ('715', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2374 INSERT INTO `marc_subfield_structure` VALUES ('715', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2375 INSERT INTO `marc_subfield_structure` VALUES ('715', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2376 INSERT INTO `marc_subfield_structure` VALUES ('715', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2377 INSERT INTO `marc_subfield_structure` VALUES ('715', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2378 INSERT INTO `marc_subfield_structure` VALUES ('715', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2379 INSERT INTO `marc_subfield_structure` VALUES ('715', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2380 INSERT INTO `marc_subfield_structure` VALUES ('715', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2381 INSERT INTO `marc_subfield_structure` VALUES ('715', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2382 INSERT INTO `marc_subfield_structure` VALUES ('715', 'u', 'Nonprinting information', 'Nonprinting information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2383 INSERT INTO `marc_subfield_structure` VALUES ('720', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, 0, '', '', '');
2384 INSERT INTO `marc_subfield_structure` VALUES ('720', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2385 INSERT INTO `marc_subfield_structure` VALUES ('720', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2386 INSERT INTO `marc_subfield_structure` VALUES ('720', 'a', 'Name', 'Name', 0, 0, '', 7, NULL, NULL, '', NULL, 0, '', '', '');
2387 INSERT INTO `marc_subfield_structure` VALUES ('720', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, 0, '', '', '');
2388 INSERT INTO `marc_subfield_structure` VALUES ('730', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2389 INSERT INTO `marc_subfield_structure` VALUES ('730', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2390 INSERT INTO `marc_subfield_structure` VALUES ('730', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2391 INSERT INTO `marc_subfield_structure` VALUES ('730', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2392 INSERT INTO `marc_subfield_structure` VALUES ('730', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2393 INSERT INTO `marc_subfield_structure` VALUES ('730', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2394 INSERT INTO `marc_subfield_structure` VALUES ('730', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2395 INSERT INTO `marc_subfield_structure` VALUES ('730', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2396 INSERT INTO `marc_subfield_structure` VALUES ('730', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2397 INSERT INTO `marc_subfield_structure` VALUES ('730', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2398 INSERT INTO `marc_subfield_structure` VALUES ('730', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2399 INSERT INTO `marc_subfield_structure` VALUES ('730', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2400 INSERT INTO `marc_subfield_structure` VALUES ('730', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2401 INSERT INTO `marc_subfield_structure` VALUES ('730', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2402 INSERT INTO `marc_subfield_structure` VALUES ('730', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2403 INSERT INTO `marc_subfield_structure` VALUES ('730', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2404 INSERT INTO `marc_subfield_structure` VALUES ('730', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2405 INSERT INTO `marc_subfield_structure` VALUES ('730', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2406 INSERT INTO `marc_subfield_structure` VALUES ('730', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2407 INSERT INTO `marc_subfield_structure` VALUES ('730', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2408 INSERT INTO `marc_subfield_structure` VALUES ('740', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2409 INSERT INTO `marc_subfield_structure` VALUES ('740', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2410 INSERT INTO `marc_subfield_structure` VALUES ('740', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2411 INSERT INTO `marc_subfield_structure` VALUES ('740', 'a', 'Uncontrolled related/analytical title', 'Uncontrolled related/analytical title', 0, 0, '', 7, '', '', '', NULL, -1, '', '', '');
2412 INSERT INTO `marc_subfield_structure` VALUES ('740', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2413 INSERT INTO `marc_subfield_structure` VALUES ('740', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2414 INSERT INTO `marc_subfield_structure` VALUES ('740', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2415 INSERT INTO `marc_subfield_structure` VALUES ('752', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2416 INSERT INTO `marc_subfield_structure` VALUES ('752', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2417 INSERT INTO `marc_subfield_structure` VALUES ('752', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2418 INSERT INTO `marc_subfield_structure` VALUES ('752', 'a', 'Country or larger entity', 'Country or larger entity', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2419 INSERT INTO `marc_subfield_structure` VALUES ('752', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2420 INSERT INTO `marc_subfield_structure` VALUES ('752', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2421 INSERT INTO `marc_subfield_structure` VALUES ('752', 'd', 'City', 'City', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2422 INSERT INTO `marc_subfield_structure` VALUES ('752', 'f', 'City subsection', 'City subsection', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2423 INSERT INTO `marc_subfield_structure` VALUES ('752', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2424 INSERT INTO `marc_subfield_structure` VALUES ('752', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2425 INSERT INTO `marc_subfield_structure` VALUES ('753', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2426 INSERT INTO `marc_subfield_structure` VALUES ('753', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2427 INSERT INTO `marc_subfield_structure` VALUES ('753', 'a', 'Make and model of machine', 'Make and model of machine', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2428 INSERT INTO `marc_subfield_structure` VALUES ('753', 'b', 'Programming language', 'Programming language', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2429 INSERT INTO `marc_subfield_structure` VALUES ('753', 'c', 'Operating system', 'Operating system', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2430 INSERT INTO `marc_subfield_structure` VALUES ('754', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2431 INSERT INTO `marc_subfield_structure` VALUES ('754', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2432 INSERT INTO `marc_subfield_structure` VALUES ('754', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2433 INSERT INTO `marc_subfield_structure` VALUES ('754', 'a', 'Taxonomic name', 'Taxonomic name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2434 INSERT INTO `marc_subfield_structure` VALUES ('754', 'c', 'Taxonomic category', 'Taxonomic category', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2435 INSERT INTO `marc_subfield_structure` VALUES ('754', 'd', 'Common or alternative name', 'Common or alternative name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2436 INSERT INTO `marc_subfield_structure` VALUES ('754', 'x', 'Non-public note', 'Non-public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2437 INSERT INTO `marc_subfield_structure` VALUES ('754', 'z', 'Public note', 'Public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2438 INSERT INTO `marc_subfield_structure` VALUES ('755', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2439 INSERT INTO `marc_subfield_structure` VALUES ('755', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2440 INSERT INTO `marc_subfield_structure` VALUES ('755', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2441 INSERT INTO `marc_subfield_structure` VALUES ('755', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2442 INSERT INTO `marc_subfield_structure` VALUES ('755', 'a', 'Access term', 'Access term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2443 INSERT INTO `marc_subfield_structure` VALUES ('755', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2444 INSERT INTO `marc_subfield_structure` VALUES ('755', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2445 INSERT INTO `marc_subfield_structure` VALUES ('755', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2446 INSERT INTO `marc_subfield_structure` VALUES ('760', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2447 INSERT INTO `marc_subfield_structure` VALUES ('760', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2448 INSERT INTO `marc_subfield_structure` VALUES ('760', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2449 INSERT INTO `marc_subfield_structure` VALUES ('760', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2450 INSERT INTO `marc_subfield_structure` VALUES ('760', 'b', 'Edition', 'Edition', 0, 0, NULL, -6, NULL, NULL, '', NULL, 0, '', '', '');
2451 INSERT INTO `marc_subfield_structure` VALUES ('760', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2452 INSERT INTO `marc_subfield_structure` VALUES ('760', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2453 INSERT INTO `marc_subfield_structure` VALUES ('760', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2454 INSERT INTO `marc_subfield_structure` VALUES ('760', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2455 INSERT INTO `marc_subfield_structure` VALUES ('760', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2456 INSERT INTO `marc_subfield_structure` VALUES ('760', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2457 INSERT INTO `marc_subfield_structure` VALUES ('760', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2458 INSERT INTO `marc_subfield_structure` VALUES ('760', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2459 INSERT INTO `marc_subfield_structure` VALUES ('760', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2460 INSERT INTO `marc_subfield_structure` VALUES ('760', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2461 INSERT INTO `marc_subfield_structure` VALUES ('760', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2462 INSERT INTO `marc_subfield_structure` VALUES ('760', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2463 INSERT INTO `marc_subfield_structure` VALUES ('760', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2464 INSERT INTO `marc_subfield_structure` VALUES ('760', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2465 INSERT INTO `marc_subfield_structure` VALUES ('762', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2466 INSERT INTO `marc_subfield_structure` VALUES ('762', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2467 INSERT INTO `marc_subfield_structure` VALUES ('762', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2468 INSERT INTO `marc_subfield_structure` VALUES ('762', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2469 INSERT INTO `marc_subfield_structure` VALUES ('762', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2470 INSERT INTO `marc_subfield_structure` VALUES ('762', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2471 INSERT INTO `marc_subfield_structure` VALUES ('762', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2472 INSERT INTO `marc_subfield_structure` VALUES ('762', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2473 INSERT INTO `marc_subfield_structure` VALUES ('762', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2474 INSERT INTO `marc_subfield_structure` VALUES ('762', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2475 INSERT INTO `marc_subfield_structure` VALUES ('762', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2476 INSERT INTO `marc_subfield_structure` VALUES ('762', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2477 INSERT INTO `marc_subfield_structure` VALUES ('762', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2478 INSERT INTO `marc_subfield_structure` VALUES ('762', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2479 INSERT INTO `marc_subfield_structure` VALUES ('762', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2480 INSERT INTO `marc_subfield_structure` VALUES ('762', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2481 INSERT INTO `marc_subfield_structure` VALUES ('762', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2482 INSERT INTO `marc_subfield_structure` VALUES ('762', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2483 INSERT INTO `marc_subfield_structure` VALUES ('762', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2484 INSERT INTO `marc_subfield_structure` VALUES ('765', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2485 INSERT INTO `marc_subfield_structure` VALUES ('765', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2486 INSERT INTO `marc_subfield_structure` VALUES ('765', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2487 INSERT INTO `marc_subfield_structure` VALUES ('765', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2488 INSERT INTO `marc_subfield_structure` VALUES ('765', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2489 INSERT INTO `marc_subfield_structure` VALUES ('765', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2490 INSERT INTO `marc_subfield_structure` VALUES ('765', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2491 INSERT INTO `marc_subfield_structure` VALUES ('765', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2492 INSERT INTO `marc_subfield_structure` VALUES ('765', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2493 INSERT INTO `marc_subfield_structure` VALUES ('765', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2494 INSERT INTO `marc_subfield_structure` VALUES ('765', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2495 INSERT INTO `marc_subfield_structure` VALUES ('765', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2496 INSERT INTO `marc_subfield_structure` VALUES ('765', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2497 INSERT INTO `marc_subfield_structure` VALUES ('765', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2498 INSERT INTO `marc_subfield_structure` VALUES ('765', 'q', 'Parallel title (BK SE)  [OBSOLETE]', 'Parallel title (BK SE)  [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2499 INSERT INTO `marc_subfield_structure` VALUES ('765', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2500 INSERT INTO `marc_subfield_structure` VALUES ('765', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2501 INSERT INTO `marc_subfield_structure` VALUES ('765', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2502 INSERT INTO `marc_subfield_structure` VALUES ('765', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2503 INSERT INTO `marc_subfield_structure` VALUES ('765', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2504 INSERT INTO `marc_subfield_structure` VALUES ('765', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2505 INSERT INTO `marc_subfield_structure` VALUES ('765', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2506 INSERT INTO `marc_subfield_structure` VALUES ('765', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2507 INSERT INTO `marc_subfield_structure` VALUES ('767', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2508 INSERT INTO `marc_subfield_structure` VALUES ('767', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2509 INSERT INTO `marc_subfield_structure` VALUES ('767', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2510 INSERT INTO `marc_subfield_structure` VALUES ('767', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2511 INSERT INTO `marc_subfield_structure` VALUES ('767', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2512 INSERT INTO `marc_subfield_structure` VALUES ('767', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2513 INSERT INTO `marc_subfield_structure` VALUES ('767', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2514 INSERT INTO `marc_subfield_structure` VALUES ('767', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2515 INSERT INTO `marc_subfield_structure` VALUES ('767', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2516 INSERT INTO `marc_subfield_structure` VALUES ('767', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2517 INSERT INTO `marc_subfield_structure` VALUES ('767', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2518 INSERT INTO `marc_subfield_structure` VALUES ('767', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2519 INSERT INTO `marc_subfield_structure` VALUES ('767', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2520 INSERT INTO `marc_subfield_structure` VALUES ('767', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2521 INSERT INTO `marc_subfield_structure` VALUES ('767', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2522 INSERT INTO `marc_subfield_structure` VALUES ('767', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2523 INSERT INTO `marc_subfield_structure` VALUES ('767', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2524 INSERT INTO `marc_subfield_structure` VALUES ('767', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2525 INSERT INTO `marc_subfield_structure` VALUES ('767', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2526 INSERT INTO `marc_subfield_structure` VALUES ('767', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2527 INSERT INTO `marc_subfield_structure` VALUES ('767', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2528 INSERT INTO `marc_subfield_structure` VALUES ('767', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2529 INSERT INTO `marc_subfield_structure` VALUES ('767', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2530 INSERT INTO `marc_subfield_structure` VALUES ('770', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2531 INSERT INTO `marc_subfield_structure` VALUES ('770', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2532 INSERT INTO `marc_subfield_structure` VALUES ('770', '8', 'Field link and sequence number', 'Field link and sequence number ', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2533 INSERT INTO `marc_subfield_structure` VALUES ('770', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2534 INSERT INTO `marc_subfield_structure` VALUES ('770', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2535 INSERT INTO `marc_subfield_structure` VALUES ('770', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2536 INSERT INTO `marc_subfield_structure` VALUES ('770', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2537 INSERT INTO `marc_subfield_structure` VALUES ('770', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2538 INSERT INTO `marc_subfield_structure` VALUES ('770', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2539 INSERT INTO `marc_subfield_structure` VALUES ('770', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2540 INSERT INTO `marc_subfield_structure` VALUES ('770', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2541 INSERT INTO `marc_subfield_structure` VALUES ('770', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2542 INSERT INTO `marc_subfield_structure` VALUES ('770', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2543 INSERT INTO `marc_subfield_structure` VALUES ('770', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2544 INSERT INTO `marc_subfield_structure` VALUES ('770', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2545 INSERT INTO `marc_subfield_structure` VALUES ('770', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2546 INSERT INTO `marc_subfield_structure` VALUES ('770', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2547 INSERT INTO `marc_subfield_structure` VALUES ('770', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2548 INSERT INTO `marc_subfield_structure` VALUES ('770', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2549 INSERT INTO `marc_subfield_structure` VALUES ('770', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2550 INSERT INTO `marc_subfield_structure` VALUES ('770', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2551 INSERT INTO `marc_subfield_structure` VALUES ('770', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2552 INSERT INTO `marc_subfield_structure` VALUES ('770', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2553 INSERT INTO `marc_subfield_structure` VALUES ('772', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2554 INSERT INTO `marc_subfield_structure` VALUES ('772', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2555 INSERT INTO `marc_subfield_structure` VALUES ('772', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2556 INSERT INTO `marc_subfield_structure` VALUES ('772', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2557 INSERT INTO `marc_subfield_structure` VALUES ('772', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2558 INSERT INTO `marc_subfield_structure` VALUES ('772', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2559 INSERT INTO `marc_subfield_structure` VALUES ('772', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2560 INSERT INTO `marc_subfield_structure` VALUES ('772', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2561 INSERT INTO `marc_subfield_structure` VALUES ('772', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2562 INSERT INTO `marc_subfield_structure` VALUES ('772', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2563 INSERT INTO `marc_subfield_structure` VALUES ('772', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2564 INSERT INTO `marc_subfield_structure` VALUES ('772', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2565 INSERT INTO `marc_subfield_structure` VALUES ('772', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2566 INSERT INTO `marc_subfield_structure` VALUES ('772', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2567 INSERT INTO `marc_subfield_structure` VALUES ('772', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2568 INSERT INTO `marc_subfield_structure` VALUES ('772', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2569 INSERT INTO `marc_subfield_structure` VALUES ('772', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2570 INSERT INTO `marc_subfield_structure` VALUES ('772', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2571 INSERT INTO `marc_subfield_structure` VALUES ('772', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2572 INSERT INTO `marc_subfield_structure` VALUES ('772', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2573 INSERT INTO `marc_subfield_structure` VALUES ('772', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2574 INSERT INTO `marc_subfield_structure` VALUES ('772', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2575 INSERT INTO `marc_subfield_structure` VALUES ('772', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2576 INSERT INTO `marc_subfield_structure` VALUES ('773', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2577 INSERT INTO `marc_subfield_structure` VALUES ('773', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2578 INSERT INTO `marc_subfield_structure` VALUES ('773', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2579 INSERT INTO `marc_subfield_structure` VALUES ('773', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2580 INSERT INTO `marc_subfield_structure` VALUES ('773', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2581 INSERT INTO `marc_subfield_structure` VALUES ('773', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2582 INSERT INTO `marc_subfield_structure` VALUES ('773', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2583 INSERT INTO `marc_subfield_structure` VALUES ('773', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2584 INSERT INTO `marc_subfield_structure` VALUES ('773', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2585 INSERT INTO `marc_subfield_structure` VALUES ('773', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2586 INSERT INTO `marc_subfield_structure` VALUES ('773', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2587 INSERT INTO `marc_subfield_structure` VALUES ('773', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2588 INSERT INTO `marc_subfield_structure` VALUES ('773', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2589 INSERT INTO `marc_subfield_structure` VALUES ('773', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2590 INSERT INTO `marc_subfield_structure` VALUES ('773', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2591 INSERT INTO `marc_subfield_structure` VALUES ('773', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2592 INSERT INTO `marc_subfield_structure` VALUES ('773', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2593 INSERT INTO `marc_subfield_structure` VALUES ('773', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2594 INSERT INTO `marc_subfield_structure` VALUES ('773', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2595 INSERT INTO `marc_subfield_structure` VALUES ('773', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2596 INSERT INTO `marc_subfield_structure` VALUES ('773', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2597 INSERT INTO `marc_subfield_structure` VALUES ('773', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2598 INSERT INTO `marc_subfield_structure` VALUES ('773', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2599 INSERT INTO `marc_subfield_structure` VALUES ('774', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2600 INSERT INTO `marc_subfield_structure` VALUES ('774', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2601 INSERT INTO `marc_subfield_structure` VALUES ('774', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2602 INSERT INTO `marc_subfield_structure` VALUES ('774', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2603 INSERT INTO `marc_subfield_structure` VALUES ('774', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2604 INSERT INTO `marc_subfield_structure` VALUES ('774', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2605 INSERT INTO `marc_subfield_structure` VALUES ('774', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2606 INSERT INTO `marc_subfield_structure` VALUES ('774', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2607 INSERT INTO `marc_subfield_structure` VALUES ('774', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2608 INSERT INTO `marc_subfield_structure` VALUES ('774', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2609 INSERT INTO `marc_subfield_structure` VALUES ('774', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2610 INSERT INTO `marc_subfield_structure` VALUES ('774', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2611 INSERT INTO `marc_subfield_structure` VALUES ('774', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2612 INSERT INTO `marc_subfield_structure` VALUES ('774', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2613 INSERT INTO `marc_subfield_structure` VALUES ('774', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2614 INSERT INTO `marc_subfield_structure` VALUES ('774', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2615 INSERT INTO `marc_subfield_structure` VALUES ('774', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2616 INSERT INTO `marc_subfield_structure` VALUES ('774', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2617 INSERT INTO `marc_subfield_structure` VALUES ('774', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2618 INSERT INTO `marc_subfield_structure` VALUES ('774', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2619 INSERT INTO `marc_subfield_structure` VALUES ('774', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2620 INSERT INTO `marc_subfield_structure` VALUES ('774', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2621 INSERT INTO `marc_subfield_structure` VALUES ('775', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2622 INSERT INTO `marc_subfield_structure` VALUES ('775', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2623 INSERT INTO `marc_subfield_structure` VALUES ('775', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2624 INSERT INTO `marc_subfield_structure` VALUES ('775', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2625 INSERT INTO `marc_subfield_structure` VALUES ('775', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2626 INSERT INTO `marc_subfield_structure` VALUES ('775', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2627 INSERT INTO `marc_subfield_structure` VALUES ('775', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2628 INSERT INTO `marc_subfield_structure` VALUES ('775', 'e', 'Language code', 'Language code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2629 INSERT INTO `marc_subfield_structure` VALUES ('775', 'f', 'Country code', 'Country code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2630 INSERT INTO `marc_subfield_structure` VALUES ('775', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2631 INSERT INTO `marc_subfield_structure` VALUES ('775', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2632 INSERT INTO `marc_subfield_structure` VALUES ('775', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2633 INSERT INTO `marc_subfield_structure` VALUES ('775', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2634 INSERT INTO `marc_subfield_structure` VALUES ('775', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2635 INSERT INTO `marc_subfield_structure` VALUES ('775', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2636 INSERT INTO `marc_subfield_structure` VALUES ('775', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2637 INSERT INTO `marc_subfield_structure` VALUES ('775', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2638 INSERT INTO `marc_subfield_structure` VALUES ('775', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2639 INSERT INTO `marc_subfield_structure` VALUES ('775', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2640 INSERT INTO `marc_subfield_structure` VALUES ('775', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2641 INSERT INTO `marc_subfield_structure` VALUES ('775', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2642 INSERT INTO `marc_subfield_structure` VALUES ('775', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2643 INSERT INTO `marc_subfield_structure` VALUES ('775', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2644 INSERT INTO `marc_subfield_structure` VALUES ('775', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2645 INSERT INTO `marc_subfield_structure` VALUES ('775', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2646 INSERT INTO `marc_subfield_structure` VALUES ('776', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2647 INSERT INTO `marc_subfield_structure` VALUES ('776', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2648 INSERT INTO `marc_subfield_structure` VALUES ('776', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2649 INSERT INTO `marc_subfield_structure` VALUES ('776', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2650 INSERT INTO `marc_subfield_structure` VALUES ('776', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2651 INSERT INTO `marc_subfield_structure` VALUES ('776', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2652 INSERT INTO `marc_subfield_structure` VALUES ('776', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2653 INSERT INTO `marc_subfield_structure` VALUES ('776', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2654 INSERT INTO `marc_subfield_structure` VALUES ('776', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2655 INSERT INTO `marc_subfield_structure` VALUES ('776', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2656 INSERT INTO `marc_subfield_structure` VALUES ('776', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2657 INSERT INTO `marc_subfield_structure` VALUES ('776', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2658 INSERT INTO `marc_subfield_structure` VALUES ('776', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2659 INSERT INTO `marc_subfield_structure` VALUES ('776', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2660 INSERT INTO `marc_subfield_structure` VALUES ('776', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2661 INSERT INTO `marc_subfield_structure` VALUES ('776', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2662 INSERT INTO `marc_subfield_structure` VALUES ('776', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2663 INSERT INTO `marc_subfield_structure` VALUES ('776', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2664 INSERT INTO `marc_subfield_structure` VALUES ('776', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2665 INSERT INTO `marc_subfield_structure` VALUES ('776', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2666 INSERT INTO `marc_subfield_structure` VALUES ('776', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2667 INSERT INTO `marc_subfield_structure` VALUES ('776', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2668 INSERT INTO `marc_subfield_structure` VALUES ('776', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2669 INSERT INTO `marc_subfield_structure` VALUES ('777', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2670 INSERT INTO `marc_subfield_structure` VALUES ('777', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2671 INSERT INTO `marc_subfield_structure` VALUES ('777', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2672 INSERT INTO `marc_subfield_structure` VALUES ('777', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2673 INSERT INTO `marc_subfield_structure` VALUES ('777', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2674 INSERT INTO `marc_subfield_structure` VALUES ('777', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2675 INSERT INTO `marc_subfield_structure` VALUES ('777', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2676 INSERT INTO `marc_subfield_structure` VALUES ('777', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2677 INSERT INTO `marc_subfield_structure` VALUES ('777', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2678 INSERT INTO `marc_subfield_structure` VALUES ('777', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2679 INSERT INTO `marc_subfield_structure` VALUES ('777', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2680 INSERT INTO `marc_subfield_structure` VALUES ('777', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2681 INSERT INTO `marc_subfield_structure` VALUES ('777', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2682 INSERT INTO `marc_subfield_structure` VALUES ('777', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2683 INSERT INTO `marc_subfield_structure` VALUES ('777', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2684 INSERT INTO `marc_subfield_structure` VALUES ('777', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2685 INSERT INTO `marc_subfield_structure` VALUES ('777', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2686 INSERT INTO `marc_subfield_structure` VALUES ('777', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2687 INSERT INTO `marc_subfield_structure` VALUES ('777', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2688 INSERT INTO `marc_subfield_structure` VALUES ('777', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2689 INSERT INTO `marc_subfield_structure` VALUES ('780', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2690 INSERT INTO `marc_subfield_structure` VALUES ('780', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2691 INSERT INTO `marc_subfield_structure` VALUES ('780', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2692 INSERT INTO `marc_subfield_structure` VALUES ('780', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2693 INSERT INTO `marc_subfield_structure` VALUES ('780', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2694 INSERT INTO `marc_subfield_structure` VALUES ('780', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2695 INSERT INTO `marc_subfield_structure` VALUES ('780', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2696 INSERT INTO `marc_subfield_structure` VALUES ('780', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2697 INSERT INTO `marc_subfield_structure` VALUES ('780', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2698 INSERT INTO `marc_subfield_structure` VALUES ('780', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2699 INSERT INTO `marc_subfield_structure` VALUES ('780', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2700 INSERT INTO `marc_subfield_structure` VALUES ('780', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2701 INSERT INTO `marc_subfield_structure` VALUES ('780', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2702 INSERT INTO `marc_subfield_structure` VALUES ('780', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2703 INSERT INTO `marc_subfield_structure` VALUES ('780', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2704 INSERT INTO `marc_subfield_structure` VALUES ('780', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2705 INSERT INTO `marc_subfield_structure` VALUES ('780', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2706 INSERT INTO `marc_subfield_structure` VALUES ('780', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2707 INSERT INTO `marc_subfield_structure` VALUES ('780', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2708 INSERT INTO `marc_subfield_structure` VALUES ('780', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2709 INSERT INTO `marc_subfield_structure` VALUES ('780', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2710 INSERT INTO `marc_subfield_structure` VALUES ('780', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2711 INSERT INTO `marc_subfield_structure` VALUES ('780', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2712 INSERT INTO `marc_subfield_structure` VALUES ('785', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2713 INSERT INTO `marc_subfield_structure` VALUES ('785', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2714 INSERT INTO `marc_subfield_structure` VALUES ('785', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2715 INSERT INTO `marc_subfield_structure` VALUES ('785', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2716 INSERT INTO `marc_subfield_structure` VALUES ('785', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2717 INSERT INTO `marc_subfield_structure` VALUES ('785', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2718 INSERT INTO `marc_subfield_structure` VALUES ('785', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2719 INSERT INTO `marc_subfield_structure` VALUES ('785', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2720 INSERT INTO `marc_subfield_structure` VALUES ('785', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2721 INSERT INTO `marc_subfield_structure` VALUES ('785', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2722 INSERT INTO `marc_subfield_structure` VALUES ('785', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2723 INSERT INTO `marc_subfield_structure` VALUES ('785', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2724 INSERT INTO `marc_subfield_structure` VALUES ('785', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2725 INSERT INTO `marc_subfield_structure` VALUES ('785', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2726 INSERT INTO `marc_subfield_structure` VALUES ('785', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2727 INSERT INTO `marc_subfield_structure` VALUES ('785', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2728 INSERT INTO `marc_subfield_structure` VALUES ('785', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2729 INSERT INTO `marc_subfield_structure` VALUES ('785', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2730 INSERT INTO `marc_subfield_structure` VALUES ('785', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2731 INSERT INTO `marc_subfield_structure` VALUES ('785', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2732 INSERT INTO `marc_subfield_structure` VALUES ('785', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2733 INSERT INTO `marc_subfield_structure` VALUES ('785', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2734 INSERT INTO `marc_subfield_structure` VALUES ('785', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2735 INSERT INTO `marc_subfield_structure` VALUES ('786', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2736 INSERT INTO `marc_subfield_structure` VALUES ('786', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2737 INSERT INTO `marc_subfield_structure` VALUES ('786', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2738 INSERT INTO `marc_subfield_structure` VALUES ('786', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2739 INSERT INTO `marc_subfield_structure` VALUES ('786', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2740 INSERT INTO `marc_subfield_structure` VALUES ('786', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2741 INSERT INTO `marc_subfield_structure` VALUES ('786', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2742 INSERT INTO `marc_subfield_structure` VALUES ('786', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2743 INSERT INTO `marc_subfield_structure` VALUES ('786', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2744 INSERT INTO `marc_subfield_structure` VALUES ('786', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2745 INSERT INTO `marc_subfield_structure` VALUES ('786', 'j', 'Period of content', 'Period of content', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2746 INSERT INTO `marc_subfield_structure` VALUES ('786', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2747 INSERT INTO `marc_subfield_structure` VALUES ('786', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2748 INSERT INTO `marc_subfield_structure` VALUES ('786', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2749 INSERT INTO `marc_subfield_structure` VALUES ('786', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2750 INSERT INTO `marc_subfield_structure` VALUES ('786', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2751 INSERT INTO `marc_subfield_structure` VALUES ('786', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2752 INSERT INTO `marc_subfield_structure` VALUES ('786', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2753 INSERT INTO `marc_subfield_structure` VALUES ('786', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2754 INSERT INTO `marc_subfield_structure` VALUES ('786', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2755 INSERT INTO `marc_subfield_structure` VALUES ('786', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2756 INSERT INTO `marc_subfield_structure` VALUES ('786', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2757 INSERT INTO `marc_subfield_structure` VALUES ('786', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2758 INSERT INTO `marc_subfield_structure` VALUES ('786', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2759 INSERT INTO `marc_subfield_structure` VALUES ('787', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2760 INSERT INTO `marc_subfield_structure` VALUES ('787', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2761 INSERT INTO `marc_subfield_structure` VALUES ('787', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2762 INSERT INTO `marc_subfield_structure` VALUES ('787', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2763 INSERT INTO `marc_subfield_structure` VALUES ('787', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2764 INSERT INTO `marc_subfield_structure` VALUES ('787', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2765 INSERT INTO `marc_subfield_structure` VALUES ('787', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2766 INSERT INTO `marc_subfield_structure` VALUES ('787', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2767 INSERT INTO `marc_subfield_structure` VALUES ('787', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2768 INSERT INTO `marc_subfield_structure` VALUES ('787', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2769 INSERT INTO `marc_subfield_structure` VALUES ('787', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2770 INSERT INTO `marc_subfield_structure` VALUES ('787', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2771 INSERT INTO `marc_subfield_structure` VALUES ('787', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2772 INSERT INTO `marc_subfield_structure` VALUES ('787', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2773 INSERT INTO `marc_subfield_structure` VALUES ('787', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2774 INSERT INTO `marc_subfield_structure` VALUES ('787', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2775 INSERT INTO `marc_subfield_structure` VALUES ('787', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2776 INSERT INTO `marc_subfield_structure` VALUES ('787', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2777 INSERT INTO `marc_subfield_structure` VALUES ('787', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2778 INSERT INTO `marc_subfield_structure` VALUES ('787', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2779 INSERT INTO `marc_subfield_structure` VALUES ('787', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2780 INSERT INTO `marc_subfield_structure` VALUES ('787', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2781 INSERT INTO `marc_subfield_structure` VALUES ('787', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2782 INSERT INTO `marc_subfield_structure` VALUES ('789', '%', '%', '%', 0, 0, '', 7, '', '', '', 0, -6, '', '', '');
2783 INSERT INTO `marc_subfield_structure` VALUES ('789', '2', '2', '2', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2784 INSERT INTO `marc_subfield_structure` VALUES ('789', '3', '3', '3', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2785 INSERT INTO `marc_subfield_structure` VALUES ('789', '4', '4', '4', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2786 INSERT INTO `marc_subfield_structure` VALUES ('789', '5', '5', '5', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2787 INSERT INTO `marc_subfield_structure` VALUES ('789', '6', '6', '6', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2788 INSERT INTO `marc_subfield_structure` VALUES ('789', '7', '7', '7', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2789 INSERT INTO `marc_subfield_structure` VALUES ('789', '8', '8', '8', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2790 INSERT INTO `marc_subfield_structure` VALUES ('789', '9', '9', '9', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2791 INSERT INTO `marc_subfield_structure` VALUES ('789', 'a', 'a', 'a', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2792 INSERT INTO `marc_subfield_structure` VALUES ('789', 'b', 'b', 'b', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2793 INSERT INTO `marc_subfield_structure` VALUES ('789', 'c', 'c', 'c', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2794 INSERT INTO `marc_subfield_structure` VALUES ('789', 'd', 'd', 'd', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2795 INSERT INTO `marc_subfield_structure` VALUES ('789', 'e', 'e', 'e', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2796 INSERT INTO `marc_subfield_structure` VALUES ('789', 'f', 'f', 'f', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2797 INSERT INTO `marc_subfield_structure` VALUES ('789', 'g', 'g', 'g', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2798 INSERT INTO `marc_subfield_structure` VALUES ('789', 'h', 'h', 'h', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2799 INSERT INTO `marc_subfield_structure` VALUES ('789', 'i', 'i', 'i', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2800 INSERT INTO `marc_subfield_structure` VALUES ('789', 'j', 'j', 'j', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2801 INSERT INTO `marc_subfield_structure` VALUES ('789', 'k', 'k', 'k', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2802 INSERT INTO `marc_subfield_structure` VALUES ('789', 'l', 'l', 'l', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2803 INSERT INTO `marc_subfield_structure` VALUES ('789', 'm', 'm', 'm', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2804 INSERT INTO `marc_subfield_structure` VALUES ('789', 'n', 'n', 'n', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2805 INSERT INTO `marc_subfield_structure` VALUES ('789', 'o', 'o', 'o', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2806 INSERT INTO `marc_subfield_structure` VALUES ('789', 'p', 'p', 'p', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2807 INSERT INTO `marc_subfield_structure` VALUES ('789', 'q', 'q', 'q', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2808 INSERT INTO `marc_subfield_structure` VALUES ('789', 'r', 'r', 'r', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2809 INSERT INTO `marc_subfield_structure` VALUES ('789', 's', 's', 's', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2810 INSERT INTO `marc_subfield_structure` VALUES ('789', 't', 't', 't', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2811 INSERT INTO `marc_subfield_structure` VALUES ('789', 'u', 'u', 'u', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2812 INSERT INTO `marc_subfield_structure` VALUES ('789', 'v', 'v', 'v', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2813 INSERT INTO `marc_subfield_structure` VALUES ('789', 'w', 'w', 'w', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2814 INSERT INTO `marc_subfield_structure` VALUES ('789', 'x', 'x', 'x', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2815 INSERT INTO `marc_subfield_structure` VALUES ('789', 'y', 'y', 'y', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2816 INSERT INTO `marc_subfield_structure` VALUES ('789', 'z', 'z', 'z', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2817 INSERT INTO `marc_subfield_structure` VALUES ('796', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, '', '', '');
2818 INSERT INTO `marc_subfield_structure` VALUES ('796', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2819 INSERT INTO `marc_subfield_structure` VALUES ('796', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2820 INSERT INTO `marc_subfield_structure` VALUES ('796', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2821 INSERT INTO `marc_subfield_structure` VALUES ('796', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2822 INSERT INTO `marc_subfield_structure` VALUES ('796', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2823 INSERT INTO `marc_subfield_structure` VALUES ('796', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2824 INSERT INTO `marc_subfield_structure` VALUES ('796', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2825 INSERT INTO `marc_subfield_structure` VALUES ('796', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2826 INSERT INTO `marc_subfield_structure` VALUES ('796', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2827 INSERT INTO `marc_subfield_structure` VALUES ('796', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2828 INSERT INTO `marc_subfield_structure` VALUES ('796', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2829 INSERT INTO `marc_subfield_structure` VALUES ('796', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2830 INSERT INTO `marc_subfield_structure` VALUES ('796', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2831 INSERT INTO `marc_subfield_structure` VALUES ('796', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2832 INSERT INTO `marc_subfield_structure` VALUES ('796', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2833 INSERT INTO `marc_subfield_structure` VALUES ('796', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2834 INSERT INTO `marc_subfield_structure` VALUES ('796', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2835 INSERT INTO `marc_subfield_structure` VALUES ('796', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2836 INSERT INTO `marc_subfield_structure` VALUES ('796', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2837 INSERT INTO `marc_subfield_structure` VALUES ('796', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2838 INSERT INTO `marc_subfield_structure` VALUES ('796', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2839 INSERT INTO `marc_subfield_structure` VALUES ('796', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2840 INSERT INTO `marc_subfield_structure` VALUES ('796', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2841 INSERT INTO `marc_subfield_structure` VALUES ('796', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2842 INSERT INTO `marc_subfield_structure` VALUES ('796', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2843 INSERT INTO `marc_subfield_structure` VALUES ('796', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2844 INSERT INTO `marc_subfield_structure` VALUES ('796', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2845 INSERT INTO `marc_subfield_structure` VALUES ('797', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, '', '', '');
2846 INSERT INTO `marc_subfield_structure` VALUES ('797', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2847 INSERT INTO `marc_subfield_structure` VALUES ('797', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2848 INSERT INTO `marc_subfield_structure` VALUES ('797', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2849 INSERT INTO `marc_subfield_structure` VALUES ('797', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2850 INSERT INTO `marc_subfield_structure` VALUES ('797', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2851 INSERT INTO `marc_subfield_structure` VALUES ('797', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2852 INSERT INTO `marc_subfield_structure` VALUES ('797', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2853 INSERT INTO `marc_subfield_structure` VALUES ('797', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2854 INSERT INTO `marc_subfield_structure` VALUES ('797', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2855 INSERT INTO `marc_subfield_structure` VALUES ('797', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2856 INSERT INTO `marc_subfield_structure` VALUES ('797', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2857 INSERT INTO `marc_subfield_structure` VALUES ('797', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2858 INSERT INTO `marc_subfield_structure` VALUES ('797', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2859 INSERT INTO `marc_subfield_structure` VALUES ('797', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2860 INSERT INTO `marc_subfield_structure` VALUES ('797', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2861 INSERT INTO `marc_subfield_structure` VALUES ('797', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2862 INSERT INTO `marc_subfield_structure` VALUES ('797', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2863 INSERT INTO `marc_subfield_structure` VALUES ('797', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2864 INSERT INTO `marc_subfield_structure` VALUES ('797', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2865 INSERT INTO `marc_subfield_structure` VALUES ('797', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2866 INSERT INTO `marc_subfield_structure` VALUES ('797', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2867 INSERT INTO `marc_subfield_structure` VALUES ('797', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2868 INSERT INTO `marc_subfield_structure` VALUES ('797', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2869 INSERT INTO `marc_subfield_structure` VALUES ('797', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2870 INSERT INTO `marc_subfield_structure` VALUES ('797', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2871 INSERT INTO `marc_subfield_structure` VALUES ('798', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2872 INSERT INTO `marc_subfield_structure` VALUES ('798', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2873 INSERT INTO `marc_subfield_structure` VALUES ('798', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2874 INSERT INTO `marc_subfield_structure` VALUES ('798', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2875 INSERT INTO `marc_subfield_structure` VALUES ('798', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2876 INSERT INTO `marc_subfield_structure` VALUES ('798', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2877 INSERT INTO `marc_subfield_structure` VALUES ('798', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2878 INSERT INTO `marc_subfield_structure` VALUES ('798', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2879 INSERT INTO `marc_subfield_structure` VALUES ('798', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2880 INSERT INTO `marc_subfield_structure` VALUES ('798', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2881 INSERT INTO `marc_subfield_structure` VALUES ('798', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2882 INSERT INTO `marc_subfield_structure` VALUES ('798', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2883 INSERT INTO `marc_subfield_structure` VALUES ('798', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2884 INSERT INTO `marc_subfield_structure` VALUES ('798', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2885 INSERT INTO `marc_subfield_structure` VALUES ('798', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2886 INSERT INTO `marc_subfield_structure` VALUES ('798', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2887 INSERT INTO `marc_subfield_structure` VALUES ('798', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2888 INSERT INTO `marc_subfield_structure` VALUES ('798', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2889 INSERT INTO `marc_subfield_structure` VALUES ('798', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2890 INSERT INTO `marc_subfield_structure` VALUES ('798', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2891 INSERT INTO `marc_subfield_structure` VALUES ('798', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2892 INSERT INTO `marc_subfield_structure` VALUES ('798', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2893 INSERT INTO `marc_subfield_structure` VALUES ('798', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2894 INSERT INTO `marc_subfield_structure` VALUES ('798', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, '', '', '');
2895 INSERT INTO `marc_subfield_structure` VALUES ('799', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, '', '', '');
2896 INSERT INTO `marc_subfield_structure` VALUES ('799', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2897 INSERT INTO `marc_subfield_structure` VALUES ('799', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2898 INSERT INTO `marc_subfield_structure` VALUES ('799', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2899 INSERT INTO `marc_subfield_structure` VALUES ('799', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2900 INSERT INTO `marc_subfield_structure` VALUES ('799', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, '', '', '');
2901 INSERT INTO `marc_subfield_structure` VALUES ('799', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2902 INSERT INTO `marc_subfield_structure` VALUES ('799', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2903 INSERT INTO `marc_subfield_structure` VALUES ('799', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2904 INSERT INTO `marc_subfield_structure` VALUES ('799', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2905 INSERT INTO `marc_subfield_structure` VALUES ('799', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2906 INSERT INTO `marc_subfield_structure` VALUES ('799', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2907 INSERT INTO `marc_subfield_structure` VALUES ('799', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2908 INSERT INTO `marc_subfield_structure` VALUES ('799', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2909 INSERT INTO `marc_subfield_structure` VALUES ('799', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2910 INSERT INTO `marc_subfield_structure` VALUES ('799', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2911 INSERT INTO `marc_subfield_structure` VALUES ('799', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2912 INSERT INTO `marc_subfield_structure` VALUES ('799', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2913 INSERT INTO `marc_subfield_structure` VALUES ('799', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2914 INSERT INTO `marc_subfield_structure` VALUES ('799', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2915 INSERT INTO `marc_subfield_structure` VALUES ('799', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, '', '', '');
2916 INSERT INTO `marc_subfield_structure` VALUES ('800', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2917 INSERT INTO `marc_subfield_structure` VALUES ('800', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2918 INSERT INTO `marc_subfield_structure` VALUES ('800', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2919 INSERT INTO `marc_subfield_structure` VALUES ('800', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, '', '', '');
2920 INSERT INTO `marc_subfield_structure` VALUES ('800', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2921 INSERT INTO `marc_subfield_structure` VALUES ('800', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2922 INSERT INTO `marc_subfield_structure` VALUES ('800', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2923 INSERT INTO `marc_subfield_structure` VALUES ('800', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2924 INSERT INTO `marc_subfield_structure` VALUES ('800', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2925 INSERT INTO `marc_subfield_structure` VALUES ('800', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2926 INSERT INTO `marc_subfield_structure` VALUES ('800', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2927 INSERT INTO `marc_subfield_structure` VALUES ('800', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2928 INSERT INTO `marc_subfield_structure` VALUES ('800', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2929 INSERT INTO `marc_subfield_structure` VALUES ('800', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2930 INSERT INTO `marc_subfield_structure` VALUES ('800', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2931 INSERT INTO `marc_subfield_structure` VALUES ('800', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2932 INSERT INTO `marc_subfield_structure` VALUES ('800', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2933 INSERT INTO `marc_subfield_structure` VALUES ('800', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2934 INSERT INTO `marc_subfield_structure` VALUES ('800', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2935 INSERT INTO `marc_subfield_structure` VALUES ('800', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2936 INSERT INTO `marc_subfield_structure` VALUES ('800', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2937 INSERT INTO `marc_subfield_structure` VALUES ('800', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2938 INSERT INTO `marc_subfield_structure` VALUES ('800', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2939 INSERT INTO `marc_subfield_structure` VALUES ('800', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2940 INSERT INTO `marc_subfield_structure` VALUES ('800', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2941 INSERT INTO `marc_subfield_structure` VALUES ('810', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2942 INSERT INTO `marc_subfield_structure` VALUES ('810', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2943 INSERT INTO `marc_subfield_structure` VALUES ('810', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2944 INSERT INTO `marc_subfield_structure` VALUES ('810', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, '', '', '');
2945 INSERT INTO `marc_subfield_structure` VALUES ('810', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2946 INSERT INTO `marc_subfield_structure` VALUES ('810', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2947 INSERT INTO `marc_subfield_structure` VALUES ('810', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2948 INSERT INTO `marc_subfield_structure` VALUES ('810', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2949 INSERT INTO `marc_subfield_structure` VALUES ('810', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2950 INSERT INTO `marc_subfield_structure` VALUES ('810', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2951 INSERT INTO `marc_subfield_structure` VALUES ('810', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2952 INSERT INTO `marc_subfield_structure` VALUES ('810', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2953 INSERT INTO `marc_subfield_structure` VALUES ('810', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2954 INSERT INTO `marc_subfield_structure` VALUES ('810', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2955 INSERT INTO `marc_subfield_structure` VALUES ('810', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2956 INSERT INTO `marc_subfield_structure` VALUES ('810', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2957 INSERT INTO `marc_subfield_structure` VALUES ('810', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2958 INSERT INTO `marc_subfield_structure` VALUES ('810', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2959 INSERT INTO `marc_subfield_structure` VALUES ('810', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2960 INSERT INTO `marc_subfield_structure` VALUES ('810', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2961 INSERT INTO `marc_subfield_structure` VALUES ('810', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2962 INSERT INTO `marc_subfield_structure` VALUES ('810', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2963 INSERT INTO `marc_subfield_structure` VALUES ('810', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2964 INSERT INTO `marc_subfield_structure` VALUES ('811', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -1, '', '', '');
2965 INSERT INTO `marc_subfield_structure` VALUES ('811', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2966 INSERT INTO `marc_subfield_structure` VALUES ('811', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2967 INSERT INTO `marc_subfield_structure` VALUES ('811', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, '', '', '');
2968 INSERT INTO `marc_subfield_structure` VALUES ('811', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -1, '', '', '');
2969 INSERT INTO `marc_subfield_structure` VALUES ('811', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2970 INSERT INTO `marc_subfield_structure` VALUES ('811', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -1, '', '', '');
2971 INSERT INTO `marc_subfield_structure` VALUES ('811', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -1, '', '', '');
2972 INSERT INTO `marc_subfield_structure` VALUES ('811', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -1, '', '', '');
2973 INSERT INTO `marc_subfield_structure` VALUES ('811', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2974 INSERT INTO `marc_subfield_structure` VALUES ('811', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2975 INSERT INTO `marc_subfield_structure` VALUES ('811', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2976 INSERT INTO `marc_subfield_structure` VALUES ('811', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2977 INSERT INTO `marc_subfield_structure` VALUES ('811', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2978 INSERT INTO `marc_subfield_structure` VALUES ('811', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2979 INSERT INTO `marc_subfield_structure` VALUES ('811', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2980 INSERT INTO `marc_subfield_structure` VALUES ('811', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2981 INSERT INTO `marc_subfield_structure` VALUES ('811', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2982 INSERT INTO `marc_subfield_structure` VALUES ('811', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2983 INSERT INTO `marc_subfield_structure` VALUES ('811', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2984 INSERT INTO `marc_subfield_structure` VALUES ('811', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
2985 INSERT INTO `marc_subfield_structure` VALUES ('830', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2986 INSERT INTO `marc_subfield_structure` VALUES ('830', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2987 INSERT INTO `marc_subfield_structure` VALUES ('830', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, '', '', '');
2988 INSERT INTO `marc_subfield_structure` VALUES ('830', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2989 INSERT INTO `marc_subfield_structure` VALUES ('830', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2990 INSERT INTO `marc_subfield_structure` VALUES ('830', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2991 INSERT INTO `marc_subfield_structure` VALUES ('830', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2992 INSERT INTO `marc_subfield_structure` VALUES ('830', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2993 INSERT INTO `marc_subfield_structure` VALUES ('830', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2994 INSERT INTO `marc_subfield_structure` VALUES ('830', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
2995 INSERT INTO `marc_subfield_structure` VALUES ('830', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2996 INSERT INTO `marc_subfield_structure` VALUES ('830', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2997 INSERT INTO `marc_subfield_structure` VALUES ('830', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2998 INSERT INTO `marc_subfield_structure` VALUES ('830', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
2999 INSERT INTO `marc_subfield_structure` VALUES ('830', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
3000 INSERT INTO `marc_subfield_structure` VALUES ('830', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -1, '', '', '');
3001 INSERT INTO `marc_subfield_structure` VALUES ('830', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3002 INSERT INTO `marc_subfield_structure` VALUES ('830', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3003 INSERT INTO `marc_subfield_structure` VALUES ('840', 'a', 'Title', 'Title', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3004 INSERT INTO `marc_subfield_structure` VALUES ('840', 'h', 'Medium', 'Medium', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3005 INSERT INTO `marc_subfield_structure` VALUES ('840', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3006 INSERT INTO `marc_subfield_structure` VALUES ('841', 'a', 'Type of record', 'Type of record', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3007 INSERT INTO `marc_subfield_structure` VALUES ('841', 'b', 'Fixed-length data elements', 'Fixed-length data elements', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3008 INSERT INTO `marc_subfield_structure` VALUES ('841', 'e', 'Encoding level', 'Encoding level', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3009 INSERT INTO `marc_subfield_structure` VALUES ('842', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3010 INSERT INTO `marc_subfield_structure` VALUES ('842', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3011 INSERT INTO `marc_subfield_structure` VALUES ('842', 'a', 'Textual physical form designator', 'Textual physical form designator', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3012 INSERT INTO `marc_subfield_structure` VALUES ('843', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3013 INSERT INTO `marc_subfield_structure` VALUES ('843', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3014 INSERT INTO `marc_subfield_structure` VALUES ('843', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3015 INSERT INTO `marc_subfield_structure` VALUES ('843', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3016 INSERT INTO `marc_subfield_structure` VALUES ('843', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3017 INSERT INTO `marc_subfield_structure` VALUES ('843', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3018 INSERT INTO `marc_subfield_structure` VALUES ('843', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3019 INSERT INTO `marc_subfield_structure` VALUES ('843', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3020 INSERT INTO `marc_subfield_structure` VALUES ('843', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3021 INSERT INTO `marc_subfield_structure` VALUES ('843', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3022 INSERT INTO `marc_subfield_structure` VALUES ('843', 'm', 'Dates of publication and/or sequential designation of issues reproduced', 'Dates of publication and/or sequential designation of issues reproduced', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3023 INSERT INTO `marc_subfield_structure` VALUES ('843', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3024 INSERT INTO `marc_subfield_structure` VALUES ('844', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3025 INSERT INTO `marc_subfield_structure` VALUES ('844', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3026 INSERT INTO `marc_subfield_structure` VALUES ('844', 'a', 'Name of unit', 'Name of unit', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3027 INSERT INTO `marc_subfield_structure` VALUES ('845', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3028 INSERT INTO `marc_subfield_structure` VALUES ('845', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3029 INSERT INTO `marc_subfield_structure` VALUES ('845', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3030 INSERT INTO `marc_subfield_structure` VALUES ('845', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3031 INSERT INTO `marc_subfield_structure` VALUES ('845', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3032 INSERT INTO `marc_subfield_structure` VALUES ('845', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3033 INSERT INTO `marc_subfield_structure` VALUES ('845', 'c', 'Authorization', 'Authorization', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3034 INSERT INTO `marc_subfield_structure` VALUES ('845', 'd', 'Authorized users', 'Authorized users', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3035 INSERT INTO `marc_subfield_structure` VALUES ('850', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3036 INSERT INTO `marc_subfield_structure` VALUES ('850', 'a', 'Holding institution', 'Holding institution', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3037 INSERT INTO `marc_subfield_structure` VALUES ('850', 'b', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3038 INSERT INTO `marc_subfield_structure` VALUES ('850', 'd', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3039 INSERT INTO `marc_subfield_structure` VALUES ('850', 'e', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3040 INSERT INTO `marc_subfield_structure` VALUES ('851', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3041 INSERT INTO `marc_subfield_structure` VALUES ('851', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3042 INSERT INTO `marc_subfield_structure` VALUES ('851', 'a', 'Name (custodian or owner)', 'Name (custodian or owner)', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3043 INSERT INTO `marc_subfield_structure` VALUES ('851', 'b', 'Institutional division', 'Institutional division', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3044 INSERT INTO `marc_subfield_structure` VALUES ('851', 'c', 'Street address', 'Street address', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3045 INSERT INTO `marc_subfield_structure` VALUES ('851', 'd', 'Country', 'Country', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3046 INSERT INTO `marc_subfield_structure` VALUES ('851', 'e', 'Location of units', 'Location of units', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3047 INSERT INTO `marc_subfield_structure` VALUES ('851', 'f', 'Item number', 'Item number', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3048 INSERT INTO `marc_subfield_structure` VALUES ('851', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, '', '', '');
3049 INSERT INTO `marc_subfield_structure` VALUES ('852', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3050 INSERT INTO `marc_subfield_structure` VALUES ('852', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3051 INSERT INTO `marc_subfield_structure` VALUES ('852', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3052 INSERT INTO `marc_subfield_structure` VALUES ('852', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3053 INSERT INTO `marc_subfield_structure` VALUES ('852', 'a', 'Location', 'Location', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3054 INSERT INTO `marc_subfield_structure` VALUES ('852', 'b', 'Sublocation or collection', 'Sublocation or collection', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3055 INSERT INTO `marc_subfield_structure` VALUES ('852', 'c', 'Shelving location', 'Shelving location', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3056 INSERT INTO `marc_subfield_structure` VALUES ('852', 'e', 'Address', 'Address', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3057 INSERT INTO `marc_subfield_structure` VALUES ('852', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3058 INSERT INTO `marc_subfield_structure` VALUES ('852', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3059 INSERT INTO `marc_subfield_structure` VALUES ('852', 'h', 'Classification part', 'Classification part', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3060 INSERT INTO `marc_subfield_structure` VALUES ('852', 'i', 'Item part', 'Item part', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3061 INSERT INTO `marc_subfield_structure` VALUES ('852', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3062 INSERT INTO `marc_subfield_structure` VALUES ('852', 'k', 'Call number prefix', 'Call number prefix', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3063 INSERT INTO `marc_subfield_structure` VALUES ('852', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3064 INSERT INTO `marc_subfield_structure` VALUES ('852', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3065 INSERT INTO `marc_subfield_structure` VALUES ('852', 'n', 'Country code', 'Country code', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3066 INSERT INTO `marc_subfield_structure` VALUES ('852', 'p', 'Piece designation', 'Piece designation', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3067 INSERT INTO `marc_subfield_structure` VALUES ('852', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3068 INSERT INTO `marc_subfield_structure` VALUES ('852', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3069 INSERT INTO `marc_subfield_structure` VALUES ('852', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3070 INSERT INTO `marc_subfield_structure` VALUES ('852', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3071 INSERT INTO `marc_subfield_structure` VALUES ('852', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3072 INSERT INTO `marc_subfield_structure` VALUES ('853', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3073 INSERT INTO `marc_subfield_structure` VALUES ('853', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3074 INSERT INTO `marc_subfield_structure` VALUES ('853', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3075 INSERT INTO `marc_subfield_structure` VALUES ('853', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3076 INSERT INTO `marc_subfield_structure` VALUES ('853', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3077 INSERT INTO `marc_subfield_structure` VALUES ('853', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3078 INSERT INTO `marc_subfield_structure` VALUES ('853', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3079 INSERT INTO `marc_subfield_structure` VALUES ('853', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3080 INSERT INTO `marc_subfield_structure` VALUES ('853', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3081 INSERT INTO `marc_subfield_structure` VALUES ('853', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3082 INSERT INTO `marc_subfield_structure` VALUES ('853', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3083 INSERT INTO `marc_subfield_structure` VALUES ('853', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3084 INSERT INTO `marc_subfield_structure` VALUES ('853', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3085 INSERT INTO `marc_subfield_structure` VALUES ('853', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3086 INSERT INTO `marc_subfield_structure` VALUES ('853', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3087 INSERT INTO `marc_subfield_structure` VALUES ('853', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3088 INSERT INTO `marc_subfield_structure` VALUES ('853', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3089 INSERT INTO `marc_subfield_structure` VALUES ('853', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3090 INSERT INTO `marc_subfield_structure` VALUES ('853', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3091 INSERT INTO `marc_subfield_structure` VALUES ('853', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3092 INSERT INTO `marc_subfield_structure` VALUES ('853', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3093 INSERT INTO `marc_subfield_structure` VALUES ('853', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3094 INSERT INTO `marc_subfield_structure` VALUES ('853', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3095 INSERT INTO `marc_subfield_structure` VALUES ('853', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3096 INSERT INTO `marc_subfield_structure` VALUES ('853', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3097 INSERT INTO `marc_subfield_structure` VALUES ('854', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3098 INSERT INTO `marc_subfield_structure` VALUES ('854', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3099 INSERT INTO `marc_subfield_structure` VALUES ('854', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3100 INSERT INTO `marc_subfield_structure` VALUES ('854', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3101 INSERT INTO `marc_subfield_structure` VALUES ('854', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3102 INSERT INTO `marc_subfield_structure` VALUES ('854', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3103 INSERT INTO `marc_subfield_structure` VALUES ('854', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3104 INSERT INTO `marc_subfield_structure` VALUES ('854', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3105 INSERT INTO `marc_subfield_structure` VALUES ('854', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3106 INSERT INTO `marc_subfield_structure` VALUES ('854', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3107 INSERT INTO `marc_subfield_structure` VALUES ('854', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3108 INSERT INTO `marc_subfield_structure` VALUES ('854', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3109 INSERT INTO `marc_subfield_structure` VALUES ('854', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3110 INSERT INTO `marc_subfield_structure` VALUES ('854', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3111 INSERT INTO `marc_subfield_structure` VALUES ('854', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3112 INSERT INTO `marc_subfield_structure` VALUES ('854', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3113 INSERT INTO `marc_subfield_structure` VALUES ('854', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3114 INSERT INTO `marc_subfield_structure` VALUES ('854', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3115 INSERT INTO `marc_subfield_structure` VALUES ('854', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3116 INSERT INTO `marc_subfield_structure` VALUES ('854', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3117 INSERT INTO `marc_subfield_structure` VALUES ('854', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3118 INSERT INTO `marc_subfield_structure` VALUES ('854', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3119 INSERT INTO `marc_subfield_structure` VALUES ('854', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3120 INSERT INTO `marc_subfield_structure` VALUES ('854', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3121 INSERT INTO `marc_subfield_structure` VALUES ('854', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3122 INSERT INTO `marc_subfield_structure` VALUES ('855', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3123 INSERT INTO `marc_subfield_structure` VALUES ('855', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3124 INSERT INTO `marc_subfield_structure` VALUES ('855', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3125 INSERT INTO `marc_subfield_structure` VALUES ('855', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3126 INSERT INTO `marc_subfield_structure` VALUES ('855', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3127 INSERT INTO `marc_subfield_structure` VALUES ('855', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3128 INSERT INTO `marc_subfield_structure` VALUES ('855', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3129 INSERT INTO `marc_subfield_structure` VALUES ('855', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3130 INSERT INTO `marc_subfield_structure` VALUES ('855', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3131 INSERT INTO `marc_subfield_structure` VALUES ('855', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3132 INSERT INTO `marc_subfield_structure` VALUES ('855', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3133 INSERT INTO `marc_subfield_structure` VALUES ('855', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3134 INSERT INTO `marc_subfield_structure` VALUES ('855', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3135 INSERT INTO `marc_subfield_structure` VALUES ('855', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3136 INSERT INTO `marc_subfield_structure` VALUES ('855', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3137 INSERT INTO `marc_subfield_structure` VALUES ('855', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3138 INSERT INTO `marc_subfield_structure` VALUES ('855', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3139 INSERT INTO `marc_subfield_structure` VALUES ('855', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3140 INSERT INTO `marc_subfield_structure` VALUES ('855', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3141 INSERT INTO `marc_subfield_structure` VALUES ('855', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3142 INSERT INTO `marc_subfield_structure` VALUES ('855', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3143 INSERT INTO `marc_subfield_structure` VALUES ('855', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3144 INSERT INTO `marc_subfield_structure` VALUES ('855', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3145 INSERT INTO `marc_subfield_structure` VALUES ('855', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3146 INSERT INTO `marc_subfield_structure` VALUES ('855', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3147 INSERT INTO `marc_subfield_structure` VALUES ('856', '2', 'Access method', 'Access method', 0, 0, '', 8, '', '', '', 0, -6, '', '', '');
3148 INSERT INTO `marc_subfield_structure` VALUES ('856', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', 0, -6, '', '', '');
3149 INSERT INTO `marc_subfield_structure` VALUES ('856', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', 0, -6, '', '', '');
3150 INSERT INTO `marc_subfield_structure` VALUES ('856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', 0, -6, '', '', '');
3151 INSERT INTO `marc_subfield_structure` VALUES ('856', 'a', 'Host name', 'Host name', 1, 0, '', 8, '', '', '', 0, -1, '', '', '');
3152 INSERT INTO `marc_subfield_structure` VALUES ('856', 'b', 'Access number', 'Access number', 1, 0, '', 8, '', '', '', 0, -1, '', '', '');
3153 INSERT INTO `marc_subfield_structure` VALUES ('856', 'c', 'Compression information', 'Compression information', 1, 0, '', 8, '', '', '', 0, -1, '', '', '');
3154 INSERT INTO `marc_subfield_structure` VALUES ('856', 'd', 'Path', 'Path', 1, 0, '', 8, '', '', '', 0, -1, '', '', '');
3155 INSERT INTO `marc_subfield_structure` VALUES ('856', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 8, '', '', '', 0, -1, '', '', '');
3156 INSERT INTO `marc_subfield_structure` VALUES ('856', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 8, '', '', '', 0, -1, '', '', '');
3157 INSERT INTO `marc_subfield_structure` VALUES ('856', 'i', 'Instruction', 'Instruction', 1, 0, '', 8, '', '', '', 0, -1, '', '', '');
3158 INSERT INTO `marc_subfield_structure` VALUES ('856', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 8, '', '', '', 0, -1, '', '', '');
3159 INSERT INTO `marc_subfield_structure` VALUES ('856', 'k', 'Password', 'Password', 0, 0, '', 8, '', '', '', 0, -1, '', '', '');
3160 INSERT INTO `marc_subfield_structure` VALUES ('856', 'l', 'Logon', 'Logon', 0, 0, '', 8, '', '', '', 0, -1, '', '', '');
3161 INSERT INTO `marc_subfield_structure` VALUES ('856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 8, '', '', '', 0, -1, '', '', '');
3162 INSERT INTO `marc_subfield_structure` VALUES ('856', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 8, '', '', '', 0, -1, '', '', '');
3163 INSERT INTO `marc_subfield_structure` VALUES ('856', 'o', 'Operating system', 'Operating system', 0, 0, '', 8, '', '', '', 0, -1, '', '', '');
3164 INSERT INTO `marc_subfield_structure` VALUES ('856', 'p', 'Port', 'Port', 0, 0, '', 8, '', '', '', 0, -1, '', '', '');
3165 INSERT INTO `marc_subfield_structure` VALUES ('856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 8, '', '', '', 0, -1, '', '', '');
3166 INSERT INTO `marc_subfield_structure` VALUES ('856', 'r', 'Settings', 'Settings', 0, 0, '', 8, '', '', '', 0, -1, '', '', '');
3167 INSERT INTO `marc_subfield_structure` VALUES ('856', 's', 'File size', 'File size', 1, 0, '', 8, '', '', '', 0, -1, '', '', '');
3168 INSERT INTO `marc_subfield_structure` VALUES ('856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 8, '', '', '', 0, -1, '', '', '');
3169 INSERT INTO `marc_subfield_structure` VALUES ('856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 'biblioitems.url', 8, '', '', '', 1, 0, '', '', '');
3170 INSERT INTO `marc_subfield_structure` VALUES ('856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 8, '', '', '', 0, -1, '', '', '');
3171 INSERT INTO `marc_subfield_structure` VALUES ('856', 'w', 'Record control number', 'Record control number', 1, 0, '', 8, '', '', '', 0, -1, '', '', '');
3172 INSERT INTO `marc_subfield_structure` VALUES ('856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 1, '', '', '');
3173 INSERT INTO `marc_subfield_structure` VALUES ('856', 'y', 'Link text', 'Link text', 1, 0, '', 8, '', '', '', 0, 0, '', '', '');
3174 INSERT INTO `marc_subfield_structure` VALUES ('856', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 0, '', '', '');
3175 INSERT INTO `marc_subfield_structure` VALUES ('859', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3176 INSERT INTO `marc_subfield_structure` VALUES ('859', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3177 INSERT INTO `marc_subfield_structure` VALUES ('859', 'd', 'TDC (RLIN)', 'TDC (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3178 INSERT INTO `marc_subfield_structure` VALUES ('859', 'l', 'LIB (RLIN)', 'LIB (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3179 INSERT INTO `marc_subfield_structure` VALUES ('859', 'p', 'PRI (RLIN)', 'PRI (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3180 INSERT INTO `marc_subfield_structure` VALUES ('859', 'r', 'REG (RLIN)', 'REG (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3181 INSERT INTO `marc_subfield_structure` VALUES ('859', 'v', 'VER (RLIN)', 'VER (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3182 INSERT INTO `marc_subfield_structure` VALUES ('859', 'x', 'LDEL (RLIN)', 'LDEL (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3183 INSERT INTO `marc_subfield_structure` VALUES ('866', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3184 INSERT INTO `marc_subfield_structure` VALUES ('866', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3185 INSERT INTO `marc_subfield_structure` VALUES ('866', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3186 INSERT INTO `marc_subfield_structure` VALUES ('866', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, '', '', '');
3187 INSERT INTO `marc_subfield_structure` VALUES ('866', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, '', '', '');
3188 INSERT INTO `marc_subfield_structure` VALUES ('867', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3189 INSERT INTO `marc_subfield_structure` VALUES ('867', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3190 INSERT INTO `marc_subfield_structure` VALUES ('867', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3191 INSERT INTO `marc_subfield_structure` VALUES ('867', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, '', '', '');
3192 INSERT INTO `marc_subfield_structure` VALUES ('867', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, '', '', '');
3193 INSERT INTO `marc_subfield_structure` VALUES ('868', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3194 INSERT INTO `marc_subfield_structure` VALUES ('868', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3195 INSERT INTO `marc_subfield_structure` VALUES ('868', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, '', '', '');
3196 INSERT INTO `marc_subfield_structure` VALUES ('868', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, '', '', '');
3197 INSERT INTO `marc_subfield_structure` VALUES ('868', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, '', '', '');
3198 INSERT INTO `marc_subfield_structure` VALUES ('870', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3199 INSERT INTO `marc_subfield_structure` VALUES ('870', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3200 INSERT INTO `marc_subfield_structure` VALUES ('870', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3201 INSERT INTO `marc_subfield_structure` VALUES ('870', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3202 INSERT INTO `marc_subfield_structure` VALUES ('870', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3203 INSERT INTO `marc_subfield_structure` VALUES ('870', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3204 INSERT INTO `marc_subfield_structure` VALUES ('870', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3205 INSERT INTO `marc_subfield_structure` VALUES ('870', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3206 INSERT INTO `marc_subfield_structure` VALUES ('870', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3207 INSERT INTO `marc_subfield_structure` VALUES ('870', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3208 INSERT INTO `marc_subfield_structure` VALUES ('870', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3209 INSERT INTO `marc_subfield_structure` VALUES ('870', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3210 INSERT INTO `marc_subfield_structure` VALUES ('870', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3211 INSERT INTO `marc_subfield_structure` VALUES ('870', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3212 INSERT INTO `marc_subfield_structure` VALUES ('870', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3213 INSERT INTO `marc_subfield_structure` VALUES ('870', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3214 INSERT INTO `marc_subfield_structure` VALUES ('870', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3215 INSERT INTO `marc_subfield_structure` VALUES ('871', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3216 INSERT INTO `marc_subfield_structure` VALUES ('871', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3217 INSERT INTO `marc_subfield_structure` VALUES ('871', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3218 INSERT INTO `marc_subfield_structure` VALUES ('871', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3219 INSERT INTO `marc_subfield_structure` VALUES ('871', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3220 INSERT INTO `marc_subfield_structure` VALUES ('871', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3221 INSERT INTO `marc_subfield_structure` VALUES ('871', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3222 INSERT INTO `marc_subfield_structure` VALUES ('871', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3223 INSERT INTO `marc_subfield_structure` VALUES ('871', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3224 INSERT INTO `marc_subfield_structure` VALUES ('871', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3225 INSERT INTO `marc_subfield_structure` VALUES ('871', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3226 INSERT INTO `marc_subfield_structure` VALUES ('871', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3227 INSERT INTO `marc_subfield_structure` VALUES ('871', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3228 INSERT INTO `marc_subfield_structure` VALUES ('871', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3229 INSERT INTO `marc_subfield_structure` VALUES ('871', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3230 INSERT INTO `marc_subfield_structure` VALUES ('871', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3231 INSERT INTO `marc_subfield_structure` VALUES ('872', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3232 INSERT INTO `marc_subfield_structure` VALUES ('872', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3233 INSERT INTO `marc_subfield_structure` VALUES ('872', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3234 INSERT INTO `marc_subfield_structure` VALUES ('872', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3235 INSERT INTO `marc_subfield_structure` VALUES ('872', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3236 INSERT INTO `marc_subfield_structure` VALUES ('872', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3237 INSERT INTO `marc_subfield_structure` VALUES ('872', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3238 INSERT INTO `marc_subfield_structure` VALUES ('872', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3239 INSERT INTO `marc_subfield_structure` VALUES ('872', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3240 INSERT INTO `marc_subfield_structure` VALUES ('872', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3241 INSERT INTO `marc_subfield_structure` VALUES ('872', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3242 INSERT INTO `marc_subfield_structure` VALUES ('872', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3243 INSERT INTO `marc_subfield_structure` VALUES ('872', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3244 INSERT INTO `marc_subfield_structure` VALUES ('872', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3245 INSERT INTO `marc_subfield_structure` VALUES ('872', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3246 INSERT INTO `marc_subfield_structure` VALUES ('872', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3247 INSERT INTO `marc_subfield_structure` VALUES ('872', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3248 INSERT INTO `marc_subfield_structure` VALUES ('873', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3249 INSERT INTO `marc_subfield_structure` VALUES ('873', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3250 INSERT INTO `marc_subfield_structure` VALUES ('873', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3251 INSERT INTO `marc_subfield_structure` VALUES ('873', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3252 INSERT INTO `marc_subfield_structure` VALUES ('873', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3253 INSERT INTO `marc_subfield_structure` VALUES ('873', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3254 INSERT INTO `marc_subfield_structure` VALUES ('873', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3255 INSERT INTO `marc_subfield_structure` VALUES ('873', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3256 INSERT INTO `marc_subfield_structure` VALUES ('873', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3257 INSERT INTO `marc_subfield_structure` VALUES ('873', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3258 INSERT INTO `marc_subfield_structure` VALUES ('873', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3259 INSERT INTO `marc_subfield_structure` VALUES ('873', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3260 INSERT INTO `marc_subfield_structure` VALUES ('873', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3261 INSERT INTO `marc_subfield_structure` VALUES ('873', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3262 INSERT INTO `marc_subfield_structure` VALUES ('873', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3263 INSERT INTO `marc_subfield_structure` VALUES ('873', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3264 INSERT INTO `marc_subfield_structure` VALUES ('876', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3265 INSERT INTO `marc_subfield_structure` VALUES ('876', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3266 INSERT INTO `marc_subfield_structure` VALUES ('876', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3267 INSERT INTO `marc_subfield_structure` VALUES ('876', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3268 INSERT INTO `marc_subfield_structure` VALUES ('876', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3269 INSERT INTO `marc_subfield_structure` VALUES ('876', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3270 INSERT INTO `marc_subfield_structure` VALUES ('876', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3271 INSERT INTO `marc_subfield_structure` VALUES ('876', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3272 INSERT INTO `marc_subfield_structure` VALUES ('876', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3273 INSERT INTO `marc_subfield_structure` VALUES ('876', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3274 INSERT INTO `marc_subfield_structure` VALUES ('876', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3275 INSERT INTO `marc_subfield_structure` VALUES ('876', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3276 INSERT INTO `marc_subfield_structure` VALUES ('876', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3277 INSERT INTO `marc_subfield_structure` VALUES ('876', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3278 INSERT INTO `marc_subfield_structure` VALUES ('876', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3279 INSERT INTO `marc_subfield_structure` VALUES ('876', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3280 INSERT INTO `marc_subfield_structure` VALUES ('877', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3281 INSERT INTO `marc_subfield_structure` VALUES ('877', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3282 INSERT INTO `marc_subfield_structure` VALUES ('877', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3283 INSERT INTO `marc_subfield_structure` VALUES ('877', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3284 INSERT INTO `marc_subfield_structure` VALUES ('877', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3285 INSERT INTO `marc_subfield_structure` VALUES ('877', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3286 INSERT INTO `marc_subfield_structure` VALUES ('877', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3287 INSERT INTO `marc_subfield_structure` VALUES ('877', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3288 INSERT INTO `marc_subfield_structure` VALUES ('877', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3289 INSERT INTO `marc_subfield_structure` VALUES ('877', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3290 INSERT INTO `marc_subfield_structure` VALUES ('877', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3291 INSERT INTO `marc_subfield_structure` VALUES ('877', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3292 INSERT INTO `marc_subfield_structure` VALUES ('877', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3293 INSERT INTO `marc_subfield_structure` VALUES ('877', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3294 INSERT INTO `marc_subfield_structure` VALUES ('877', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3295 INSERT INTO `marc_subfield_structure` VALUES ('877', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3296 INSERT INTO `marc_subfield_structure` VALUES ('878', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3297 INSERT INTO `marc_subfield_structure` VALUES ('878', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3298 INSERT INTO `marc_subfield_structure` VALUES ('878', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3299 INSERT INTO `marc_subfield_structure` VALUES ('878', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3300 INSERT INTO `marc_subfield_structure` VALUES ('878', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3301 INSERT INTO `marc_subfield_structure` VALUES ('878', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3302 INSERT INTO `marc_subfield_structure` VALUES ('878', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3303 INSERT INTO `marc_subfield_structure` VALUES ('878', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3304 INSERT INTO `marc_subfield_structure` VALUES ('878', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3305 INSERT INTO `marc_subfield_structure` VALUES ('878', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3306 INSERT INTO `marc_subfield_structure` VALUES ('878', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3307 INSERT INTO `marc_subfield_structure` VALUES ('878', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3308 INSERT INTO `marc_subfield_structure` VALUES ('878', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3309 INSERT INTO `marc_subfield_structure` VALUES ('878', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3310 INSERT INTO `marc_subfield_structure` VALUES ('878', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3311 INSERT INTO `marc_subfield_structure` VALUES ('878', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3312 INSERT INTO `marc_subfield_structure` VALUES ('880', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3313 INSERT INTO `marc_subfield_structure` VALUES ('880', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3314 INSERT INTO `marc_subfield_structure` VALUES ('880', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3315 INSERT INTO `marc_subfield_structure` VALUES ('880', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3316 INSERT INTO `marc_subfield_structure` VALUES ('880', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3317 INSERT INTO `marc_subfield_structure` VALUES ('880', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3318 INSERT INTO `marc_subfield_structure` VALUES ('880', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3319 INSERT INTO `marc_subfield_structure` VALUES ('880', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3320 INSERT INTO `marc_subfield_structure` VALUES ('880', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3321 INSERT INTO `marc_subfield_structure` VALUES ('880', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3322 INSERT INTO `marc_subfield_structure` VALUES ('880', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3323 INSERT INTO `marc_subfield_structure` VALUES ('880', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3324 INSERT INTO `marc_subfield_structure` VALUES ('880', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3325 INSERT INTO `marc_subfield_structure` VALUES ('880', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3326 INSERT INTO `marc_subfield_structure` VALUES ('880', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3327 INSERT INTO `marc_subfield_structure` VALUES ('880', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3328 INSERT INTO `marc_subfield_structure` VALUES ('880', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3329 INSERT INTO `marc_subfield_structure` VALUES ('880', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3330 INSERT INTO `marc_subfield_structure` VALUES ('880', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3331 INSERT INTO `marc_subfield_structure` VALUES ('880', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3332 INSERT INTO `marc_subfield_structure` VALUES ('880', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3333 INSERT INTO `marc_subfield_structure` VALUES ('880', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3334 INSERT INTO `marc_subfield_structure` VALUES ('880', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3335 INSERT INTO `marc_subfield_structure` VALUES ('880', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3336 INSERT INTO `marc_subfield_structure` VALUES ('880', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3337 INSERT INTO `marc_subfield_structure` VALUES ('880', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3338 INSERT INTO `marc_subfield_structure` VALUES ('880', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3339 INSERT INTO `marc_subfield_structure` VALUES ('880', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3340 INSERT INTO `marc_subfield_structure` VALUES ('880', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3341 INSERT INTO `marc_subfield_structure` VALUES ('880', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3342 INSERT INTO `marc_subfield_structure` VALUES ('880', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3343 INSERT INTO `marc_subfield_structure` VALUES ('880', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3344 INSERT INTO `marc_subfield_structure` VALUES ('880', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3345 INSERT INTO `marc_subfield_structure` VALUES ('880', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3346 INSERT INTO `marc_subfield_structure` VALUES ('886', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3347 INSERT INTO `marc_subfield_structure` VALUES ('886', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3348 INSERT INTO `marc_subfield_structure` VALUES ('886', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3349 INSERT INTO `marc_subfield_structure` VALUES ('886', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3350 INSERT INTO `marc_subfield_structure` VALUES ('886', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3351 INSERT INTO `marc_subfield_structure` VALUES ('886', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3352 INSERT INTO `marc_subfield_structure` VALUES ('886', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3353 INSERT INTO `marc_subfield_structure` VALUES ('886', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3354 INSERT INTO `marc_subfield_structure` VALUES ('886', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3355 INSERT INTO `marc_subfield_structure` VALUES ('886', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3356 INSERT INTO `marc_subfield_structure` VALUES ('886', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3357 INSERT INTO `marc_subfield_structure` VALUES ('886', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3358 INSERT INTO `marc_subfield_structure` VALUES ('886', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3359 INSERT INTO `marc_subfield_structure` VALUES ('886', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3360 INSERT INTO `marc_subfield_structure` VALUES ('886', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3361 INSERT INTO `marc_subfield_structure` VALUES ('886', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3362 INSERT INTO `marc_subfield_structure` VALUES ('886', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3363 INSERT INTO `marc_subfield_structure` VALUES ('886', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3364 INSERT INTO `marc_subfield_structure` VALUES ('886', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3365 INSERT INTO `marc_subfield_structure` VALUES ('886', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3366 INSERT INTO `marc_subfield_structure` VALUES ('886', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3367 INSERT INTO `marc_subfield_structure` VALUES ('886', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3368 INSERT INTO `marc_subfield_structure` VALUES ('886', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3369 INSERT INTO `marc_subfield_structure` VALUES ('886', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3370 INSERT INTO `marc_subfield_structure` VALUES ('886', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3371 INSERT INTO `marc_subfield_structure` VALUES ('886', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3372 INSERT INTO `marc_subfield_structure` VALUES ('886', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3373 INSERT INTO `marc_subfield_structure` VALUES ('886', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3374 INSERT INTO `marc_subfield_structure` VALUES ('886', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3375 INSERT INTO `marc_subfield_structure` VALUES ('886', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3376 INSERT INTO `marc_subfield_structure` VALUES ('886', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3377 INSERT INTO `marc_subfield_structure` VALUES ('886', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3378 INSERT INTO `marc_subfield_structure` VALUES ('886', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3379 INSERT INTO `marc_subfield_structure` VALUES ('886', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3380 INSERT INTO `marc_subfield_structure` VALUES ('886', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3381 INSERT INTO `marc_subfield_structure` VALUES ('886', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3382 INSERT INTO `marc_subfield_structure` VALUES ('887', '2', 'Source of data', 'Source of data', 0, 0, NULL, 8, NULL, NULL, '', NULL, 0, '', '', '');
3383 INSERT INTO `marc_subfield_structure` VALUES ('887', 'a', 'Content of non-MARC field', 'Content of non-MARC field', 0, 0, NULL, 8, NULL, NULL, '', NULL, 0, '', '', '');
3384 INSERT INTO `marc_subfield_structure` VALUES ('896', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, '', '', '');
3385 INSERT INTO `marc_subfield_structure` VALUES ('896', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3386 INSERT INTO `marc_subfield_structure` VALUES ('896', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3387 INSERT INTO `marc_subfield_structure` VALUES ('896', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3388 INSERT INTO `marc_subfield_structure` VALUES ('896', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, '', '', '');
3389 INSERT INTO `marc_subfield_structure` VALUES ('896', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3390 INSERT INTO `marc_subfield_structure` VALUES ('896', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3391 INSERT INTO `marc_subfield_structure` VALUES ('896', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3392 INSERT INTO `marc_subfield_structure` VALUES ('896', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3393 INSERT INTO `marc_subfield_structure` VALUES ('896', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3394 INSERT INTO `marc_subfield_structure` VALUES ('896', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3395 INSERT INTO `marc_subfield_structure` VALUES ('896', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3396 INSERT INTO `marc_subfield_structure` VALUES ('896', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3397 INSERT INTO `marc_subfield_structure` VALUES ('896', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3398 INSERT INTO `marc_subfield_structure` VALUES ('896', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3399 INSERT INTO `marc_subfield_structure` VALUES ('896', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3400 INSERT INTO `marc_subfield_structure` VALUES ('896', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3401 INSERT INTO `marc_subfield_structure` VALUES ('896', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3402 INSERT INTO `marc_subfield_structure` VALUES ('896', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3403 INSERT INTO `marc_subfield_structure` VALUES ('896', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3404 INSERT INTO `marc_subfield_structure` VALUES ('896', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3405 INSERT INTO `marc_subfield_structure` VALUES ('896', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3406 INSERT INTO `marc_subfield_structure` VALUES ('896', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3407 INSERT INTO `marc_subfield_structure` VALUES ('896', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3408 INSERT INTO `marc_subfield_structure` VALUES ('896', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3409 INSERT INTO `marc_subfield_structure` VALUES ('896', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3410 INSERT INTO `marc_subfield_structure` VALUES ('897', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, '', '', '');
3411 INSERT INTO `marc_subfield_structure` VALUES ('897', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3412 INSERT INTO `marc_subfield_structure` VALUES ('897', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3413 INSERT INTO `marc_subfield_structure` VALUES ('897', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3414 INSERT INTO `marc_subfield_structure` VALUES ('897', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, '', '', '');
3415 INSERT INTO `marc_subfield_structure` VALUES ('897', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3416 INSERT INTO `marc_subfield_structure` VALUES ('897', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3417 INSERT INTO `marc_subfield_structure` VALUES ('897', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3418 INSERT INTO `marc_subfield_structure` VALUES ('897', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3419 INSERT INTO `marc_subfield_structure` VALUES ('897', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3420 INSERT INTO `marc_subfield_structure` VALUES ('897', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3421 INSERT INTO `marc_subfield_structure` VALUES ('897', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3422 INSERT INTO `marc_subfield_structure` VALUES ('897', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3423 INSERT INTO `marc_subfield_structure` VALUES ('897', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3424 INSERT INTO `marc_subfield_structure` VALUES ('897', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3425 INSERT INTO `marc_subfield_structure` VALUES ('897', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3426 INSERT INTO `marc_subfield_structure` VALUES ('897', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3427 INSERT INTO `marc_subfield_structure` VALUES ('897', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3428 INSERT INTO `marc_subfield_structure` VALUES ('897', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3429 INSERT INTO `marc_subfield_structure` VALUES ('897', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3430 INSERT INTO `marc_subfield_structure` VALUES ('897', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3431 INSERT INTO `marc_subfield_structure` VALUES ('897', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3432 INSERT INTO `marc_subfield_structure` VALUES ('897', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3433 INSERT INTO `marc_subfield_structure` VALUES ('897', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3434 INSERT INTO `marc_subfield_structure` VALUES ('898', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, '', '', '');
3435 INSERT INTO `marc_subfield_structure` VALUES ('898', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3436 INSERT INTO `marc_subfield_structure` VALUES ('898', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3437 INSERT INTO `marc_subfield_structure` VALUES ('898', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3438 INSERT INTO `marc_subfield_structure` VALUES ('898', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, '', '', '');
3439 INSERT INTO `marc_subfield_structure` VALUES ('898', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3440 INSERT INTO `marc_subfield_structure` VALUES ('898', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3441 INSERT INTO `marc_subfield_structure` VALUES ('898', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3442 INSERT INTO `marc_subfield_structure` VALUES ('898', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3443 INSERT INTO `marc_subfield_structure` VALUES ('898', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3444 INSERT INTO `marc_subfield_structure` VALUES ('898', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3445 INSERT INTO `marc_subfield_structure` VALUES ('898', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3446 INSERT INTO `marc_subfield_structure` VALUES ('898', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3447 INSERT INTO `marc_subfield_structure` VALUES ('898', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3448 INSERT INTO `marc_subfield_structure` VALUES ('898', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3449 INSERT INTO `marc_subfield_structure` VALUES ('898', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3450 INSERT INTO `marc_subfield_structure` VALUES ('898', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3451 INSERT INTO `marc_subfield_structure` VALUES ('898', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3452 INSERT INTO `marc_subfield_structure` VALUES ('898', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3453 INSERT INTO `marc_subfield_structure` VALUES ('898', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3454 INSERT INTO `marc_subfield_structure` VALUES ('898', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3455 INSERT INTO `marc_subfield_structure` VALUES ('898', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
3456 INSERT INTO `marc_subfield_structure` VALUES ('899', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, '', '', '');
3457 INSERT INTO `marc_subfield_structure` VALUES ('899', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3458 INSERT INTO `marc_subfield_structure` VALUES ('899', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3459 INSERT INTO `marc_subfield_structure` VALUES ('899', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, '', '', '');
3460 INSERT INTO `marc_subfield_structure` VALUES ('899', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3461 INSERT INTO `marc_subfield_structure` VALUES ('899', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3462 INSERT INTO `marc_subfield_structure` VALUES ('899', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3463 INSERT INTO `marc_subfield_structure` VALUES ('899', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3464 INSERT INTO `marc_subfield_structure` VALUES ('899', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3465 INSERT INTO `marc_subfield_structure` VALUES ('899', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3466 INSERT INTO `marc_subfield_structure` VALUES ('899', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3467 INSERT INTO `marc_subfield_structure` VALUES ('899', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3468 INSERT INTO `marc_subfield_structure` VALUES ('899', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3469 INSERT INTO `marc_subfield_structure` VALUES ('899', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3470 INSERT INTO `marc_subfield_structure` VALUES ('899', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3471 INSERT INTO `marc_subfield_structure` VALUES ('899', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3472 INSERT INTO `marc_subfield_structure` VALUES ('899', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3473 INSERT INTO `marc_subfield_structure` VALUES ('899', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3474 INSERT INTO `marc_subfield_structure` VALUES ('899', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, 5, '', '', '');
3475 INSERT INTO `marc_subfield_structure` VALUES ('89e', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3476 INSERT INTO `marc_subfield_structure` VALUES ('89e', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3477 INSERT INTO `marc_subfield_structure` VALUES ('89e', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3478 INSERT INTO `marc_subfield_structure` VALUES ('89e', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3479 INSERT INTO `marc_subfield_structure` VALUES ('89e', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3480 INSERT INTO `marc_subfield_structure` VALUES ('89e', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3481 INSERT INTO `marc_subfield_structure` VALUES ('89e', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3482 INSERT INTO `marc_subfield_structure` VALUES ('89e', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3483 INSERT INTO `marc_subfield_structure` VALUES ('89e', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3484 INSERT INTO `marc_subfield_structure` VALUES ('89e', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3485 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3486 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3487 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3488 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3489 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3490 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3491 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3492 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3493 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3494 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3495 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3496 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3497 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3498 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3499 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3500 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3501 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3502 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3503 INSERT INTO `marc_subfield_structure` VALUES ('89e', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3504 INSERT INTO `marc_subfield_structure` VALUES ('89e', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3505 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3506 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3507 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3508 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3509 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3510 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, '', '', '');
3511 INSERT INTO `marc_subfield_structure` VALUES ('900', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3512 INSERT INTO `marc_subfield_structure` VALUES ('900', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3513 INSERT INTO `marc_subfield_structure` VALUES ('900', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3514 INSERT INTO `marc_subfield_structure` VALUES ('900', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', 0, 5, '', '''110a'', ''700a'', ''710a''', '');
3515 INSERT INTO `marc_subfield_structure` VALUES ('900', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3516 INSERT INTO `marc_subfield_structure` VALUES ('900', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3517 INSERT INTO `marc_subfield_structure` VALUES ('900', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3518 INSERT INTO `marc_subfield_structure` VALUES ('900', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3519 INSERT INTO `marc_subfield_structure` VALUES ('900', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3520 INSERT INTO `marc_subfield_structure` VALUES ('900', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3521 INSERT INTO `marc_subfield_structure` VALUES ('900', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3522 INSERT INTO `marc_subfield_structure` VALUES ('900', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3523 INSERT INTO `marc_subfield_structure` VALUES ('900', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3524 INSERT INTO `marc_subfield_structure` VALUES ('900', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3525 INSERT INTO `marc_subfield_structure` VALUES ('900', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3526 INSERT INTO `marc_subfield_structure` VALUES ('900', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3527 INSERT INTO `marc_subfield_structure` VALUES ('900', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3528 INSERT INTO `marc_subfield_structure` VALUES ('900', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3529 INSERT INTO `marc_subfield_structure` VALUES ('901', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3530 INSERT INTO `marc_subfield_structure` VALUES ('901', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3531 INSERT INTO `marc_subfield_structure` VALUES ('901', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3532 INSERT INTO `marc_subfield_structure` VALUES ('901', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3533 INSERT INTO `marc_subfield_structure` VALUES ('901', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3534 INSERT INTO `marc_subfield_structure` VALUES ('901', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3535 INSERT INTO `marc_subfield_structure` VALUES ('901', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3536 INSERT INTO `marc_subfield_structure` VALUES ('901', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3537 INSERT INTO `marc_subfield_structure` VALUES ('901', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3538 INSERT INTO `marc_subfield_structure` VALUES ('901', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3539 INSERT INTO `marc_subfield_structure` VALUES ('901', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3540 INSERT INTO `marc_subfield_structure` VALUES ('901', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3541 INSERT INTO `marc_subfield_structure` VALUES ('901', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3542 INSERT INTO `marc_subfield_structure` VALUES ('901', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3543 INSERT INTO `marc_subfield_structure` VALUES ('901', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3544 INSERT INTO `marc_subfield_structure` VALUES ('901', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3545 INSERT INTO `marc_subfield_structure` VALUES ('901', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3546 INSERT INTO `marc_subfield_structure` VALUES ('901', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3547 INSERT INTO `marc_subfield_structure` VALUES ('901', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3548 INSERT INTO `marc_subfield_structure` VALUES ('901', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3549 INSERT INTO `marc_subfield_structure` VALUES ('901', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3550 INSERT INTO `marc_subfield_structure` VALUES ('901', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3551 INSERT INTO `marc_subfield_structure` VALUES ('901', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3552 INSERT INTO `marc_subfield_structure` VALUES ('901', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3553 INSERT INTO `marc_subfield_structure` VALUES ('901', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3554 INSERT INTO `marc_subfield_structure` VALUES ('901', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3555 INSERT INTO `marc_subfield_structure` VALUES ('901', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3556 INSERT INTO `marc_subfield_structure` VALUES ('901', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3557 INSERT INTO `marc_subfield_structure` VALUES ('901', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3558 INSERT INTO `marc_subfield_structure` VALUES ('901', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3559 INSERT INTO `marc_subfield_structure` VALUES ('901', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3560 INSERT INTO `marc_subfield_structure` VALUES ('901', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3561 INSERT INTO `marc_subfield_structure` VALUES ('901', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3562 INSERT INTO `marc_subfield_structure` VALUES ('901', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3563 INSERT INTO `marc_subfield_structure` VALUES ('901', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3564 INSERT INTO `marc_subfield_structure` VALUES ('901', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3565 INSERT INTO `marc_subfield_structure` VALUES ('902', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3566 INSERT INTO `marc_subfield_structure` VALUES ('902', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3567 INSERT INTO `marc_subfield_structure` VALUES ('902', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3568 INSERT INTO `marc_subfield_structure` VALUES ('902', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3569 INSERT INTO `marc_subfield_structure` VALUES ('902', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3570 INSERT INTO `marc_subfield_structure` VALUES ('902', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3571 INSERT INTO `marc_subfield_structure` VALUES ('902', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3572 INSERT INTO `marc_subfield_structure` VALUES ('902', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3573 INSERT INTO `marc_subfield_structure` VALUES ('902', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3574 INSERT INTO `marc_subfield_structure` VALUES ('902', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3575 INSERT INTO `marc_subfield_structure` VALUES ('902', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3576 INSERT INTO `marc_subfield_structure` VALUES ('902', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3577 INSERT INTO `marc_subfield_structure` VALUES ('902', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3578 INSERT INTO `marc_subfield_structure` VALUES ('902', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3579 INSERT INTO `marc_subfield_structure` VALUES ('902', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3580 INSERT INTO `marc_subfield_structure` VALUES ('902', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3581 INSERT INTO `marc_subfield_structure` VALUES ('902', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3582 INSERT INTO `marc_subfield_structure` VALUES ('902', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3583 INSERT INTO `marc_subfield_structure` VALUES ('902', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3584 INSERT INTO `marc_subfield_structure` VALUES ('902', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3585 INSERT INTO `marc_subfield_structure` VALUES ('902', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3586 INSERT INTO `marc_subfield_structure` VALUES ('902', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3587 INSERT INTO `marc_subfield_structure` VALUES ('902', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3588 INSERT INTO `marc_subfield_structure` VALUES ('902', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3589 INSERT INTO `marc_subfield_structure` VALUES ('902', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3590 INSERT INTO `marc_subfield_structure` VALUES ('902', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3591 INSERT INTO `marc_subfield_structure` VALUES ('902', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3592 INSERT INTO `marc_subfield_structure` VALUES ('902', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3593 INSERT INTO `marc_subfield_structure` VALUES ('902', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3594 INSERT INTO `marc_subfield_structure` VALUES ('902', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3595 INSERT INTO `marc_subfield_structure` VALUES ('902', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3596 INSERT INTO `marc_subfield_structure` VALUES ('902', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3597 INSERT INTO `marc_subfield_structure` VALUES ('902', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3598 INSERT INTO `marc_subfield_structure` VALUES ('902', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3599 INSERT INTO `marc_subfield_structure` VALUES ('902', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3600 INSERT INTO `marc_subfield_structure` VALUES ('902', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3601 INSERT INTO `marc_subfield_structure` VALUES ('903', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3602 INSERT INTO `marc_subfield_structure` VALUES ('903', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3603 INSERT INTO `marc_subfield_structure` VALUES ('903', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3604 INSERT INTO `marc_subfield_structure` VALUES ('903', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3605 INSERT INTO `marc_subfield_structure` VALUES ('903', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3606 INSERT INTO `marc_subfield_structure` VALUES ('903', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3607 INSERT INTO `marc_subfield_structure` VALUES ('903', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3608 INSERT INTO `marc_subfield_structure` VALUES ('903', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3609 INSERT INTO `marc_subfield_structure` VALUES ('903', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3610 INSERT INTO `marc_subfield_structure` VALUES ('903', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3611 INSERT INTO `marc_subfield_structure` VALUES ('903', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3612 INSERT INTO `marc_subfield_structure` VALUES ('903', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3613 INSERT INTO `marc_subfield_structure` VALUES ('903', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3614 INSERT INTO `marc_subfield_structure` VALUES ('903', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3615 INSERT INTO `marc_subfield_structure` VALUES ('903', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3616 INSERT INTO `marc_subfield_structure` VALUES ('903', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3617 INSERT INTO `marc_subfield_structure` VALUES ('903', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3618 INSERT INTO `marc_subfield_structure` VALUES ('903', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3619 INSERT INTO `marc_subfield_structure` VALUES ('903', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3620 INSERT INTO `marc_subfield_structure` VALUES ('903', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3621 INSERT INTO `marc_subfield_structure` VALUES ('903', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3622 INSERT INTO `marc_subfield_structure` VALUES ('903', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3623 INSERT INTO `marc_subfield_structure` VALUES ('903', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3624 INSERT INTO `marc_subfield_structure` VALUES ('903', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3625 INSERT INTO `marc_subfield_structure` VALUES ('903', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3626 INSERT INTO `marc_subfield_structure` VALUES ('903', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3627 INSERT INTO `marc_subfield_structure` VALUES ('903', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3628 INSERT INTO `marc_subfield_structure` VALUES ('903', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3629 INSERT INTO `marc_subfield_structure` VALUES ('903', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3630 INSERT INTO `marc_subfield_structure` VALUES ('903', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3631 INSERT INTO `marc_subfield_structure` VALUES ('903', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3632 INSERT INTO `marc_subfield_structure` VALUES ('903', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3633 INSERT INTO `marc_subfield_structure` VALUES ('903', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3634 INSERT INTO `marc_subfield_structure` VALUES ('903', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3635 INSERT INTO `marc_subfield_structure` VALUES ('903', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3636 INSERT INTO `marc_subfield_structure` VALUES ('903', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3637 INSERT INTO `marc_subfield_structure` VALUES ('904', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3638 INSERT INTO `marc_subfield_structure` VALUES ('904', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3639 INSERT INTO `marc_subfield_structure` VALUES ('904', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3640 INSERT INTO `marc_subfield_structure` VALUES ('904', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3641 INSERT INTO `marc_subfield_structure` VALUES ('904', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3642 INSERT INTO `marc_subfield_structure` VALUES ('904', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3643 INSERT INTO `marc_subfield_structure` VALUES ('904', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3644 INSERT INTO `marc_subfield_structure` VALUES ('904', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3645 INSERT INTO `marc_subfield_structure` VALUES ('904', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3646 INSERT INTO `marc_subfield_structure` VALUES ('904', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3647 INSERT INTO `marc_subfield_structure` VALUES ('904', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3648 INSERT INTO `marc_subfield_structure` VALUES ('904', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3649 INSERT INTO `marc_subfield_structure` VALUES ('904', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3650 INSERT INTO `marc_subfield_structure` VALUES ('904', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3651 INSERT INTO `marc_subfield_structure` VALUES ('904', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3652 INSERT INTO `marc_subfield_structure` VALUES ('904', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3653 INSERT INTO `marc_subfield_structure` VALUES ('904', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3654 INSERT INTO `marc_subfield_structure` VALUES ('904', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3655 INSERT INTO `marc_subfield_structure` VALUES ('904', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3656 INSERT INTO `marc_subfield_structure` VALUES ('904', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3657 INSERT INTO `marc_subfield_structure` VALUES ('904', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3658 INSERT INTO `marc_subfield_structure` VALUES ('904', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3659 INSERT INTO `marc_subfield_structure` VALUES ('904', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3660 INSERT INTO `marc_subfield_structure` VALUES ('904', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3661 INSERT INTO `marc_subfield_structure` VALUES ('904', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3662 INSERT INTO `marc_subfield_structure` VALUES ('904', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3663 INSERT INTO `marc_subfield_structure` VALUES ('904', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3664 INSERT INTO `marc_subfield_structure` VALUES ('904', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3665 INSERT INTO `marc_subfield_structure` VALUES ('904', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3666 INSERT INTO `marc_subfield_structure` VALUES ('904', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3667 INSERT INTO `marc_subfield_structure` VALUES ('904', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3668 INSERT INTO `marc_subfield_structure` VALUES ('904', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3669 INSERT INTO `marc_subfield_structure` VALUES ('904', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3670 INSERT INTO `marc_subfield_structure` VALUES ('904', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3671 INSERT INTO `marc_subfield_structure` VALUES ('904', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3672 INSERT INTO `marc_subfield_structure` VALUES ('904', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3673 INSERT INTO `marc_subfield_structure` VALUES ('905', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3674 INSERT INTO `marc_subfield_structure` VALUES ('905', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3675 INSERT INTO `marc_subfield_structure` VALUES ('905', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3676 INSERT INTO `marc_subfield_structure` VALUES ('905', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3677 INSERT INTO `marc_subfield_structure` VALUES ('905', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3678 INSERT INTO `marc_subfield_structure` VALUES ('905', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3679 INSERT INTO `marc_subfield_structure` VALUES ('905', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3680 INSERT INTO `marc_subfield_structure` VALUES ('905', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3681 INSERT INTO `marc_subfield_structure` VALUES ('905', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3682 INSERT INTO `marc_subfield_structure` VALUES ('905', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3683 INSERT INTO `marc_subfield_structure` VALUES ('905', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3684 INSERT INTO `marc_subfield_structure` VALUES ('905', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3685 INSERT INTO `marc_subfield_structure` VALUES ('905', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3686 INSERT INTO `marc_subfield_structure` VALUES ('905', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3687 INSERT INTO `marc_subfield_structure` VALUES ('905', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3688 INSERT INTO `marc_subfield_structure` VALUES ('905', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3689 INSERT INTO `marc_subfield_structure` VALUES ('905', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3690 INSERT INTO `marc_subfield_structure` VALUES ('905', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3691 INSERT INTO `marc_subfield_structure` VALUES ('905', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3692 INSERT INTO `marc_subfield_structure` VALUES ('905', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3693 INSERT INTO `marc_subfield_structure` VALUES ('905', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3694 INSERT INTO `marc_subfield_structure` VALUES ('905', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3695 INSERT INTO `marc_subfield_structure` VALUES ('905', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3696 INSERT INTO `marc_subfield_structure` VALUES ('905', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3697 INSERT INTO `marc_subfield_structure` VALUES ('905', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3698 INSERT INTO `marc_subfield_structure` VALUES ('905', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3699 INSERT INTO `marc_subfield_structure` VALUES ('905', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3700 INSERT INTO `marc_subfield_structure` VALUES ('905', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3701 INSERT INTO `marc_subfield_structure` VALUES ('905', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3702 INSERT INTO `marc_subfield_structure` VALUES ('905', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3703 INSERT INTO `marc_subfield_structure` VALUES ('905', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3704 INSERT INTO `marc_subfield_structure` VALUES ('905', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3705 INSERT INTO `marc_subfield_structure` VALUES ('905', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3706 INSERT INTO `marc_subfield_structure` VALUES ('905', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3707 INSERT INTO `marc_subfield_structure` VALUES ('905', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3708 INSERT INTO `marc_subfield_structure` VALUES ('905', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3709 INSERT INTO `marc_subfield_structure` VALUES ('906', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3710 INSERT INTO `marc_subfield_structure` VALUES ('906', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3711 INSERT INTO `marc_subfield_structure` VALUES ('906', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3712 INSERT INTO `marc_subfield_structure` VALUES ('906', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3713 INSERT INTO `marc_subfield_structure` VALUES ('906', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3714 INSERT INTO `marc_subfield_structure` VALUES ('906', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3715 INSERT INTO `marc_subfield_structure` VALUES ('906', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3716 INSERT INTO `marc_subfield_structure` VALUES ('906', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3717 INSERT INTO `marc_subfield_structure` VALUES ('906', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3718 INSERT INTO `marc_subfield_structure` VALUES ('906', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3719 INSERT INTO `marc_subfield_structure` VALUES ('906', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3720 INSERT INTO `marc_subfield_structure` VALUES ('906', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3721 INSERT INTO `marc_subfield_structure` VALUES ('906', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3722 INSERT INTO `marc_subfield_structure` VALUES ('906', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3723 INSERT INTO `marc_subfield_structure` VALUES ('906', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3724 INSERT INTO `marc_subfield_structure` VALUES ('906', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3725 INSERT INTO `marc_subfield_structure` VALUES ('906', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3726 INSERT INTO `marc_subfield_structure` VALUES ('906', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3727 INSERT INTO `marc_subfield_structure` VALUES ('906', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3728 INSERT INTO `marc_subfield_structure` VALUES ('906', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3729 INSERT INTO `marc_subfield_structure` VALUES ('906', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3730 INSERT INTO `marc_subfield_structure` VALUES ('906', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3731 INSERT INTO `marc_subfield_structure` VALUES ('906', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3732 INSERT INTO `marc_subfield_structure` VALUES ('906', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3733 INSERT INTO `marc_subfield_structure` VALUES ('906', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3734 INSERT INTO `marc_subfield_structure` VALUES ('906', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3735 INSERT INTO `marc_subfield_structure` VALUES ('906', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3736 INSERT INTO `marc_subfield_structure` VALUES ('906', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3737 INSERT INTO `marc_subfield_structure` VALUES ('906', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3738 INSERT INTO `marc_subfield_structure` VALUES ('906', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3739 INSERT INTO `marc_subfield_structure` VALUES ('906', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3740 INSERT INTO `marc_subfield_structure` VALUES ('906', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3741 INSERT INTO `marc_subfield_structure` VALUES ('906', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3742 INSERT INTO `marc_subfield_structure` VALUES ('906', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3743 INSERT INTO `marc_subfield_structure` VALUES ('906', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3744 INSERT INTO `marc_subfield_structure` VALUES ('906', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3745 INSERT INTO `marc_subfield_structure` VALUES ('907', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3746 INSERT INTO `marc_subfield_structure` VALUES ('907', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3747 INSERT INTO `marc_subfield_structure` VALUES ('907', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3748 INSERT INTO `marc_subfield_structure` VALUES ('907', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3749 INSERT INTO `marc_subfield_structure` VALUES ('907', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3750 INSERT INTO `marc_subfield_structure` VALUES ('907', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3751 INSERT INTO `marc_subfield_structure` VALUES ('907', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3752 INSERT INTO `marc_subfield_structure` VALUES ('907', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3753 INSERT INTO `marc_subfield_structure` VALUES ('907', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3754 INSERT INTO `marc_subfield_structure` VALUES ('907', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3755 INSERT INTO `marc_subfield_structure` VALUES ('907', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3756 INSERT INTO `marc_subfield_structure` VALUES ('907', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3757 INSERT INTO `marc_subfield_structure` VALUES ('907', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3758 INSERT INTO `marc_subfield_structure` VALUES ('907', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3759 INSERT INTO `marc_subfield_structure` VALUES ('907', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3760 INSERT INTO `marc_subfield_structure` VALUES ('907', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3761 INSERT INTO `marc_subfield_structure` VALUES ('907', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3762 INSERT INTO `marc_subfield_structure` VALUES ('907', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3763 INSERT INTO `marc_subfield_structure` VALUES ('907', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3764 INSERT INTO `marc_subfield_structure` VALUES ('907', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3765 INSERT INTO `marc_subfield_structure` VALUES ('907', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3766 INSERT INTO `marc_subfield_structure` VALUES ('907', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3767 INSERT INTO `marc_subfield_structure` VALUES ('907', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3768 INSERT INTO `marc_subfield_structure` VALUES ('907', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3769 INSERT INTO `marc_subfield_structure` VALUES ('907', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3770 INSERT INTO `marc_subfield_structure` VALUES ('907', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3771 INSERT INTO `marc_subfield_structure` VALUES ('907', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3772 INSERT INTO `marc_subfield_structure` VALUES ('907', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3773 INSERT INTO `marc_subfield_structure` VALUES ('907', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3774 INSERT INTO `marc_subfield_structure` VALUES ('907', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3775 INSERT INTO `marc_subfield_structure` VALUES ('907', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3776 INSERT INTO `marc_subfield_structure` VALUES ('907', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3777 INSERT INTO `marc_subfield_structure` VALUES ('907', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3778 INSERT INTO `marc_subfield_structure` VALUES ('907', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3779 INSERT INTO `marc_subfield_structure` VALUES ('907', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3780 INSERT INTO `marc_subfield_structure` VALUES ('907', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3781 INSERT INTO `marc_subfield_structure` VALUES ('908', 'a', 'Put command parameter', 'Put command parameter', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3782 INSERT INTO `marc_subfield_structure` VALUES ('910', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3783 INSERT INTO `marc_subfield_structure` VALUES ('910', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3784 INSERT INTO `marc_subfield_structure` VALUES ('910', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3785 INSERT INTO `marc_subfield_structure` VALUES ('910', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3786 INSERT INTO `marc_subfield_structure` VALUES ('910', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3787 INSERT INTO `marc_subfield_structure` VALUES ('910', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3788 INSERT INTO `marc_subfield_structure` VALUES ('910', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3789 INSERT INTO `marc_subfield_structure` VALUES ('910', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3790 INSERT INTO `marc_subfield_structure` VALUES ('910', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3791 INSERT INTO `marc_subfield_structure` VALUES ('910', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3792 INSERT INTO `marc_subfield_structure` VALUES ('910', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3793 INSERT INTO `marc_subfield_structure` VALUES ('910', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3794 INSERT INTO `marc_subfield_structure` VALUES ('910', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3795 INSERT INTO `marc_subfield_structure` VALUES ('910', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3796 INSERT INTO `marc_subfield_structure` VALUES ('910', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3797 INSERT INTO `marc_subfield_structure` VALUES ('910', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3798 INSERT INTO `marc_subfield_structure` VALUES ('91o', 'a', 'User-option data', 'User-option data', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3799 INSERT INTO `marc_subfield_structure` VALUES ('91r', 'a', 'RLG standards note', 'RLG standards note', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3800 INSERT INTO `marc_subfield_structure` VALUES ('911', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3801 INSERT INTO `marc_subfield_structure` VALUES ('911', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3802 INSERT INTO `marc_subfield_structure` VALUES ('911', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3803 INSERT INTO `marc_subfield_structure` VALUES ('911', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3804 INSERT INTO `marc_subfield_structure` VALUES ('911', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3805 INSERT INTO `marc_subfield_structure` VALUES ('911', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3806 INSERT INTO `marc_subfield_structure` VALUES ('911', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3807 INSERT INTO `marc_subfield_structure` VALUES ('911', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3808 INSERT INTO `marc_subfield_structure` VALUES ('911', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3809 INSERT INTO `marc_subfield_structure` VALUES ('911', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3810 INSERT INTO `marc_subfield_structure` VALUES ('911', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3811 INSERT INTO `marc_subfield_structure` VALUES ('911', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3812 INSERT INTO `marc_subfield_structure` VALUES ('911', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3813 INSERT INTO `marc_subfield_structure` VALUES ('911', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3814 INSERT INTO `marc_subfield_structure` VALUES ('911', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3815 INSERT INTO `marc_subfield_structure` VALUES ('911', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3816 INSERT INTO `marc_subfield_structure` VALUES ('911', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3817 INSERT INTO `marc_subfield_structure` VALUES ('930', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3818 INSERT INTO `marc_subfield_structure` VALUES ('930', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3819 INSERT INTO `marc_subfield_structure` VALUES ('930', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3820 INSERT INTO `marc_subfield_structure` VALUES ('930', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3821 INSERT INTO `marc_subfield_structure` VALUES ('930', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3822 INSERT INTO `marc_subfield_structure` VALUES ('930', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3823 INSERT INTO `marc_subfield_structure` VALUES ('930', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3824 INSERT INTO `marc_subfield_structure` VALUES ('930', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3825 INSERT INTO `marc_subfield_structure` VALUES ('930', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3826 INSERT INTO `marc_subfield_structure` VALUES ('930', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3827 INSERT INTO `marc_subfield_structure` VALUES ('930', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3828 INSERT INTO `marc_subfield_structure` VALUES ('930', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3829 INSERT INTO `marc_subfield_structure` VALUES ('930', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3830 INSERT INTO `marc_subfield_structure` VALUES ('930', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3831 INSERT INTO `marc_subfield_structure` VALUES ('930', 's', 'Version', 'Version', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3832 INSERT INTO `marc_subfield_structure` VALUES ('930', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3833 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'a', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3834 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'b', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3835 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'c', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3836 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'd', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3837 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'e', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3838 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'f', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3839 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'g', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3840 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'h', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3841 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'i', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3842 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'k', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
3843 INSERT INTO `marc_subfield_structure` VALUES ('936', 'a', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3844 INSERT INTO `marc_subfield_structure` VALUES ('940', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3845 INSERT INTO `marc_subfield_structure` VALUES ('940', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3846 INSERT INTO `marc_subfield_structure` VALUES ('940', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', 1, -6, '', '', '');
3847 INSERT INTO `marc_subfield_structure` VALUES ('940', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3848 INSERT INTO `marc_subfield_structure` VALUES ('940', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3849 INSERT INTO `marc_subfield_structure` VALUES ('940', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3850 INSERT INTO `marc_subfield_structure` VALUES ('940', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3851 INSERT INTO `marc_subfield_structure` VALUES ('940', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3852 INSERT INTO `marc_subfield_structure` VALUES ('940', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3853 INSERT INTO `marc_subfield_structure` VALUES ('940', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3854 INSERT INTO `marc_subfield_structure` VALUES ('940', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3855 INSERT INTO `marc_subfield_structure` VALUES ('940', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3856 INSERT INTO `marc_subfield_structure` VALUES ('940', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3857 INSERT INTO `marc_subfield_structure` VALUES ('940', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3858 INSERT INTO `marc_subfield_structure` VALUES ('940', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3859 INSERT INTO `marc_subfield_structure` VALUES ('941', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3860 INSERT INTO `marc_subfield_structure` VALUES ('941', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, '', '', '');
3861 INSERT INTO `marc_subfield_structure` VALUES ('943', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3862 INSERT INTO `marc_subfield_structure` VALUES ('943', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3863 INSERT INTO `marc_subfield_structure` VALUES ('943', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 9, '', '', '', 1, 5, '', '', '130');
3864 INSERT INTO `marc_subfield_structure` VALUES ('943', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3865 INSERT INTO `marc_subfield_structure` VALUES ('943', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3866 INSERT INTO `marc_subfield_structure` VALUES ('943', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3867 INSERT INTO `marc_subfield_structure` VALUES ('943', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3868 INSERT INTO `marc_subfield_structure` VALUES ('943', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3869 INSERT INTO `marc_subfield_structure` VALUES ('943', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3870 INSERT INTO `marc_subfield_structure` VALUES ('943', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3871 INSERT INTO `marc_subfield_structure` VALUES ('943', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3872 INSERT INTO `marc_subfield_structure` VALUES ('943', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3873 INSERT INTO `marc_subfield_structure` VALUES ('943', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
3874 INSERT INTO `marc_subfield_structure` VALUES ('943', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3875 INSERT INTO `marc_subfield_structure` VALUES ('943', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
3876 INSERT INTO `marc_subfield_structure` VALUES ('945', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3877 INSERT INTO `marc_subfield_structure` VALUES ('945', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3878 INSERT INTO `marc_subfield_structure` VALUES ('945', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3879 INSERT INTO `marc_subfield_structure` VALUES ('945', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3880 INSERT INTO `marc_subfield_structure` VALUES ('945', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3881 INSERT INTO `marc_subfield_structure` VALUES ('945', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3882 INSERT INTO `marc_subfield_structure` VALUES ('945', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3883 INSERT INTO `marc_subfield_structure` VALUES ('945', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3884 INSERT INTO `marc_subfield_structure` VALUES ('945', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3885 INSERT INTO `marc_subfield_structure` VALUES ('945', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3886 INSERT INTO `marc_subfield_structure` VALUES ('945', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3887 INSERT INTO `marc_subfield_structure` VALUES ('945', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3888 INSERT INTO `marc_subfield_structure` VALUES ('945', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3889 INSERT INTO `marc_subfield_structure` VALUES ('945', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3890 INSERT INTO `marc_subfield_structure` VALUES ('945', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3891 INSERT INTO `marc_subfield_structure` VALUES ('945', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3892 INSERT INTO `marc_subfield_structure` VALUES ('945', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3893 INSERT INTO `marc_subfield_structure` VALUES ('945', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3894 INSERT INTO `marc_subfield_structure` VALUES ('945', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3895 INSERT INTO `marc_subfield_structure` VALUES ('945', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3896 INSERT INTO `marc_subfield_structure` VALUES ('945', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3897 INSERT INTO `marc_subfield_structure` VALUES ('945', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3898 INSERT INTO `marc_subfield_structure` VALUES ('945', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3899 INSERT INTO `marc_subfield_structure` VALUES ('945', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3900 INSERT INTO `marc_subfield_structure` VALUES ('945', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3901 INSERT INTO `marc_subfield_structure` VALUES ('945', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3902 INSERT INTO `marc_subfield_structure` VALUES ('945', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3903 INSERT INTO `marc_subfield_structure` VALUES ('945', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3904 INSERT INTO `marc_subfield_structure` VALUES ('945', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3905 INSERT INTO `marc_subfield_structure` VALUES ('945', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3906 INSERT INTO `marc_subfield_structure` VALUES ('945', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3907 INSERT INTO `marc_subfield_structure` VALUES ('945', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3908 INSERT INTO `marc_subfield_structure` VALUES ('945', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3909 INSERT INTO `marc_subfield_structure` VALUES ('945', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3910 INSERT INTO `marc_subfield_structure` VALUES ('945', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3911 INSERT INTO `marc_subfield_structure` VALUES ('945', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3912 INSERT INTO `marc_subfield_structure` VALUES ('94c', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3913 INSERT INTO `marc_subfield_structure` VALUES ('94c', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3914 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'a', 'Title', 'Title', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3915 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3916 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3917 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3918 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3919 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3920 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3921 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3922 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'k', 'Form', 'Form', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3923 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3924 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3925 INSERT INTO `marc_subfield_structure` VALUES ('94c', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3926 INSERT INTO `marc_subfield_structure` VALUES ('946', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3927 INSERT INTO `marc_subfield_structure` VALUES ('946', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3928 INSERT INTO `marc_subfield_structure` VALUES ('946', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3929 INSERT INTO `marc_subfield_structure` VALUES ('946', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3930 INSERT INTO `marc_subfield_structure` VALUES ('946', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3931 INSERT INTO `marc_subfield_structure` VALUES ('946', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3932 INSERT INTO `marc_subfield_structure` VALUES ('946', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3933 INSERT INTO `marc_subfield_structure` VALUES ('946', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3934 INSERT INTO `marc_subfield_structure` VALUES ('946', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3935 INSERT INTO `marc_subfield_structure` VALUES ('946', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3936 INSERT INTO `marc_subfield_structure` VALUES ('946', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3937 INSERT INTO `marc_subfield_structure` VALUES ('946', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3938 INSERT INTO `marc_subfield_structure` VALUES ('946', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3939 INSERT INTO `marc_subfield_structure` VALUES ('946', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3940 INSERT INTO `marc_subfield_structure` VALUES ('946', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3941 INSERT INTO `marc_subfield_structure` VALUES ('946', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3942 INSERT INTO `marc_subfield_structure` VALUES ('946', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3943 INSERT INTO `marc_subfield_structure` VALUES ('946', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3944 INSERT INTO `marc_subfield_structure` VALUES ('946', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3945 INSERT INTO `marc_subfield_structure` VALUES ('946', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3946 INSERT INTO `marc_subfield_structure` VALUES ('946', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3947 INSERT INTO `marc_subfield_structure` VALUES ('946', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3948 INSERT INTO `marc_subfield_structure` VALUES ('946', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3949 INSERT INTO `marc_subfield_structure` VALUES ('946', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3950 INSERT INTO `marc_subfield_structure` VALUES ('946', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3951 INSERT INTO `marc_subfield_structure` VALUES ('946', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3952 INSERT INTO `marc_subfield_structure` VALUES ('946', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3953 INSERT INTO `marc_subfield_structure` VALUES ('946', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3954 INSERT INTO `marc_subfield_structure` VALUES ('946', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3955 INSERT INTO `marc_subfield_structure` VALUES ('946', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3956 INSERT INTO `marc_subfield_structure` VALUES ('946', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3957 INSERT INTO `marc_subfield_structure` VALUES ('946', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3958 INSERT INTO `marc_subfield_structure` VALUES ('946', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3959 INSERT INTO `marc_subfield_structure` VALUES ('946', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3960 INSERT INTO `marc_subfield_structure` VALUES ('946', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3961 INSERT INTO `marc_subfield_structure` VALUES ('946', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3962 INSERT INTO `marc_subfield_structure` VALUES ('947', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3963 INSERT INTO `marc_subfield_structure` VALUES ('947', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3964 INSERT INTO `marc_subfield_structure` VALUES ('947', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3965 INSERT INTO `marc_subfield_structure` VALUES ('947', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3966 INSERT INTO `marc_subfield_structure` VALUES ('947', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3967 INSERT INTO `marc_subfield_structure` VALUES ('947', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3968 INSERT INTO `marc_subfield_structure` VALUES ('947', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3969 INSERT INTO `marc_subfield_structure` VALUES ('947', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3970 INSERT INTO `marc_subfield_structure` VALUES ('947', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3971 INSERT INTO `marc_subfield_structure` VALUES ('947', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3972 INSERT INTO `marc_subfield_structure` VALUES ('947', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3973 INSERT INTO `marc_subfield_structure` VALUES ('947', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3974 INSERT INTO `marc_subfield_structure` VALUES ('947', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3975 INSERT INTO `marc_subfield_structure` VALUES ('947', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3976 INSERT INTO `marc_subfield_structure` VALUES ('947', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3977 INSERT INTO `marc_subfield_structure` VALUES ('947', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3978 INSERT INTO `marc_subfield_structure` VALUES ('947', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3979 INSERT INTO `marc_subfield_structure` VALUES ('947', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3980 INSERT INTO `marc_subfield_structure` VALUES ('947', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3981 INSERT INTO `marc_subfield_structure` VALUES ('947', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3982 INSERT INTO `marc_subfield_structure` VALUES ('947', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3983 INSERT INTO `marc_subfield_structure` VALUES ('947', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3984 INSERT INTO `marc_subfield_structure` VALUES ('947', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3985 INSERT INTO `marc_subfield_structure` VALUES ('947', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3986 INSERT INTO `marc_subfield_structure` VALUES ('947', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3987 INSERT INTO `marc_subfield_structure` VALUES ('947', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3988 INSERT INTO `marc_subfield_structure` VALUES ('947', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3989 INSERT INTO `marc_subfield_structure` VALUES ('947', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3990 INSERT INTO `marc_subfield_structure` VALUES ('947', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3991 INSERT INTO `marc_subfield_structure` VALUES ('947', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3992 INSERT INTO `marc_subfield_structure` VALUES ('947', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3993 INSERT INTO `marc_subfield_structure` VALUES ('947', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3994 INSERT INTO `marc_subfield_structure` VALUES ('947', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3995 INSERT INTO `marc_subfield_structure` VALUES ('947', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3996 INSERT INTO `marc_subfield_structure` VALUES ('947', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3997 INSERT INTO `marc_subfield_structure` VALUES ('947', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3998 INSERT INTO `marc_subfield_structure` VALUES ('948', '0', '0 (OCLC)', '0 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
3999 INSERT INTO `marc_subfield_structure` VALUES ('948', '1', '1 (OCLC)', '1 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4000 INSERT INTO `marc_subfield_structure` VALUES ('948', '2', '2 (OCLC)', '2 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4001 INSERT INTO `marc_subfield_structure` VALUES ('948', '3', '3 (OCLC)', '3 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4002 INSERT INTO `marc_subfield_structure` VALUES ('948', '4', '4 (OCLC)', '4 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4003 INSERT INTO `marc_subfield_structure` VALUES ('948', '5', '5 (OCLC)', '5 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4004 INSERT INTO `marc_subfield_structure` VALUES ('948', '6', '6 (OCLC)', '6 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4005 INSERT INTO `marc_subfield_structure` VALUES ('948', '7', '7 (OCLC)', '7 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4006 INSERT INTO `marc_subfield_structure` VALUES ('948', '8', '8 (OCLC)', '8 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4007 INSERT INTO `marc_subfield_structure` VALUES ('948', '9', '9 (OCLC)', '9 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4008 INSERT INTO `marc_subfield_structure` VALUES ('948', 'a', 'Series part designator, SPT (RLIN)', 'Series part designator, SPT (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4009 INSERT INTO `marc_subfield_structure` VALUES ('948', 'b', 'b (OCLC)', 'b (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4010 INSERT INTO `marc_subfield_structure` VALUES ('948', 'c', 'c (OCLC)', 'c (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4011 INSERT INTO `marc_subfield_structure` VALUES ('948', 'd', 'd (OCLC)', 'd (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4012 INSERT INTO `marc_subfield_structure` VALUES ('948', 'e', 'e (OCLC)', 'e (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4013 INSERT INTO `marc_subfield_structure` VALUES ('948', 'f', 'f (OCLC)', 'f (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4014 INSERT INTO `marc_subfield_structure` VALUES ('948', 'g', 'g (OCLC)', 'g (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4015 INSERT INTO `marc_subfield_structure` VALUES ('948', 'h', 'h (OCLC)', 'h (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4016 INSERT INTO `marc_subfield_structure` VALUES ('948', 'i', 'i (OCLC)', 'i (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4017 INSERT INTO `marc_subfield_structure` VALUES ('948', 'j', 'j (OCLC)', 'j (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4018 INSERT INTO `marc_subfield_structure` VALUES ('948', 'k', 'k (OCLC)', 'k (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4019 INSERT INTO `marc_subfield_structure` VALUES ('948', 'l', 'l (OCLC)', 'l (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4020 INSERT INTO `marc_subfield_structure` VALUES ('948', 'm', 'm (OCLC)', 'm (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4021 INSERT INTO `marc_subfield_structure` VALUES ('948', 'n', 'n (OCLC)', 'n (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4022 INSERT INTO `marc_subfield_structure` VALUES ('948', 'o', 'o (OCLC)', 'o (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4023 INSERT INTO `marc_subfield_structure` VALUES ('948', 'p', 'p (OCLC)', 'p (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4024 INSERT INTO `marc_subfield_structure` VALUES ('948', 'q', 'q (OCLC)', 'q (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4025 INSERT INTO `marc_subfield_structure` VALUES ('948', 'r', 'r (OCLC)', 'r (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4026 INSERT INTO `marc_subfield_structure` VALUES ('948', 's', 's (OCLC)', 's (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4027 INSERT INTO `marc_subfield_structure` VALUES ('948', 't', 't (OCLC)', 't (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4028 INSERT INTO `marc_subfield_structure` VALUES ('948', 'u', 'u (OCLC)', 'u (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4029 INSERT INTO `marc_subfield_structure` VALUES ('948', 'v', 'v (OCLC)', 'v (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4030 INSERT INTO `marc_subfield_structure` VALUES ('948', 'w', 'w (OCLC)', 'w (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4031 INSERT INTO `marc_subfield_structure` VALUES ('948', 'x', 'x (OCLC)', 'x (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4032 INSERT INTO `marc_subfield_structure` VALUES ('948', 'y', 'y (OCLC)', 'y (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4033 INSERT INTO `marc_subfield_structure` VALUES ('948', 'z', 'z (OCLC)', 'z (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4034 INSERT INTO `marc_subfield_structure` VALUES ('949', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4035 INSERT INTO `marc_subfield_structure` VALUES ('949', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4036 INSERT INTO `marc_subfield_structure` VALUES ('949', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4037 INSERT INTO `marc_subfield_structure` VALUES ('949', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4038 INSERT INTO `marc_subfield_structure` VALUES ('949', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4039 INSERT INTO `marc_subfield_structure` VALUES ('949', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4040 INSERT INTO `marc_subfield_structure` VALUES ('949', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4041 INSERT INTO `marc_subfield_structure` VALUES ('949', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4042 INSERT INTO `marc_subfield_structure` VALUES ('949', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4043 INSERT INTO `marc_subfield_structure` VALUES ('949', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4044 INSERT INTO `marc_subfield_structure` VALUES ('949', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4045 INSERT INTO `marc_subfield_structure` VALUES ('949', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4046 INSERT INTO `marc_subfield_structure` VALUES ('949', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4047 INSERT INTO `marc_subfield_structure` VALUES ('949', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4048 INSERT INTO `marc_subfield_structure` VALUES ('949', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4049 INSERT INTO `marc_subfield_structure` VALUES ('949', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4050 INSERT INTO `marc_subfield_structure` VALUES ('949', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4051 INSERT INTO `marc_subfield_structure` VALUES ('949', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4052 INSERT INTO `marc_subfield_structure` VALUES ('949', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4053 INSERT INTO `marc_subfield_structure` VALUES ('949', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4054 INSERT INTO `marc_subfield_structure` VALUES ('949', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4055 INSERT INTO `marc_subfield_structure` VALUES ('949', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4056 INSERT INTO `marc_subfield_structure` VALUES ('949', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4057 INSERT INTO `marc_subfield_structure` VALUES ('949', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4058 INSERT INTO `marc_subfield_structure` VALUES ('949', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4059 INSERT INTO `marc_subfield_structure` VALUES ('949', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4060 INSERT INTO `marc_subfield_structure` VALUES ('949', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4061 INSERT INTO `marc_subfield_structure` VALUES ('949', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4062 INSERT INTO `marc_subfield_structure` VALUES ('949', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4063 INSERT INTO `marc_subfield_structure` VALUES ('949', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4064 INSERT INTO `marc_subfield_structure` VALUES ('949', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4065 INSERT INTO `marc_subfield_structure` VALUES ('949', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4066 INSERT INTO `marc_subfield_structure` VALUES ('949', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4067 INSERT INTO `marc_subfield_structure` VALUES ('949', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4068 INSERT INTO `marc_subfield_structure` VALUES ('949', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4069 INSERT INTO `marc_subfield_structure` VALUES ('949', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4070 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'a', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4071 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'b', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4072 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'c', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4073 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'd', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4074 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'e', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4075 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'a', 'ATC', 'ATC', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4076 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'b', 'SNR', 'SNR', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4077 INSERT INTO `marc_subfield_structure` VALUES ('950', 'a', 'Classification number, LCAL (RLIN)', 'Classification number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4078 INSERT INTO `marc_subfield_structure` VALUES ('950', 'b', 'Book number/undivided call number, LCAL (RLIN)', 'Book number/undivided call number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4079 INSERT INTO `marc_subfield_structure` VALUES ('950', 'd', 'Additional free-text stamp above the call number, LCAL (RLIN)', 'Additional free-text stamp above the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4080 INSERT INTO `marc_subfield_structure` VALUES ('950', 'e', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4081 INSERT INTO `marc_subfield_structure` VALUES ('950', 'f', 'Location-level footnote, LFNT (RLIN)', 'Location-level footnote, LFNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4082 INSERT INTO `marc_subfield_structure` VALUES ('950', 'h', 'Location-level output transaction history, LHST (RLIN)', 'Location-level output transaction history, LHST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4083 INSERT INTO `marc_subfield_structure` VALUES ('950', 'i', 'Location-level extra card request, LEXT (RLIN)', 'Location-level extra card request, LEXT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4084 INSERT INTO `marc_subfield_structure` VALUES ('950', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4085 INSERT INTO `marc_subfield_structure` VALUES ('950', 'n', 'Location-level additional note, LANT (RLIN)', 'Location-level additional note, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4086 INSERT INTO `marc_subfield_structure` VALUES ('950', 'p', 'Location-level pathfinder, LPTH (RLIN)', 'Location-level pathfinder, LPTH (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4087 INSERT INTO `marc_subfield_structure` VALUES ('950', 't', 'Location-level field suppression, LFSP (RLIN)', 'Location-level field suppression, LFSP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4088 INSERT INTO `marc_subfield_structure` VALUES ('950', 'u', 'Non-printing notes, LANT (RLIN)', 'Non-printing notes, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4089 INSERT INTO `marc_subfield_structure` VALUES ('950', 'v', 'Volumes, LVOL (RLIN)', 'Volumes, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4090 INSERT INTO `marc_subfield_structure` VALUES ('950', 'w', 'Subscription status code, LANT (RLIN)', 'Subscription status code, LANT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4091 INSERT INTO `marc_subfield_structure` VALUES ('950', 'y', 'Date, LVOL (RLIN)', 'Date, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4092 INSERT INTO `marc_subfield_structure` VALUES ('950', 'z', 'Retention, LVOL (RLIN)', 'Retention, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4093 INSERT INTO `marc_subfield_structure` VALUES ('951', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4094 INSERT INTO `marc_subfield_structure` VALUES ('951', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4095 INSERT INTO `marc_subfield_structure` VALUES ('951', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4096 INSERT INTO `marc_subfield_structure` VALUES ('951', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4097 INSERT INTO `marc_subfield_structure` VALUES ('951', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4098 INSERT INTO `marc_subfield_structure` VALUES ('951', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4099 INSERT INTO `marc_subfield_structure` VALUES ('951', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4100 INSERT INTO `marc_subfield_structure` VALUES ('951', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4101 INSERT INTO `marc_subfield_structure` VALUES ('951', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4102 INSERT INTO `marc_subfield_structure` VALUES ('951', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, '', '', '');
4103 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'a', 'Record ID (RLIN)', 'Record ID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4104 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'b', 'Institution name (RLIN)', 'Institution name (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4105 INSERT INTO `marc_subfield_structure` VALUES ('95r', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
4106 INSERT INTO `marc_subfield_structure` VALUES ('95r', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
4107 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'a', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
4108 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'b', 'State, province, territory', 'State, province, territory', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
4109 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'c', 'County, region, islands area', 'County, region, islands area', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
4110 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'd', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, '', '', '');
4111 INSERT INTO `marc_subfield_structure` VALUES ('955', 'a', 'Classification number, CCAL (RLIN)', 'Classification number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4112 INSERT INTO `marc_subfield_structure` VALUES ('955', 'b', 'Book number/undivided call number, CCAL (RLIN)', 'Book number/undivided call number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4113 INSERT INTO `marc_subfield_structure` VALUES ('955', 'c', 'Copy information and material description, CCAL + MDES (RLIN)', 'Copy information and material description, CCAL + MDES (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4114 INSERT INTO `marc_subfield_structure` VALUES ('955', 'h', 'Copy status--for earlier dates, CST (RLIN)', 'Copy status--for earlier dates, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4115 INSERT INTO `marc_subfield_structure` VALUES ('955', 'i', 'Copy status, CST (RLIN)', 'Copy status, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4116 INSERT INTO `marc_subfield_structure` VALUES ('955', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4117 INSERT INTO `marc_subfield_structure` VALUES ('955', 'q', 'Aquisitions control number, HNT (RLIN)', 'Aquisitions control number, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4118 INSERT INTO `marc_subfield_structure` VALUES ('955', 'r', 'Circulation control number, HNT (RLIN)', 'Circulation control number, HNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4119 INSERT INTO `marc_subfield_structure` VALUES ('955', 's', 'Shelflist note, HNT (RLIN)', 'Shelflist note, HNT (RLIN)', 1, 0, '', 9, '', '', '', 1, 5, '', '', '');
4120 INSERT INTO `marc_subfield_structure` VALUES ('955', 'u', 'Non-printing notes, HNT (RLIN)', 'Non-printing notes, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4121 INSERT INTO `marc_subfield_structure` VALUES ('956', '2', 'Access method', 'Access method', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4122 INSERT INTO `marc_subfield_structure` VALUES ('956', '3', 'Materials specified', 'Materials specified', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4123 INSERT INTO `marc_subfield_structure` VALUES ('956', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4124 INSERT INTO `marc_subfield_structure` VALUES ('956', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4125 INSERT INTO `marc_subfield_structure` VALUES ('956', 'a', 'Host name', 'Host name', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4126 INSERT INTO `marc_subfield_structure` VALUES ('956', 'b', 'Access number', 'Access number', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4127 INSERT INTO `marc_subfield_structure` VALUES ('956', 'c', 'Compression information', 'Compression information', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4128 INSERT INTO `marc_subfield_structure` VALUES ('956', 'd', 'Path', 'Path', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4129 INSERT INTO `marc_subfield_structure` VALUES ('956', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4130 INSERT INTO `marc_subfield_structure` VALUES ('956', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4131 INSERT INTO `marc_subfield_structure` VALUES ('956', 'i', 'Instruction', 'Instruction', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4132 INSERT INTO `marc_subfield_structure` VALUES ('956', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4133 INSERT INTO `marc_subfield_structure` VALUES ('956', 'k', 'Password', 'Password', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4134 INSERT INTO `marc_subfield_structure` VALUES ('956', 'l', 'Logon', 'Logon', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4135 INSERT INTO `marc_subfield_structure` VALUES ('956', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4136 INSERT INTO `marc_subfield_structure` VALUES ('956', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4137 INSERT INTO `marc_subfield_structure` VALUES ('956', 'o', 'Operating system', 'Operating system', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4138 INSERT INTO `marc_subfield_structure` VALUES ('956', 'p', 'Port', 'Port', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4139 INSERT INTO `marc_subfield_structure` VALUES ('956', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4140 INSERT INTO `marc_subfield_structure` VALUES ('956', 'r', 'Settings', 'Settings', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4141 INSERT INTO `marc_subfield_structure` VALUES ('956', 's', 'File size', 'File size', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4142 INSERT INTO `marc_subfield_structure` VALUES ('956', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4143 INSERT INTO `marc_subfield_structure` VALUES ('956', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -6, '', '', '');
4144 INSERT INTO `marc_subfield_structure` VALUES ('956', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4145 INSERT INTO `marc_subfield_structure` VALUES ('956', 'w', 'Record control number', 'Record control number', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4146 INSERT INTO `marc_subfield_structure` VALUES ('956', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', 0, 6, '', '', '');
4147 INSERT INTO `marc_subfield_structure` VALUES ('956', 'y', 'Link text', 'Link text', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4148 INSERT INTO `marc_subfield_structure` VALUES ('956', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4149 INSERT INTO `marc_subfield_structure` VALUES ('960', '3', 'Materials specified, MATL', 'Materials specified, MATL', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4150 INSERT INTO `marc_subfield_structure` VALUES ('960', 'a', 'Physical location, PLOC (RLIN)', 'Physical location, PLOC (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4151 INSERT INTO `marc_subfield_structure` VALUES ('967', 'a', 'GNR (RLIN)', 'GNR (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4152 INSERT INTO `marc_subfield_structure` VALUES ('967', 'c', 'PSI (RLIN)', 'PSI (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4153 INSERT INTO `marc_subfield_structure` VALUES ('980', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4154 INSERT INTO `marc_subfield_structure` VALUES ('980', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4155 INSERT INTO `marc_subfield_structure` VALUES ('980', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4156 INSERT INTO `marc_subfield_structure` VALUES ('980', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4157 INSERT INTO `marc_subfield_structure` VALUES ('980', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4158 INSERT INTO `marc_subfield_structure` VALUES ('980', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4159 INSERT INTO `marc_subfield_structure` VALUES ('980', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4160 INSERT INTO `marc_subfield_structure` VALUES ('980', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4161 INSERT INTO `marc_subfield_structure` VALUES ('980', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4162 INSERT INTO `marc_subfield_structure` VALUES ('980', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4163 INSERT INTO `marc_subfield_structure` VALUES ('980', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4164 INSERT INTO `marc_subfield_structure` VALUES ('980', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4165 INSERT INTO `marc_subfield_structure` VALUES ('980', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4166 INSERT INTO `marc_subfield_structure` VALUES ('980', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4167 INSERT INTO `marc_subfield_structure` VALUES ('980', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4168 INSERT INTO `marc_subfield_structure` VALUES ('980', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4169 INSERT INTO `marc_subfield_structure` VALUES ('980', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4170 INSERT INTO `marc_subfield_structure` VALUES ('980', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4171 INSERT INTO `marc_subfield_structure` VALUES ('980', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4172 INSERT INTO `marc_subfield_structure` VALUES ('980', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4173 INSERT INTO `marc_subfield_structure` VALUES ('980', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4174 INSERT INTO `marc_subfield_structure` VALUES ('980', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4175 INSERT INTO `marc_subfield_structure` VALUES ('980', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4176 INSERT INTO `marc_subfield_structure` VALUES ('980', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4177 INSERT INTO `marc_subfield_structure` VALUES ('981', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4178 INSERT INTO `marc_subfield_structure` VALUES ('981', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4179 INSERT INTO `marc_subfield_structure` VALUES ('981', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4180 INSERT INTO `marc_subfield_structure` VALUES ('981', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4181 INSERT INTO `marc_subfield_structure` VALUES ('981', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4182 INSERT INTO `marc_subfield_structure` VALUES ('981', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4183 INSERT INTO `marc_subfield_structure` VALUES ('981', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4184 INSERT INTO `marc_subfield_structure` VALUES ('981', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4185 INSERT INTO `marc_subfield_structure` VALUES ('981', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4186 INSERT INTO `marc_subfield_structure` VALUES ('981', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4187 INSERT INTO `marc_subfield_structure` VALUES ('981', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4188 INSERT INTO `marc_subfield_structure` VALUES ('981', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4189 INSERT INTO `marc_subfield_structure` VALUES ('981', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4190 INSERT INTO `marc_subfield_structure` VALUES ('981', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4191 INSERT INTO `marc_subfield_structure` VALUES ('981', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4192 INSERT INTO `marc_subfield_structure` VALUES ('981', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4193 INSERT INTO `marc_subfield_structure` VALUES ('981', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4194 INSERT INTO `marc_subfield_structure` VALUES ('981', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4195 INSERT INTO `marc_subfield_structure` VALUES ('981', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4196 INSERT INTO `marc_subfield_structure` VALUES ('981', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4197 INSERT INTO `marc_subfield_structure` VALUES ('981', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4198 INSERT INTO `marc_subfield_structure` VALUES ('981', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4199 INSERT INTO `marc_subfield_structure` VALUES ('982', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4200 INSERT INTO `marc_subfield_structure` VALUES ('982', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4201 INSERT INTO `marc_subfield_structure` VALUES ('982', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4202 INSERT INTO `marc_subfield_structure` VALUES ('982', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4203 INSERT INTO `marc_subfield_structure` VALUES ('982', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4204 INSERT INTO `marc_subfield_structure` VALUES ('982', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4205 INSERT INTO `marc_subfield_structure` VALUES ('982', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4206 INSERT INTO `marc_subfield_structure` VALUES ('982', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4207 INSERT INTO `marc_subfield_structure` VALUES ('982', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4208 INSERT INTO `marc_subfield_structure` VALUES ('982', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4209 INSERT INTO `marc_subfield_structure` VALUES ('982', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4210 INSERT INTO `marc_subfield_structure` VALUES ('982', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4211 INSERT INTO `marc_subfield_structure` VALUES ('982', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4212 INSERT INTO `marc_subfield_structure` VALUES ('982', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4213 INSERT INTO `marc_subfield_structure` VALUES ('982', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4214 INSERT INTO `marc_subfield_structure` VALUES ('982', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4215 INSERT INTO `marc_subfield_structure` VALUES ('982', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4216 INSERT INTO `marc_subfield_structure` VALUES ('982', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4217 INSERT INTO `marc_subfield_structure` VALUES ('982', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4218 INSERT INTO `marc_subfield_structure` VALUES ('982', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, '', '', '');
4219 INSERT INTO `marc_subfield_structure` VALUES ('983', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4220 INSERT INTO `marc_subfield_structure` VALUES ('983', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4221 INSERT INTO `marc_subfield_structure` VALUES ('983', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4222 INSERT INTO `marc_subfield_structure` VALUES ('983', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4223 INSERT INTO `marc_subfield_structure` VALUES ('983', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4224 INSERT INTO `marc_subfield_structure` VALUES ('983', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4225 INSERT INTO `marc_subfield_structure` VALUES ('983', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4226 INSERT INTO `marc_subfield_structure` VALUES ('983', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4227 INSERT INTO `marc_subfield_structure` VALUES ('983', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4228 INSERT INTO `marc_subfield_structure` VALUES ('983', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4229 INSERT INTO `marc_subfield_structure` VALUES ('983', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4230 INSERT INTO `marc_subfield_structure` VALUES ('983', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4231 INSERT INTO `marc_subfield_structure` VALUES ('983', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4232 INSERT INTO `marc_subfield_structure` VALUES ('983', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4233 INSERT INTO `marc_subfield_structure` VALUES ('983', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4234 INSERT INTO `marc_subfield_structure` VALUES ('983', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4235 INSERT INTO `marc_subfield_structure` VALUES ('983', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4236 INSERT INTO `marc_subfield_structure` VALUES ('984', 'a', 'Holding library identification number', 'Holding library identification number', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4237 INSERT INTO `marc_subfield_structure` VALUES ('984', 'b', 'Physical description codes', 'Physical description codes', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4238 INSERT INTO `marc_subfield_structure` VALUES ('984', 'c', 'Call number', 'Call number', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4239 INSERT INTO `marc_subfield_structure` VALUES ('984', 'd', 'Volume or other numbering', 'Volume or other numbering', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4240 INSERT INTO `marc_subfield_structure` VALUES ('984', 'e', 'Dates', 'Dates', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4241 INSERT INTO `marc_subfield_structure` VALUES ('984', 'f', 'Completeness note', 'Completeness note', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4242 INSERT INTO `marc_subfield_structure` VALUES ('984', 'g', 'Referral note', 'Referral note', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4243 INSERT INTO `marc_subfield_structure` VALUES ('984', 'h', 'Retention note', 'Retention note', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4244 INSERT INTO `marc_subfield_structure` VALUES ('987', 'a', 'Romanization/conversion identifier', 'Romanization/conversion identifier', 0, 0, '', 9, '', '', '', NULL, -6, '', '', '');
4245 INSERT INTO `marc_subfield_structure` VALUES ('987', 'b', 'Agency that converted, created or reviewed', 'Agency that converted, created or reviewed', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4246 INSERT INTO `marc_subfield_structure` VALUES ('987', 'c', 'Date of conversion or review', 'Date of conversion or review', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4247 INSERT INTO `marc_subfield_structure` VALUES ('987', 'd', 'Status code', 'Status code ', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4248 INSERT INTO `marc_subfield_structure` VALUES ('987', 'e', 'Version of conversion program used', 'Version of conversion program used', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4249 INSERT INTO `marc_subfield_structure` VALUES ('987', 'f', 'Note', 'Note', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4250 INSERT INTO `marc_subfield_structure` VALUES ('990', 'a', 'Link information for 9XX fields', 'Link information for 9XX fields', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4251 INSERT INTO `marc_subfield_structure` VALUES ('990', 'b', 'Link information for field corresponding to 9XX field', 'Link information for field corresponding to 9XX field', 1, 0, '', 9, '', '', '', 0, -6, '', '', '');
4252 INSERT INTO `marc_subfield_structure` VALUES ('995', 'a', 'Origine du document, texte libre', 'Origine du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4253 INSERT INTO `marc_subfield_structure` VALUES ('995', 'b', 'Origine du document, donn&eacute;e cod&eacute;e', '', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4254 INSERT INTO `marc_subfield_structure` VALUES ('995', 'c', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4255 INSERT INTO `marc_subfield_structure` VALUES ('995', 'd', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4256 INSERT INTO `marc_subfield_structure` VALUES ('995', 'e', 'Genre d&eacute;taill&eacute;', 'Genre d&eacute;taill&eacute;', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4257 INSERT INTO `marc_subfield_structure` VALUES ('995', 'f', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4258 INSERT INTO `marc_subfield_structure` VALUES ('995', 'g', 'Code &agrave; barres, pr&eacute;fixe', 'Code &agrave; barres, pr&eacute;fixe', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4259 INSERT INTO `marc_subfield_structure` VALUES ('995', 'h', 'Code &agrave; barres, incr&eacute;mentation', 'Code &agrave; barres, incr&eacute;mentation', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4260 INSERT INTO `marc_subfield_structure` VALUES ('995', 'i', 'Code &agrave; barres, suffixe', 'Code &agrave; barres, suffixe', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4261 INSERT INTO `marc_subfield_structure` VALUES ('995', 'j', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4262 INSERT INTO `marc_subfield_structure` VALUES ('995', 'k', 'Cote', 'Cote', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4263 INSERT INTO `marc_subfield_structure` VALUES ('995', 'l', 'Volumaison', 'Volumaison', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4264 INSERT INTO `marc_subfield_structure` VALUES ('995', 'm', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4265 INSERT INTO `marc_subfield_structure` VALUES ('995', 'n', 'Date de restitution pr&eacute;vue', 'Date de restitution pr&eacute;vue', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4266 INSERT INTO `marc_subfield_structure` VALUES ('995', 'o', 'Cat&eacute;gorie de circulation', 'Cat&eacute;gorie de circulation', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4267 INSERT INTO `marc_subfield_structure` VALUES ('995', 'p', 'P&eacute;riodique', 'P&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4268 INSERT INTO `marc_subfield_structure` VALUES ('995', 'q', 'Public vis&eacute; (selon l\'&acirc;ge)', 'Public vis&eacute; (selon l\'&acirc;ge)', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4269 INSERT INTO `marc_subfield_structure` VALUES ('995', 'r', 'Type de document et support mat&eacute;riel', 'Type de document et support mat&eacute;riel', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4270 INSERT INTO `marc_subfield_structure` VALUES ('995', 's', 'Él&eacute;ment de tri', 'Él&eacute;ment de tri', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4271 INSERT INTO `marc_subfield_structure` VALUES ('995', 't', 'Genre', 'Genre', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4272 INSERT INTO `marc_subfield_structure` VALUES ('995', 'u', 'Note sur l\'exemplaire', 'Note sur l\'exemplaire', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4273 INSERT INTO `marc_subfield_structure` VALUES ('995', 'v', 'Note sur le num&eacute;ro de p&eacute;riodique', 'Note sur le num&eacute;ro de p&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4274 INSERT INTO `marc_subfield_structure` VALUES ('995', 'w', 'Établissement cible du document, texte libre', 'Établissement cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4275 INSERT INTO `marc_subfield_structure` VALUES ('995', 'x', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4276 INSERT INTO `marc_subfield_structure` VALUES ('995', 'y', 'Ensemble cible du document , texte libre', 'Ensemble cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4277 INSERT INTO `marc_subfield_structure` VALUES ('995', 'z', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, '', '', '');
4278 INSERT INTO `marc_subfield_structure` VALUES ('998', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4279 INSERT INTO `marc_subfield_structure` VALUES ('998', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4280 INSERT INTO `marc_subfield_structure` VALUES ('998', 'd', 'First date, FD (RLIN)', 'First Date, FD (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, '', '', '');
4281 INSERT INTO `marc_subfield_structure` VALUES ('998', 'i', 'RINS (RLIN)', 'RINS (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4282 INSERT INTO `marc_subfield_structure` VALUES ('998', 'l', 'LI (RLIN)', 'LI (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4283 INSERT INTO `marc_subfield_structure` VALUES ('998', 'n', 'NUC (RLIN)', 'NUC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4284 INSERT INTO `marc_subfield_structure` VALUES ('998', 'p', 'PROC (RLIN)', 'PROC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4285 INSERT INTO `marc_subfield_structure` VALUES ('998', 's', 'CC (RLIN)', 'CC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4286 INSERT INTO `marc_subfield_structure` VALUES ('998', 't', 'RTYP (RLIN)', 'RTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4287 INSERT INTO `marc_subfield_structure` VALUES ('998', 'w', 'PLINK (RLIN)', 'PLINK (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4288 INSERT INTO `marc_subfield_structure` VALUES ('999', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, '', '', '');
4289 INSERT INTO `marc_subfield_structure` VALUES ('999', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, '', '', '');
4290 INSERT INTO `marc_subfield_structure` VALUES ('999', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4291 INSERT INTO `marc_subfield_structure` VALUES ('999', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4292 INSERT INTO `marc_subfield_structure` VALUES ('999', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4293 INSERT INTO `marc_subfield_structure` VALUES ('999', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4294 INSERT INTO `marc_subfield_structure` VALUES ('999', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4295 INSERT INTO `marc_subfield_structure` VALUES ('999', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4296 INSERT INTO `marc_subfield_structure` VALUES ('999', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4297 INSERT INTO `marc_subfield_structure` VALUES ('999', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4298 INSERT INTO `marc_subfield_structure` VALUES ('999', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4299 INSERT INTO `marc_subfield_structure` VALUES ('999', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4300 INSERT INTO `marc_subfield_structure` VALUES ('999', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, '', '', '');
4301 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'a', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4302 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'd', 'UAD (RLIN)', 'UAD (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4303 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'f', 'FPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4304 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'h', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4305 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'i', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4306 INSERT INTO `marc_subfield_structure` VALUES ('u01', 's', 'UST (RLIN)', 'UST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4307 INSERT INTO `marc_subfield_structure` VALUES ('u01', 't', 'UTYP (RLIN)', 'UTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4308 INSERT INTO `marc_subfield_structure` VALUES ('u02', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4309 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4310 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'b', 'Additional codes following the standard number', 'Additional codes following the standard number', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4311 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4312 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4313 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'n', 'LSI', 'LSI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4314 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'o', 'SID', 'SID', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4315 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'p', 'DP', 'DP', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4316 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'r', 'RUSH', 'RUSH', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4317 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'a', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4318 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'b', 'SID', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4319 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'c', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4320 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'd', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4321 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'e', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4322 INSERT INTO `marc_subfield_structure` VALUES ('u10', 's', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4323 INSERT INTO `marc_subfield_structure` VALUES ('u11', 'a', 'Department report request, DRR (DRRH for earlier occurrences)', 'DRR (DRRH for earlier occurrences)', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4324 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'a', 'SUPN', 'SUPN', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4325 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'b', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4326 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'c', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4327 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'd', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4328 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'e', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4329 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'x', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4330 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'a', 'SHIP', 'SHIP', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4331 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'b', 'BILL', 'BILL', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4332 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'c', 'DAC', 'DAC', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4333 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'n', 'LSAC', 'LSAC', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4334 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'a', 'SICO', 'SICO', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4335 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'b', 'SICO', 'SICO', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4336 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'c', 'SCAT', 'SCAT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4337 INSERT INTO `marc_subfield_structure` VALUES ('u25', 'a', 'Supplier report(s), SRPT', 'Supplier report(s), SRPT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4338 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'a', 'NCC [OBSOLETE]', 'NCC [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4339 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'i', 'ICI', 'ICI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4340 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'm', 'MCI', 'MCI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4341 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'a', 'NCC', 'NCC', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4342 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'b', 'NCS', 'NCS', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4343 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'a', 'ICL', 'ICL', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4344 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'd', 'ICAD', 'ICAD', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4345 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'a', 'EPCL', 'EPCL', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4346 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'r', 'ERI', 'ERI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4347 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'd', 'EPDT [OBSOLETE]', 'EPDT [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4348 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'f', 'EFRQ', 'EFRQ', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4349 INSERT INTO `marc_subfield_structure` VALUES ('u40', 's', 'EPST', 'EPST', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4350 INSERT INTO `marc_subfield_structure` VALUES ('u40', 't', 'ETYP', 'ETYP', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4351 INSERT INTO `marc_subfield_structure` VALUES ('u50', 'a', 'Acquisitions notes, AQNT', 'Acquisitions notes, AQNT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4352 INSERT INTO `marc_subfield_structure` VALUES ('u51', 'a', 'Selection notes, SLNT', 'Selection notes, SLNT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4353 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'a', 'INT', 'INT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4354 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'b', 'INT', 'NT', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4355 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'a', 'CLNT', 'CLNT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4356 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'b', 'CLNT', 'CLNT', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4357 INSERT INTO `marc_subfield_structure` VALUES ('u54', 'a', 'Notes to serials department, SRNT', 'Notes to serials department, SRNT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4358 INSERT INTO `marc_subfield_structure` VALUES ('u55', 'a', 'Cataloging notes, CTNT', 'Cataloging notes, CTNT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4359 INSERT INTO `marc_subfield_structure` VALUES ('u5f', 'a', 'Accounting notes, ACNT', 'Accounting notes, ACNT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4360 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'a', 'QTY', 'QTY', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4361 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'b', 'MAT', 'MAT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4362 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'l', 'MLOC', 'MLOC', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4363 INSERT INTO `marc_subfield_structure` VALUES ('u71', 'a', 'Fund account, FUND', 'Fund account, FUND', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4364 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'a', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4365 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'c', 'CIRC', 'CIRC', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4366 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'h', 'IPST', 'IPST', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4367 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'i', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4368 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'l', 'SLOC', 'SLOC', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4369 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'a', 'LPRI', 'LPRI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4370 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'b', 'CURR', 'CURR', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4371 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'k', 'CVRT [OBSOLETE]', 'CVRT [OBSOLETE]', 1, 0, '', 9, '', '', '', 0, 5, '', '', '');
4372 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'p', 'LPD', 'LPD', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4373 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'r', 'EDRT', 'EDRT', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4374 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'h', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4375 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'i', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4376 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'a', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4377 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'b', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4378 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'c', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4379 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'd', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4380 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'e', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4381 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'f', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4382 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'g', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4383 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'h', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4384 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'n', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, '', '', '');
4385
4386
4387 -- ******************************************************
4388
4389
4390
4391 -- *******************************************************************
4392 -- SIMPLE BOOKS KOHA RECORD AND HOLDINGS MANAGEMENT FIELDS/SUBFIELDS. 
4393 -- *******************************************************************
4394
4395 -- These ought to be adjusted for different less conflicting and more 
4396 -- rationally chosen fields and subfields but I had left that for last. 
4397
4398 -- ADJUST ME
4399 -- Use values from your dump of marc_tag_structure and marc_subfield_structure 
4400 -- to provide support for your Koha database.
4401
4402
4403 -- ******************************************************
4404
4405
4406 -- Current Record ID Field/Subfields 
4407
4408
4409 INSERT INTO `marc_tag_structure` VALUES ('090', 'SYSTEM CONTROL NUMBERS (KOHA)', 'SYSTEM CONTROL NUMBERS (KOHA)', 1, 0, '', 'BKS');
4410
4411 INSERT INTO `marc_subfield_structure` VALUES ('090', 'a', 'Item type [OBSOLETE]', 'Item type [OBSOLETE]', 0, 0, NULL, -1, NULL, NULL, '', NULL, -5, 'BKS', '', '');
4412 INSERT INTO `marc_subfield_structure` VALUES ('090', 'b', 'Koha Dewey Subclass [OBSOLETE]', 'Koha Dewey Subclass [OBSOLETE]', 0, 0, NULL, 0, NULL, NULL, '', NULL, -5, 'BKS', '', '');
4413 INSERT INTO `marc_subfield_structure` VALUES ('090', 'c', 'Koha biblionumber', 'Koha biblionumber', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, -5, 'BKS', '', '');
4414 INSERT INTO `marc_subfield_structure` VALUES ('090', 'd', 'Koha biblioitemnumber', 'Koha biblioitemnumber', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, -5, 'BKS', '', '');
4415
4416
4417 -- ******************************************************
4418
4419
4420 -- Current primary biblioitems Field/Subfields 
4421
4422
4423 INSERT INTO `marc_tag_structure` VALUES ('942', 'ADDED ENTRY ELEMENTS (KOHA)', 'ADDED ENTRY ELEMENTS (KOHA)', 0, 0, '', 'BKS');
4424
4425 INSERT INTO `marc_subfield_structure` VALUES ('942', 'a', 'Institution code [OBSOLETE]', 'Institution code [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -5, 'BKS', '', '');
4426 INSERT INTO `marc_subfield_structure` VALUES ('942', 'c', 'Item type', 'Item type', 0, 1, 'biblioitems.itemtype', 9, 'itemtypes', '', '', NULL, 0, 'BKS', '', '');
4427 INSERT INTO `marc_subfield_structure` VALUES ('942', 'j', 'Location (call number prefix code)', 'Location (call number prefix code)', 0, 0, 'biblioitems.classification', 9, '', '', '', NULL, -6, 'BKS', '', '');
4428 INSERT INTO `marc_subfield_structure` VALUES ('942', 'k', 'Classification base (DDC to decimal or LCC letter class padded after single letter classes with trailing 0', 'Classification base', 0, 0, 'biblioitems.dewey', 9, '', '', '', NULL, -6, 'BKS', '', '');
4429 INSERT INTO `marc_subfield_structure` VALUES ('942', 'l', 'Classification subclass (DDC after decimal or LCC number after letters', 'Classification subclass', 0, 0, 'biblioitems.subclass', 9, '', '', '', NULL, -6, 'BKS', '', '');
4430
4431
4432 -- ******************************************************
4433
4434
4435 -- Recommended items Field/Subfields 
4436
4437
4438 -- INSERT INTO `marc_tag_structure` VALUES ('95k', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', '');
4439
4440 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '0', 'Item status (withdrawn) (similar to 876-8 $j)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'BKS', '', '');
4441 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '1', 'Item status (lost) (similar to 876-8 $j)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'BKS', '', '');
4442 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '2', 'Source of classification or shelving scheme (similar to 852 $2)', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4443 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '3', 'Materials specified (similar to 852, 876-8 $3)', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'BKS', '', '');
4444 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '4', 'Use restrictions (similar to 506 $a, 876-8 $h)', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'BKS', '', '');
4445 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '6', 'Linkage (similar to 852, 876-8 $6)', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'BKS', '', '');
4446 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '8', 'Sequence number (similar to 852, 876-8 $8)', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4447 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '9', 'Koha itemnumber (autogenerated similar to 852, 876-8 $3 $8 $t combined)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, 'BKS', '', '');
4448 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'a', 'Location (homebranch) (similar to 852 $a)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, '', '', '');
4449 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'b', 'Sublocation or collection (holdingbranch) (similar to 852 $b)', 'Sublocation or collection (holdingbranch)', 1, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'BKS', '', '');
4450 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'c', 'Shelving location (similar to 852 $c, 876-8 $l)', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'BKS', '', '');
4451 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'd', 'Date acquired (similar to 541, 876-8 $d)', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, 'BKS', '', '');
4452 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'e', 'Source of acquisition (similar to 541 $a, 876-8 $e)', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'BKS', '', '');
4453 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'f', 'Coded location qualifier (similar to 852 $f)', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4454 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'g', 'Non-coded location qualifier (similar to 852 $g)', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4455 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'h', 'Classification part (similar to 852 $h)', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4456 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'i', 'Item part (similar to 852 $i)', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4457 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'j', 'Shelving control number (similar to 852 $j)', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4458 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'k', 'Call number prefix (similar to 852 $k)', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4459 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'l', 'Shelving form of title (similar to 852 $l)', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4460 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'm', 'Call number suffix (similar to 852 $m)', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4461 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'n', 'Country code (similar to 852 $n)', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4462 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'o', 'Call number (similar to 852 $k $h $i $m combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'BKS', '', '');
4463 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'p', 'Piece designation (barcode) (similar to 852, 876-8 $p)', 'Piece designation (barcode)', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, 'BKS', '', '');
4464 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'q', 'Piece physical condition (similar to 562 $a, 852 $q)', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4465 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'r', 'Invalid or canceled piece designation (canceled barcode) (similar to 876-8 $r)', 'Invalid or canceled piece designation (canceled barcode)', 1, 0, '', 10, '', '', '', NULL, -1, 'BKS', '', '');
4466 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 's', 'Copyright article-fee code (similar to 018 $a, 852 $s)', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4467 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 't', 'Copy number (similar to 852, 876-8 $t)', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4468 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'u', 'Cost, normal purchase price (similar to 541 $h, 876-8 $c)', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'BKS', '', '');
4469 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'v', 'Cost, replacement price (similar to 365 $b, 876-8 $c)', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'BKS', '', '');
4470 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'w', 'Price effective from (similar to 365 $f)', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'BKS', '', '');
4471 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'x', 'Nonpublic note (similar to 852, 876-8 $x)', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'BKS', '', '');
4472 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'y', 'Use restrictions (not for loan) (similar to 506 $a, 876-8 $h)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'BKS', '', '');
4473 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'z', 'Public note (similar to 852, 876-8 $z)', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'BKS', '', '');
4474
4475
4476
4477 -- Current items Field/Subfields 
4478
4479
4480 INSERT INTO `marc_tag_structure` VALUES ('952', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', 'BKS');
4481
4482 INSERT INTO `marc_subfield_structure` VALUES ('952', '0', 'Item status (withdrawn)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'BKS', '', '');
4483 INSERT INTO `marc_subfield_structure` VALUES ('952', '1', 'Item status (lost)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'BKS', '', '');
4484 INSERT INTO `marc_subfield_structure` VALUES ('952', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4485 INSERT INTO `marc_subfield_structure` VALUES ('952', '3', 'Materials specified', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'BKS', '', '');
4486 INSERT INTO `marc_subfield_structure` VALUES ('952', '4', 'Use restrictions', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'BKS', '', '');
4487 INSERT INTO `marc_subfield_structure` VALUES ('952', '6', 'Linkage', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'BKS', '', '');
4488 INSERT INTO `marc_subfield_structure` VALUES ('952', '8', 'Sequence number', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4489 INSERT INTO `marc_subfield_structure` VALUES ('952', '9', 'Cost, normal purchase price', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'BKS', '', '');
4490 INSERT INTO `marc_subfield_structure` VALUES ('952', 'a', 'Canceled barcode', 'Canceled barcode', 1, 0, '', 10, '', '', '', NULL, -1, 'BKS', '', '');
4491 INSERT INTO `marc_subfield_structure` VALUES ('952', 'b', 'Location (homebranch)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, 'BKS', '', '');
4492 INSERT INTO `marc_subfield_structure` VALUES ('952', 'c', 'Shelving location', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'BKS', '', '');
4493 INSERT INTO `marc_subfield_structure` VALUES ('952', 'd', 'Sublocation or collection (holdingbranch)', 'Sublocation or collection (holdingbranch)', 0, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'BKS', '''952b''', '');
4494 INSERT INTO `marc_subfield_structure` VALUES ('952', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'BKS', '', '');
4495 INSERT INTO `marc_subfield_structure` VALUES ('952', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4496 INSERT INTO `marc_subfield_structure` VALUES ('952', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4497 INSERT INTO `marc_subfield_structure` VALUES ('952', 'h', 'Classification part', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4498 INSERT INTO `marc_subfield_structure` VALUES ('952', 'i', 'Item part', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4499 INSERT INTO `marc_subfield_structure` VALUES ('952', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4500 INSERT INTO `marc_subfield_structure` VALUES ('952', 'k', 'Call number (combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'BKS', '', '');
4501 INSERT INTO `marc_subfield_structure` VALUES ('952', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4502 INSERT INTO `marc_subfield_structure` VALUES ('952', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4503 INSERT INTO `marc_subfield_structure` VALUES ('952', 'n', 'Country code', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4504 INSERT INTO `marc_subfield_structure` VALUES ('952', 'o', 'Call number prefix', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4505 INSERT INTO `marc_subfield_structure` VALUES ('952', 'p', 'Barcode', 'Barcode', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, 'BKS', '', '');
4506 INSERT INTO `marc_subfield_structure` VALUES ('952', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4507 INSERT INTO `marc_subfield_structure` VALUES ('952', 'r', 'Cost, replacement price', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'BKS', '', '');
4508 INSERT INTO `marc_subfield_structure` VALUES ('952', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4509 INSERT INTO `marc_subfield_structure` VALUES ('952', 't', 'Copy number', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'BKS', '', '');
4510 INSERT INTO `marc_subfield_structure` VALUES ('952', 'u', 'Koha itemnumber (autogenerated)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, 'BKS', '', '');
4511 INSERT INTO `marc_subfield_structure` VALUES ('952', 'v', 'Date acquired', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, 'BKS', '', '');
4512 INSERT INTO `marc_subfield_structure` VALUES ('952', 'w', 'Price effective from', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'BKS', '', '');
4513 INSERT INTO `marc_subfield_structure` VALUES ('952', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'BKS', '', '');
4514 INSERT INTO `marc_subfield_structure` VALUES ('952', 'y', 'Use restrictions (not for loan)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'BKS', '', '');
4515 INSERT INTO `marc_subfield_structure` VALUES ('952', 'z', 'Public note', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'BKS', '', '');
4516
4517
4518 -- *******************************************************
4519
4520
4521
4522 -- *********************************************************************
4523 -- SIMPLE BOOKS MARC 21 FIELDS/SUBFIELDS AND COMMMONLY USED EXTENSIONS. 
4524 -- *********************************************************************
4525
4526
4527 -- A Few local use codes need specifying.  Several seealso, plugin, and 
4528 -- authority framework columns need improving.  $9 for authority record linking 
4529 -- needs to be added where not already provided by RLIN specifications. 
4530 -- Needs checking for errors but probably tolerable for use on a production. 
4531 -- A server can be upgraded easily from later versions of this file.
4532 --                                                                          
4533 -- In the absense of more column support for qualifying the relative 
4534 -- importance of subfields to the record editor, some modest modification of 
4535 -- the default framework is needed setting the not-useful non-Koha holdings 
4536 -- subfields to not managed in Koha.
4537
4538 -- MARC fields including letters as part of the field identifier are from RLIN
4539 -- and should be expected to remain along with RLIN $% subfields.  RLIN has 
4540 -- been using letters in fields because there are not enough local use number 
4541 -- fields which have not already been specified for very large union catalogue 
4542 -- networks such as RLIN itself.
4543
4544
4545 -- Fields ending in c, o, or r are temporary placeholders for information from
4546 -- a numeric value until a non-conflicting way to treat the content under the
4547 -- proper original numeric field is adopted.  090 for LC call numbers is much 
4548 -- too common and important so 999 is also provided as a temporary place 
4549 -- holder until all Koha code for finding control fields has been changed from 
4550 -- a numeric test of < 10 to a regular expression match of m/^00/ to prevent 
4551 -- mistaken matching of fields with letters such as 09o if they were control 
4552 -- fields.
4553
4554 INSERT INTO `marc_tag_structure` VALUES ('000', 'LEADER', 'LEADER', 0, 1, '', 'BKS');
4555 INSERT INTO `marc_tag_structure` VALUES ('001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 0, '', 'BKS');
4556 INSERT INTO `marc_tag_structure` VALUES ('003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 0, '', 'BKS');
4557 INSERT INTO `marc_tag_structure` VALUES ('005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 0, '', 'BKS');
4558 INSERT INTO `marc_tag_structure` VALUES ('006', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 1, 0, '', 'BKS');
4559 INSERT INTO `marc_tag_structure` VALUES ('007', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 1, 0, '', 'BKS');
4560 INSERT INTO `marc_tag_structure` VALUES ('008', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 0, 1, '', 'BKS');
4561 INSERT INTO `marc_tag_structure` VALUES ('009', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 1, 0, '', 'BKS');
4562 INSERT INTO `marc_tag_structure` VALUES ('010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, '', 'BKS');
4563 INSERT INTO `marc_tag_structure` VALUES ('011', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 0, 0, '', 'BKS');
4564 INSERT INTO `marc_tag_structure` VALUES ('013', 'PATENT CONTROL INFORMATION', 'PATENT CONTROL INFORMATION', 1, 0, '', 'BKS');
4565 INSERT INTO `marc_tag_structure` VALUES ('015', 'NATIONAL BIBLIOGRAPHY NUMBER', 'NATIONAL BIBLIOGRAPHY NUMBER', 1, 0, '', 'BKS');
4566 INSERT INTO `marc_tag_structure` VALUES ('016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, '', 'BKS');
4567 INSERT INTO `marc_tag_structure` VALUES ('017', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 1, 0, '', 'BKS');
4568 INSERT INTO `marc_tag_structure` VALUES ('018', 'COPYRIGHT ARTICLE-FEE CODE', 'COPYRIGHT ARTICLE-FEE CODE', 0, 0, '', 'BKS');
4569 INSERT INTO `marc_tag_structure` VALUES ('01e', 'CODED FIELD ERROR (RLIN)', 'CODED FIELD ERROR (RLIN)', 1, 0, '', 'BKS');
4570 INSERT INTO `marc_tag_structure` VALUES ('020', 'ISBN', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL, 'BKS');
4571 INSERT INTO `marc_tag_structure` VALUES ('022', 'INTERNATIONAL STANDARD SERIAL NUMBER', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL, 'BKS');
4572 INSERT INTO `marc_tag_structure` VALUES ('023', 'STANDARD FILM NUMBER (VM) [DELETED]', 'STANDARD FILM NUMBER (VM) [DELETED]', 1, 0, NULL, 'BKS');
4573 INSERT INTO `marc_tag_structure` VALUES ('024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL, 'BKS');
4574 INSERT INTO `marc_tag_structure` VALUES ('025', 'OVERSEAS ACQUISITION NUMBER', 'OVERSEAS ACQUISITION NUMBER', 1, 0, '', 'BKS');
4575 INSERT INTO `marc_tag_structure` VALUES ('026', 'FINGERPRINT IDENTIFIER', 'FINGERPRINT IDENTIFIER', 1, 0, '', 'BKS');
4576 INSERT INTO `marc_tag_structure` VALUES ('027', 'STANDARD TECHNICAL REPORT NUMBER', 'STANDARD TECHNICAL REPORT NUMBER', 1, 0, '', 'BKS');
4577 INSERT INTO `marc_tag_structure` VALUES ('028', 'PUBLISHER NUMBER', 'PUBLISHER NUMBER', 1, 0, NULL, 'BKS');
4578 INSERT INTO `marc_tag_structure` VALUES ('029', 'OTHER SYSTEM CONTROL NUMBER (OCLC)', ' (OCLC)', 1, 0, '', 'BKS');
4579 INSERT INTO `marc_tag_structure` VALUES ('030', 'CODEN DESIGNATION', 'CODEN DESIGNATION', 1, 0, '', 'BKS');
4580 INSERT INTO `marc_tag_structure` VALUES ('031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, '', 'BKS');
4581 INSERT INTO `marc_tag_structure` VALUES ('032', 'POSTAL REGISTRATION NUMBER', 'POSTAL REGISTRATION NUMBER', 1, 0, '', 'BKS');
4582 INSERT INTO `marc_tag_structure` VALUES ('033', 'DATE/TIME AND PLACE OF AN EVENT', 'DATE/TIME AND PLACE OF AN EVENT', 1, 0, '', 'BKS');
4583 INSERT INTO `marc_tag_structure` VALUES ('034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, '', 'BKS');
4584 INSERT INTO `marc_tag_structure` VALUES ('035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL, 'BKS');
4585 INSERT INTO `marc_tag_structure` VALUES ('036', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 0, 0, '', 'BKS');
4586 INSERT INTO `marc_tag_structure` VALUES ('037', 'PUBLICATION, DISTRIBUTION DETAILS--SOURCE OF ACQUISITION', 'SOURCE OF ACQUISITION', 1, 0, NULL, 'BKS');
4587 INSERT INTO `marc_tag_structure` VALUES ('038', 'RECORD CONTENT LICENSOR', 'RECORD CONTENT LICENSOR', 0, 0, '', 'BKS');
4588 INSERT INTO `marc_tag_structure` VALUES ('039', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 0, 0, '', 'BKS');
4589 INSERT INTO `marc_tag_structure` VALUES ('040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 0, NULL, 'BKS');
4590 INSERT INTO `marc_tag_structure` VALUES ('041', 'LANGUAGE CODE', 'LANGUAGE CODE', 1, 0, '', 'BKS');
4591 INSERT INTO `marc_tag_structure` VALUES ('042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, '', 'BKS');
4592 INSERT INTO `marc_tag_structure` VALUES ('043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL, 'BKS');
4593 INSERT INTO `marc_tag_structure` VALUES ('044', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 0, 0, '', 'BKS');
4594 INSERT INTO `marc_tag_structure` VALUES ('045', 'TIME PERIOD OF CONTENT', 'TIME PERIOD OF CONTENT', 0, 0, '', 'BKS');
4595 INSERT INTO `marc_tag_structure` VALUES ('046', 'SPECIAL CODED DATES', 'SPECIAL CODED DATES', 1, 0, '', 'BKS');
4596 INSERT INTO `marc_tag_structure` VALUES ('047', 'FORM OF MUSICAL COMPOSITION CODE', 'FORM OF MUSICAL COMPOSITION CODE', 0, 0, '', 'BKS');
4597 INSERT INTO `marc_tag_structure` VALUES ('048', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 1, 0, '', 'BKS');
4598 INSERT INTO `marc_tag_structure` VALUES ('049', 'LOCAL HOLDINGS (OCLC)', 'LOCAL HOLDINGS (OCLC)', 0, 0, '', 'BKS');
4599 INSERT INTO `marc_tag_structure` VALUES ('050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL, 'BKS');
4600 INSERT INTO `marc_tag_structure` VALUES ('051', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 1, 0, NULL, 'BKS');
4601 INSERT INTO `marc_tag_structure` VALUES ('052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL, 'BKS');
4602 INSERT INTO `marc_tag_structure` VALUES ('055', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 1, 0, NULL, 'BKS');
4603 INSERT INTO `marc_tag_structure` VALUES ('060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL, 'BKS');
4604 INSERT INTO `marc_tag_structure` VALUES ('061', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 1, 0, NULL, 'BKS');
4605 INSERT INTO `marc_tag_structure` VALUES ('066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL, 'BKS');
4606 INSERT INTO `marc_tag_structure` VALUES ('070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL, 'BKS');
4607 INSERT INTO `marc_tag_structure` VALUES ('071', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 1, 0, NULL, 'BKS');
4608 INSERT INTO `marc_tag_structure` VALUES ('072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL, 'BKS');
4609 INSERT INTO `marc_tag_structure` VALUES ('074', 'GPO ITEM NUMBER', 'GPO ITEM NUMBER', 1, 0, NULL, 'BKS');
4610 INSERT INTO `marc_tag_structure` VALUES ('080', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'BKS');
4611 INSERT INTO `marc_tag_structure` VALUES ('082', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'BKS');
4612 INSERT INTO `marc_tag_structure` VALUES ('084', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL, 'BKS');
4613 INSERT INTO `marc_tag_structure` VALUES ('086', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL, 'BKS');
4614 INSERT INTO `marc_tag_structure` VALUES ('087', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 1, 0, NULL, 'BKS');
4615 INSERT INTO `marc_tag_structure` VALUES ('088', 'REPORT NUMBER', 'REPORT NUMBER', 1, 0, NULL, 'BKS');
4616 INSERT INTO `marc_tag_structure` VALUES ('09o', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'BKS');
4617 INSERT INTO `marc_tag_structure` VALUES ('091', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 0, 0, '', 'BKS');
4618 INSERT INTO `marc_tag_structure` VALUES ('092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, '', 'BKS');
4619 INSERT INTO `marc_tag_structure` VALUES ('096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, '', 'BKS');
4620 INSERT INTO `marc_tag_structure` VALUES ('098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, '', 'BKS');
4621 INSERT INTO `marc_tag_structure` VALUES ('099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, '', 'BKS');
4622 INSERT INTO `marc_tag_structure` VALUES ('100', 'MAIN ENTRY--PERSONAL AUTHOR', 'MAIN ENTRY--PERSONAL NAME', 0, 0, NULL, 'BKS');
4623 INSERT INTO `marc_tag_structure` VALUES ('110', 'MAIN ENTRY--CORPORATE AUTHOR', 'MAIN ENTRY--CORPORATE NAME', 0, 0, NULL, 'BKS');
4624 INSERT INTO `marc_tag_structure` VALUES ('111', 'MAIN ENTRY--MEETING NAME', 'MAIN ENTRY--MEETING NAME', 0, 0, NULL, 'BKS');
4625 INSERT INTO `marc_tag_structure` VALUES ('130', 'MAIN ENTRY--UNIFORM TITLE', 'MAIN ENTRY--UNIFORM TITLE', 0, 0, NULL, 'BKS');
4626 INSERT INTO `marc_tag_structure` VALUES ('210', 'ABBREVIATED TITLE', 'ABBREVIATED TITLE', 1, 0, NULL, 'BKS');
4627 INSERT INTO `marc_tag_structure` VALUES ('211', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 1, 0, NULL, 'BKS');
4628 INSERT INTO `marc_tag_structure` VALUES ('212', 'VARIANT ACCESS TITLE [OBSOLETE]', 'VARIANT ACCESS TITLE [OBSOLETE]', 1, 0, NULL, 'BKS');
4629 INSERT INTO `marc_tag_structure` VALUES ('214', 'AUGMENTED TITLE [OBSOLETE]', 'AUGMENTED TITLE [OBSOLETE]', 1, 0, NULL, 'BKS');
4630 INSERT INTO `marc_tag_structure` VALUES ('222', 'KEY TITLE', 'KEY TITLE', 1, 0, NULL, 'BKS');
4631 INSERT INTO `marc_tag_structure` VALUES ('240', 'UNIFORM TITLE', 'UNIFORM TITLE', 0, 0, 'Unititle', 'BKS');
4632 INSERT INTO `marc_tag_structure` VALUES ('241', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 0, 0, '', 'BKS');
4633 INSERT INTO `marc_tag_structure` VALUES ('242', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 1, 0, NULL, 'BKS');
4634 INSERT INTO `marc_tag_structure` VALUES ('243', 'COLLECTIVE UNIFORM TITLE', 'COLLECTIVE UNIFORM TITLE', 0, 0, '', 'BKS');
4635 INSERT INTO `marc_tag_structure` VALUES ('245', 'TITLE', 'TITLE STATEMENT', 0, 1, '', 'BKS');
4636 INSERT INTO `marc_tag_structure` VALUES ('246', 'VARYING FORM OF TITLE', 'VARYING FORM OF TITLE', 1, 0, NULL, 'BKS');
4637 INSERT INTO `marc_tag_structure` VALUES ('247', 'FORMER TITLE', 'FORMER TITLE', 1, 0, NULL, 'BKS');
4638 INSERT INTO `marc_tag_structure` VALUES ('250', 'EDITION STATEMENT', 'EDITION STATEMENT', 0, 0, NULL, 'BKS');
4639 INSERT INTO `marc_tag_structure` VALUES ('254', 'MUSICAL PRESENTATION STATEMENT', 'MUSICAL PRESENTATION STATEMENT', 0, 0, NULL, 'BKS');
4640 INSERT INTO `marc_tag_structure` VALUES ('255', 'CARTOGRAPHIC MATHEMATICAL DATA', 'CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL, 'BKS');
4641 INSERT INTO `marc_tag_structure` VALUES ('256', 'COMPUTER FILE CHARACTERISTICS', 'COMPUTER FILE CHARACTERISTICS', 0, 0, NULL, 'BKS');
4642 INSERT INTO `marc_tag_structure` VALUES ('257', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 0, 0, NULL, 'BKS');
4643 INSERT INTO `marc_tag_structure` VALUES ('258', 'PHILATELIC ISSUE DATE', 'PHILATELIC ISSUE DATE', 1, 0, NULL, 'BKS');
4644 INSERT INTO `marc_tag_structure` VALUES ('260', 'PUBLISHER--PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 'PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 1, 0, NULL, 'BKS');
4645 INSERT INTO `marc_tag_structure` VALUES ('261', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, NULL, 'BKS');
4646 INSERT INTO `marc_tag_structure` VALUES ('262', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 0, 0, NULL, 'BKS');
4647 INSERT INTO `marc_tag_structure` VALUES ('263', 'PROJECTED PUBLICATION DATE', 'PROJECTED PUBLICATION DATE', 0, 0, NULL, 'BKS');
4648 INSERT INTO `marc_tag_structure` VALUES ('265', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 0, 0, NULL, 'BKS');
4649 INSERT INTO `marc_tag_structure` VALUES ('270', 'PUBLICATION, DISTRIBUTION DETAILS--ADDRESS', 'ADDRESS', 1, 0, NULL, 'BKS');
4650 INSERT INTO `marc_tag_structure` VALUES ('300', 'PHYSICAL DESCRIPTION', 'PHYSICAL DESCRIPTION', 1, 1, NULL, 'BKS');
4651 INSERT INTO `marc_tag_structure` VALUES ('301', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 0, 0, NULL, 'BKS');
4652 INSERT INTO `marc_tag_structure` VALUES ('302', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 0, 0, NULL, 'BKS');
4653 INSERT INTO `marc_tag_structure` VALUES ('303', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'BKS');
4654 INSERT INTO `marc_tag_structure` VALUES ('304', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'BKS');
4655 INSERT INTO `marc_tag_structure` VALUES ('305', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 0, 0, NULL, 'BKS');
4656 INSERT INTO `marc_tag_structure` VALUES ('306', 'PLAYING TIME', 'PLAYING TIME', 0, 0, NULL, 'BKS');
4657 INSERT INTO `marc_tag_structure` VALUES ('307', 'HOURS, ETC.', 'HOURS, ETC.', 1, 0, NULL, 'BKS');
4658 INSERT INTO `marc_tag_structure` VALUES ('308', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 1, 0, NULL, 'BKS');
4659 INSERT INTO `marc_tag_structure` VALUES ('310', 'CURRENT PUBLICATION FREQUENCY', 'CURRENT PUBLICATION FREQUENCY', 0, 0, NULL, 'BKS');
4660 INSERT INTO `marc_tag_structure` VALUES ('315', 'FREQUENCY (CF MP) [OBSOLETE]', 'FREQUENCY (CF MP) [OBSOLETE]', 0, 0, NULL, 'BKS');
4661 INSERT INTO `marc_tag_structure` VALUES ('321', 'FORMER PUBLICATION FREQUENCY', 'FORMER PUBLICATION FREQUENCY', 1, 0, NULL, 'BKS');
4662 INSERT INTO `marc_tag_structure` VALUES ('340', 'PHYSICAL MEDIUM', 'PHYSICAL MEDIUM', 1, 0, NULL, 'BKS');
4663 INSERT INTO `marc_tag_structure` VALUES ('342', 'GEOSPATIAL REFERENCE DATA', 'GEOSPATIAL REFERENCE DATA', 1, 0, NULL, 'BKS');
4664 INSERT INTO `marc_tag_structure` VALUES ('343', 'PLANAR COORDINATE DATA', 'PLANAR COORDINATE DATA', 1, 0, NULL, 'BKS');
4665 INSERT INTO `marc_tag_structure` VALUES ('350', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 1, 0, NULL, 'BKS');
4666 INSERT INTO `marc_tag_structure` VALUES ('351', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 1, 0, NULL, 'BKS');
4667 INSERT INTO `marc_tag_structure` VALUES ('352', 'DIGITAL GRAPHIC REPRESENTATION', 'DIGITAL GRAPHIC REPRESENTATION', 1, 0, NULL, 'BKS');
4668 INSERT INTO `marc_tag_structure` VALUES ('355', 'SECURITY CLASSIFICATION CONTROL', 'SECURITY CLASSIFICATION CONTROL', 1, 0, NULL, 'BKS');
4669 INSERT INTO `marc_tag_structure` VALUES ('357', 'ORIGINATOR DISSEMINATION CONTROL', 'ORIGINATOR DISSEMINATION CONTROL', 0, 0, NULL, 'BKS');
4670 INSERT INTO `marc_tag_structure` VALUES ('359', 'RENTAL PRICE (VM) [OBSOLETE]', 'RENTAL PRICE (VM) [OBSOLETE]', 0, 0, NULL, 'BKS');
4671 INSERT INTO `marc_tag_structure` VALUES ('362', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 1, 0, NULL, 'BKS');
4672 INSERT INTO `marc_tag_structure` VALUES ('365', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE PRICE', 'TRADE PRICE', 1, 0, NULL, 'BKS');
4673 INSERT INTO `marc_tag_structure` VALUES ('366', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE AVAILABILITY INFORMATION', 'TRADE AVAILABILITY INFORMATION', 1, 0, NULL, 'BKS');
4674 INSERT INTO `marc_tag_structure` VALUES ('400', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'BKS');
4675 INSERT INTO `marc_tag_structure` VALUES ('410', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'BKS');
4676 INSERT INTO `marc_tag_structure` VALUES ('411', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'BKS');
4677 INSERT INTO `marc_tag_structure` VALUES ('440', 'SERIES--TITLE', 'SERIES STATEMENT/ADDED ENTRY--TITLE', 1, 0, NULL, 'BKS');
4678 INSERT INTO `marc_tag_structure` VALUES ('490', 'SERIES STATEMENT', 'SERIES STATEMENT', 1, 0, '', 'BKS');
4679 INSERT INTO `marc_tag_structure` VALUES ('500', 'GENERAL NOTE', 'GENERAL NOTE', 1, 0, NULL, 'BKS');
4680 INSERT INTO `marc_tag_structure` VALUES ('501', 'WITH NOTE', 'WITH NOTE', 1, 0, NULL, 'BKS');
4681 INSERT INTO `marc_tag_structure` VALUES ('502', 'DISSERTATION NOTE', 'DISSERTATION NOTE', 1, 0, NULL, 'BKS');
4682 INSERT INTO `marc_tag_structure` VALUES ('503', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 1, 0, NULL, 'BKS');
4683 INSERT INTO `marc_tag_structure` VALUES ('504', 'BIBLIOGRAPHY, ETC. NOTE', 'BIBLIOGRAPHY, ETC. NOTE', 1, 0, NULL, 'BKS');
4684 INSERT INTO `marc_tag_structure` VALUES ('505', 'FORMATTED CONTENTS NOTE', 'FORMATTED CONTENTS NOTE', 1, 0, NULL, 'BKS');
4685 INSERT INTO `marc_tag_structure` VALUES ('506', 'RESTRICTIONS ON ACCESS NOTE', 'RESTRICTIONS ON ACCESS NOTE', 1, 0, NULL, 'BKS');
4686 INSERT INTO `marc_tag_structure` VALUES ('507', 'SCALE NOTE FOR GRAPHIC MATERIAL', 'SCALE NOTE FOR GRAPHIC MATERIAL', 0, 0, NULL, 'BKS');
4687 INSERT INTO `marc_tag_structure` VALUES ('508', 'CREATION/PRODUCTION CREDITS NOTE', 'CREATION/PRODUCTION CREDITS NOTE', 1, 0, NULL, 'BKS');
4688 INSERT INTO `marc_tag_structure` VALUES ('509', 'INFORMAL NOTES (RLIN)', 'INFORMAL NOTES (RLIN)', 0, 0, NULL, 'BKS');
4689 INSERT INTO `marc_tag_structure` VALUES ('510', 'CITATION/REFERENCES NOTE', 'CITATION/REFERENCES NOTE', 1, 0, NULL, 'BKS');
4690 INSERT INTO `marc_tag_structure` VALUES ('511', 'PARTICIPANT OR PERFORMER NOTE', 'PARTICIPANT OR PERFORMER NOTE', 1, 0, NULL, 'BKS');
4691 INSERT INTO `marc_tag_structure` VALUES ('512', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'BKS');
4692 INSERT INTO `marc_tag_structure` VALUES ('513', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 1, 0, NULL, 'BKS');
4693 INSERT INTO `marc_tag_structure` VALUES ('514', 'DATA QUALITY NOTE', 'DATA QUALITY NOTE', 0, 0, NULL, 'BKS');
4694 INSERT INTO `marc_tag_structure` VALUES ('515', 'NUMBERING PECULIARITIES NOTE', 'NUMBERING PECULIARITIES NOTE', 1, 0, NULL, 'BKS');
4695 INSERT INTO `marc_tag_structure` VALUES ('516', 'TYPE OF COMPUTER FILE OR DATA NOTE', 'TYPE OF COMPUTER FILE OR DATA NOTE', 1, 0, NULL, 'BKS');
4696 INSERT INTO `marc_tag_structure` VALUES ('517', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 0, 0, NULL, 'BKS');
4697 INSERT INTO `marc_tag_structure` VALUES ('518', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 1, 0, NULL, 'BKS');
4698 INSERT INTO `marc_tag_structure` VALUES ('520', 'SUMMARY, ETC.', 'SUMMARY, ETC.', 1, 0, NULL, 'BKS');
4699 INSERT INTO `marc_tag_structure` VALUES ('521', 'GRADE LEVEL/TARGET AUDIENCE NOTE', 'TARGET AUDIENCE NOTE', 1, 0, NULL, 'BKS');
4700 INSERT INTO `marc_tag_structure` VALUES ('522', 'GEOGRAPHIC DETAILS/GEOGRAPHIC COVERAGE NOTE', 'GEOGRAPHIC COVERAGE NOTE', 1, 0, NULL, 'BKS');
4701 INSERT INTO `marc_tag_structure` VALUES ('523', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'BKS');
4702 INSERT INTO `marc_tag_structure` VALUES ('524', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'BKS');
4703 INSERT INTO `marc_tag_structure` VALUES ('525', 'SUPPLEMENT NOTE', 'SUPPLEMENT NOTE', 0, 0, NULL, 'BKS');
4704 INSERT INTO `marc_tag_structure` VALUES ('526', 'STUDY PROGRAM INFORMATION NOTE', 'STUDY PROGRAM INFORMATION NOTE', 0, 0, NULL, 'BKS');
4705 INSERT INTO `marc_tag_structure` VALUES ('527', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 1, 0, NULL, 'BKS');
4706 INSERT INTO `marc_tag_structure` VALUES ('530', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 1, 0, NULL, 'BKS');
4707 INSERT INTO `marc_tag_structure` VALUES ('533', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'BKS');
4708 INSERT INTO `marc_tag_structure` VALUES ('534', 'ORIGINAL VERSION NOTE', 'ORIGINAL VERSION NOTE', 1, 0, NULL, 'BKS');
4709 INSERT INTO `marc_tag_structure` VALUES ('535', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 1, 0, NULL, 'BKS');
4710 INSERT INTO `marc_tag_structure` VALUES ('536', 'FUNDING INFORMATION NOTE', 'FUNDING INFORMATION NOTE', 1, 0, NULL, 'BKS');
4711 INSERT INTO `marc_tag_structure` VALUES ('537', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'BKS');
4712 INSERT INTO `marc_tag_structure` VALUES ('538', 'SYSTEM DETAILS NOTE', 'SYSTEM DETAILS NOTE', 1, 0, NULL, 'BKS');
4713 INSERT INTO `marc_tag_structure` VALUES ('540', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'BKS');
4714 INSERT INTO `marc_tag_structure` VALUES ('541', 'ACQUISITION INFO--IMMEDIATE SOURCE OF ACQUISITION NOTE', 'IMMEDIATE SOURCE OF ACQUISITION NOTE', 1, 0, NULL, 'BKS');
4715 INSERT INTO `marc_tag_structure` VALUES ('543', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 1, 0, NULL, 'BKS');
4716 INSERT INTO `marc_tag_structure` VALUES ('544', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 1, 0, NULL, 'BKS');
4717 INSERT INTO `marc_tag_structure` VALUES ('546', 'LANGUAGE/TRANSLATION INFO', 'LANGUAGE NOTE', 1, 0, NULL, 'BKS');
4718 INSERT INTO `marc_tag_structure` VALUES ('547', 'FORMER TITLE COMPLEXITY NOTE', 'FORMER TITLE COMPLEXITY NOTE', 1, 0, NULL, 'BKS');
4719 INSERT INTO `marc_tag_structure` VALUES ('550', 'ISSUING BODY NOTE', 'ISSUING BODY NOTE', 1, 0, NULL, 'BKS');
4720 INSERT INTO `marc_tag_structure` VALUES ('552', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 1, 0, NULL, 'BKS');
4721 INSERT INTO `marc_tag_structure` VALUES ('555', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 1, 0, NULL, 'BKS');
4722 INSERT INTO `marc_tag_structure` VALUES ('556', 'INFORMATION ABOUT DOCUMENTATION NOTE', 'INFORMATION ABOUT DOCUMENTATION NOTE', 1, 0, NULL, 'BKS');
4723 INSERT INTO `marc_tag_structure` VALUES ('561', 'OWNERSHIP AND CUSTODIAL HISTORY', 'OWNERSHIP AND CUSTODIAL HISTORY', 1, 0, NULL, 'BKS');
4724 INSERT INTO `marc_tag_structure` VALUES ('562', 'COPY AND VERSION IDENTIFICATION NOTE', 'COPY AND VERSION IDENTIFICATION NOTE', 1, 0, NULL, 'BKS');
4725 INSERT INTO `marc_tag_structure` VALUES ('563', 'BINDING INFORMATION', 'BINDING INFORMATION', 1, 0, NULL, 'BKS');
4726 INSERT INTO `marc_tag_structure` VALUES ('565', 'CASE FILE CHARACTERISTICS NOTE', 'CASE FILE CHARACTERISTICS NOTE', 1, 0, NULL, 'BKS');
4727 INSERT INTO `marc_tag_structure` VALUES ('567', 'METHODOLOGY NOTE', 'METHODOLOGY NOTE', 1, 0, NULL, 'BKS');
4728 INSERT INTO `marc_tag_structure` VALUES ('570', 'EDITOR NOTE (SE) [OBSOLETE]', 'EDITOR NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'BKS');
4729 INSERT INTO `marc_tag_structure` VALUES ('580', 'LINKING ENTRY COMPLEXITY NOTE', 'LINKING ENTRY COMPLEXITY NOTE', 1, 0, NULL, 'BKS');
4730 INSERT INTO `marc_tag_structure` VALUES ('581', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'BKS');
4731 INSERT INTO `marc_tag_structure` VALUES ('582', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 1, 0, NULL, 'BKS');
4732 INSERT INTO `marc_tag_structure` VALUES ('583', 'ACQUISITION INFO--ACTION NOTE', 'ACTION NOTE', 1, 0, NULL, 'BKS');
4733 INSERT INTO `marc_tag_structure` VALUES ('584', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 1, 0, NULL, 'BKS');
4734 INSERT INTO `marc_tag_structure` VALUES ('585', 'EXHIBITIONS NOTE', 'EXHIBITIONS NOTE', 1, 0, NULL, 'BKS');
4735 INSERT INTO `marc_tag_structure` VALUES ('586', 'AWARDS', 'AWARDS NOTE', 1, 0, NULL, 'BKS');
4736 INSERT INTO `marc_tag_structure` VALUES ('590', 'LOCAL NOTE (RLIN)', 'LOCAL NOTE (RLIN)', 1, 0, NULL, 'BKS');
4737 INSERT INTO `marc_tag_structure` VALUES ('600', 'SUBJECT--PERSONAL NAME', 'SUBJECT ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'BKS');
4738 INSERT INTO `marc_tag_structure` VALUES ('610', 'SUBJECT--CORPORATE NAME', 'SUBJECT ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'BKS');
4739 INSERT INTO `marc_tag_structure` VALUES ('611', 'SUBJECT--MEETING NAME', 'SUBJECT ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'BKS');
4740 INSERT INTO `marc_tag_structure` VALUES ('630', 'SUBJECT--UNIFORM TITLE', 'SUBJECT ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'BKS');
4741 INSERT INTO `marc_tag_structure` VALUES ('648', 'SUBJECT--CHRONOLOGICAL TERM', 'SUBJECT ADDED ENTRY--CHRONOLOGICAL TERM', 1, 0, NULL, 'BKS');
4742 INSERT INTO `marc_tag_structure` VALUES ('650', 'SUBJECT--TOPIC', 'SUBJECT ADDED ENTRY--TOPICAL TERM', 1, 0, NULL, 'BKS');
4743 INSERT INTO `marc_tag_structure` VALUES ('651', 'SUBJECT--GEOGRAPHIC NAME', 'SUBJECT ADDED ENTRY--GEOGRAPHIC NAME', 1, 0, NULL, 'BKS');
4744 INSERT INTO `marc_tag_structure` VALUES ('652', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 1, 0, NULL, 'BKS');
4745 INSERT INTO `marc_tag_structure` VALUES ('653', 'SUBJECT--UNCONTROLLED', 'INDEX TERM--UNCONTROLLED', 1, 0, NULL, 'BKS');
4746 INSERT INTO `marc_tag_structure` VALUES ('654', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 1, 0, NULL, 'BKS');
4747 INSERT INTO `marc_tag_structure` VALUES ('655', 'SUBJECT--GENRE/FORM', 'INDEX TERM--GENRE/FORM', 1, 0, NULL, 'BKS');
4748 INSERT INTO `marc_tag_structure` VALUES ('656', 'SUBJECT--OCCUPATION', 'INDEX TERM--OCCUPATION', 1, 0, NULL, 'BKS');
4749 INSERT INTO `marc_tag_structure` VALUES ('657', 'SUBJECT--FUNCTION', 'INDEX TERM--FUNCTION', 1, 0, NULL, 'BKS');
4750 INSERT INTO `marc_tag_structure` VALUES ('658', 'SUBJECT--CURRICULUM OBJECTIVE', 'INDEX TERM--CURRICULUM OBJECTIVE', 1, 0, NULL, 'BKS');
4751 INSERT INTO `marc_tag_structure` VALUES ('662', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'BKS');
4752 INSERT INTO `marc_tag_structure` VALUES ('690', 'LOCAL SUBJECT--TOPICAL TERM (OCLC, RLIN)', 'LOCAL SUBJECT ADDED ENTRY--TOPICAL TERM (OCLC, RLIN)', 1, 0, '', 'BKS');
4753 INSERT INTO `marc_tag_structure` VALUES ('691', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 1, 0, '', 'BKS');
4754 INSERT INTO `marc_tag_structure` VALUES ('696', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'BKS');
4755 INSERT INTO `marc_tag_structure` VALUES ('697', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'BKS');
4756 INSERT INTO `marc_tag_structure` VALUES ('698', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'BKS');
4757 INSERT INTO `marc_tag_structure` VALUES ('699', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'BKS');
4758 INSERT INTO `marc_tag_structure` VALUES ('700', 'ADDED ENTRY--PERSONAL AUTHOR', 'ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'BKS');
4759 INSERT INTO `marc_tag_structure` VALUES ('705', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'BKS');
4760 INSERT INTO `marc_tag_structure` VALUES ('710', 'ADDED ENTRY--CORPORATE AUTHOR', 'ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'BKS');
4761 INSERT INTO `marc_tag_structure` VALUES ('711', 'ADDED ENTRY--MEETING NAME', 'ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'BKS');
4762 INSERT INTO `marc_tag_structure` VALUES ('715', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'BKS');
4763 INSERT INTO `marc_tag_structure` VALUES ('720', 'ADDED ENTRY--UNCONTROLLED AUTHOR', 'ADDED ENTRY--UNCONTROLLED NAME', 1, 0, NULL, 'BKS');
4764 INSERT INTO `marc_tag_structure` VALUES ('730', 'ADDED ENTRY--UNIFORM TITLE', 'ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'BKS');
4765 INSERT INTO `marc_tag_structure` VALUES ('740', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 1, 0, NULL, 'BKS');
4766 INSERT INTO `marc_tag_structure` VALUES ('752', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'BKS');
4767 INSERT INTO `marc_tag_structure` VALUES ('753', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 1, 0, NULL, 'BKS');
4768 INSERT INTO `marc_tag_structure` VALUES ('754', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 1, 0, NULL, 'BKS');
4769 INSERT INTO `marc_tag_structure` VALUES ('755', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 1, 0, NULL, 'BKS');
4770 INSERT INTO `marc_tag_structure` VALUES ('760', 'MAIN SERIES ENTRY', 'MAIN SERIES ENTRY', 1, 0, NULL, 'BKS');
4771 INSERT INTO `marc_tag_structure` VALUES ('762', 'SUBSERIES ENTRY', 'SUBSERIES ENTRY', 1, 0, NULL, 'BKS');
4772 INSERT INTO `marc_tag_structure` VALUES ('765', 'ORIGINAL LANGUAGE ENTRY', 'ORIGINAL LANGUAGE ENTRY', 1, 0, NULL, 'BKS');
4773 INSERT INTO `marc_tag_structure` VALUES ('767', 'TRANSLATION ENTRY', 'TRANSLATION ENTRY', 1, 0, NULL, 'BKS');
4774 INSERT INTO `marc_tag_structure` VALUES ('770', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 1, 0, NULL, 'BKS');
4775 INSERT INTO `marc_tag_structure` VALUES ('772', 'SUPPLEMENT PARENT ENTRY', 'SUPPLEMENT PARENT ENTRY', 1, 0, NULL, 'BKS');
4776 INSERT INTO `marc_tag_structure` VALUES ('773', 'HOST ITEM ENTRY', 'HOST ITEM ENTRY', 1, 0, NULL, 'BKS');
4777 INSERT INTO `marc_tag_structure` VALUES ('774', 'CONSTITUENT UNIT ENTRY', 'CONSTITUENT UNIT ENTRY', 1, 0, NULL, 'BKS');
4778 INSERT INTO `marc_tag_structure` VALUES ('775', 'OTHER EDITION ENTRY', 'OTHER EDITION ENTRY', 1, 0, NULL, 'BKS');
4779 INSERT INTO `marc_tag_structure` VALUES ('776', 'ADDITIONAL PHYSICAL FORM ENTRY', 'ADDITIONAL PHYSICAL FORM ENTRY', 1, 0, NULL, 'BKS');
4780 INSERT INTO `marc_tag_structure` VALUES ('777', 'ISSUED WITH ENTRY', 'ISSUED WITH ENTRY', 1, 0, NULL, 'BKS');
4781 INSERT INTO `marc_tag_structure` VALUES ('780', 'PRECEDING ENTRY', 'PRECEDING ENTRY', 1, 0, NULL, 'BKS');
4782 INSERT INTO `marc_tag_structure` VALUES ('785', 'SUCCEEDING ENTRY', 'SUCCEEDING ENTRY', 1, 0, NULL, 'BKS');
4783 INSERT INTO `marc_tag_structure` VALUES ('786', 'DATA SOURCE ENTRY', 'DATA SOURCE ENTRY', 1, 0, NULL, 'BKS');
4784 INSERT INTO `marc_tag_structure` VALUES ('787', 'NONSPECIFIC RELATIONSHIP ENTRY', 'NONSPECIFIC RELATIONSHIP ENTRY', 1, 0, NULL, 'BKS');
4785 INSERT INTO `marc_tag_structure` VALUES ('789', 'COMPONENT ITEM ENTRY (RLIN)', 'COMPONENT ITEM ENTRY (RLIN)', 1, 0, '', 'BKS');
4786 INSERT INTO `marc_tag_structure` VALUES ('796', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'BKS');
4787 INSERT INTO `marc_tag_structure` VALUES ('797', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'BKS');
4788 INSERT INTO `marc_tag_structure` VALUES ('798', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'BKS');
4789 INSERT INTO `marc_tag_structure` VALUES ('799', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'BKS');
4790 INSERT INTO `marc_tag_structure` VALUES ('800', 'SERIES ADDED ENTRY--PERSONAL NAME', 'SERIES ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'BKS');
4791 INSERT INTO `marc_tag_structure` VALUES ('810', 'SERIES ADDED ENTRY--CORPORATE NAME', 'SERIES ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'BKS');
4792 INSERT INTO `marc_tag_structure` VALUES ('811', 'SERIES ADDED ENTRY--MEETING NAME', 'SERIES ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'BKS');
4793 INSERT INTO `marc_tag_structure` VALUES ('830', 'SERIES ADDED ENTRY--UNIFORM TITLE', 'SERIES ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'BKS');
4794 INSERT INTO `marc_tag_structure` VALUES ('840', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 1, 0, NULL, 'BKS');
4795 INSERT INTO `marc_tag_structure` VALUES ('841', 'HOLDINGS CODED DATA VALUES', 'HOLDINGS CODED DATA VALUES', 0, 0, NULL, 'BKS');
4796 INSERT INTO `marc_tag_structure` VALUES ('842', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 0, 0, NULL, 'BKS');
4797 INSERT INTO `marc_tag_structure` VALUES ('843', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'BKS');
4798 INSERT INTO `marc_tag_structure` VALUES ('844', 'NAME OF UNIT', 'NAME OF UNIT', 0, 0, NULL, 'BKS');
4799 INSERT INTO `marc_tag_structure` VALUES ('845', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'BKS');
4800 INSERT INTO `marc_tag_structure` VALUES ('850', 'HOLDING INSTITUTION', 'HOLDING INSTITUTION', 1, 0, NULL, 'BKS');
4801 INSERT INTO `marc_tag_structure` VALUES ('851', 'LOCATION [OBSOLETE]', 'LOCATION [OBSOLETE]', 1, 0, NULL, 'BKS');
4802 INSERT INTO `marc_tag_structure` VALUES ('852', 'LOCATION/CALL NUMBER', 'LOCATION/CALL NUMBER', 1, 0, NULL, 'BKS');
4803 INSERT INTO `marc_tag_structure` VALUES ('853', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'BKS');
4804 INSERT INTO `marc_tag_structure` VALUES ('854', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'BKS');
4805 INSERT INTO `marc_tag_structure` VALUES ('855', 'CAPTIONS AND PATTERN--INDEXES', 'CAPTIONS AND PATTERN--INDEXES', 1, 0, NULL, 'BKS');
4806 INSERT INTO `marc_tag_structure` VALUES ('856', 'URL/ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL, 'BKS');
4807 INSERT INTO `marc_tag_structure` VALUES ('859', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'BKS');
4808 INSERT INTO `marc_tag_structure` VALUES ('863', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'BKS');
4809 INSERT INTO `marc_tag_structure` VALUES ('864', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'BKS');
4810 INSERT INTO `marc_tag_structure` VALUES ('865', 'ENUMERATION AND CHRONOLOGY--INDEXES', 'ENUMERATION AND CHRONOLOGY--INDEXES', 1, 0, NULL, 'BKS');
4811 INSERT INTO `marc_tag_structure` VALUES ('866', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'BKS');
4812 INSERT INTO `marc_tag_structure` VALUES ('867', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'BKS');
4813 INSERT INTO `marc_tag_structure` VALUES ('868', 'TEXTUAL HOLDINGS--INDEXES', 'TEXTUAL HOLDINGS--INDEXES', 1, 0, NULL, 'BKS');
4814 INSERT INTO `marc_tag_structure` VALUES ('870', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 1, 0, NULL, 'BKS');
4815 INSERT INTO `marc_tag_structure` VALUES ('871', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 1, 0, NULL, 'BKS');
4816 INSERT INTO `marc_tag_structure` VALUES ('872', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 1, 0, NULL, 'BKS');
4817 INSERT INTO `marc_tag_structure` VALUES ('873', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 1, 0, NULL, 'BKS');
4818 INSERT INTO `marc_tag_structure` VALUES ('876', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'BKS');
4819 INSERT INTO `marc_tag_structure` VALUES ('877', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'BKS');
4820 INSERT INTO `marc_tag_structure` VALUES ('878', 'ITEM INFORMATION--INDEXES', 'ITEM INFORMATION--INDEXES', 1, 0, NULL, 'BKS');
4821 INSERT INTO `marc_tag_structure` VALUES ('880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL, 'BKS');
4822 INSERT INTO `marc_tag_structure` VALUES ('886', 'FOREIGN MARC INFORMATION FIELD', 'FOREIGN MARC INFORMATION FIELD', 1, 0, NULL, 'BKS');
4823 INSERT INTO `marc_tag_structure` VALUES ('887', 'NON-MARC INFORMATION FIELD', 'NON-MARC INFORMATION FIELD', 1, 0, NULL, 'BKS');
4824 INSERT INTO `marc_tag_structure` VALUES ('896', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'BKS');
4825 INSERT INTO `marc_tag_structure` VALUES ('897', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'BKS');
4826 INSERT INTO `marc_tag_structure` VALUES ('898', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'BKS');
4827 INSERT INTO `marc_tag_structure` VALUES ('899', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'BKS');
4828 INSERT INTO `marc_tag_structure` VALUES ('89e', 'ERRONEOUS FIELD, ERR (RLIN)', 'ERRONEOUS FIELD, ERR (RLIN)', 1, 0, '', 'BKS');
4829 INSERT INTO `marc_tag_structure` VALUES ('900', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 1, 0, '', 'BKS');
4830 INSERT INTO `marc_tag_structure` VALUES ('901', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 1, 0, '', 'BKS');
4831 INSERT INTO `marc_tag_structure` VALUES ('902', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 1, 0, '', 'BKS');
4832 INSERT INTO `marc_tag_structure` VALUES ('903', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 1, 0, '', 'BKS');
4833 INSERT INTO `marc_tag_structure` VALUES ('904', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 1, 0, '', 'BKS');
4834 INSERT INTO `marc_tag_structure` VALUES ('905', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 1, 0, '', 'BKS');
4835 INSERT INTO `marc_tag_structure` VALUES ('906', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 1, 0, '', 'BKS');
4836 INSERT INTO `marc_tag_structure` VALUES ('907', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 1, 0, '', 'BKS');
4837 INSERT INTO `marc_tag_structure` VALUES ('908', 'PUT COMMAND PARAMETER (RLIN)', 'PUT COMMAND PARAMETER (RLIN)', 0, 0, '', 'BKS');
4838 INSERT INTO `marc_tag_structure` VALUES ('910', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 1, 0, '', 'BKS');
4839 INSERT INTO `marc_tag_structure` VALUES ('91o', 'USER-OPTION DATA (COLC)', 'USER-OPTION DATA (OCLC)', 0, 0, '', 'BKS');
4840 INSERT INTO `marc_tag_structure` VALUES ('91r', 'RLG STANDARDS NOTE (RLIN)', 'RLG STANDARDS NOTE (RLIN)', 1, 0, '', 'BKS');
4841 INSERT INTO `marc_tag_structure` VALUES ('911', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 1, 0, '', 'BKS');
4842 INSERT INTO `marc_tag_structure` VALUES ('930', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 1, 0, '', 'BKS');
4843 INSERT INTO `marc_tag_structure` VALUES ('93r', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 1, 0, '', 'BKS');
4844 INSERT INTO `marc_tag_structure` VALUES ('936', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 0, 0, '', 'BKS');
4845 INSERT INTO `marc_tag_structure` VALUES ('940', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'BKS');
4846 INSERT INTO `marc_tag_structure` VALUES ('941', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'BKS');
4847 INSERT INTO `marc_tag_structure` VALUES ('943', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'BKS');
4848 INSERT INTO `marc_tag_structure` VALUES ('945', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'BKS');
4849 INSERT INTO `marc_tag_structure` VALUES ('94c', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'BKS');
4850 INSERT INTO `marc_tag_structure` VALUES ('946', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'BKS');
4851 INSERT INTO `marc_tag_structure` VALUES ('947', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'BKS');
4852 INSERT INTO `marc_tag_structure` VALUES ('948', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 1, 0, '', 'BKS');
4853 INSERT INTO `marc_tag_structure` VALUES ('949', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'BKS');
4854 INSERT INTO `marc_tag_structure` VALUES ('94a', 'ANALYSIS TREATMENT NOTE (RLIN)', 'ANALYSIS TREATMENT NOTE (RLIN)', 1, 0, '', 'BKS');
4855 INSERT INTO `marc_tag_structure` VALUES ('94b', 'TREATMENT CODES (RLIN)', 'TREATMENT CODES (RLIN)', 1, 0, '', 'BKS');
4856 INSERT INTO `marc_tag_structure` VALUES ('950', 'LOCAL HOLDINGS (RLIN)', 'LOCAL HOLDINGS (RLIN)', 1, 0, '', 'BKS');
4857 INSERT INTO `marc_tag_structure` VALUES ('951', 'EQUIVALENCE OR CROSS-REFERENCE--GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'BKS');
4858 INSERT INTO `marc_tag_structure` VALUES ('95c', 'EQUIVALENCE OR CROSS-REFERENCE--HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'BKS');
4859 INSERT INTO `marc_tag_structure` VALUES ('95r', 'CLUSTER MEMBER (RLIN)', 'CLUSTER MEMBER (RLIN)', 1, 0, '', 'BKS');
4860 INSERT INTO `marc_tag_structure` VALUES ('955', 'COPY-LEVEL INFORMATION (RLIN)', 'COPY-LEVEL INFORMATION (RLIN)', 1, 0, '', 'BKS');
4861 INSERT INTO `marc_tag_structure` VALUES ('956', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 1, 0, '', 'BKS');
4862 INSERT INTO `marc_tag_structure` VALUES ('960', 'PHYSICAL LOCATION (RLIN)', 'PHYSICAL LOCATION (RLIN)', 1, 0, '', 'BKS');
4863 INSERT INTO `marc_tag_structure` VALUES ('967', 'ADDITIONAL ESTC CODES (RLIN)', 'ADDITIONAL ESTC CODES (RLIN)', 1, 0, '', 'BKS');
4864 INSERT INTO `marc_tag_structure` VALUES ('980', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'BKS');
4865 INSERT INTO `marc_tag_structure` VALUES ('981', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'BKS');
4866 INSERT INTO `marc_tag_structure` VALUES ('982', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'BKS');
4867 INSERT INTO `marc_tag_structure` VALUES ('983', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--TITLE/UNIFORM TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE--SERIES STATEMENT-TITLE/UNIFORM TITLE [LOCAL, CANADA]', 1, 0, '', 'BKS');
4868 INSERT INTO `marc_tag_structure` VALUES ('984', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 1, 0, '', 'BKS');
4869 INSERT INTO `marc_tag_structure` VALUES ('987', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 1, 0, '', 'BKS');
4870 INSERT INTO `marc_tag_structure` VALUES ('990', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 1, 0, '', 'BKS');
4871 INSERT INTO `marc_tag_structure` VALUES ('995', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 1, 0, '', 'BKS');
4872 INSERT INTO `marc_tag_structure` VALUES ('998', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'BKS');
4873 INSERT INTO `marc_tag_structure` VALUES ('999', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'BKS');
4874 INSERT INTO `marc_tag_structure` VALUES ('b99', 'PRIVATE LOCAL INFORMATION (RLIN)', 'PRIVATE LOCAL INFORMATION (RLIN)', 1, 0, '', 'BKS');
4875 INSERT INTO `marc_tag_structure` VALUES ('u01', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 0, 0, '', 'BKS');
4876 INSERT INTO `marc_tag_structure` VALUES ('u02', 'STANDARD NUMBER (RLIN)', 'STANDARD NUMBER (RLIN)', 0, 0, '', 'BKS');
4877 INSERT INTO `marc_tag_structure` VALUES ('u08', 'CODED INFORMATION (RLIN)', 'CODED INFORMATION (RLIN)', 0, 0, '', 'BKS');
4878 INSERT INTO `marc_tag_structure` VALUES ('u10', 'REQUESTER IDENTIFICATION (RLIN)', 'REQUESTER IDENTIFICATION (RLIN)', 1, 0, '', 'BKS');
4879 INSERT INTO `marc_tag_structure` VALUES ('u11', 'DEPARTMENT REPORT REQUEST (RLIN)', 'DEPARTMENT REPORT REQUEST (RLIN)', 1, 0, '', 'BKS');
4880 INSERT INTO `marc_tag_structure` VALUES ('u20', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 0, 0, '', 'BKS');
4881 INSERT INTO `marc_tag_structure` VALUES ('u21', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 0, 0, '', 'BKS');
4882 INSERT INTO `marc_tag_structure` VALUES ('u22', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 0, 0, '', 'BKS');
4883 INSERT INTO `marc_tag_structure` VALUES ('u25', 'SUPPLIER REPORT(S) (RLIN)', 'SUPPLIER REPORT(S) (RLIN)', 0, 0, '', 'BKS');
4884 INSERT INTO `marc_tag_structure` VALUES ('u30', 'INTERVALS (RLIN)', 'INTERVALS (RLIN)', 0, 0, '', 'BKS');
4885 INSERT INTO `marc_tag_structure` VALUES ('u31', 'CLAIM COUNTS (RLIN)', 'CLAIM COUNTS (RLIN)', 0, 0, '', 'BKS');
4886 INSERT INTO `marc_tag_structure` VALUES ('u33', 'INVOICE CLAIM (RLIN)', 'INVOICE CLAIM (RLIN)', 0, 0, '', 'BKS');
4887 INSERT INTO `marc_tag_structure` VALUES ('u34', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 0, 0, '', 'BKS');
4888 INSERT INTO `marc_tag_structure` VALUES ('u40', 'EXTENDED PROCUREMENT CODES (RLIN)', 'EXTENDED PROCUREMENT CODES (RLIN)', 0, 0, '', 'BKS');
4889 INSERT INTO `marc_tag_structure` VALUES ('u50', 'ACQUISITIONS NOTES (RLIN)', 'ACQUISITIONS NOTES (RLIN)', 0, 0, '', 'BKS');
4890 INSERT INTO `marc_tag_structure` VALUES ('u51', 'SELECTION NOTES (RLIN)', 'SELECTION NOTES (RLIN)', 0, 0, '', 'BKS');
4891 INSERT INTO `marc_tag_structure` VALUES ('u52', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 0, 0, '', 'BKS');
4892 INSERT INTO `marc_tag_structure` VALUES ('u53', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 0, 0, '', 'BKS');
4893 INSERT INTO `marc_tag_structure` VALUES ('u54', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 0, 0, '', 'BKS');
4894 INSERT INTO `marc_tag_structure` VALUES ('u55', 'CATALOGING NOTES (RLIN)', 'CATALOGING NOTES (RLIN)', 0, 0, '', 'BKS');
4895 INSERT INTO `marc_tag_structure` VALUES ('u5f', 'ACCOUNTING NOTES (RLIN)', 'ACCOUNTING NOTES (RLIN)', 0, 0, '', 'BKS');
4896 INSERT INTO `marc_tag_structure` VALUES ('u70', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 0, 0, '', 'BKS');
4897 INSERT INTO `marc_tag_structure` VALUES ('u71', 'FUND ACCOUNT (RLIN)', 'FUND ACCOUNT (RLIN)', 0, 0, '', 'BKS');
4898 INSERT INTO `marc_tag_structure` VALUES ('u75', 'ITEM DETAILS (RLIN)', 'ITEM DETAILS (RLIN)', 1, 0, '', 'BKS');
4899 INSERT INTO `marc_tag_structure` VALUES ('u7f', 'PRICE INFORMATION (RLIN)', 'PRICE INFORMATION (RLIN)', 1, 0, '', 'BKS');
4900 INSERT INTO `marc_tag_structure` VALUES ('u90', 'TAPE OUTPUT, TAPE (RLIN)', 'TAPE OUTPUT, TAPE (RLIN)', 0, 0, '', 'BKS');
4901 INSERT INTO `marc_tag_structure` VALUES ('ufi', 'FISCAL INFORMATION, FI (RLIN)', 'FISCAL INFORMATION, FI (RLIN)', 1, 0, '', 'BKS');
4902
4903
4904
4905 INSERT INTO `marc_subfield_structure` VALUES ('000', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_leader.pl', 0, 0, 'BKS', '', '');
4906 INSERT INTO `marc_subfield_structure` VALUES ('001', '@', 'control field', 'control field', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4907 INSERT INTO `marc_subfield_structure` VALUES ('003', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_003.pl', 0, -6, 'BKS', '', '');
4908 INSERT INTO `marc_subfield_structure` VALUES ('005', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_005.pl', 0, -1, 'BKS', '', '');
4909 INSERT INTO `marc_subfield_structure` VALUES ('006', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_006.pl', 0, -1, 'BKS', '', '');
4910 INSERT INTO `marc_subfield_structure` VALUES ('007', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_007.pl', 0, 0, 'BKS', '', '');
4911 INSERT INTO `marc_subfield_structure` VALUES ('008', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_field_008.pl', 0, 0, 'BKS', '', '');
4912 INSERT INTO `marc_subfield_structure` VALUES ('009', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4913 INSERT INTO `marc_subfield_structure` VALUES ('010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', NULL, 0, -6, 'BKS', '', '');
4914 INSERT INTO `marc_subfield_structure` VALUES ('010', 'a', 'LC control number', 'LC control number', 0, 0, 'biblioitems.lccn', 0, '', '', '', 0, -6, 'BKS', '', '');
4915 INSERT INTO `marc_subfield_structure` VALUES ('010', 'b', 'NUCMC control number', 'NUCMC control number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4916 INSERT INTO `marc_subfield_structure` VALUES ('010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4917 INSERT INTO `marc_subfield_structure` VALUES ('011', 'a', 'LC control number', 'LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4918 INSERT INTO `marc_subfield_structure` VALUES ('013', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'BKS', '', '');
4919 INSERT INTO `marc_subfield_structure` VALUES ('013', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4920 INSERT INTO `marc_subfield_structure` VALUES ('013', 'a', 'Number', 'Number', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4921 INSERT INTO `marc_subfield_structure` VALUES ('013', 'b', 'Country', 'Country', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4922 INSERT INTO `marc_subfield_structure` VALUES ('013', 'c', 'Type of number', 'Type of number', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4923 INSERT INTO `marc_subfield_structure` VALUES ('013', 'd', 'Date', 'Date', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4924 INSERT INTO `marc_subfield_structure` VALUES ('013', 'e', 'Status', 'Status', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4925 INSERT INTO `marc_subfield_structure` VALUES ('013', 'f', 'Party to document', 'Party to document', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4926 INSERT INTO `marc_subfield_structure` VALUES ('015', '2', 'Source', 'Source', 0, 0, '', 0, '', '', NULL, 0, -6, 'BKS', '', '');
4927 INSERT INTO `marc_subfield_structure` VALUES ('015', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4928 INSERT INTO `marc_subfield_structure` VALUES ('015', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4929 INSERT INTO `marc_subfield_structure` VALUES ('015', 'a', 'National bibliography number', 'National bibliography number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4930 INSERT INTO `marc_subfield_structure` VALUES ('016', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4931 INSERT INTO `marc_subfield_structure` VALUES ('016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4932 INSERT INTO `marc_subfield_structure` VALUES ('016', 'a', 'Record control number', 'Record control number', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4933 INSERT INTO `marc_subfield_structure` VALUES ('016', 'z', 'Canceled or invalid record control number', 'Canceled or invalid record control number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4934 INSERT INTO `marc_subfield_structure` VALUES ('017', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4935 INSERT INTO `marc_subfield_structure` VALUES ('017', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4936 INSERT INTO `marc_subfield_structure` VALUES ('017', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4937 INSERT INTO `marc_subfield_structure` VALUES ('017', 'a', 'Copyright or legal deposit number', 'Copyright or legal deposit number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4938 INSERT INTO `marc_subfield_structure` VALUES ('017', 'b', 'Assigning agency', 'Assigning agency', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4939 INSERT INTO `marc_subfield_structure` VALUES ('017', 'd', 'Date', 'Date', 0, 0, '', 0, '', '', NULL, 0, -6, 'BKS', '', '');
4940 INSERT INTO `marc_subfield_structure` VALUES ('017', 'i', 'Display text', 'Display text', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4941 INSERT INTO `marc_subfield_structure` VALUES ('018', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4942 INSERT INTO `marc_subfield_structure` VALUES ('018', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4943 INSERT INTO `marc_subfield_structure` VALUES ('018', 'a', 'Copyright article-fee code', 'Copyright article-fee code', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4944 INSERT INTO `marc_subfield_structure` VALUES ('01e', 'a', 'Coded field error', 'Coded field error', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4945 INSERT INTO `marc_subfield_structure` VALUES ('020', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4946 INSERT INTO `marc_subfield_structure` VALUES ('020', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4947 INSERT INTO `marc_subfield_structure` VALUES ('020', 'a', 'International Standard Book Number', 'International Standard Book Number', 0, 0, 'biblioitems.isbn', 0, '', '', '', 0, 0, 'BKS', '', '');
4948 INSERT INTO `marc_subfield_structure` VALUES ('020', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4949 INSERT INTO `marc_subfield_structure` VALUES ('020', 'z', 'Cancelled/invalid ISBN', 'Cancelled/invalid ISBN', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4950 INSERT INTO `marc_subfield_structure` VALUES ('022', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4951 INSERT INTO `marc_subfield_structure` VALUES ('022', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4952 INSERT INTO `marc_subfield_structure` VALUES ('022', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4953 INSERT INTO `marc_subfield_structure` VALUES ('022', 'a', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, 'biblioitems.issn', 0, '', '', '', 0, -6, 'BKS', '', '');
4954 INSERT INTO `marc_subfield_structure` VALUES ('022', 'y', 'Incorrect ISSN', 'Incorrect ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4955 INSERT INTO `marc_subfield_structure` VALUES ('022', 'z', 'Canceled ISSN', 'Canceled ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4956 INSERT INTO `marc_subfield_structure` VALUES ('023', 'a', 'Standard film number', 'Standard film number', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4957 INSERT INTO `marc_subfield_structure` VALUES ('024', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 0, '', '', '', 0, -1, 'BKS', '', '');
4958 INSERT INTO `marc_subfield_structure` VALUES ('024', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4959 INSERT INTO `marc_subfield_structure` VALUES ('024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4960 INSERT INTO `marc_subfield_structure` VALUES ('024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'BKS', '', '');
4961 INSERT INTO `marc_subfield_structure` VALUES ('024', 'b', 'Additional codes following the standard number [OBSOLETE]', 'Additional codes following the standard number [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4962 INSERT INTO `marc_subfield_structure` VALUES ('024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -1, 'BKS', '', '');
4963 INSERT INTO `marc_subfield_structure` VALUES ('024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'BKS', '', '');
4964 INSERT INTO `marc_subfield_structure` VALUES ('024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4965 INSERT INTO `marc_subfield_structure` VALUES ('025', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4966 INSERT INTO `marc_subfield_structure` VALUES ('025', 'a', 'Overseas acquisition number', 'Overseas acquisition number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4967 INSERT INTO `marc_subfield_structure` VALUES ('026', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4968 INSERT INTO `marc_subfield_structure` VALUES ('026', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4969 INSERT INTO `marc_subfield_structure` VALUES ('026', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4970 INSERT INTO `marc_subfield_structure` VALUES ('026', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4971 INSERT INTO `marc_subfield_structure` VALUES ('026', 'a', 'First and second groups of characters', 'First and second groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4972 INSERT INTO `marc_subfield_structure` VALUES ('026', 'b', 'Third and fourth groups of characters', 'Third and fourth groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4973 INSERT INTO `marc_subfield_structure` VALUES ('026', 'c', 'Date', 'Date', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4974 INSERT INTO `marc_subfield_structure` VALUES ('026', 'd', 'Number of volume or part', 'Number of volume or part', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4975 INSERT INTO `marc_subfield_structure` VALUES ('026', 'e', 'unparsed fingerprint', 'unparsed fingerprint', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4976 INSERT INTO `marc_subfield_structure` VALUES ('027', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4977 INSERT INTO `marc_subfield_structure` VALUES ('027', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4978 INSERT INTO `marc_subfield_structure` VALUES ('027', 'a', 'Standard technical report number', 'Standard technical report number', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4979 INSERT INTO `marc_subfield_structure` VALUES ('027', 'z', 'Canceled/invalid number', 'Canceled/invalid number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4980 INSERT INTO `marc_subfield_structure` VALUES ('028', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4981 INSERT INTO `marc_subfield_structure` VALUES ('028', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4982 INSERT INTO `marc_subfield_structure` VALUES ('028', 'a', 'Publisher number', 'Publisher number', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4983 INSERT INTO `marc_subfield_structure` VALUES ('028', 'b', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4984 INSERT INTO `marc_subfield_structure` VALUES ('030', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4985 INSERT INTO `marc_subfield_structure` VALUES ('030', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4986 INSERT INTO `marc_subfield_structure` VALUES ('030', 'a', 'CODEN', 'CODEN', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4987 INSERT INTO `marc_subfield_structure` VALUES ('030', 'z', 'Canceled/invalid CODEN', 'Canceled/invalid CODEN', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4988 INSERT INTO `marc_subfield_structure` VALUES ('031', '2', 'System code', 'System code', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4989 INSERT INTO `marc_subfield_structure` VALUES ('031', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4990 INSERT INTO `marc_subfield_structure` VALUES ('031', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4991 INSERT INTO `marc_subfield_structure` VALUES ('031', 'a', 'Number of work', 'Number of work', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4992 INSERT INTO `marc_subfield_structure` VALUES ('031', 'b', 'Number of movement', 'Number of movement', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4993 INSERT INTO `marc_subfield_structure` VALUES ('031', 'c', 'Number of excerpt', 'Number of excerpt', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4994 INSERT INTO `marc_subfield_structure` VALUES ('031', 'd', 'Caption or heading', 'Caption or heading', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4995 INSERT INTO `marc_subfield_structure` VALUES ('031', 'e', 'Role', 'Role', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4996 INSERT INTO `marc_subfield_structure` VALUES ('031', 'g', 'Clef', 'Clef', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4997 INSERT INTO `marc_subfield_structure` VALUES ('031', 'm', 'Voice/instrument', 'Voice/instrument', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4998 INSERT INTO `marc_subfield_structure` VALUES ('031', 'n', 'Key signature', 'Key signature', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
4999 INSERT INTO `marc_subfield_structure` VALUES ('031', 'o', 'Time signature', 'Time signature', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5000 INSERT INTO `marc_subfield_structure` VALUES ('031', 'p', 'Musical notation', 'Musical notation', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5001 INSERT INTO `marc_subfield_structure` VALUES ('031', 'q', 'General note', 'General note', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5002 INSERT INTO `marc_subfield_structure` VALUES ('031', 'r', 'Key or mode', 'Key or mode', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5003 INSERT INTO `marc_subfield_structure` VALUES ('031', 's', 'Coded validity note', 'Coded validity note', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5004 INSERT INTO `marc_subfield_structure` VALUES ('031', 't', 'Text incipit', 'Text incipit', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5005 INSERT INTO `marc_subfield_structure` VALUES ('031', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 0, '', '', '', 1, -6, 'BKS', '', '');
5006 INSERT INTO `marc_subfield_structure` VALUES ('031', 'y', 'Link text', 'Link text', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5007 INSERT INTO `marc_subfield_structure` VALUES ('031', 'z', 'Public note', 'Public note', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5008 INSERT INTO `marc_subfield_structure` VALUES ('032', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'BKS', '', '');
5009 INSERT INTO `marc_subfield_structure` VALUES ('032', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5010 INSERT INTO `marc_subfield_structure` VALUES ('032', 'a', 'Postal registration number', 'Postal registration number', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5011 INSERT INTO `marc_subfield_structure` VALUES ('032', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5012 INSERT INTO `marc_subfield_structure` VALUES ('033', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5013 INSERT INTO `marc_subfield_structure` VALUES ('033', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5014 INSERT INTO `marc_subfield_structure` VALUES ('033', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5015 INSERT INTO `marc_subfield_structure` VALUES ('033', 'a', 'Formatted date/time', 'Formatted date/time', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5016 INSERT INTO `marc_subfield_structure` VALUES ('033', 'b', 'Geographic classification area code', 'Geographic classification area code', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5017 INSERT INTO `marc_subfield_structure` VALUES ('033', 'c', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5018 INSERT INTO `marc_subfield_structure` VALUES ('034', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5019 INSERT INTO `marc_subfield_structure` VALUES ('034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5020 INSERT INTO `marc_subfield_structure` VALUES ('034', 'a', 'Category of scale', 'Category of scale', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5021 INSERT INTO `marc_subfield_structure` VALUES ('034', 'b', 'Constant ratio linear horizontal scale', 'Constant ratio linear horizontal scale', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5022 INSERT INTO `marc_subfield_structure` VALUES ('034', 'c', 'Constant ratio linear vertical scale', 'Constant ratio linear vertical scale', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5023 INSERT INTO `marc_subfield_structure` VALUES ('034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5024 INSERT INTO `marc_subfield_structure` VALUES ('034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5025 INSERT INTO `marc_subfield_structure` VALUES ('034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5026 INSERT INTO `marc_subfield_structure` VALUES ('034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5027 INSERT INTO `marc_subfield_structure` VALUES ('034', 'h', 'Angular scale', 'Angular scale', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5028 INSERT INTO `marc_subfield_structure` VALUES ('034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5029 INSERT INTO `marc_subfield_structure` VALUES ('034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5030 INSERT INTO `marc_subfield_structure` VALUES ('034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5031 INSERT INTO `marc_subfield_structure` VALUES ('034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5032 INSERT INTO `marc_subfield_structure` VALUES ('034', 'p', 'Equinox', 'Equinox', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5033 INSERT INTO `marc_subfield_structure` VALUES ('034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5034 INSERT INTO `marc_subfield_structure` VALUES ('034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5035 INSERT INTO `marc_subfield_structure` VALUES ('035', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5036 INSERT INTO `marc_subfield_structure` VALUES ('035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5037 INSERT INTO `marc_subfield_structure` VALUES ('035', 'a', 'System control number', 'System control number', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5038 INSERT INTO `marc_subfield_structure` VALUES ('035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5039 INSERT INTO `marc_subfield_structure` VALUES ('036', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5040 INSERT INTO `marc_subfield_structure` VALUES ('036', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5041 INSERT INTO `marc_subfield_structure` VALUES ('036', 'a', 'Original study number', 'Original study number', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5042 INSERT INTO `marc_subfield_structure` VALUES ('036', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5043 INSERT INTO `marc_subfield_structure` VALUES ('037', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
5044 INSERT INTO `marc_subfield_structure` VALUES ('037', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
5045 INSERT INTO `marc_subfield_structure` VALUES ('037', 'a', 'Stock number', 'Stock number', 0, 0, '', 9, '', '', '', 0, -1, 'BKS', '', '');
5046 INSERT INTO `marc_subfield_structure` VALUES ('037', 'b', 'Source of stock number/acquisition', 'Source of stock number/acquisition', 0, 0, '', 9, '', '', '', 0, -1, 'BKS', '', '');
5047 INSERT INTO `marc_subfield_structure` VALUES ('037', 'c', 'Terms of availability', 'Terms of availability', 1, 0, '', 9, '', '', '', 0, -1, 'BKS', '', '');
5048 INSERT INTO `marc_subfield_structure` VALUES ('037', 'f', 'Form of issue', 'Form of issue', 1, 0, '', 9, '', '', '', 0, -1, 'BKS', '', '');
5049 INSERT INTO `marc_subfield_structure` VALUES ('037', 'g', 'Additional format characteristics', 'Additional format characteristics', 1, 0, '', 9, '', '', '', 0, -1, 'BKS', '', '');
5050 INSERT INTO `marc_subfield_structure` VALUES ('037', 'n', 'Note', 'Note', 1, 0, '', 9, '', '', '', 0, -1, 'BKS', '', '');
5051 INSERT INTO `marc_subfield_structure` VALUES ('038', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5052 INSERT INTO `marc_subfield_structure` VALUES ('038', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5053 INSERT INTO `marc_subfield_structure` VALUES ('038', 'a', 'Record content licensor', 'Record content licensor', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5054 INSERT INTO `marc_subfield_structure` VALUES ('039', 'a', 'Level of rules in bibliographic description', 'Level of rules in bibliographic description', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5055 INSERT INTO `marc_subfield_structure` VALUES ('039', 'b', 'Level of effort used to assign nonsubject heading access points', 'Level of effort used to assign nonsubject heading access points', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5056 INSERT INTO `marc_subfield_structure` VALUES ('039', 'c', 'Level of effort used to assign subject headings', 'Level of effort used to assign subject headings', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5057 INSERT INTO `marc_subfield_structure` VALUES ('039', 'd', 'Level of effort used to assign classification', 'Level of effort used to assign classification', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5058 INSERT INTO `marc_subfield_structure` VALUES ('039', 'e', 'Number of fixed field character positions coded', 'Number of fixed field character positions coded', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5059 INSERT INTO `marc_subfield_structure` VALUES ('040', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5060 INSERT INTO `marc_subfield_structure` VALUES ('040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5061 INSERT INTO `marc_subfield_structure` VALUES ('040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 0, '', 0, '', '', '', 0, -1, 'BKS', '', '');
5062 INSERT INTO `marc_subfield_structure` VALUES ('040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5063 INSERT INTO `marc_subfield_structure` VALUES ('040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, '', 0, '', '', '', 0, -1, 'BKS', '', '');
5064 INSERT INTO `marc_subfield_structure` VALUES ('040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, '', 0, '', '', '', 0, -1, 'BKS', '', '');
5065 INSERT INTO `marc_subfield_structure` VALUES ('040', 'e', 'Description conventions', 'Description conventions', 0, 0, '', 0, '', '', '', 0, -1, 'BKS', '', '');
5066 INSERT INTO `marc_subfield_structure` VALUES ('041', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5067 INSERT INTO `marc_subfield_structure` VALUES ('041', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5068 INSERT INTO `marc_subfield_structure` VALUES ('041', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5069 INSERT INTO `marc_subfield_structure` VALUES ('041', 'a', 'Language code of text/sound track or separate title', 'Language code of text/sound track or separate title', 1, 0, '', 0, '', '', '', 0, -1, 'BKS', '', '');
5070 INSERT INTO `marc_subfield_structure` VALUES ('041', 'b', 'Language code of summary or abstract/overprinted title or subtitle', 'Language code of summary or abstract/overprinted title or subtitle', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5071 INSERT INTO `marc_subfield_structure` VALUES ('041', 'c', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5072 INSERT INTO `marc_subfield_structure` VALUES ('041', 'd', 'Language code of sung or spoken text', 'Language code of sung or spoken text', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5073 INSERT INTO `marc_subfield_structure` VALUES ('041', 'e', 'Language code of librettos', 'Language code of librettos', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5074 INSERT INTO `marc_subfield_structure` VALUES ('041', 'f', 'Language code of table of contents', 'Language code of table of contents', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5075 INSERT INTO `marc_subfield_structure` VALUES ('041', 'g', 'Language code of accompanying material other than librettos', 'Language code of accompanying material other than librettos', 1, 0, '', 0, '', '', '', 0, -1, 'BKS', '', '');
5076 INSERT INTO `marc_subfield_structure` VALUES ('041', 'h', 'Language code of original and/or intermediate translations of text', 'Language code of original and/or intermediate translations of text', 1, 0, '', 0, '', '', '', 0, -1, 'BKS', '', '');
5077 INSERT INTO `marc_subfield_structure` VALUES ('042', 'a', 'Authentication code', 'Authentication code', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5078 INSERT INTO `marc_subfield_structure` VALUES ('043', '2', 'Source of local code', 'Source of local code', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5079 INSERT INTO `marc_subfield_structure` VALUES ('043', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5080 INSERT INTO `marc_subfield_structure` VALUES ('043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5081 INSERT INTO `marc_subfield_structure` VALUES ('043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5082 INSERT INTO `marc_subfield_structure` VALUES ('043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5083 INSERT INTO `marc_subfield_structure` VALUES ('043', 'c', 'ISO code', 'ISO code', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5084 INSERT INTO `marc_subfield_structure` VALUES ('044', '2', 'Source of local subentity code', 'Source of local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5085 INSERT INTO `marc_subfield_structure` VALUES ('044', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5086 INSERT INTO `marc_subfield_structure` VALUES ('044', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5087 INSERT INTO `marc_subfield_structure` VALUES ('044', 'a', 'MARC country code', 'MARC country code', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5088 INSERT INTO `marc_subfield_structure` VALUES ('044', 'b', 'Local subentity code', 'Local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5089 INSERT INTO `marc_subfield_structure` VALUES ('044', 'c', 'ISO country code', 'ISO country code', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5090 INSERT INTO `marc_subfield_structure` VALUES ('045', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5091 INSERT INTO `marc_subfield_structure` VALUES ('045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5092 INSERT INTO `marc_subfield_structure` VALUES ('045', 'a', 'Time period code', 'Time period code', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5093 INSERT INTO `marc_subfield_structure` VALUES ('045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5094 INSERT INTO `marc_subfield_structure` VALUES ('045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5095 INSERT INTO `marc_subfield_structure` VALUES ('046', '2', 'Source of date', 'Source of date', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5096 INSERT INTO `marc_subfield_structure` VALUES ('046', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5097 INSERT INTO `marc_subfield_structure` VALUES ('046', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5098 INSERT INTO `marc_subfield_structure` VALUES ('046', 'a', 'Type of date code', 'Type of date code', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5099 INSERT INTO `marc_subfield_structure` VALUES ('046', 'b', 'Date 1 (B.C. date)', 'Date 1 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5100 INSERT INTO `marc_subfield_structure` VALUES ('046', 'c', 'Date 1 (C.E. date)', 'Date 1 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5101 INSERT INTO `marc_subfield_structure` VALUES ('046', 'd', 'Date 2 (B.C. date)', 'Date 2 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5102 INSERT INTO `marc_subfield_structure` VALUES ('046', 'e', 'Date 2 (C.E. date)', 'Date 2 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5103 INSERT INTO `marc_subfield_structure` VALUES ('046', 'j', 'Date resource modified', 'Date resource modified', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5104 INSERT INTO `marc_subfield_structure` VALUES ('046', 'k', 'Beginning or single date created', 'Beginning or single date created', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5105 INSERT INTO `marc_subfield_structure` VALUES ('046', 'l', 'Ending date created', 'Ending date created', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5106 INSERT INTO `marc_subfield_structure` VALUES ('046', 'm', 'Beginning of date valid', 'Beginning of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5107 INSERT INTO `marc_subfield_structure` VALUES ('046', 'n', 'End of date valid', 'End of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5108 INSERT INTO `marc_subfield_structure` VALUES ('047', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5109 INSERT INTO `marc_subfield_structure` VALUES ('047', 'a', 'Form of musical composition code', 'Form of musical composition code', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5110 INSERT INTO `marc_subfield_structure` VALUES ('048', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5111 INSERT INTO `marc_subfield_structure` VALUES ('048', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5112 INSERT INTO `marc_subfield_structure` VALUES ('048', 'a', 'Performer or ensemble', 'Performer or ensemble', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5113 INSERT INTO `marc_subfield_structure` VALUES ('048', 'b', 'Soloist', 'Soloist', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5114 INSERT INTO `marc_subfield_structure` VALUES ('049', 'a', 'Holding library', 'Holding library', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5115 INSERT INTO `marc_subfield_structure` VALUES ('049', 'c', 'Copy statement', 'Copy statement', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5116 INSERT INTO `marc_subfield_structure` VALUES ('049', 'd', 'Definition of bibliographic subdivisions', 'Definition of bibliographic subdivisions', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5117 INSERT INTO `marc_subfield_structure` VALUES ('049', 'l', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5118 INSERT INTO `marc_subfield_structure` VALUES ('049', 'm', 'Missing elements', 'Missing elements', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5119 INSERT INTO `marc_subfield_structure` VALUES ('049', 'n', 'Notes about holdings', 'Notes about holdings', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5120 INSERT INTO `marc_subfield_structure` VALUES ('049', 'o', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5121 INSERT INTO `marc_subfield_structure` VALUES ('049', 'p', 'Secondary bibliographic subdivision', 'Secondary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5122 INSERT INTO `marc_subfield_structure` VALUES ('049', 'q', 'Third bibliographic subdivision', 'Third bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5123 INSERT INTO `marc_subfield_structure` VALUES ('049', 'r', 'Fourth bibliographic subdivision', 'Fourth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5124 INSERT INTO `marc_subfield_structure` VALUES ('049', 's', 'Fifth bibliographic subdivision', 'Fifth bibliographic subdivision', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5125 INSERT INTO `marc_subfield_structure` VALUES ('049', 't', 'Sixth bibliographic subdivision', 'Sixth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5126 INSERT INTO `marc_subfield_structure` VALUES ('049', 'u', 'Seventh bibliographic subdivision', 'Seventh bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5127 INSERT INTO `marc_subfield_structure` VALUES ('049', 'v', 'Primary bibliographic subdivision', 'Primary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5128 INSERT INTO `marc_subfield_structure` VALUES ('049', 'y', 'Inclusive dates of publication or coverage', 'Inclusive dates of publication or coverage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5129 INSERT INTO `marc_subfield_structure` VALUES ('050', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5130 INSERT INTO `marc_subfield_structure` VALUES ('050', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5131 INSERT INTO `marc_subfield_structure` VALUES ('050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5132 INSERT INTO `marc_subfield_structure` VALUES ('050', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, 0, 'BKS', '', '');
5133 INSERT INTO `marc_subfield_structure` VALUES ('050', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, 0, 'BKS', '', '');
5134 INSERT INTO `marc_subfield_structure` VALUES ('050', 'd', 'Supplementary class number (MU) [OBSOLETE]', 'Supplementary class number (MU) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5135 INSERT INTO `marc_subfield_structure` VALUES ('051', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5136 INSERT INTO `marc_subfield_structure` VALUES ('051', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5137 INSERT INTO `marc_subfield_structure` VALUES ('051', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5138 INSERT INTO `marc_subfield_structure` VALUES ('051', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5139 INSERT INTO `marc_subfield_structure` VALUES ('052', '2', 'Code Source', 'Code Source', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5140 INSERT INTO `marc_subfield_structure` VALUES ('052', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5141 INSERT INTO `marc_subfield_structure` VALUES ('052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5142 INSERT INTO `marc_subfield_structure` VALUES ('052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5143 INSERT INTO `marc_subfield_structure` VALUES ('052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5144 INSERT INTO `marc_subfield_structure` VALUES ('052', 'c', 'Subject (MP) [OBSOLETE]', 'Subject (MP) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5145 INSERT INTO `marc_subfield_structure` VALUES ('052', 'd', 'Populated place name', 'Populated place name', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5146 INSERT INTO `marc_subfield_structure` VALUES ('055', '2', 'Source of call/class number', 'Source of call/class number', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5147 INSERT INTO `marc_subfield_structure` VALUES ('055', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5148 INSERT INTO `marc_subfield_structure` VALUES ('055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5149 INSERT INTO `marc_subfield_structure` VALUES ('055', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5150 INSERT INTO `marc_subfield_structure` VALUES ('055', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5151 INSERT INTO `marc_subfield_structure` VALUES ('060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5152 INSERT INTO `marc_subfield_structure` VALUES ('060', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5153 INSERT INTO `marc_subfield_structure` VALUES ('060', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5154 INSERT INTO `marc_subfield_structure` VALUES ('061', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5155 INSERT INTO `marc_subfield_structure` VALUES ('061', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5156 INSERT INTO `marc_subfield_structure` VALUES ('061', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5157 INSERT INTO `marc_subfield_structure` VALUES ('061', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5158 INSERT INTO `marc_subfield_structure` VALUES ('066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5159 INSERT INTO `marc_subfield_structure` VALUES ('066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5160 INSERT INTO `marc_subfield_structure` VALUES ('066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5161 INSERT INTO `marc_subfield_structure` VALUES ('070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5162 INSERT INTO `marc_subfield_structure` VALUES ('070', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5163 INSERT INTO `marc_subfield_structure` VALUES ('070', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5164 INSERT INTO `marc_subfield_structure` VALUES ('071', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5165 INSERT INTO `marc_subfield_structure` VALUES ('071', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5166 INSERT INTO `marc_subfield_structure` VALUES ('071', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5167 INSERT INTO `marc_subfield_structure` VALUES ('071', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5168 INSERT INTO `marc_subfield_structure` VALUES ('072', '2', 'Source', 'Source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5169 INSERT INTO `marc_subfield_structure` VALUES ('072', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5170 INSERT INTO `marc_subfield_structure` VALUES ('072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5171 INSERT INTO `marc_subfield_structure` VALUES ('072', 'a', 'Subject category code', 'Subject category code', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5172 INSERT INTO `marc_subfield_structure` VALUES ('072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5173 INSERT INTO `marc_subfield_structure` VALUES ('074', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5174 INSERT INTO `marc_subfield_structure` VALUES ('074', 'a', 'GPO item number', 'GPO item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5175 INSERT INTO `marc_subfield_structure` VALUES ('074', 'z', 'Canceled/invalid GPO item number', 'Canceled/invalid GPO item number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5176 INSERT INTO `marc_subfield_structure` VALUES ('080', '2', 'Edition identifier', 'Edition identifier', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5177 INSERT INTO `marc_subfield_structure` VALUES ('080', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5178 INSERT INTO `marc_subfield_structure` VALUES ('080', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5179 INSERT INTO `marc_subfield_structure` VALUES ('080', 'a', 'Universal Decimal Classification number', 'Universal Decimal Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5180 INSERT INTO `marc_subfield_structure` VALUES ('080', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5181 INSERT INTO `marc_subfield_structure` VALUES ('080', 'x', 'Common auxiliary subdivision', 'Common auxiliary subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5182 INSERT INTO `marc_subfield_structure` VALUES ('082', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, 0, 'BKS', '', '');
5183 INSERT INTO `marc_subfield_structure` VALUES ('082', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', NULL, -6, 'BKS', '', '');
5184 INSERT INTO `marc_subfield_structure` VALUES ('082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', NULL, -6, 'BKS', '', '');
5185 INSERT INTO `marc_subfield_structure` VALUES ('082', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, 0, 'BKS', '', '');
5186 INSERT INTO `marc_subfield_structure` VALUES ('082', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, 0, 'BKS', '', '');
5187 INSERT INTO `marc_subfield_structure` VALUES ('084', '2', 'Source of number', 'Source of number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5188 INSERT INTO `marc_subfield_structure` VALUES ('084', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5189 INSERT INTO `marc_subfield_structure` VALUES ('084', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5190 INSERT INTO `marc_subfield_structure` VALUES ('084', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5191 INSERT INTO `marc_subfield_structure` VALUES ('084', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5192 INSERT INTO `marc_subfield_structure` VALUES ('086', '2', 'Number source', 'Number source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5193 INSERT INTO `marc_subfield_structure` VALUES ('086', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5194 INSERT INTO `marc_subfield_structure` VALUES ('086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5195 INSERT INTO `marc_subfield_structure` VALUES ('086', 'a', 'Classification number', 'Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5196 INSERT INTO `marc_subfield_structure` VALUES ('086', 'z', 'Canceled/invalid classification number', 'Canceled/invalid classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5197 INSERT INTO `marc_subfield_structure` VALUES ('087', 'a', 'Report number [OBSOLETE, CAN/MARC]', 'Report number [OBSOLETE, CAN/MARC]', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5198 INSERT INTO `marc_subfield_structure` VALUES ('087', 'z', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5199 INSERT INTO `marc_subfield_structure` VALUES ('088', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5200 INSERT INTO `marc_subfield_structure` VALUES ('088', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5201 INSERT INTO `marc_subfield_structure` VALUES ('088', 'a', 'Report number', 'Report number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5202 INSERT INTO `marc_subfield_structure` VALUES ('088', 'z', 'Canceled/invalid report number', 'Canceled/invalid report number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5203 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5204 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5205 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
5206 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
5207 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
5208 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
5209 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
5210 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
5211 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
5212 INSERT INTO `marc_subfield_structure` VALUES ('09o', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
5213 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
5214 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
5215 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
5216 INSERT INTO `marc_subfield_structure` VALUES ('091', 'a', 'Microfilm shelf location', 'Microfilm shelf location', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5217 INSERT INTO `marc_subfield_structure` VALUES ('092', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, -6, 'BKS', '', '');
5218 INSERT INTO `marc_subfield_structure` VALUES ('092', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'BKS', '', '');
5219 INSERT INTO `marc_subfield_structure` VALUES ('092', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'BKS', '', '');
5220 INSERT INTO `marc_subfield_structure` VALUES ('092', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5221 INSERT INTO `marc_subfield_structure` VALUES ('092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5222 INSERT INTO `marc_subfield_structure` VALUES ('096', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'BKS', '', '');
5223 INSERT INTO `marc_subfield_structure` VALUES ('096', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'BKS', '', '');
5224 INSERT INTO `marc_subfield_structure` VALUES ('096', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5225 INSERT INTO `marc_subfield_structure` VALUES ('096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5226 INSERT INTO `marc_subfield_structure` VALUES ('098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, '', 0, '', '', '', NULL, -6, 'BKS', '', '');
5227 INSERT INTO `marc_subfield_structure` VALUES ('098', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5228 INSERT INTO `marc_subfield_structure` VALUES ('098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5229 INSERT INTO `marc_subfield_structure` VALUES ('099', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, -6, 'BKS', '', '');
5230 INSERT INTO `marc_subfield_structure` VALUES ('099', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5231 INSERT INTO `marc_subfield_structure` VALUES ('099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
5232 INSERT INTO `marc_subfield_structure` VALUES ('100', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', 0, -6, 'BKS', '', '');
5233 INSERT INTO `marc_subfield_structure` VALUES ('100', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', 0, -6, 'BKS', '', '');
5234 INSERT INTO `marc_subfield_structure` VALUES ('100', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', 0, -6, 'BKS', '', '');
5235 INSERT INTO `marc_subfield_structure` VALUES ('100', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
5236 INSERT INTO `marc_subfield_structure` VALUES ('100', 'a', 'Personal name', 'Personal name', 0, 0, 'biblio.author', 1, '', '', '', 0, 0, 'BKS', '''100b'',''100c'',''100q'',''100d'',''100e'',''110a'',''110b'',''110c'',''110d'',''110e'',''700a'',''700b'',''700c'',''700q'',''700d'',''700e'',''710a'',''710b'',''710c'',''710d'',''710e'',''720a'',''720e'',''900a''', '');
5237 INSERT INTO `marc_subfield_structure` VALUES ('100', 'b', 'Numeration', 'Numeration', 0, 0, '', 1, '', '', '', 0, -1, 'BKS', '', '');
5238 INSERT INTO `marc_subfield_structure` VALUES ('100', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 1, '', '', '', 0, -1, 'BKS', '', '');
5239 INSERT INTO `marc_subfield_structure` VALUES ('100', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 1, '', '', '', 0, 0, 'BKS', '', '');
5240 INSERT INTO `marc_subfield_structure` VALUES ('100', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', 0, -1, 'BKS', '', '');
5241 INSERT INTO `marc_subfield_structure` VALUES ('100', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', 0, -6, 'BKS', '', '');
5242 INSERT INTO `marc_subfield_structure` VALUES ('100', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', 0, -6, 'BKS', '', '');
5243 INSERT INTO `marc_subfield_structure` VALUES ('100', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 1, '', '', '', 0, -6, 'BKS', '', '');
5244 INSERT INTO `marc_subfield_structure` VALUES ('100', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', 0, -6, 'BKS', '', '');
5245 INSERT INTO `marc_subfield_structure` VALUES ('100', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', 0, -6, 'BKS', '', '');
5246 INSERT INTO `marc_subfield_structure` VALUES ('100', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'BKS', '', '');
5247 INSERT INTO `marc_subfield_structure` VALUES ('100', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'BKS', '', '');
5248 INSERT INTO `marc_subfield_structure` VALUES ('100', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 1, '', '', '', 0, -1, 'BKS', '', '');
5249 INSERT INTO `marc_subfield_structure` VALUES ('100', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', 0, -6, 'BKS', '', '');
5250 INSERT INTO `marc_subfield_structure` VALUES ('100', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', 0, -6, 'BKS', '', '');
5251 INSERT INTO `marc_subfield_structure` VALUES ('110', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', NULL, -6, 'BKS', '', '');
5252 INSERT INTO `marc_subfield_structure` VALUES ('110', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', NULL, -6, 'BKS', '', '');
5253 INSERT INTO `marc_subfield_structure` VALUES ('110', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', NULL, -6, 'BKS', '', '');
5254 INSERT INTO `marc_subfield_structure` VALUES ('110', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
5255 INSERT INTO `marc_subfield_structure` VALUES ('110', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 1, '', '', '', NULL, -1, 'BKS', '', '');
5256 INSERT INTO `marc_subfield_structure` VALUES ('110', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 1, '', '', '', NULL, -1, 'BKS', '', '');
5257 INSERT INTO `marc_subfield_structure` VALUES ('110', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 1, '', '', '', NULL, -1, 'BKS', '', '');
5258 INSERT INTO `marc_subfield_structure` VALUES ('110', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 1, '', '', '', NULL, -1, 'BKS', '', '');
5259 INSERT INTO `marc_subfield_structure` VALUES ('110', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', NULL, -1, 'BKS', '', '');
5260 INSERT INTO `marc_subfield_structure` VALUES ('110', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'BKS', '', '');
5261 INSERT INTO `marc_subfield_structure` VALUES ('110', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', NULL, -6, 'BKS', '', '');
5262 INSERT INTO `marc_subfield_structure` VALUES ('110', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', NULL, -6, 'BKS', '', '');
5263 INSERT INTO `marc_subfield_structure` VALUES ('110', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'BKS', '', '');
5264 INSERT INTO `marc_subfield_structure` VALUES ('110', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 1, '', '', '', NULL, -6, 'BKS', '', '');
5265 INSERT INTO `marc_subfield_structure` VALUES ('110', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', NULL, -6, 'BKS', '', '');
5266 INSERT INTO `marc_subfield_structure` VALUES ('110', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'BKS', '', '');
5267 INSERT INTO `marc_subfield_structure` VALUES ('110', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', NULL, -6, 'BKS', '', '');
5268 INSERT INTO `marc_subfield_structure` VALUES ('111', '4', 'Relator code', 'Relator code', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5269 INSERT INTO `marc_subfield_structure` VALUES ('111', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5270 INSERT INTO `marc_subfield_structure` VALUES ('111', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5271 INSERT INTO `marc_subfield_structure` VALUES ('111', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
5272 INSERT INTO `marc_subfield_structure` VALUES ('111', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5273 INSERT INTO `marc_subfield_structure` VALUES ('111', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5274 INSERT INTO `marc_subfield_structure` VALUES ('111', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5275 INSERT INTO `marc_subfield_structure` VALUES ('111', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5276 INSERT INTO `marc_subfield_structure` VALUES ('111', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5277 INSERT INTO `marc_subfield_structure` VALUES ('111', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5278 INSERT INTO `marc_subfield_structure` VALUES ('111', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5279 INSERT INTO `marc_subfield_structure` VALUES ('111', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5280 INSERT INTO `marc_subfield_structure` VALUES ('111', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5281 INSERT INTO `marc_subfield_structure` VALUES ('111', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5282 INSERT INTO `marc_subfield_structure` VALUES ('111', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5283 INSERT INTO `marc_subfield_structure` VALUES ('111', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5284 INSERT INTO `marc_subfield_structure` VALUES ('111', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5285 INSERT INTO `marc_subfield_structure` VALUES ('111', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5286 INSERT INTO `marc_subfield_structure` VALUES ('130', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5287 INSERT INTO `marc_subfield_structure` VALUES ('130', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5288 INSERT INTO `marc_subfield_structure` VALUES ('130', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
5289 INSERT INTO `marc_subfield_structure` VALUES ('130', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5290 INSERT INTO `marc_subfield_structure` VALUES ('130', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5291 INSERT INTO `marc_subfield_structure` VALUES ('130', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5292 INSERT INTO `marc_subfield_structure` VALUES ('130', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5293 INSERT INTO `marc_subfield_structure` VALUES ('130', 'h', 'Medium', 'Medium', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5294 INSERT INTO `marc_subfield_structure` VALUES ('130', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5295 INSERT INTO `marc_subfield_structure` VALUES ('130', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5296 INSERT INTO `marc_subfield_structure` VALUES ('130', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5297 INSERT INTO `marc_subfield_structure` VALUES ('130', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5298 INSERT INTO `marc_subfield_structure` VALUES ('130', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5299 INSERT INTO `marc_subfield_structure` VALUES ('130', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5300 INSERT INTO `marc_subfield_structure` VALUES ('130', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5301 INSERT INTO `marc_subfield_structure` VALUES ('130', 's', 'Version', 'Version', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5302 INSERT INTO `marc_subfield_structure` VALUES ('130', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5303 INSERT INTO `marc_subfield_structure` VALUES ('210', '2', 'Source', 'Source', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5304 INSERT INTO `marc_subfield_structure` VALUES ('210', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5305 INSERT INTO `marc_subfield_structure` VALUES ('210', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5306 INSERT INTO `marc_subfield_structure` VALUES ('210', 'a', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5307 INSERT INTO `marc_subfield_structure` VALUES ('210', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5308 INSERT INTO `marc_subfield_structure` VALUES ('211', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5309 INSERT INTO `marc_subfield_structure` VALUES ('211', 'a', 'Acronym or shortened title', 'Acronym or shortened title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5310 INSERT INTO `marc_subfield_structure` VALUES ('212', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5311 INSERT INTO `marc_subfield_structure` VALUES ('212', 'a', 'Variant access title', 'Variant access title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5312 INSERT INTO `marc_subfield_structure` VALUES ('214', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5313 INSERT INTO `marc_subfield_structure` VALUES ('214', 'a', 'Augmented title', 'Augmented title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5314 INSERT INTO `marc_subfield_structure` VALUES ('222', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5315 INSERT INTO `marc_subfield_structure` VALUES ('222', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5316 INSERT INTO `marc_subfield_structure` VALUES ('222', 'a', 'Key title', 'Key title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5317 INSERT INTO `marc_subfield_structure` VALUES ('222', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5318 INSERT INTO `marc_subfield_structure` VALUES ('240', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5319 INSERT INTO `marc_subfield_structure` VALUES ('240', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5320 INSERT INTO `marc_subfield_structure` VALUES ('240', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
5321 INSERT INTO `marc_subfield_structure` VALUES ('240', 'a', 'Uniform title', 'Uniform title', 0, 0, 'biblio.unititle', 2, '', '', '', 1, -1, 'BKS', '', '');
5322 INSERT INTO `marc_subfield_structure` VALUES ('240', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5323 INSERT INTO `marc_subfield_structure` VALUES ('240', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5324 INSERT INTO `marc_subfield_structure` VALUES ('240', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5325 INSERT INTO `marc_subfield_structure` VALUES ('240', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'BKS', '', '');
5326 INSERT INTO `marc_subfield_structure` VALUES ('240', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5327 INSERT INTO `marc_subfield_structure` VALUES ('240', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'BKS', '', '');
5328 INSERT INTO `marc_subfield_structure` VALUES ('240', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5329 INSERT INTO `marc_subfield_structure` VALUES ('240', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5330 INSERT INTO `marc_subfield_structure` VALUES ('240', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5331 INSERT INTO `marc_subfield_structure` VALUES ('240', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5332 INSERT INTO `marc_subfield_structure` VALUES ('240', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5333 INSERT INTO `marc_subfield_structure` VALUES ('240', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'BKS', '', '');
5334 INSERT INTO `marc_subfield_structure` VALUES ('241', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5335 INSERT INTO `marc_subfield_structure` VALUES ('241', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5336 INSERT INTO `marc_subfield_structure` VALUES ('242', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5337 INSERT INTO `marc_subfield_structure` VALUES ('242', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5338 INSERT INTO `marc_subfield_structure` VALUES ('242', 'a', 'Title', 'Title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5339 INSERT INTO `marc_subfield_structure` VALUES ('242', 'b', 'Remainder of title', 'Remainder of title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5340 INSERT INTO `marc_subfield_structure` VALUES ('242', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5341 INSERT INTO `marc_subfield_structure` VALUES ('242', 'd', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5342 INSERT INTO `marc_subfield_structure` VALUES ('242', 'e', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5343 INSERT INTO `marc_subfield_structure` VALUES ('242', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5344 INSERT INTO `marc_subfield_structure` VALUES ('242', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5345 INSERT INTO `marc_subfield_structure` VALUES ('242', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5346 INSERT INTO `marc_subfield_structure` VALUES ('242', 'y', 'Language code of translated title', 'Language code of translated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5347 INSERT INTO `marc_subfield_structure` VALUES ('243', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5348 INSERT INTO `marc_subfield_structure` VALUES ('243', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5349 INSERT INTO `marc_subfield_structure` VALUES ('243', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
5350 INSERT INTO `marc_subfield_structure` VALUES ('243', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 2, '', '', '', 1, -1, 'BKS', '', '');
5351 INSERT INTO `marc_subfield_structure` VALUES ('243', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5352 INSERT INTO `marc_subfield_structure` VALUES ('243', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5353 INSERT INTO `marc_subfield_structure` VALUES ('243', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5354 INSERT INTO `marc_subfield_structure` VALUES ('243', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'BKS', '', '');
5355 INSERT INTO `marc_subfield_structure` VALUES ('243', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5356 INSERT INTO `marc_subfield_structure` VALUES ('243', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'BKS', '', '');
5357 INSERT INTO `marc_subfield_structure` VALUES ('243', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5358 INSERT INTO `marc_subfield_structure` VALUES ('243', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5359 INSERT INTO `marc_subfield_structure` VALUES ('243', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5360 INSERT INTO `marc_subfield_structure` VALUES ('243', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5361 INSERT INTO `marc_subfield_structure` VALUES ('243', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'BKS', '', '');
5362 INSERT INTO `marc_subfield_structure` VALUES ('243', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'BKS', '', '');
5363 INSERT INTO `marc_subfield_structure` VALUES ('245', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5364 INSERT INTO `marc_subfield_structure` VALUES ('245', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5365 INSERT INTO `marc_subfield_structure` VALUES ('245', 'a', 'Title', 'Title', 0, 1, 'biblio.title', 2, '', '', '', NULL, 0, 'BKS', '''245b'',''245f'',''245g'',''245k'',''245n'',''245p'',''245s'',''245h'',''246i'',''246a'',''246b'',''246f'',''246g'',''246n'',''246p'',''246h'',''242a'',''242b'',''242n'',''242p'',''242h''', '');
5366 INSERT INTO `marc_subfield_structure` VALUES ('245', 'b', 'Remainder of title', 'Remainder of title', 0, 0, 'bibliosubtitle.subtitle', 2, '', '', '', NULL, 0, 'BKS', '', '');
5367 INSERT INTO `marc_subfield_structure` VALUES ('245', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 2, '', '', '', NULL, 0, 'BKS', '', '');
5368 INSERT INTO `marc_subfield_structure` VALUES ('245', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series: (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5369 INSERT INTO `marc_subfield_structure` VALUES ('245', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5370 INSERT INTO `marc_subfield_structure` VALUES ('245', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5371 INSERT INTO `marc_subfield_structure` VALUES ('245', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5372 INSERT INTO `marc_subfield_structure` VALUES ('245', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -1, 'BKS', '', '');
5373 INSERT INTO `marc_subfield_structure` VALUES ('245', 'k', 'Form', 'Form', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5374 INSERT INTO `marc_subfield_structure` VALUES ('245', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5375 INSERT INTO `marc_subfield_structure` VALUES ('245', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5376 INSERT INTO `marc_subfield_structure` VALUES ('245', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5377 INSERT INTO `marc_subfield_structure` VALUES ('246', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5378 INSERT INTO `marc_subfield_structure` VALUES ('246', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5379 INSERT INTO `marc_subfield_structure` VALUES ('246', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5380 INSERT INTO `marc_subfield_structure` VALUES ('246', 'a', 'Title proper/short title', 'Title proper/short title', 0, 0, '', 2, '', '', '', NULL, -1, 'BKS', '', '');
5381 INSERT INTO `marc_subfield_structure` VALUES ('246', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -1, 'BKS', '', '');
5382 INSERT INTO `marc_subfield_structure` VALUES ('246', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5383 INSERT INTO `marc_subfield_structure` VALUES ('246', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5384 INSERT INTO `marc_subfield_structure` VALUES ('246', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5385 INSERT INTO `marc_subfield_structure` VALUES ('246', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5386 INSERT INTO `marc_subfield_structure` VALUES ('246', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -1, 'BKS', '', '');
5387 INSERT INTO `marc_subfield_structure` VALUES ('246', 'i', 'Display text', 'Display text', 0, 0, '', 2, '', '', '', NULL, -1, 'BKS', '', '');
5388 INSERT INTO `marc_subfield_structure` VALUES ('246', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5389 INSERT INTO `marc_subfield_structure` VALUES ('246', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5390 INSERT INTO `marc_subfield_structure` VALUES ('247', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5391 INSERT INTO `marc_subfield_structure` VALUES ('247', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5392 INSERT INTO `marc_subfield_structure` VALUES ('247', 'a', 'Title', 'Title', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5393 INSERT INTO `marc_subfield_structure` VALUES ('247', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5394 INSERT INTO `marc_subfield_structure` VALUES ('247', 'd', 'Designation of section (SE) [OBSOLETE]', 'Designation of section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5395 INSERT INTO `marc_subfield_structure` VALUES ('247', 'e', 'Name of part/section (SE) [OBSOLETE]', 'Name of part/section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5396 INSERT INTO `marc_subfield_structure` VALUES ('247', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5397 INSERT INTO `marc_subfield_structure` VALUES ('247', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5398 INSERT INTO `marc_subfield_structure` VALUES ('247', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5399 INSERT INTO `marc_subfield_structure` VALUES ('247', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5400 INSERT INTO `marc_subfield_structure` VALUES ('247', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5401 INSERT INTO `marc_subfield_structure` VALUES ('247', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5402 INSERT INTO `marc_subfield_structure` VALUES ('250', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5403 INSERT INTO `marc_subfield_structure` VALUES ('250', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5404 INSERT INTO `marc_subfield_structure` VALUES ('250', 'a', 'Edition statement', 'Edition statement', 0, 0, '', 2, '', '', '', NULL, 0, 'BKS', '', '');
5405 INSERT INTO `marc_subfield_structure` VALUES ('250', 'b', 'Remainder of edition statement', 'Remainder of edition statement', 0, 0, '', 2, '', '', '', NULL, 0, 'BKS', '', '');
5406 INSERT INTO `marc_subfield_structure` VALUES ('254', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5407 INSERT INTO `marc_subfield_structure` VALUES ('254', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5408 INSERT INTO `marc_subfield_structure` VALUES ('254', 'a', 'Musical presentation statement', 'Musical presentation statement', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5409 INSERT INTO `marc_subfield_structure` VALUES ('255', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5410 INSERT INTO `marc_subfield_structure` VALUES ('255', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5411 INSERT INTO `marc_subfield_structure` VALUES ('255', 'a', 'Statement of scale', 'Statement of scale', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5412 INSERT INTO `marc_subfield_structure` VALUES ('255', 'b', 'Statement of projection', 'Statement of projection', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5413 INSERT INTO `marc_subfield_structure` VALUES ('255', 'c', 'Statement of coordinates', 'Statement of coordinates', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5414 INSERT INTO `marc_subfield_structure` VALUES ('255', 'd', 'Statement of zone', 'Statement of zone', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5415 INSERT INTO `marc_subfield_structure` VALUES ('255', 'e', 'Statement of equinox', 'Statement of equinox', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5416 INSERT INTO `marc_subfield_structure` VALUES ('255', 'f', 'Outer G-ring coordinate pairs', 'Outer G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5417 INSERT INTO `marc_subfield_structure` VALUES ('255', 'g', 'Exclusion G-ring coordinate pairs', 'Exclusion G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5418 INSERT INTO `marc_subfield_structure` VALUES ('256', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5419 INSERT INTO `marc_subfield_structure` VALUES ('256', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5420 INSERT INTO `marc_subfield_structure` VALUES ('256', 'a', 'Computer file characteristics', 'Computer file characteristics', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5421 INSERT INTO `marc_subfield_structure` VALUES ('257', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5422 INSERT INTO `marc_subfield_structure` VALUES ('257', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5423 INSERT INTO `marc_subfield_structure` VALUES ('257', 'a', 'Country of producing entity', 'Country of producing entity', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5424 INSERT INTO `marc_subfield_structure` VALUES ('258', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5425 INSERT INTO `marc_subfield_structure` VALUES ('258', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5426 INSERT INTO `marc_subfield_structure` VALUES ('258', 'a', 'Issuing jurisdiction', 'Issuing jurisdiction', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5427 INSERT INTO `marc_subfield_structure` VALUES ('258', 'b', 'Denomination', 'Denomination', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5428 INSERT INTO `marc_subfield_structure` VALUES ('260', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5429 INSERT INTO `marc_subfield_structure` VALUES ('260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5430 INSERT INTO `marc_subfield_structure` VALUES ('260', 'a', 'Place of publication, distribution, etc', 'Place of publication, distribution, etc', 1, 0, 'biblioitems.place', 2, '', '', '', NULL, 0, 'BKS', '', '');
5431 INSERT INTO `marc_subfield_structure` VALUES ('260', 'b', 'Name of publisher, distributor, etc', 'Name of publisher, distributor, etc', 1, 0, 'biblioitems.publishercode', 2, '', '', '', NULL, 0, 'BKS', '', '');
5432 INSERT INTO `marc_subfield_structure` VALUES ('260', 'c', 'Date of copyright, publication, distribution, etc', 'Date of publication, distribution, etc', 1, 0, 'biblio.copyrightdate', 2, '', '', '', NULL, 0, 'BKS', '', '');
5433 INSERT INTO `marc_subfield_structure` VALUES ('260', 'd', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5434 INSERT INTO `marc_subfield_structure` VALUES ('260', 'e', 'Place of manufacture', 'Place of manufacture', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5435 INSERT INTO `marc_subfield_structure` VALUES ('260', 'f', 'Manufacturer', 'Manufacturer', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5436 INSERT INTO `marc_subfield_structure` VALUES ('260', 'g', 'Date of manufacture', 'Date of manufacture', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5437 INSERT INTO `marc_subfield_structure` VALUES ('260', 'k', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5438 INSERT INTO `marc_subfield_structure` VALUES ('260', 'l', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5439 INSERT INTO `marc_subfield_structure` VALUES ('261', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5440 INSERT INTO `marc_subfield_structure` VALUES ('261', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5441 INSERT INTO `marc_subfield_structure` VALUES ('261', 'a', 'Producing company', 'Producing company', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5442 INSERT INTO `marc_subfield_structure` VALUES ('261', 'b', 'Releasing company (primary distributor)', 'Releasing company (primary distributor)', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5443 INSERT INTO `marc_subfield_structure` VALUES ('261', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5444 INSERT INTO `marc_subfield_structure` VALUES ('261', 'd', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5445 INSERT INTO `marc_subfield_structure` VALUES ('261', 'e', 'Contractual producer', 'Contractual producer', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5446 INSERT INTO `marc_subfield_structure` VALUES ('261', 'f', 'Place of production, release, etc.', 'Place of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5447 INSERT INTO `marc_subfield_structure` VALUES ('262', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5448 INSERT INTO `marc_subfield_structure` VALUES ('262', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5449 INSERT INTO `marc_subfield_structure` VALUES ('262', 'a', 'Place of production, release, etc.', 'Place of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5450 INSERT INTO `marc_subfield_structure` VALUES ('262', 'b', 'Publisher or trade name', 'Publisher or trade name', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5451 INSERT INTO `marc_subfield_structure` VALUES ('262', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5452 INSERT INTO `marc_subfield_structure` VALUES ('262', 'k', 'Serial identification', 'Serial identification', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5453 INSERT INTO `marc_subfield_structure` VALUES ('262', 'l', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5454 INSERT INTO `marc_subfield_structure` VALUES ('263', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5455 INSERT INTO `marc_subfield_structure` VALUES ('263', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5456 INSERT INTO `marc_subfield_structure` VALUES ('263', 'a', 'Projected publication date', 'Projected publication date', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5457 INSERT INTO `marc_subfield_structure` VALUES ('265', '6', 'Linkage [OBSOLETE]', 'Linkage [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5458 INSERT INTO `marc_subfield_structure` VALUES ('265', 'a', 'Source for acquisition/subscription address [OBSOLETE]', 'Source for acquisition/subscription address [OBSOLETE]', 1, 0, '', 2, '', '', '', NULL, -6, 'BKS', '', '');
5459 INSERT INTO `marc_subfield_structure` VALUES ('270', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5460 INSERT INTO `marc_subfield_structure` VALUES ('270', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5461 INSERT INTO `marc_subfield_structure` VALUES ('270', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5462 INSERT INTO `marc_subfield_structure` VALUES ('270', 'a', 'Address', 'Address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5463 INSERT INTO `marc_subfield_structure` VALUES ('270', 'b', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5464 INSERT INTO `marc_subfield_structure` VALUES ('270', 'c', 'State or province', 'State or province', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5465 INSERT INTO `marc_subfield_structure` VALUES ('270', 'd', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5466 INSERT INTO `marc_subfield_structure` VALUES ('270', 'e', 'Postal code', 'Postal code', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5467 INSERT INTO `marc_subfield_structure` VALUES ('270', 'f', 'Terms preceding attention name', 'Terms preceding attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5468 INSERT INTO `marc_subfield_structure` VALUES ('270', 'g', 'Attention name', 'Attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5469 INSERT INTO `marc_subfield_structure` VALUES ('270', 'h', 'Attention position', 'Attention position', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5470 INSERT INTO `marc_subfield_structure` VALUES ('270', 'i', 'Type of address', 'Type of address', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5471 INSERT INTO `marc_subfield_structure` VALUES ('270', 'j', 'Specialized telephone number', 'Specialized telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5472 INSERT INTO `marc_subfield_structure` VALUES ('270', 'k', 'Telephone number', 'Telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5473 INSERT INTO `marc_subfield_structure` VALUES ('270', 'l', 'Fax number', 'Fax number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5474 INSERT INTO `marc_subfield_structure` VALUES ('270', 'm', 'Electronic mail address', 'Electronic mail address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5475 INSERT INTO `marc_subfield_structure` VALUES ('270', 'n', 'TDD or TTY number', 'TDD or TTY number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5476 INSERT INTO `marc_subfield_structure` VALUES ('270', 'p', 'Contact person', 'Contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5477 INSERT INTO `marc_subfield_structure` VALUES ('270', 'q', 'Title of contact person', 'Title of contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5478 INSERT INTO `marc_subfield_structure` VALUES ('270', 'r', 'Hours', 'Hours', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5479 INSERT INTO `marc_subfield_structure` VALUES ('270', 'z', 'Public note', 'Public note', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5480 INSERT INTO `marc_subfield_structure` VALUES ('300', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5481 INSERT INTO `marc_subfield_structure` VALUES ('300', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5482 INSERT INTO `marc_subfield_structure` VALUES ('300', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5483 INSERT INTO `marc_subfield_structure` VALUES ('300', 'a', 'Extent', 'Extent', 1, 1, 'biblioitems.pages', 3, '', '', '', NULL, 0, 'BKS', '', '');
5484 INSERT INTO `marc_subfield_structure` VALUES ('300', 'b', 'Other physical details', 'Other physical details', 0, 0, 'biblioitems.illus', 3, '', '', '', 0, 0, 'BKS', '', '');
5485 INSERT INTO `marc_subfield_structure` VALUES ('300', 'c', 'Dimensions', 'Dimensions', 1, 0, 'biblioitems.size', 3, '', '', '', NULL, 0, 'BKS', '', '');
5486 INSERT INTO `marc_subfield_structure` VALUES ('300', 'd', 'Accompanying material [OBSOLETE, CAN/MARC]', 'Accompanying material [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5487 INSERT INTO `marc_subfield_structure` VALUES ('300', 'e', 'Accompanying material', 'Accompanying material', 0, 0, '', 3, '', '', '', NULL, 0, 'BKS', '', '');
5488 INSERT INTO `marc_subfield_structure` VALUES ('300', 'f', 'Type of unit', 'Type of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'BKS', '', '');
5489 INSERT INTO `marc_subfield_structure` VALUES ('300', 'g', 'Size of unit', 'Size of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'BKS', '', '');
5490 INSERT INTO `marc_subfield_structure` VALUES ('300', 'k', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5491 INSERT INTO `marc_subfield_structure` VALUES ('300', 'm', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5492 INSERT INTO `marc_subfield_structure` VALUES ('300', 'n', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5493 INSERT INTO `marc_subfield_structure` VALUES ('301', 'a', 'Extent of item', 'Extent of item', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5494 INSERT INTO `marc_subfield_structure` VALUES ('301', 'b', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5495 INSERT INTO `marc_subfield_structure` VALUES ('301', 'c', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', NULL, NULL, -6, 'BKS', '', '');
5496 INSERT INTO `marc_subfield_structure` VALUES ('301', 'd', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5497 INSERT INTO `marc_subfield_structure` VALUES ('301', 'e', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5498 INSERT INTO `marc_subfield_structure` VALUES ('301', 'f', 'Speed', 'Speed', 0, 0, '', 3, '', '', NULL, NULL, -6, 'BKS', '', '');
5499 INSERT INTO `marc_subfield_structure` VALUES ('302', 'a', 'Page count', 'Page count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'BKS', '', '');
5500 INSERT INTO `marc_subfield_structure` VALUES ('303', 'a', 'Unit count', 'Unit count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'BKS', '', '');
5501 INSERT INTO `marc_subfield_structure` VALUES ('304', 'a', 'Linear footage', 'Linear footage', 0, 0, '', 3, '', '', NULL, NULL, -6, 'BKS', '', '');
5502 INSERT INTO `marc_subfield_structure` VALUES ('305', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5503 INSERT INTO `marc_subfield_structure` VALUES ('305', 'a', 'Extent', 'Extent', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5504 INSERT INTO `marc_subfield_structure` VALUES ('305', 'b', 'Other physical details', 'Other physical details', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5505 INSERT INTO `marc_subfield_structure` VALUES ('305', 'c', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', NULL, NULL, -6, 'BKS', '', '');
5506 INSERT INTO `marc_subfield_structure` VALUES ('305', 'd', 'Microgroove or standard', 'Microgroove or standard', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5507 INSERT INTO `marc_subfield_structure` VALUES ('305', 'e', 'Stereophonic, monaural', 'Stereophonic, monaural', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5508 INSERT INTO `marc_subfield_structure` VALUES ('305', 'f', 'Number of tracks', 'Number of tracks', 0, 0, '', 3, '', '', NULL, NULL, -6, 'BKS', '', '');
5509 INSERT INTO `marc_subfield_structure` VALUES ('305', 'm', 'Serial identification', 'Serial identification', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5510 INSERT INTO `marc_subfield_structure` VALUES ('305', 'n', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 3, '', '', NULL, NULL, -6, 'BKS', '', '');
5511 INSERT INTO `marc_subfield_structure` VALUES ('306', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5512 INSERT INTO `marc_subfield_structure` VALUES ('306', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5513 INSERT INTO `marc_subfield_structure` VALUES ('306', 'a', 'Playing time', 'Playing time', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5514 INSERT INTO `marc_subfield_structure` VALUES ('307', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5515 INSERT INTO `marc_subfield_structure` VALUES ('307', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5516 INSERT INTO `marc_subfield_structure` VALUES ('307', 'a', 'Hours', 'Hours', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5517 INSERT INTO `marc_subfield_structure` VALUES ('307', 'b', 'Additional information', 'Additional information', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5518 INSERT INTO `marc_subfield_structure` VALUES ('308', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5519 INSERT INTO `marc_subfield_structure` VALUES ('308', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5520 INSERT INTO `marc_subfield_structure` VALUES ('308', 'a', 'Number of reels', 'Number of reels', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5521 INSERT INTO `marc_subfield_structure` VALUES ('308', 'b', 'Footage', 'Footage', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5522 INSERT INTO `marc_subfield_structure` VALUES ('308', 'c', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5523 INSERT INTO `marc_subfield_structure` VALUES ('308', 'd', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5524 INSERT INTO `marc_subfield_structure` VALUES ('308', 'e', 'Width', 'Width', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5525 INSERT INTO `marc_subfield_structure` VALUES ('308', 'f', 'Presentation format', 'Presentation format', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5526 INSERT INTO `marc_subfield_structure` VALUES ('310', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5527 INSERT INTO `marc_subfield_structure` VALUES ('310', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5528 INSERT INTO `marc_subfield_structure` VALUES ('310', 'a', 'Current publication frequency', 'Current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5529 INSERT INTO `marc_subfield_structure` VALUES ('310', 'b', 'Date of current publication frequency', 'Date of current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5530 INSERT INTO `marc_subfield_structure` VALUES ('315', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5531 INSERT INTO `marc_subfield_structure` VALUES ('315', 'a', 'Frequency', 'Frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5532 INSERT INTO `marc_subfield_structure` VALUES ('315', 'b', 'Dates of frequency', 'Dates of frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5533 INSERT INTO `marc_subfield_structure` VALUES ('321', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5534 INSERT INTO `marc_subfield_structure` VALUES ('321', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5535 INSERT INTO `marc_subfield_structure` VALUES ('321', 'a', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5536 INSERT INTO `marc_subfield_structure` VALUES ('321', 'b', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5537 INSERT INTO `marc_subfield_structure` VALUES ('340', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5538 INSERT INTO `marc_subfield_structure` VALUES ('340', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5539 INSERT INTO `marc_subfield_structure` VALUES ('340', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5540 INSERT INTO `marc_subfield_structure` VALUES ('340', 'a', 'Material base and configuration', 'Material base and configuration', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5541 INSERT INTO `marc_subfield_structure` VALUES ('340', 'b', 'Dimensions', 'Dimensions', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5542 INSERT INTO `marc_subfield_structure` VALUES ('340', 'c', 'Materials applied to surface', 'Materials applied to surface', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5543 INSERT INTO `marc_subfield_structure` VALUES ('340', 'd', 'Information recording technique', 'Information recording technique', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5544 INSERT INTO `marc_subfield_structure` VALUES ('340', 'e', 'Support', 'Support', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5545 INSERT INTO `marc_subfield_structure` VALUES ('340', 'f', 'Production rate/ratio', 'Production rate/ratio', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5546 INSERT INTO `marc_subfield_structure` VALUES ('340', 'h', 'Location within medium', 'Location within medium', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5547 INSERT INTO `marc_subfield_structure` VALUES ('340', 'i', 'Technical specifications of medium', 'Technical specifications of medium', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5548 INSERT INTO `marc_subfield_structure` VALUES ('342', '2', 'Reference method used', 'Reference method used', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5549 INSERT INTO `marc_subfield_structure` VALUES ('342', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5550 INSERT INTO `marc_subfield_structure` VALUES ('342', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5551 INSERT INTO `marc_subfield_structure` VALUES ('342', 'a', 'Name', 'Name', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5552 INSERT INTO `marc_subfield_structure` VALUES ('342', 'b', 'Coordinate or distance units', 'Coordinate or distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5553 INSERT INTO `marc_subfield_structure` VALUES ('342', 'c', 'Latitude resolution', 'Latitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5554 INSERT INTO `marc_subfield_structure` VALUES ('342', 'd', 'Longitude resolution', 'Longitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5555 INSERT INTO `marc_subfield_structure` VALUES ('342', 'e', 'Standard parallel or oblique line latitude', 'Standard parallel or oblique line latitude', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5556 INSERT INTO `marc_subfield_structure` VALUES ('342', 'f', 'Oblique line longitude', 'Oblique line longitude', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5557 INSERT INTO `marc_subfield_structure` VALUES ('342', 'g', 'Longitude of central meridian or projection center', 'Longitude of central meridian or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5558 INSERT INTO `marc_subfield_structure` VALUES ('342', 'h', 'Latitude of projection origin or projection center', 'Latitude of projection origin or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5559 INSERT INTO `marc_subfield_structure` VALUES ('342', 'i', 'False easting', 'False easting', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5560 INSERT INTO `marc_subfield_structure` VALUES ('342', 'j', 'False northing', 'False northing', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5561 INSERT INTO `marc_subfield_structure` VALUES ('342', 'k', 'Scale factor', 'Scale factor', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5562 INSERT INTO `marc_subfield_structure` VALUES ('342', 'l', 'Height of perspective point above surface', 'Height of perspective point above surface', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5563 INSERT INTO `marc_subfield_structure` VALUES ('342', 'm', 'Azimuthal angle', 'Azimuthal angle', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5564 INSERT INTO `marc_subfield_structure` VALUES ('342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole', 'Azimuth measure point longitude or straight vertical longitude from pole', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5565 INSERT INTO `marc_subfield_structure` VALUES ('342', 'o', 'Landsat number and path number', 'Landsat number and path number', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5566 INSERT INTO `marc_subfield_structure` VALUES ('342', 'p', 'Zone identifier', 'Zone identifier', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5567 INSERT INTO `marc_subfield_structure` VALUES ('342', 'q', 'Ellipsoid name', 'Ellipsoid name', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5568 INSERT INTO `marc_subfield_structure` VALUES ('342', 'r', 'Semi-major axis', 'Semi-major axis', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5569 INSERT INTO `marc_subfield_structure` VALUES ('342', 's', 'Denominator of flattening ratio', 'Denominator of flattening ratio', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5570 INSERT INTO `marc_subfield_structure` VALUES ('342', 't', 'Vertical resolution', 'Vertical resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5571 INSERT INTO `marc_subfield_structure` VALUES ('342', 'u', 'Vertical encoding method', 'Vertical encoding method', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5572 INSERT INTO `marc_subfield_structure` VALUES ('342', 'v', 'Local planar, local, or other projection or grid description', 'Local planar, local, or other projection or grid description', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5573 INSERT INTO `marc_subfield_structure` VALUES ('342', 'w', 'Local planar or local georeference information', 'Local planar or local georeference information', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5574 INSERT INTO `marc_subfield_structure` VALUES ('343', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5575 INSERT INTO `marc_subfield_structure` VALUES ('343', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5576 INSERT INTO `marc_subfield_structure` VALUES ('343', 'a', 'Planar coordinate encoding method', 'Planar coordinate encoding method', 1, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5577 INSERT INTO `marc_subfield_structure` VALUES ('343', 'b', 'Planar distance units', 'Planar distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5578 INSERT INTO `marc_subfield_structure` VALUES ('343', 'c', 'Abscissa resolution', 'Abscissa resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5579 INSERT INTO `marc_subfield_structure` VALUES ('343', 'd', 'Ordinate resolution', 'Ordinate resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5580 INSERT INTO `marc_subfield_structure` VALUES ('343', 'e', 'Distance resolution', 'Distance resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5581 INSERT INTO `marc_subfield_structure` VALUES ('343', 'f', 'Bearing resolution', 'Bearing resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5582 INSERT INTO `marc_subfield_structure` VALUES ('343', 'g', 'Bearing unit', 'Bearing unit', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5583 INSERT INTO `marc_subfield_structure` VALUES ('343', 'h', 'Bearing reference direction', 'Bearing reference direction', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5584 INSERT INTO `marc_subfield_structure` VALUES ('343', 'i', 'Bearing reference meridian', 'Bearing reference meridian', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
5585 INSERT INTO `marc_subfield_structure` VALUES ('350', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5586 INSERT INTO `marc_subfield_structure` VALUES ('350', 'a', 'Price', 'Price', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5587 INSERT INTO `marc_subfield_structure` VALUES ('350', 'b', 'Form of issue', 'Form of issue', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5588 INSERT INTO `marc_subfield_structure` VALUES ('351', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5589 INSERT INTO `marc_subfield_structure` VALUES ('351', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5590 INSERT INTO `marc_subfield_structure` VALUES ('351', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5591 INSERT INTO `marc_subfield_structure` VALUES ('351', 'a', 'Organization', 'Organization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5592 INSERT INTO `marc_subfield_structure` VALUES ('351', 'b', 'Arrangement', 'Arrangement', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5593 INSERT INTO `marc_subfield_structure` VALUES ('351', 'c', 'Hierarchical level', 'Hierarchical level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5594 INSERT INTO `marc_subfield_structure` VALUES ('352', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5595 INSERT INTO `marc_subfield_structure` VALUES ('352', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5596 INSERT INTO `marc_subfield_structure` VALUES ('352', 'a', 'Direct reference method', 'Direct reference method', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5597 INSERT INTO `marc_subfield_structure` VALUES ('352', 'b', 'Object type', 'Object type', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5598 INSERT INTO `marc_subfield_structure` VALUES ('352', 'c', 'Object count', 'Object count', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5599 INSERT INTO `marc_subfield_structure` VALUES ('352', 'd', 'Row count', 'Row count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5600 INSERT INTO `marc_subfield_structure` VALUES ('352', 'e', 'Column count', 'Column count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5601 INSERT INTO `marc_subfield_structure` VALUES ('352', 'f', 'Vertical count', 'Vertical count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5602 INSERT INTO `marc_subfield_structure` VALUES ('352', 'g', 'VPF topology level', 'VPF topology level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5603 INSERT INTO `marc_subfield_structure` VALUES ('352', 'i', 'Indirect reference description', 'Indirect reference description', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5604 INSERT INTO `marc_subfield_structure` VALUES ('355', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5605 INSERT INTO `marc_subfield_structure` VALUES ('355', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5606 INSERT INTO `marc_subfield_structure` VALUES ('355', 'a', 'Security classification', 'Security classification', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5607 INSERT INTO `marc_subfield_structure` VALUES ('355', 'b', 'Handling instructions', 'Handling instructions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5608 INSERT INTO `marc_subfield_structure` VALUES ('355', 'c', 'External dissemination information', 'External dissemination information', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5609 INSERT INTO `marc_subfield_structure` VALUES ('355', 'd', 'Downgrading or declassification event', 'Downgrading or declassification event', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5610 INSERT INTO `marc_subfield_structure` VALUES ('355', 'e', 'Classification system', 'Classification system', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5611 INSERT INTO `marc_subfield_structure` VALUES ('355', 'f', 'Country of origin code', 'Country of origin code', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5612 INSERT INTO `marc_subfield_structure` VALUES ('355', 'g', 'Downgrading date', 'Downgrading date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5613 INSERT INTO `marc_subfield_structure` VALUES ('355', 'h', 'Declassification date', 'Declassification date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5614 INSERT INTO `marc_subfield_structure` VALUES ('355', 'j', 'Authorization', 'Authorization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5615 INSERT INTO `marc_subfield_structure` VALUES ('357', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5616 INSERT INTO `marc_subfield_structure` VALUES ('357', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5617 INSERT INTO `marc_subfield_structure` VALUES ('357', 'a', 'Originator control term', 'Originator control term', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5618 INSERT INTO `marc_subfield_structure` VALUES ('357', 'b', 'Originating agency', 'Originating agency', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5619 INSERT INTO `marc_subfield_structure` VALUES ('357', 'c', 'Authorized recipients of material', 'Authorized recipients of material', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5620 INSERT INTO `marc_subfield_structure` VALUES ('357', 'g', 'Other restrictions', 'Other restrictions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5621 INSERT INTO `marc_subfield_structure` VALUES ('359', 'a', 'Rental price', 'Rental price', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5622 INSERT INTO `marc_subfield_structure` VALUES ('362', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5623 INSERT INTO `marc_subfield_structure` VALUES ('362', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5624 INSERT INTO `marc_subfield_structure` VALUES ('362', 'a', 'Dates of publication and/or sequential designation', 'Dates of publication and/or sequential designation', 0, 0, 'biblioitems.volumedesc', 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5625 INSERT INTO `marc_subfield_structure` VALUES ('362', 'z', 'Source of information', 'Source of information', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5626 INSERT INTO `marc_subfield_structure` VALUES ('365', '2', 'Source of price type code', 'Source of price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5627 INSERT INTO `marc_subfield_structure` VALUES ('365', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
5628 INSERT INTO `marc_subfield_structure` VALUES ('365', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
5629 INSERT INTO `marc_subfield_structure` VALUES ('365', 'a', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5630 INSERT INTO `marc_subfield_structure` VALUES ('365', 'b', 'Price amount', 'Price amount', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5631 INSERT INTO `marc_subfield_structure` VALUES ('365', 'c', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5632 INSERT INTO `marc_subfield_structure` VALUES ('365', 'd', 'Unit of pricing', 'Unit of pricing', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5633 INSERT INTO `marc_subfield_structure` VALUES ('365', 'e', 'Price note', 'Price note', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5634 INSERT INTO `marc_subfield_structure` VALUES ('365', 'f', 'Price effective from', 'Price effective from', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5635 INSERT INTO `marc_subfield_structure` VALUES ('365', 'g', 'Price effective until', 'Price effective until', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5636 INSERT INTO `marc_subfield_structure` VALUES ('365', 'h', 'Tax rate 1', 'Tax rate 1', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5637 INSERT INTO `marc_subfield_structure` VALUES ('365', 'i', 'Tax rate 2', 'Tax rate 2', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5638 INSERT INTO `marc_subfield_structure` VALUES ('365', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5639 INSERT INTO `marc_subfield_structure` VALUES ('365', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5640 INSERT INTO `marc_subfield_structure` VALUES ('365', 'm', 'Identification of pricing entity', 'Identification of pricing entity', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5641 INSERT INTO `marc_subfield_structure` VALUES ('366', '2', 'Source of availability status code', 'Source of availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5642 INSERT INTO `marc_subfield_structure` VALUES ('366', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
5643 INSERT INTO `marc_subfield_structure` VALUES ('366', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
5644 INSERT INTO `marc_subfield_structure` VALUES ('366', 'a', 'Publishers\' compressed title identification', 'Publishers\' compressed title identification', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5645 INSERT INTO `marc_subfield_structure` VALUES ('366', 'b', 'Detailed date of publication', 'Detailed date of publication', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5646 INSERT INTO `marc_subfield_structure` VALUES ('366', 'c', 'Availability status code', 'Availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5647 INSERT INTO `marc_subfield_structure` VALUES ('366', 'd', 'Expected next availability date', 'Expected next availability date', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5648 INSERT INTO `marc_subfield_structure` VALUES ('366', 'e', 'Note', 'Note', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5649 INSERT INTO `marc_subfield_structure` VALUES ('366', 'f', 'Publishers\' discount category', 'Publishers\' discount category', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5650 INSERT INTO `marc_subfield_structure` VALUES ('366', 'g', 'Date made out of print', 'Date made out of print', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5651 INSERT INTO `marc_subfield_structure` VALUES ('366', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5652 INSERT INTO `marc_subfield_structure` VALUES ('366', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5653 INSERT INTO `marc_subfield_structure` VALUES ('366', 'm', 'Identification of agency', 'Identification of agency', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
5654 INSERT INTO `marc_subfield_structure` VALUES ('400', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', 0, -6, 'BKS', '', '');
5655 INSERT INTO `marc_subfield_structure` VALUES ('400', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', 0, -6, 'BKS', '', '');
5656 INSERT INTO `marc_subfield_structure` VALUES ('400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', 0, -6, 'BKS', '', '');
5657 INSERT INTO `marc_subfield_structure` VALUES ('400', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
5658 INSERT INTO `marc_subfield_structure` VALUES ('400', 'a', 'Personal name', 'Personal name', 0, 0, '', 4, '', '', '', 0, -6, 'BKS', '', '');
5659 INSERT INTO `marc_subfield_structure` VALUES ('400', 'b', 'Numeration', 'Numeration', 0, 0, '', 4, '', '', '', 0, -6, 'BKS', '', '');
5660 INSERT INTO `marc_subfield_structure` VALUES ('400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 4, '', '', '', 0, -6, 'BKS', '', '');
5661 INSERT INTO `marc_subfield_structure` VALUES ('400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 4, '', '', '', 0, -6, 'BKS', '', '');
5662 INSERT INTO `marc_subfield_structure` VALUES ('400', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', 0, -6, 'BKS', '', '');
5663 INSERT INTO `marc_subfield_structure` VALUES ('400', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', 0, -6, 'BKS', '', '');
5664 INSERT INTO `marc_subfield_structure` VALUES ('400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', 0, -6, 'BKS', '', '');
5665 INSERT INTO `marc_subfield_structure` VALUES ('400', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', 0, -6, 'BKS', '', '');
5666 INSERT INTO `marc_subfield_structure` VALUES ('400', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', 0, -6, 'BKS', '', '');
5667 INSERT INTO `marc_subfield_structure` VALUES ('400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'BKS', '', '');
5668 INSERT INTO `marc_subfield_structure` VALUES ('400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'BKS', '', '');
5669 INSERT INTO `marc_subfield_structure` VALUES ('400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 4, '', '', '', 0, -6, 'BKS', '', '');
5670 INSERT INTO `marc_subfield_structure` VALUES ('400', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', 0, -6, 'BKS', '', '');
5671 INSERT INTO `marc_subfield_structure` VALUES ('400', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', 0, -6, 'BKS', '', '');
5672 INSERT INTO `marc_subfield_structure` VALUES ('400', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5673 INSERT INTO `marc_subfield_structure` VALUES ('400', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5674 INSERT INTO `marc_subfield_structure` VALUES ('410', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5675 INSERT INTO `marc_subfield_structure` VALUES ('410', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5676 INSERT INTO `marc_subfield_structure` VALUES ('410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5677 INSERT INTO `marc_subfield_structure` VALUES ('410', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'BKS', '', '');
5678 INSERT INTO `marc_subfield_structure` VALUES ('410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5679 INSERT INTO `marc_subfield_structure` VALUES ('410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5680 INSERT INTO `marc_subfield_structure` VALUES ('410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5681 INSERT INTO `marc_subfield_structure` VALUES ('410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5682 INSERT INTO `marc_subfield_structure` VALUES ('410', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5683 INSERT INTO `marc_subfield_structure` VALUES ('410', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5684 INSERT INTO `marc_subfield_structure` VALUES ('410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5685 INSERT INTO `marc_subfield_structure` VALUES ('410', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5686 INSERT INTO `marc_subfield_structure` VALUES ('410', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5687 INSERT INTO `marc_subfield_structure` VALUES ('410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5688 INSERT INTO `marc_subfield_structure` VALUES ('410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5689 INSERT INTO `marc_subfield_structure` VALUES ('410', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5690 INSERT INTO `marc_subfield_structure` VALUES ('410', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5691 INSERT INTO `marc_subfield_structure` VALUES ('410', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5692 INSERT INTO `marc_subfield_structure` VALUES ('410', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5693 INSERT INTO `marc_subfield_structure` VALUES ('411', '4', 'Relator code', 'Relator code', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5694 INSERT INTO `marc_subfield_structure` VALUES ('411', '6', 'Linkage', 'Linkage', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5695 INSERT INTO `marc_subfield_structure` VALUES ('411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5696 INSERT INTO `marc_subfield_structure` VALUES ('411', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
5697 INSERT INTO `marc_subfield_structure` VALUES ('411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5698 INSERT INTO `marc_subfield_structure` VALUES ('411', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5699 INSERT INTO `marc_subfield_structure` VALUES ('411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5700 INSERT INTO `marc_subfield_structure` VALUES ('411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5701 INSERT INTO `marc_subfield_structure` VALUES ('411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5702 INSERT INTO `marc_subfield_structure` VALUES ('411', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5703 INSERT INTO `marc_subfield_structure` VALUES ('411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5704 INSERT INTO `marc_subfield_structure` VALUES ('411', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5705 INSERT INTO `marc_subfield_structure` VALUES ('411', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5706 INSERT INTO `marc_subfield_structure` VALUES ('411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5707 INSERT INTO `marc_subfield_structure` VALUES ('411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5708 INSERT INTO `marc_subfield_structure` VALUES ('411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5709 INSERT INTO `marc_subfield_structure` VALUES ('411', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5710 INSERT INTO `marc_subfield_structure` VALUES ('411', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5711 INSERT INTO `marc_subfield_structure` VALUES ('411', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5712 INSERT INTO `marc_subfield_structure` VALUES ('411', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5713 INSERT INTO `marc_subfield_structure` VALUES ('440', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5714 INSERT INTO `marc_subfield_structure` VALUES ('440', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5715 INSERT INTO `marc_subfield_structure` VALUES ('440', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
5716 INSERT INTO `marc_subfield_structure` VALUES ('440', 'a', 'Title', 'Title', 0, 0, 'biblio.seriestitle', 4, '', '', '', NULL, 0, 'BKS', '', '');
5717 INSERT INTO `marc_subfield_structure` VALUES ('440', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 'biblioitems.number', 4, '', '', '', NULL, 0, 'BKS', '', '');
5718 INSERT INTO `marc_subfield_structure` VALUES ('440', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, 0, 'BKS', '', '');
5719 INSERT INTO `marc_subfield_structure` VALUES ('440', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, 'biblioitems.volume', 4, '', '', '', NULL, 0, 'BKS', '', '');
5720 INSERT INTO `marc_subfield_structure` VALUES ('440', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, 0, 'BKS', '', '');
5721 INSERT INTO `marc_subfield_structure` VALUES ('490', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5722 INSERT INTO `marc_subfield_structure` VALUES ('490', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', NULL, NULL, -6, 'BKS', '', '');
5723 INSERT INTO `marc_subfield_structure` VALUES ('490', 'a', 'Series statement', 'Series statement', 1, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5724 INSERT INTO `marc_subfield_structure` VALUES ('490', 'l', 'Library of Congress call number', 'Library of Congress call number', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5725 INSERT INTO `marc_subfield_structure` VALUES ('490', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 1, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5726 INSERT INTO `marc_subfield_structure` VALUES ('490', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'BKS', '', '');
5727 INSERT INTO `marc_subfield_structure` VALUES ('500', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5728 INSERT INTO `marc_subfield_structure` VALUES ('500', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5729 INSERT INTO `marc_subfield_structure` VALUES ('500', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5730 INSERT INTO `marc_subfield_structure` VALUES ('500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5731 INSERT INTO `marc_subfield_structure` VALUES ('500', 'a', 'General note', 'General note', 0, 0, 'biblio.notes', 5, '', '', '', NULL, -1, 'BKS', '', '');
5732 INSERT INTO `marc_subfield_structure` VALUES ('500', 'l', 'Library of Congress call number (SE) [OBSOLETE]', 'Library of Congress call number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5733 INSERT INTO `marc_subfield_structure` VALUES ('500', 'n', 'n (RLIN) [OBSOLETE]', 'n (RLIN) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5734 INSERT INTO `marc_subfield_structure` VALUES ('500', 'x', 'International Standard Serial Number (SE) [OBSOLETE]', 'International Standard Serial Number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5735 INSERT INTO `marc_subfield_structure` VALUES ('500', 'z', 'Source of note information (AM SE) [OBSOLETE]', 'Source of note information (AM SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5736 INSERT INTO `marc_subfield_structure` VALUES ('501', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5737 INSERT INTO `marc_subfield_structure` VALUES ('501', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5738 INSERT INTO `marc_subfield_structure` VALUES ('501', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5739 INSERT INTO `marc_subfield_structure` VALUES ('501', 'a', 'With note', 'With note', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5740 INSERT INTO `marc_subfield_structure` VALUES ('502', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5741 INSERT INTO `marc_subfield_structure` VALUES ('502', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5742 INSERT INTO `marc_subfield_structure` VALUES ('502', 'a', 'Dissertation note', 'Dissertation note', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5743 INSERT INTO `marc_subfield_structure` VALUES ('503', '8', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5744 INSERT INTO `marc_subfield_structure` VALUES ('503', 'a', 'Bibliographic history note', 'Bibliographic history note', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5745 INSERT INTO `marc_subfield_structure` VALUES ('504', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5746 INSERT INTO `marc_subfield_structure` VALUES ('504', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5747 INSERT INTO `marc_subfield_structure` VALUES ('504', 'a', 'Bibliography, etc', 'Bibliography, etc', 0, 0, '', 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5748 INSERT INTO `marc_subfield_structure` VALUES ('504', 'b', 'Number of references', 'Number of references', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5749 INSERT INTO `marc_subfield_structure` VALUES ('505', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5750 INSERT INTO `marc_subfield_structure` VALUES ('505', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5751 INSERT INTO `marc_subfield_structure` VALUES ('505', 'a', 'Formatted contents note', 'Formatted contents note', 0, 0, '', 5, '', '', '', NULL, -1, 'BKS', '', '');
5752 INSERT INTO `marc_subfield_structure` VALUES ('505', 'g', 'Miscellaneous information', 'Miscellaneous information', 1, 0, '', 5, '', '', '', NULL, -1, 'BKS', '', '');
5753 INSERT INTO `marc_subfield_structure` VALUES ('505', 'r', 'Statement of responsibility', 'Statement of responsibility', 1, 0, '', 5, '', '', '', NULL, -1, 'BKS', '', '');
5754 INSERT INTO `marc_subfield_structure` VALUES ('505', 't', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -1, 'BKS', '', '');
5755 INSERT INTO `marc_subfield_structure` VALUES ('505', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'BKS', '', '');
5756 INSERT INTO `marc_subfield_structure` VALUES ('506', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5757 INSERT INTO `marc_subfield_structure` VALUES ('506', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5758 INSERT INTO `marc_subfield_structure` VALUES ('506', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5759 INSERT INTO `marc_subfield_structure` VALUES ('506', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5760 INSERT INTO `marc_subfield_structure` VALUES ('506', 'a', 'Terms governing access', 'Terms governing access', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5761 INSERT INTO `marc_subfield_structure` VALUES ('506', 'b', 'Jurisdiction', 'Jurisdiction', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5762 INSERT INTO `marc_subfield_structure` VALUES ('506', 'c', 'Physical access provisions', 'Physical access provisions', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5763 INSERT INTO `marc_subfield_structure` VALUES ('506', 'd', 'Authorized users', 'Authorized users', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5764 INSERT INTO `marc_subfield_structure` VALUES ('506', 'e', 'Authorization', 'Authorization', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5765 INSERT INTO `marc_subfield_structure` VALUES ('506', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'BKS', '', '');
5766 INSERT INTO `marc_subfield_structure` VALUES ('507', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5767 INSERT INTO `marc_subfield_structure` VALUES ('507', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5768 INSERT INTO `marc_subfield_structure` VALUES ('507', 'a', 'Representative fraction of scale note', 'Representative fraction of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5769 INSERT INTO `marc_subfield_structure` VALUES ('507', 'b', 'Remainder of scale note', 'Remainder of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5770 INSERT INTO `marc_subfield_structure` VALUES ('508', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5771 INSERT INTO `marc_subfield_structure` VALUES ('508', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5772 INSERT INTO `marc_subfield_structure` VALUES ('508', 'a', 'Creation/production credits note', 'Creation/production credits note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5773 INSERT INTO `marc_subfield_structure` VALUES ('509', 'a', 'Informal Notes', 'Informal Notes', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5774 INSERT INTO `marc_subfield_structure` VALUES ('510', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5775 INSERT INTO `marc_subfield_structure` VALUES ('510', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5776 INSERT INTO `marc_subfield_structure` VALUES ('510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5777 INSERT INTO `marc_subfield_structure` VALUES ('510', 'a', 'Name of source', 'Name of source', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5778 INSERT INTO `marc_subfield_structure` VALUES ('510', 'b', 'Coverage of source', 'Coverage of source', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5779 INSERT INTO `marc_subfield_structure` VALUES ('510', 'c', 'Location within source', 'Location within source', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5780 INSERT INTO `marc_subfield_structure` VALUES ('510', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5781 INSERT INTO `marc_subfield_structure` VALUES ('511', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5782 INSERT INTO `marc_subfield_structure` VALUES ('511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5783 INSERT INTO `marc_subfield_structure` VALUES ('511', 'a', 'Participant or performer note', 'Participant or performer note', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5784 INSERT INTO `marc_subfield_structure` VALUES ('512', '6', 'Linkage', 'Linkage', 0, 0, '', -1, '', '', '', NULL, -6, 'BKS', '', '');
5785 INSERT INTO `marc_subfield_structure` VALUES ('512', 'a', 'Earlier or later volumes separately cataloged note', 'Earlier or later volumes separately cataloged note', 0, 0, '', -1, '', '', '', NULL, -6, 'BKS', '', '');
5786 INSERT INTO `marc_subfield_structure` VALUES ('513', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5787 INSERT INTO `marc_subfield_structure` VALUES ('513', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5788 INSERT INTO `marc_subfield_structure` VALUES ('513', 'a', 'Type of report', 'Type of report', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5789 INSERT INTO `marc_subfield_structure` VALUES ('513', 'b', 'Period covered', 'Period covered', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5790 INSERT INTO `marc_subfield_structure` VALUES ('514', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5791 INSERT INTO `marc_subfield_structure` VALUES ('514', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5792 INSERT INTO `marc_subfield_structure` VALUES ('514', 'a', 'Attribute accuracy report', 'Attribute accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5793 INSERT INTO `marc_subfield_structure` VALUES ('514', 'b', 'Attribute accuracy value', 'Attribute accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5794 INSERT INTO `marc_subfield_structure` VALUES ('514', 'c', 'Attribute accuracy explanation', 'Attribute accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5795 INSERT INTO `marc_subfield_structure` VALUES ('514', 'd', 'Logical consistency report', 'Logical consistency report', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5796 INSERT INTO `marc_subfield_structure` VALUES ('514', 'e', 'Completeness report', 'Completeness report', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5797 INSERT INTO `marc_subfield_structure` VALUES ('514', 'f', 'Horizontal position accuracy report', 'Horizontal position accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5798 INSERT INTO `marc_subfield_structure` VALUES ('514', 'g', 'Horizontal position accuracy value', 'Horizontal position accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5799 INSERT INTO `marc_subfield_structure` VALUES ('514', 'h', 'Horizontal position accuracy explanation', 'Horizontal position accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5800 INSERT INTO `marc_subfield_structure` VALUES ('514', 'i', 'Vertical positional accuracy report', 'Vertical positional accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5801 INSERT INTO `marc_subfield_structure` VALUES ('514', 'j', 'Vertical positional accuracy value', 'Vertical positional accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5802 INSERT INTO `marc_subfield_structure` VALUES ('514', 'k', 'Vertical positional accuracy explanation', 'Vertical positional accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5803 INSERT INTO `marc_subfield_structure` VALUES ('514', 'm', 'Cloud cover', 'Cloud cover', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5804 INSERT INTO `marc_subfield_structure` VALUES ('514', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'BKS', '', '');
5805 INSERT INTO `marc_subfield_structure` VALUES ('514', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5806 INSERT INTO `marc_subfield_structure` VALUES ('515', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5807 INSERT INTO `marc_subfield_structure` VALUES ('515', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5808 INSERT INTO `marc_subfield_structure` VALUES ('515', 'a', 'Numbering peculiarities note', 'Numbering peculiarities note', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5809 INSERT INTO `marc_subfield_structure` VALUES ('515', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, '', -1, '', '', '', NULL, -6, 'BKS', '', '');
5810 INSERT INTO `marc_subfield_structure` VALUES ('516', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5811 INSERT INTO `marc_subfield_structure` VALUES ('516', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5812 INSERT INTO `marc_subfield_structure` VALUES ('516', 'a', 'Type of computer file or data note', 'Type of computer file or data note', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5813 INSERT INTO `marc_subfield_structure` VALUES ('517', 'a', 'Different formats', 'Different formats', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5814 INSERT INTO `marc_subfield_structure` VALUES ('517', 'b', 'Content descriptors', 'Content descriptors', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5815 INSERT INTO `marc_subfield_structure` VALUES ('517', 'c', 'Additional animation techniques', 'Additional animation techniques', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5816 INSERT INTO `marc_subfield_structure` VALUES ('518', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5817 INSERT INTO `marc_subfield_structure` VALUES ('518', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5818 INSERT INTO `marc_subfield_structure` VALUES ('518', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5819 INSERT INTO `marc_subfield_structure` VALUES ('518', 'a', 'Date/time and place of an event note', 'Date/time and place of an event note', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5820 INSERT INTO `marc_subfield_structure` VALUES ('520', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5821 INSERT INTO `marc_subfield_structure` VALUES ('520', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5822 INSERT INTO `marc_subfield_structure` VALUES ('520', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5823 INSERT INTO `marc_subfield_structure` VALUES ('520', 'a', 'Summary, etc', 'Summary, etc', 0, 0, 'biblio.abstract', 5, '', '', '', NULL, -1, 'BKS', '', '');
5824 INSERT INTO `marc_subfield_structure` VALUES ('520', 'b', 'Expansion of summary note', 'Expansion of summary note', 0, 0, '', 5, '', '', '', NULL, -1, 'BKS', '', '');
5825 INSERT INTO `marc_subfield_structure` VALUES ('520', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'BKS', '', '');
5826 INSERT INTO `marc_subfield_structure` VALUES ('520', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5827 INSERT INTO `marc_subfield_structure` VALUES ('521', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5828 INSERT INTO `marc_subfield_structure` VALUES ('521', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5829 INSERT INTO `marc_subfield_structure` VALUES ('521', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5830 INSERT INTO `marc_subfield_structure` VALUES ('521', 'a', 'Target audience note', 'Target audience note', 1, 0, NULL, 5, NULL, NULL, '', NULL, 0, 'BKS', '', '');
5831 INSERT INTO `marc_subfield_structure` VALUES ('521', 'b', 'Source', 'Source', 0, 0, NULL, 5, NULL, NULL, '', NULL, 0, 'BKS', '', '');
5832 INSERT INTO `marc_subfield_structure` VALUES ('522', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5833 INSERT INTO `marc_subfield_structure` VALUES ('522', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5834 INSERT INTO `marc_subfield_structure` VALUES ('522', 'a', 'Geographic coverage note', 'Geographic coverage note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5835 INSERT INTO `marc_subfield_structure` VALUES ('523', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5836 INSERT INTO `marc_subfield_structure` VALUES ('523', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5837 INSERT INTO `marc_subfield_structure` VALUES ('523', 'a', 'Time period of content note', 'Time period of content note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5838 INSERT INTO `marc_subfield_structure` VALUES ('524', '2', 'Source of schema used', 'Source of schema used', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5839 INSERT INTO `marc_subfield_structure` VALUES ('524', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5840 INSERT INTO `marc_subfield_structure` VALUES ('524', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5841 INSERT INTO `marc_subfield_structure` VALUES ('524', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5842 INSERT INTO `marc_subfield_structure` VALUES ('524', 'a', 'Preferred citation of described materials note', 'Preferred citation of described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5843 INSERT INTO `marc_subfield_structure` VALUES ('525', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5844 INSERT INTO `marc_subfield_structure` VALUES ('525', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5845 INSERT INTO `marc_subfield_structure` VALUES ('525', 'a', 'Supplement note', 'Supplement note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5846 INSERT INTO `marc_subfield_structure` VALUES ('525', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5847 INSERT INTO `marc_subfield_structure` VALUES ('526', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5848 INSERT INTO `marc_subfield_structure` VALUES ('526', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5849 INSERT INTO `marc_subfield_structure` VALUES ('526', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5850 INSERT INTO `marc_subfield_structure` VALUES ('526', 'a', 'Program name', 'Program name', 0, 0, '', 5, '', '', '', NULL, -1, 'BKS', '', '');
5851 INSERT INTO `marc_subfield_structure` VALUES ('526', 'b', 'Interest level', 'Interest level', 0, 0, '', 5, '', '', '', NULL, -1, 'BKS', '', '');
5852 INSERT INTO `marc_subfield_structure` VALUES ('526', 'c', 'Reading level', 'Reading level', 0, 0, '', 5, '', '', '', NULL, -1, 'BKS', '', '');
5853 INSERT INTO `marc_subfield_structure` VALUES ('526', 'd', 'Title point value', 'Title point value', 0, 0, '', 5, '', '', '', NULL, -1, 'BKS', '', '');
5854 INSERT INTO `marc_subfield_structure` VALUES ('526', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5855 INSERT INTO `marc_subfield_structure` VALUES ('526', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 5, '', '', '', NULL, 6, 'BKS', '', '');
5856 INSERT INTO `marc_subfield_structure` VALUES ('526', 'z', 'Public note', 'Public note', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5857 INSERT INTO `marc_subfield_structure` VALUES ('527', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5858 INSERT INTO `marc_subfield_structure` VALUES ('527', 'a', 'Censorship note', 'Censorship note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5859 INSERT INTO `marc_subfield_structure` VALUES ('530', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5860 INSERT INTO `marc_subfield_structure` VALUES ('530', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5861 INSERT INTO `marc_subfield_structure` VALUES ('530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5862 INSERT INTO `marc_subfield_structure` VALUES ('530', 'a', 'Additional physical form available note', 'Additional physical form available note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5863 INSERT INTO `marc_subfield_structure` VALUES ('530', 'b', 'Availability source', 'Availability source', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5864 INSERT INTO `marc_subfield_structure` VALUES ('530', 'c', 'Availability conditions', 'Availability conditions', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5865 INSERT INTO `marc_subfield_structure` VALUES ('530', 'd', 'Order number', 'Order number', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5866 INSERT INTO `marc_subfield_structure` VALUES ('530', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'BKS', '', '');
5867 INSERT INTO `marc_subfield_structure` VALUES ('530', 'z', 'Source of note information (AM CF VM SE) [OBSOLETE]', 'Source of note information (AM CF VM SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5868 INSERT INTO `marc_subfield_structure` VALUES ('533', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5869 INSERT INTO `marc_subfield_structure` VALUES ('533', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5870 INSERT INTO `marc_subfield_structure` VALUES ('533', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5871 INSERT INTO `marc_subfield_structure` VALUES ('533', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5872 INSERT INTO `marc_subfield_structure` VALUES ('533', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5873 INSERT INTO `marc_subfield_structure` VALUES ('533', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5874 INSERT INTO `marc_subfield_structure` VALUES ('533', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5875 INSERT INTO `marc_subfield_structure` VALUES ('533', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5876 INSERT INTO `marc_subfield_structure` VALUES ('533', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5877 INSERT INTO `marc_subfield_structure` VALUES ('533', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5878 INSERT INTO `marc_subfield_structure` VALUES ('533', 'm', 'Dates and/or sequential designation of issues reproduced', 'Dates and/or sequential designation of issues reproduced', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5879 INSERT INTO `marc_subfield_structure` VALUES ('533', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5880 INSERT INTO `marc_subfield_structure` VALUES ('534', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5881 INSERT INTO `marc_subfield_structure` VALUES ('534', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5882 INSERT INTO `marc_subfield_structure` VALUES ('534', 'a', 'Main entry of original', 'Main entry of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5883 INSERT INTO `marc_subfield_structure` VALUES ('534', 'b', 'Edition statement of original', 'Edition statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5884 INSERT INTO `marc_subfield_structure` VALUES ('534', 'c', 'Publication, distribution, etc', 'Publication, distribution, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5885 INSERT INTO `marc_subfield_structure` VALUES ('534', 'e', 'Physical description, etc', 'Physical description, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5886 INSERT INTO `marc_subfield_structure` VALUES ('534', 'f', 'Series statement of original', 'Series statement of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5887 INSERT INTO `marc_subfield_structure` VALUES ('534', 'k', 'Key title of original', 'Key title of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5888 INSERT INTO `marc_subfield_structure` VALUES ('534', 'l', 'Location of original', 'Location of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5889 INSERT INTO `marc_subfield_structure` VALUES ('534', 'm', 'Material specific details', 'Material specific details', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5890 INSERT INTO `marc_subfield_structure` VALUES ('534', 'n', 'Note about original', 'Note about original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5891 INSERT INTO `marc_subfield_structure` VALUES ('534', 'p', 'Introductory phrase', 'Introductory phrase', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5892 INSERT INTO `marc_subfield_structure` VALUES ('534', 't', 'Title statement of original', 'Title statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5893 INSERT INTO `marc_subfield_structure` VALUES ('534', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5894 INSERT INTO `marc_subfield_structure` VALUES ('534', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5895 INSERT INTO `marc_subfield_structure` VALUES ('535', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5896 INSERT INTO `marc_subfield_structure` VALUES ('535', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5897 INSERT INTO `marc_subfield_structure` VALUES ('535', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5898 INSERT INTO `marc_subfield_structure` VALUES ('535', 'a', 'Custodian', 'Custodian', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5899 INSERT INTO `marc_subfield_structure` VALUES ('535', 'b', 'Postal address', 'Postal address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5900 INSERT INTO `marc_subfield_structure` VALUES ('535', 'c', 'Country', 'Country', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5901 INSERT INTO `marc_subfield_structure` VALUES ('535', 'd', 'Telecommunications address', 'Telecommunications address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5902 INSERT INTO `marc_subfield_structure` VALUES ('535', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5903 INSERT INTO `marc_subfield_structure` VALUES ('536', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5904 INSERT INTO `marc_subfield_structure` VALUES ('536', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5905 INSERT INTO `marc_subfield_structure` VALUES ('536', 'a', 'Text of note', 'Text of note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5906 INSERT INTO `marc_subfield_structure` VALUES ('536', 'b', 'Contract number', 'Contract number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5907 INSERT INTO `marc_subfield_structure` VALUES ('536', 'c', 'Grant number', 'Grant number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5908 INSERT INTO `marc_subfield_structure` VALUES ('536', 'd', 'Undifferentiated number', 'Undifferentiated number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5909 INSERT INTO `marc_subfield_structure` VALUES ('536', 'e', 'Program element number', 'Program element number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5910 INSERT INTO `marc_subfield_structure` VALUES ('536', 'f', 'Project number', 'Project number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5911 INSERT INTO `marc_subfield_structure` VALUES ('536', 'g', 'Task number', 'Task number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5912 INSERT INTO `marc_subfield_structure` VALUES ('536', 'h', 'Work unit number', 'Work unit number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5913 INSERT INTO `marc_subfield_structure` VALUES ('537', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5914 INSERT INTO `marc_subfield_structure` VALUES ('537', 'a', 'Source of data note', 'Source of data note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5915 INSERT INTO `marc_subfield_structure` VALUES ('538', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5916 INSERT INTO `marc_subfield_structure` VALUES ('538', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5917 INSERT INTO `marc_subfield_structure` VALUES ('538', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5918 INSERT INTO `marc_subfield_structure` VALUES ('538', 'a', 'System details note', 'System details note', 0, 0, '', 5, '', '', '', NULL, -1, 'BKS', '', '');
5919 INSERT INTO `marc_subfield_structure` VALUES ('538', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -1, 'BKS', '', '');
5920 INSERT INTO `marc_subfield_structure` VALUES ('538', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'BKS', '', '');
5921 INSERT INTO `marc_subfield_structure` VALUES ('540', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5922 INSERT INTO `marc_subfield_structure` VALUES ('540', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5923 INSERT INTO `marc_subfield_structure` VALUES ('540', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5924 INSERT INTO `marc_subfield_structure` VALUES ('540', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5925 INSERT INTO `marc_subfield_structure` VALUES ('540', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5926 INSERT INTO `marc_subfield_structure` VALUES ('540', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5927 INSERT INTO `marc_subfield_structure` VALUES ('540', 'c', 'Authorization', 'Authorization', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5928 INSERT INTO `marc_subfield_structure` VALUES ('540', 'd', 'Authorized users', 'Authorized users', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5929 INSERT INTO `marc_subfield_structure` VALUES ('540', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'BKS', '', '');
5930 INSERT INTO `marc_subfield_structure` VALUES ('541', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5931 INSERT INTO `marc_subfield_structure` VALUES ('541', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
5932 INSERT INTO `marc_subfield_structure` VALUES ('541', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
5933 INSERT INTO `marc_subfield_structure` VALUES ('541', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
5934 INSERT INTO `marc_subfield_structure` VALUES ('541', 'a', 'Source of acquisition', 'Source of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'BKS', '', '');
5935 INSERT INTO `marc_subfield_structure` VALUES ('541', 'b', 'Address', 'Address', 0, 0, '', 9, '', '', '', NULL, 1, 'BKS', '', '');
5936 INSERT INTO `marc_subfield_structure` VALUES ('541', 'c', 'Method of acquisition', 'Method of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'BKS', '', '');
5937 INSERT INTO `marc_subfield_structure` VALUES ('541', 'd', 'Date of acquisition', 'Date of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'BKS', '', '');
5938 INSERT INTO `marc_subfield_structure` VALUES ('541', 'e', 'Accession number', 'Accession number', 0, 0, '', 9, '', '', '', NULL, 1, 'BKS', '', '');
5939 INSERT INTO `marc_subfield_structure` VALUES ('541', 'f', 'Owner', 'Owner', 0, 0, '', 9, '', '', '', NULL, 1, 'BKS', '', '');
5940 INSERT INTO `marc_subfield_structure` VALUES ('541', 'h', 'Purchase price', 'Purchase price', 0, 0, '', 9, '', '', '', NULL, 1, 'BKS', '', '');
5941 INSERT INTO `marc_subfield_structure` VALUES ('541', 'n', 'Extent', 'Extent', 0, 0, '', 9, '', '', '', NULL, 1, 'BKS', '', '');
5942 INSERT INTO `marc_subfield_structure` VALUES ('541', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, 1, 'BKS', '', '');
5943 INSERT INTO `marc_subfield_structure` VALUES ('543', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5944 INSERT INTO `marc_subfield_structure` VALUES ('543', 'a', 'Solicitation information note', 'Solicitation information note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5945 INSERT INTO `marc_subfield_structure` VALUES ('544', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5946 INSERT INTO `marc_subfield_structure` VALUES ('544', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5947 INSERT INTO `marc_subfield_structure` VALUES ('544', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5948 INSERT INTO `marc_subfield_structure` VALUES ('544', 'a', 'Custodian', 'Custodian', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5949 INSERT INTO `marc_subfield_structure` VALUES ('544', 'b', 'Address', 'Address', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5950 INSERT INTO `marc_subfield_structure` VALUES ('544', 'c', 'Country', 'Country', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5951 INSERT INTO `marc_subfield_structure` VALUES ('544', 'd', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5952 INSERT INTO `marc_subfield_structure` VALUES ('544', 'e', 'Provenance', 'Provenance', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5953 INSERT INTO `marc_subfield_structure` VALUES ('544', 'n', 'Note', 'Note', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5954 INSERT INTO `marc_subfield_structure` VALUES ('545', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5955 INSERT INTO `marc_subfield_structure` VALUES ('545', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5956 INSERT INTO `marc_subfield_structure` VALUES ('545', 'a', 'Biographical or historical note', 'Biographical or historical note', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5957 INSERT INTO `marc_subfield_structure` VALUES ('545', 'b', 'Expansion', 'Expansion', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5958 INSERT INTO `marc_subfield_structure` VALUES ('545', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'BKS', '', '');
5959 INSERT INTO `marc_subfield_structure` VALUES ('546', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5960 INSERT INTO `marc_subfield_structure` VALUES ('546', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5961 INSERT INTO `marc_subfield_structure` VALUES ('546', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5962 INSERT INTO `marc_subfield_structure` VALUES ('546', 'a', 'Language note', 'Language note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5963 INSERT INTO `marc_subfield_structure` VALUES ('546', 'b', 'Information code or alphabet', 'Information code or alphabet', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'BKS', '', '');
5964 INSERT INTO `marc_subfield_structure` VALUES ('546', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5965 INSERT INTO `marc_subfield_structure` VALUES ('547', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5966 INSERT INTO `marc_subfield_structure` VALUES ('547', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5967 INSERT INTO `marc_subfield_structure` VALUES ('547', 'a', 'Former title complexity note', 'Former title complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5968 INSERT INTO `marc_subfield_structure` VALUES ('547', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5969 INSERT INTO `marc_subfield_structure` VALUES ('550', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5970 INSERT INTO `marc_subfield_structure` VALUES ('550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5971 INSERT INTO `marc_subfield_structure` VALUES ('550', 'a', 'Issuing body note', 'Issuing body note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5972 INSERT INTO `marc_subfield_structure` VALUES ('550', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5973 INSERT INTO `marc_subfield_structure` VALUES ('552', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5974 INSERT INTO `marc_subfield_structure` VALUES ('552', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5975 INSERT INTO `marc_subfield_structure` VALUES ('552', 'a', 'Entity type label', 'Entity type label', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5976 INSERT INTO `marc_subfield_structure` VALUES ('552', 'b', 'Entity type definition and source', 'Entity type definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5977 INSERT INTO `marc_subfield_structure` VALUES ('552', 'c', 'Attribute label', 'Attribute label', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5978 INSERT INTO `marc_subfield_structure` VALUES ('552', 'd', 'Attribute definition and source', 'Attribute definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5979 INSERT INTO `marc_subfield_structure` VALUES ('552', 'e', 'Enumerated domain value', 'Enumerated domain value', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5980 INSERT INTO `marc_subfield_structure` VALUES ('552', 'f', 'Enumerated domain value definition and source', 'Enumerated domain value definition and source', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5981 INSERT INTO `marc_subfield_structure` VALUES ('552', 'g', 'Range domain minimum and maximum', 'Range domain minimum and maximum', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5982 INSERT INTO `marc_subfield_structure` VALUES ('552', 'h', 'Codeset name and source', 'Codeset name and source', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5983 INSERT INTO `marc_subfield_structure` VALUES ('552', 'i', 'Unrepresentable domain', 'Unrepresentable domain', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5984 INSERT INTO `marc_subfield_structure` VALUES ('552', 'j', 'Attribute units of measurement and resolution', 'Attribute units of measurement and resolution', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5985 INSERT INTO `marc_subfield_structure` VALUES ('552', 'k', 'Beginning date and ending date of attribute values', 'Beginning date and ending date of attribute values', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5986 INSERT INTO `marc_subfield_structure` VALUES ('552', 'l', 'Attribute value accuracy', 'Attribute value accuracy', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5987 INSERT INTO `marc_subfield_structure` VALUES ('552', 'm', 'Attribute value accuracy explanation', 'Attribute value accuracy explanation', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5988 INSERT INTO `marc_subfield_structure` VALUES ('552', 'n', 'Attribute measurement frequency', 'Attribute measurement frequency', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5989 INSERT INTO `marc_subfield_structure` VALUES ('552', 'o', 'Entity and attribute overview', 'Entity and attribute overview', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5990 INSERT INTO `marc_subfield_structure` VALUES ('552', 'p', 'Entity and attribute detail citation', 'Entity and attribute detail citation', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5991 INSERT INTO `marc_subfield_structure` VALUES ('552', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'BKS', '', '');
5992 INSERT INTO `marc_subfield_structure` VALUES ('552', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
5993 INSERT INTO `marc_subfield_structure` VALUES ('555', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5994 INSERT INTO `marc_subfield_structure` VALUES ('555', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5995 INSERT INTO `marc_subfield_structure` VALUES ('555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5996 INSERT INTO `marc_subfield_structure` VALUES ('555', 'a', 'Cumulative index/finding aids note', 'Cumulative index/finding aids note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5997 INSERT INTO `marc_subfield_structure` VALUES ('555', 'b', 'Availability source', 'Availability source', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5998 INSERT INTO `marc_subfield_structure` VALUES ('555', 'c', 'Degree of control', 'Degree of control', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
5999 INSERT INTO `marc_subfield_structure` VALUES ('555', 'd', 'Bibliographic reference', 'Bibliographic reference', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6000 INSERT INTO `marc_subfield_structure` VALUES ('555', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'BKS', '', '');
6001 INSERT INTO `marc_subfield_structure` VALUES ('556', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6002 INSERT INTO `marc_subfield_structure` VALUES ('556', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6003 INSERT INTO `marc_subfield_structure` VALUES ('556', 'a', 'Information about documentation note', 'Information about documentation note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6004 INSERT INTO `marc_subfield_structure` VALUES ('556', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6005 INSERT INTO `marc_subfield_structure` VALUES ('561', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6006 INSERT INTO `marc_subfield_structure` VALUES ('561', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
6007 INSERT INTO `marc_subfield_structure` VALUES ('561', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
6008 INSERT INTO `marc_subfield_structure` VALUES ('561', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
6009 INSERT INTO `marc_subfield_structure` VALUES ('561', 'a', 'History', 'History', 0, 0, '', 5, '', '', '', NULL, 6, 'BKS', '', '');
6010 INSERT INTO `marc_subfield_structure` VALUES ('561', 'b', 'Time of collation [OBSOLETE]', 'Time of collation [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, 6, 'BKS', '', '');
6011 INSERT INTO `marc_subfield_structure` VALUES ('562', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6012 INSERT INTO `marc_subfield_structure` VALUES ('562', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6013 INSERT INTO `marc_subfield_structure` VALUES ('562', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6014 INSERT INTO `marc_subfield_structure` VALUES ('562', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6015 INSERT INTO `marc_subfield_structure` VALUES ('562', 'a', 'Identifying markings', 'Identifying markings', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6016 INSERT INTO `marc_subfield_structure` VALUES ('562', 'b', 'Copy identification', 'Copy identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6017 INSERT INTO `marc_subfield_structure` VALUES ('562', 'c', 'Version identification', 'Version identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6018 INSERT INTO `marc_subfield_structure` VALUES ('562', 'd', 'Presentation format', 'Presentation format', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6019 INSERT INTO `marc_subfield_structure` VALUES ('562', 'e', 'Number of copies', 'Number of copies', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6020 INSERT INTO `marc_subfield_structure` VALUES ('563', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6021 INSERT INTO `marc_subfield_structure` VALUES ('563', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6022 INSERT INTO `marc_subfield_structure` VALUES ('563', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6023 INSERT INTO `marc_subfield_structure` VALUES ('563', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6024 INSERT INTO `marc_subfield_structure` VALUES ('563', 'a', 'Binding note', 'Binding note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6025 INSERT INTO `marc_subfield_structure` VALUES ('563', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'BKS', '', '');
6026 INSERT INTO `marc_subfield_structure` VALUES ('565', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6027 INSERT INTO `marc_subfield_structure` VALUES ('565', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6028 INSERT INTO `marc_subfield_structure` VALUES ('565', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6029 INSERT INTO `marc_subfield_structure` VALUES ('565', 'a', 'Number of cases/variables', 'Number of cases/variables', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6030 INSERT INTO `marc_subfield_structure` VALUES ('565', 'b', 'Name of variable', 'Name of variable', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6031 INSERT INTO `marc_subfield_structure` VALUES ('565', 'c', 'Unit of analysis', 'Unit of analysis', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6032 INSERT INTO `marc_subfield_structure` VALUES ('565', 'd', 'Universe of data', 'Universe of data', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6033 INSERT INTO `marc_subfield_structure` VALUES ('565', 'e', 'Filing scheme or code', 'Filing scheme or code', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6034 INSERT INTO `marc_subfield_structure` VALUES ('567', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6035 INSERT INTO `marc_subfield_structure` VALUES ('567', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6036 INSERT INTO `marc_subfield_structure` VALUES ('567', 'a', 'Methodology note', 'Methodology note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6037 INSERT INTO `marc_subfield_structure` VALUES ('570', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6038 INSERT INTO `marc_subfield_structure` VALUES ('570', 'a', 'Editor note', 'Editor note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6039 INSERT INTO `marc_subfield_structure` VALUES ('570', 'z', 'Source of note information', 'Source of note information', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6040 INSERT INTO `marc_subfield_structure` VALUES ('580', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6041 INSERT INTO `marc_subfield_structure` VALUES ('580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6042 INSERT INTO `marc_subfield_structure` VALUES ('580', 'a', 'Linking entry complexity note', 'Linking entry complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6043 INSERT INTO `marc_subfield_structure` VALUES ('580', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6044 INSERT INTO `marc_subfield_structure` VALUES ('581', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6045 INSERT INTO `marc_subfield_structure` VALUES ('581', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6046 INSERT INTO `marc_subfield_structure` VALUES ('581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6047 INSERT INTO `marc_subfield_structure` VALUES ('581', 'a', 'Publications about described materials note', 'Publications about described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6048 INSERT INTO `marc_subfield_structure` VALUES ('581', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6049 INSERT INTO `marc_subfield_structure` VALUES ('582', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6050 INSERT INTO `marc_subfield_structure` VALUES ('582', 'a', 'Related computer files note', 'Related computer files note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6051 INSERT INTO `marc_subfield_structure` VALUES ('583', '2', 'Source of term', 'Source of term', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6052 INSERT INTO `marc_subfield_structure` VALUES ('583', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6053 INSERT INTO `marc_subfield_structure` VALUES ('583', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
6054 INSERT INTO `marc_subfield_structure` VALUES ('583', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
6055 INSERT INTO `marc_subfield_structure` VALUES ('583', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
6056 INSERT INTO `marc_subfield_structure` VALUES ('583', 'a', 'Action', 'Action', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
6057 INSERT INTO `marc_subfield_structure` VALUES ('583', 'b', 'Action identification', 'Action identification', 1, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
6058 INSERT INTO `marc_subfield_structure` VALUES ('583', 'c', 'Time/date of action', 'Time/date of action', 1, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
6059 INSERT INTO `marc_subfield_structure` VALUES ('583', 'd', 'Action interval', 'Action interval', 1, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
6060 INSERT INTO `marc_subfield_structure` VALUES ('583', 'e', 'Contingency for action', 'Contingency for action', 1, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
6061 INSERT INTO `marc_subfield_structure` VALUES ('583', 'f', 'Authorization', 'Authorization', 1, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
6062 INSERT INTO `marc_subfield_structure` VALUES ('583', 'h', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
6063 INSERT INTO `marc_subfield_structure` VALUES ('583', 'i', 'Method of action', 'Method of action', 1, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
6064 INSERT INTO `marc_subfield_structure` VALUES ('583', 'j', 'Site of action', 'Site of action', 1, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
6065 INSERT INTO `marc_subfield_structure` VALUES ('583', 'k', 'Action agent', 'Action agent', 1, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
6066 INSERT INTO `marc_subfield_structure` VALUES ('583', 'l', 'Status', 'Status', 1, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
6067 INSERT INTO `marc_subfield_structure` VALUES ('583', 'n', 'Extent', 'Extent', 1, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
6068 INSERT INTO `marc_subfield_structure` VALUES ('583', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
6069 INSERT INTO `marc_subfield_structure` VALUES ('583', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -1, 'BKS', '', '');
6070 INSERT INTO `marc_subfield_structure` VALUES ('583', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', NULL, 4, 'BKS', '', '');
6071 INSERT INTO `marc_subfield_structure` VALUES ('583', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', NULL, -1, 'BKS', '', '');
6072 INSERT INTO `marc_subfield_structure` VALUES ('584', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6073 INSERT INTO `marc_subfield_structure` VALUES ('584', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
6074 INSERT INTO `marc_subfield_structure` VALUES ('584', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
6075 INSERT INTO `marc_subfield_structure` VALUES ('584', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
6076 INSERT INTO `marc_subfield_structure` VALUES ('584', 'a', 'Accumulation', 'Accumulation', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
6077 INSERT INTO `marc_subfield_structure` VALUES ('584', 'b', 'Frequency of use', 'Frequency of use', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
6078 INSERT INTO `marc_subfield_structure` VALUES ('585', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6079 INSERT INTO `marc_subfield_structure` VALUES ('585', '5', 'Institution to which field applies', 'Institution to which field applies', 0, -6, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
6080 INSERT INTO `marc_subfield_structure` VALUES ('585', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
6081 INSERT INTO `marc_subfield_structure` VALUES ('585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
6082 INSERT INTO `marc_subfield_structure` VALUES ('585', 'a', 'Exhibitions note', 'Exhibitions note', 0, 0, '', 5, '', '', '', NULL, -6, 'BKS', '', '');
6083 INSERT INTO `marc_subfield_structure` VALUES ('586', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6084 INSERT INTO `marc_subfield_structure` VALUES ('586', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6085 INSERT INTO `marc_subfield_structure` VALUES ('586', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6086 INSERT INTO `marc_subfield_structure` VALUES ('586', 'a', 'Awards note', 'Awards note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6087 INSERT INTO `marc_subfield_structure` VALUES ('590', '6', 'Linkage (RLIN)', 'Linkage (RLIN)', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6088 INSERT INTO `marc_subfield_structure` VALUES ('590', '8', 'Field link and sequence number (RLIN)', 'Field link and sequence number (RLIN)', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6089 INSERT INTO `marc_subfield_structure` VALUES ('590', 'a', 'Local note', 'Local note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6090 INSERT INTO `marc_subfield_structure` VALUES ('590', 'b', 'Provenance (VM) [OBSOLETE]', 'Provenance (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6091 INSERT INTO `marc_subfield_structure` VALUES ('590', 'c', 'Condition of individual reels (VM) [OBSOLETE]', 'Condition of individual reels (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6092 INSERT INTO `marc_subfield_structure` VALUES ('590', 'd', 'Origin of safety copy (VM) [OBSOLETE]', 'Origin of safety copy (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6093 INSERT INTO `marc_subfield_structure` VALUES ('600', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6094 INSERT INTO `marc_subfield_structure` VALUES ('600', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6095 INSERT INTO `marc_subfield_structure` VALUES ('600', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6096 INSERT INTO `marc_subfield_structure` VALUES ('600', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6097 INSERT INTO `marc_subfield_structure` VALUES ('600', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6098 INSERT INTO `marc_subfield_structure` VALUES ('600', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
6099 INSERT INTO `marc_subfield_structure` VALUES ('600', 'a', 'Personal name', 'Personal name', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6100 INSERT INTO `marc_subfield_structure` VALUES ('600', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6101 INSERT INTO `marc_subfield_structure` VALUES ('600', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6102 INSERT INTO `marc_subfield_structure` VALUES ('600', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6103 INSERT INTO `marc_subfield_structure` VALUES ('600', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6104 INSERT INTO `marc_subfield_structure` VALUES ('600', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6105 INSERT INTO `marc_subfield_structure` VALUES ('600', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6106 INSERT INTO `marc_subfield_structure` VALUES ('600', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6107 INSERT INTO `marc_subfield_structure` VALUES ('600', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6108 INSERT INTO `marc_subfield_structure` VALUES ('600', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6109 INSERT INTO `marc_subfield_structure` VALUES ('600', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6110 INSERT INTO `marc_subfield_structure` VALUES ('600', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6111 INSERT INTO `marc_subfield_structure` VALUES ('600', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6112 INSERT INTO `marc_subfield_structure` VALUES ('600', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6113 INSERT INTO `marc_subfield_structure` VALUES ('600', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6114 INSERT INTO `marc_subfield_structure` VALUES ('600', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6115 INSERT INTO `marc_subfield_structure` VALUES ('600', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6116 INSERT INTO `marc_subfield_structure` VALUES ('600', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6117 INSERT INTO `marc_subfield_structure` VALUES ('600', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6118 INSERT INTO `marc_subfield_structure` VALUES ('600', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6119 INSERT INTO `marc_subfield_structure` VALUES ('600', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6120 INSERT INTO `marc_subfield_structure` VALUES ('600', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6121 INSERT INTO `marc_subfield_structure` VALUES ('600', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6122 INSERT INTO `marc_subfield_structure` VALUES ('600', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6123 INSERT INTO `marc_subfield_structure` VALUES ('610', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6124 INSERT INTO `marc_subfield_structure` VALUES ('610', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6125 INSERT INTO `marc_subfield_structure` VALUES ('610', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6126 INSERT INTO `marc_subfield_structure` VALUES ('610', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6127 INSERT INTO `marc_subfield_structure` VALUES ('610', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6128 INSERT INTO `marc_subfield_structure` VALUES ('610', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
6129 INSERT INTO `marc_subfield_structure` VALUES ('610', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6130 INSERT INTO `marc_subfield_structure` VALUES ('610', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6131 INSERT INTO `marc_subfield_structure` VALUES ('610', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6132 INSERT INTO `marc_subfield_structure` VALUES ('610', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6133 INSERT INTO `marc_subfield_structure` VALUES ('610', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6134 INSERT INTO `marc_subfield_structure` VALUES ('610', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6135 INSERT INTO `marc_subfield_structure` VALUES ('610', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6136 INSERT INTO `marc_subfield_structure` VALUES ('610', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6137 INSERT INTO `marc_subfield_structure` VALUES ('610', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6138 INSERT INTO `marc_subfield_structure` VALUES ('610', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6139 INSERT INTO `marc_subfield_structure` VALUES ('610', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6140 INSERT INTO `marc_subfield_structure` VALUES ('610', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6141 INSERT INTO `marc_subfield_structure` VALUES ('610', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6142 INSERT INTO `marc_subfield_structure` VALUES ('610', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6143 INSERT INTO `marc_subfield_structure` VALUES ('610', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6144 INSERT INTO `marc_subfield_structure` VALUES ('610', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6145 INSERT INTO `marc_subfield_structure` VALUES ('610', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6146 INSERT INTO `marc_subfield_structure` VALUES ('610', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6147 INSERT INTO `marc_subfield_structure` VALUES ('610', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6148 INSERT INTO `marc_subfield_structure` VALUES ('610', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6149 INSERT INTO `marc_subfield_structure` VALUES ('610', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6150 INSERT INTO `marc_subfield_structure` VALUES ('610', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6151 INSERT INTO `marc_subfield_structure` VALUES ('611', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6152 INSERT INTO `marc_subfield_structure` VALUES ('611', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6153 INSERT INTO `marc_subfield_structure` VALUES ('611', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6154 INSERT INTO `marc_subfield_structure` VALUES ('611', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6155 INSERT INTO `marc_subfield_structure` VALUES ('611', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6156 INSERT INTO `marc_subfield_structure` VALUES ('611', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
6157 INSERT INTO `marc_subfield_structure` VALUES ('611', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6158 INSERT INTO `marc_subfield_structure` VALUES ('611', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6159 INSERT INTO `marc_subfield_structure` VALUES ('611', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6160 INSERT INTO `marc_subfield_structure` VALUES ('611', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6161 INSERT INTO `marc_subfield_structure` VALUES ('611', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6162 INSERT INTO `marc_subfield_structure` VALUES ('611', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6163 INSERT INTO `marc_subfield_structure` VALUES ('611', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6164 INSERT INTO `marc_subfield_structure` VALUES ('611', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6165 INSERT INTO `marc_subfield_structure` VALUES ('611', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6166 INSERT INTO `marc_subfield_structure` VALUES ('611', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6167 INSERT INTO `marc_subfield_structure` VALUES ('611', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6168 INSERT INTO `marc_subfield_structure` VALUES ('611', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6169 INSERT INTO `marc_subfield_structure` VALUES ('611', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6170 INSERT INTO `marc_subfield_structure` VALUES ('611', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6171 INSERT INTO `marc_subfield_structure` VALUES ('611', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6172 INSERT INTO `marc_subfield_structure` VALUES ('611', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6173 INSERT INTO `marc_subfield_structure` VALUES ('611', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6174 INSERT INTO `marc_subfield_structure` VALUES ('611', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6175 INSERT INTO `marc_subfield_structure` VALUES ('611', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6176 INSERT INTO `marc_subfield_structure` VALUES ('611', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6177 INSERT INTO `marc_subfield_structure` VALUES ('630', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6178 INSERT INTO `marc_subfield_structure` VALUES ('630', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6179 INSERT INTO `marc_subfield_structure` VALUES ('630', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6180 INSERT INTO `marc_subfield_structure` VALUES ('630', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6181 INSERT INTO `marc_subfield_structure` VALUES ('630', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6182 INSERT INTO `marc_subfield_structure` VALUES ('630', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
6183 INSERT INTO `marc_subfield_structure` VALUES ('630', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6184 INSERT INTO `marc_subfield_structure` VALUES ('630', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6185 INSERT INTO `marc_subfield_structure` VALUES ('630', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6186 INSERT INTO `marc_subfield_structure` VALUES ('630', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6187 INSERT INTO `marc_subfield_structure` VALUES ('630', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6188 INSERT INTO `marc_subfield_structure` VALUES ('630', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6189 INSERT INTO `marc_subfield_structure` VALUES ('630', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6190 INSERT INTO `marc_subfield_structure` VALUES ('630', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6191 INSERT INTO `marc_subfield_structure` VALUES ('630', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6192 INSERT INTO `marc_subfield_structure` VALUES ('630', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6193 INSERT INTO `marc_subfield_structure` VALUES ('630', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6194 INSERT INTO `marc_subfield_structure` VALUES ('630', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6195 INSERT INTO `marc_subfield_structure` VALUES ('630', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6196 INSERT INTO `marc_subfield_structure` VALUES ('630', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6197 INSERT INTO `marc_subfield_structure` VALUES ('630', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6198 INSERT INTO `marc_subfield_structure` VALUES ('630', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6199 INSERT INTO `marc_subfield_structure` VALUES ('630', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6200 INSERT INTO `marc_subfield_structure` VALUES ('630', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6201 INSERT INTO `marc_subfield_structure` VALUES ('630', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6202 INSERT INTO `marc_subfield_structure` VALUES ('648', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6203 INSERT INTO `marc_subfield_structure` VALUES ('648', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6204 INSERT INTO `marc_subfield_structure` VALUES ('648', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6205 INSERT INTO `marc_subfield_structure` VALUES ('648', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6206 INSERT INTO `marc_subfield_structure` VALUES ('648', 'a', 'Chronological term', 'Chronological term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6207 INSERT INTO `marc_subfield_structure` VALUES ('648', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6208 INSERT INTO `marc_subfield_structure` VALUES ('648', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6209 INSERT INTO `marc_subfield_structure` VALUES ('648', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6210 INSERT INTO `marc_subfield_structure` VALUES ('648', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6211 INSERT INTO `marc_subfield_structure` VALUES ('650', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, 0, 'BKS', '', '');
6212 INSERT INTO `marc_subfield_structure` VALUES ('650', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'BKS', '', '');
6213 INSERT INTO `marc_subfield_structure` VALUES ('650', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6214 INSERT INTO `marc_subfield_structure` VALUES ('650', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'BKS', '', '');
6215 INSERT INTO `marc_subfield_structure` VALUES ('650', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'BKS', '', '');
6216 INSERT INTO `marc_subfield_structure` VALUES ('650', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
6217 INSERT INTO `marc_subfield_structure` VALUES ('650', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 'bibliosubject.subject', 6, '', '', '', 0, 0, 'BKS', '''6003'',''600a'',''600b'',''600c'',''600d'',''600e'',''600f'',''600g'',''600h'',''600k'',''600l'',''600m'',''600n'',''600o'',''600p'',''600r'',''600s'',''600t'',''600u'',''600x'',''600z'',''600y'',''600v'',''6103'',''610a'',''610b'',''610c'',''610d'',''610e'',''610f'',''610g'',''610h'',''610k'',''610l'',''610m'',''610n'',''610o'',''610p'',''610r'',''610s'',''610t'',''610u'',''610x'',''610z'',''610y'',''610v'',''6113'',''611a'',''611b'',''611c'',''611d'',''611e'',''611f'',''611g'',''611h'',''611k'',''611l'',''611m'',''611n'',''611o'',''611p'',''611r'',''611s'',''611t'',''611u'',''611x'',''611z'',''611y'',''611v'',''630a'',''630b'',''630c'',''630d'',''630e'',''630f'',''630g'',''630h'',''630k'',''630l'',''630m'',''630n'',''630o'',''630p'',''630r'',''630s'',''630t'',''630x'',''630z'',''630y'',''630v'',''6483'',''648a'',''648x'',''648z'',''648y'',''648v'',''6503'',''650b'',''650c'',''650d'',''650e'',''650x'',''650z'',''650y'',''650v'',''6513'',''651a'',''651b'',''651c'',''651d'',''651e'',''651x'',''651z'',''651y'',''651v'',''653a'',''6543'',''654a'',''654b'',''654x'',''654z'',''654y'',''654v'',''6553'',''655a'',''655b'',''655x'',''655z'',''655y'',''655v'',''6563'',''656a'',''656k'',''656x'',''656z'',''656y'',''656v'',''6573'',''657a'',''657x'',''657z'',''657y'',''657v'',''658a'',''658b'',''658c'',''658d'',''658v''', '');
6218 INSERT INTO `marc_subfield_structure` VALUES ('650', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'BKS', '', '');
6219 INSERT INTO `marc_subfield_structure` VALUES ('650', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'BKS', '', '');
6220 INSERT INTO `marc_subfield_structure` VALUES ('650', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -1, 'BKS', '', '');
6221 INSERT INTO `marc_subfield_structure` VALUES ('650', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -1, 'BKS', '', '');
6222 INSERT INTO `marc_subfield_structure` VALUES ('650', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'BKS', '', '');
6223 INSERT INTO `marc_subfield_structure` VALUES ('650', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'BKS', '', '');
6224 INSERT INTO `marc_subfield_structure` VALUES ('650', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'BKS', '', '');
6225 INSERT INTO `marc_subfield_structure` VALUES ('650', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'BKS', '', '');
6226 INSERT INTO `marc_subfield_structure` VALUES ('651', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6227 INSERT INTO `marc_subfield_structure` VALUES ('651', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6228 INSERT INTO `marc_subfield_structure` VALUES ('651', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6229 INSERT INTO `marc_subfield_structure` VALUES ('651', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6230 INSERT INTO `marc_subfield_structure` VALUES ('651', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6231 INSERT INTO `marc_subfield_structure` VALUES ('651', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
6232 INSERT INTO `marc_subfield_structure` VALUES ('651', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6233 INSERT INTO `marc_subfield_structure` VALUES ('651', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6234 INSERT INTO `marc_subfield_structure` VALUES ('651', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6235 INSERT INTO `marc_subfield_structure` VALUES ('651', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6236 INSERT INTO `marc_subfield_structure` VALUES ('651', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6237 INSERT INTO `marc_subfield_structure` VALUES ('651', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6238 INSERT INTO `marc_subfield_structure` VALUES ('651', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6239 INSERT INTO `marc_subfield_structure` VALUES ('652', 'a', 'Geographic name of place element', 'Geographic name of place element', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6240 INSERT INTO `marc_subfield_structure` VALUES ('652', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6241 INSERT INTO `marc_subfield_structure` VALUES ('652', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6242 INSERT INTO `marc_subfield_structure` VALUES ('652', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6243 INSERT INTO `marc_subfield_structure` VALUES ('653', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6244 INSERT INTO `marc_subfield_structure` VALUES ('653', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6245 INSERT INTO `marc_subfield_structure` VALUES ('653', 'a', 'Uncontrolled term', 'Uncontrolled term', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6246 INSERT INTO `marc_subfield_structure` VALUES ('654', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6247 INSERT INTO `marc_subfield_structure` VALUES ('654', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6248 INSERT INTO `marc_subfield_structure` VALUES ('654', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6249 INSERT INTO `marc_subfield_structure` VALUES ('654', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6250 INSERT INTO `marc_subfield_structure` VALUES ('654', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6251 INSERT INTO `marc_subfield_structure` VALUES ('654', 'a', 'Focus term', 'Focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6252 INSERT INTO `marc_subfield_structure` VALUES ('654', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6253 INSERT INTO `marc_subfield_structure` VALUES ('654', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6254 INSERT INTO `marc_subfield_structure` VALUES ('654', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6255 INSERT INTO `marc_subfield_structure` VALUES ('654', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6256 INSERT INTO `marc_subfield_structure` VALUES ('654', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6257 INSERT INTO `marc_subfield_structure` VALUES ('654', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6258 INSERT INTO `marc_subfield_structure` VALUES ('654', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6259 INSERT INTO `marc_subfield_structure` VALUES ('655', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6260 INSERT INTO `marc_subfield_structure` VALUES ('655', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6261 INSERT INTO `marc_subfield_structure` VALUES ('655', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6262 INSERT INTO `marc_subfield_structure` VALUES ('655', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6263 INSERT INTO `marc_subfield_structure` VALUES ('655', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6264 INSERT INTO `marc_subfield_structure` VALUES ('655', 'a', 'Genre/form data or focus term', 'Genre/form data or focus term', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6265 INSERT INTO `marc_subfield_structure` VALUES ('655', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6266 INSERT INTO `marc_subfield_structure` VALUES ('655', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6267 INSERT INTO `marc_subfield_structure` VALUES ('655', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6268 INSERT INTO `marc_subfield_structure` VALUES ('655', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6269 INSERT INTO `marc_subfield_structure` VALUES ('655', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6270 INSERT INTO `marc_subfield_structure` VALUES ('655', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6271 INSERT INTO `marc_subfield_structure` VALUES ('656', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6272 INSERT INTO `marc_subfield_structure` VALUES ('656', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6273 INSERT INTO `marc_subfield_structure` VALUES ('656', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6274 INSERT INTO `marc_subfield_structure` VALUES ('656', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6275 INSERT INTO `marc_subfield_structure` VALUES ('656', 'a', 'Occupation', 'Occupation', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6276 INSERT INTO `marc_subfield_structure` VALUES ('656', 'k', 'Form', 'Form', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6277 INSERT INTO `marc_subfield_structure` VALUES ('656', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6278 INSERT INTO `marc_subfield_structure` VALUES ('656', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6279 INSERT INTO `marc_subfield_structure` VALUES ('656', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6280 INSERT INTO `marc_subfield_structure` VALUES ('656', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6281 INSERT INTO `marc_subfield_structure` VALUES ('657', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6282 INSERT INTO `marc_subfield_structure` VALUES ('657', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6283 INSERT INTO `marc_subfield_structure` VALUES ('657', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6284 INSERT INTO `marc_subfield_structure` VALUES ('657', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6285 INSERT INTO `marc_subfield_structure` VALUES ('657', 'a', 'Function', 'Function', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6286 INSERT INTO `marc_subfield_structure` VALUES ('657', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6287 INSERT INTO `marc_subfield_structure` VALUES ('657', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6288 INSERT INTO `marc_subfield_structure` VALUES ('657', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6289 INSERT INTO `marc_subfield_structure` VALUES ('657', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6290 INSERT INTO `marc_subfield_structure` VALUES ('658', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6291 INSERT INTO `marc_subfield_structure` VALUES ('658', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6292 INSERT INTO `marc_subfield_structure` VALUES ('658', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6293 INSERT INTO `marc_subfield_structure` VALUES ('658', 'a', 'Main curriculum objective', 'Main curriculum objective', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6294 INSERT INTO `marc_subfield_structure` VALUES ('658', 'b', 'Subordinate curriculum objective', 'Subordinate curriculum objective', 1, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6295 INSERT INTO `marc_subfield_structure` VALUES ('658', 'c', 'Curriculum code', 'Curriculum code', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6296 INSERT INTO `marc_subfield_structure` VALUES ('658', 'd', 'Correlation factor', 'Correlation factor', 0, 0, '', 6, '', '', '', NULL, -1, 'BKS', '', '');
6297 INSERT INTO `marc_subfield_structure` VALUES ('662', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6298 INSERT INTO `marc_subfield_structure` VALUES ('662', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6299 INSERT INTO `marc_subfield_structure` VALUES ('662', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6300 INSERT INTO `marc_subfield_structure` VALUES ('662', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6301 INSERT INTO `marc_subfield_structure` VALUES ('662', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6302 INSERT INTO `marc_subfield_structure` VALUES ('662', 'a', 'Country or larger entity', 'Country or larger entity', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6303 INSERT INTO `marc_subfield_structure` VALUES ('662', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6304 INSERT INTO `marc_subfield_structure` VALUES ('662', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6305 INSERT INTO `marc_subfield_structure` VALUES ('662', 'd', 'City', 'City', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6306 INSERT INTO `marc_subfield_structure` VALUES ('662', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6307 INSERT INTO `marc_subfield_structure` VALUES ('662', 'f', 'City subsection', 'City subsection', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6308 INSERT INTO `marc_subfield_structure` VALUES ('662', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6309 INSERT INTO `marc_subfield_structure` VALUES ('662', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6310 INSERT INTO `marc_subfield_structure` VALUES ('690', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'BKS', '', '');
6311 INSERT INTO `marc_subfield_structure` VALUES ('690', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, -6, 'BKS', '', '');
6312 INSERT INTO `marc_subfield_structure` VALUES ('690', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'BKS', '', '');
6313 INSERT INTO `marc_subfield_structure` VALUES ('690', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'BKS', '', '');
6314 INSERT INTO `marc_subfield_structure` VALUES ('690', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'BKS', '', '');
6315 INSERT INTO `marc_subfield_structure` VALUES ('690', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
6316 INSERT INTO `marc_subfield_structure` VALUES ('690', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'BKS', '', '');
6317 INSERT INTO `marc_subfield_structure` VALUES ('690', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'BKS', '', '');
6318 INSERT INTO `marc_subfield_structure` VALUES ('690', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'BKS', '', '');
6319 INSERT INTO `marc_subfield_structure` VALUES ('690', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -6, 'BKS', '', '');
6320 INSERT INTO `marc_subfield_structure` VALUES ('690', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -6, 'BKS', '', '');
6321 INSERT INTO `marc_subfield_structure` VALUES ('690', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'BKS', '', '');
6322 INSERT INTO `marc_subfield_structure` VALUES ('690', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'BKS', '', '');
6323 INSERT INTO `marc_subfield_structure` VALUES ('690', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'BKS', '', '');
6324 INSERT INTO `marc_subfield_structure` VALUES ('690', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'BKS', '', '');
6325 INSERT INTO `marc_subfield_structure` VALUES ('691', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'BKS', '', '');
6326 INSERT INTO `marc_subfield_structure` VALUES ('691', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6327 INSERT INTO `marc_subfield_structure` VALUES ('691', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6328 INSERT INTO `marc_subfield_structure` VALUES ('691', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6329 INSERT INTO `marc_subfield_structure` VALUES ('691', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6330 INSERT INTO `marc_subfield_structure` VALUES ('691', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
6331 INSERT INTO `marc_subfield_structure` VALUES ('691', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6332 INSERT INTO `marc_subfield_structure` VALUES ('691', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6333 INSERT INTO `marc_subfield_structure` VALUES ('691', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6334 INSERT INTO `marc_subfield_structure` VALUES ('691', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6335 INSERT INTO `marc_subfield_structure` VALUES ('691', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6336 INSERT INTO `marc_subfield_structure` VALUES ('691', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6337 INSERT INTO `marc_subfield_structure` VALUES ('696', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'BKS', '', '');
6338 INSERT INTO `marc_subfield_structure` VALUES ('696', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6339 INSERT INTO `marc_subfield_structure` VALUES ('696', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6340 INSERT INTO `marc_subfield_structure` VALUES ('696', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6341 INSERT INTO `marc_subfield_structure` VALUES ('696', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6342 INSERT INTO `marc_subfield_structure` VALUES ('696', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6343 INSERT INTO `marc_subfield_structure` VALUES ('696', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
6344 INSERT INTO `marc_subfield_structure` VALUES ('696', 'a', 'Personal name', 'Personal name', 0, 0, '', 3, '', '', '', NULL, -6, 'BKS', '', '');
6345 INSERT INTO `marc_subfield_structure` VALUES ('696', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6346 INSERT INTO `marc_subfield_structure` VALUES ('696', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6347 INSERT INTO `marc_subfield_structure` VALUES ('696', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6348 INSERT INTO `marc_subfield_structure` VALUES ('696', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6349 INSERT INTO `marc_subfield_structure` VALUES ('696', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6350 INSERT INTO `marc_subfield_structure` VALUES ('696', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6351 INSERT INTO `marc_subfield_structure` VALUES ('696', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6352 INSERT INTO `marc_subfield_structure` VALUES ('696', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6353 INSERT INTO `marc_subfield_structure` VALUES ('696', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6354 INSERT INTO `marc_subfield_structure` VALUES ('696', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6355 INSERT INTO `marc_subfield_structure` VALUES ('696', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6356 INSERT INTO `marc_subfield_structure` VALUES ('696', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6357 INSERT INTO `marc_subfield_structure` VALUES ('696', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6358 INSERT INTO `marc_subfield_structure` VALUES ('696', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6359 INSERT INTO `marc_subfield_structure` VALUES ('696', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6360 INSERT INTO `marc_subfield_structure` VALUES ('696', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6361 INSERT INTO `marc_subfield_structure` VALUES ('696', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6362 INSERT INTO `marc_subfield_structure` VALUES ('696', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6363 INSERT INTO `marc_subfield_structure` VALUES ('696', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6364 INSERT INTO `marc_subfield_structure` VALUES ('696', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6365 INSERT INTO `marc_subfield_structure` VALUES ('696', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6366 INSERT INTO `marc_subfield_structure` VALUES ('696', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6367 INSERT INTO `marc_subfield_structure` VALUES ('696', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6368 INSERT INTO `marc_subfield_structure` VALUES ('697', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'BKS', '', '');
6369 INSERT INTO `marc_subfield_structure` VALUES ('697', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6370 INSERT INTO `marc_subfield_structure` VALUES ('697', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6371 INSERT INTO `marc_subfield_structure` VALUES ('697', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6372 INSERT INTO `marc_subfield_structure` VALUES ('697', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6373 INSERT INTO `marc_subfield_structure` VALUES ('697', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6374 INSERT INTO `marc_subfield_structure` VALUES ('697', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
6375 INSERT INTO `marc_subfield_structure` VALUES ('697', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6376 INSERT INTO `marc_subfield_structure` VALUES ('697', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6377 INSERT INTO `marc_subfield_structure` VALUES ('697', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6378 INSERT INTO `marc_subfield_structure` VALUES ('697', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6379 INSERT INTO `marc_subfield_structure` VALUES ('697', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6380 INSERT INTO `marc_subfield_structure` VALUES ('697', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6381 INSERT INTO `marc_subfield_structure` VALUES ('697', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6382 INSERT INTO `marc_subfield_structure` VALUES ('697', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6383 INSERT INTO `marc_subfield_structure` VALUES ('697', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6384 INSERT INTO `marc_subfield_structure` VALUES ('697', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6385 INSERT INTO `marc_subfield_structure` VALUES ('697', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6386 INSERT INTO `marc_subfield_structure` VALUES ('697', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6387 INSERT INTO `marc_subfield_structure` VALUES ('697', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6388 INSERT INTO `marc_subfield_structure` VALUES ('697', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6389 INSERT INTO `marc_subfield_structure` VALUES ('697', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6390 INSERT INTO `marc_subfield_structure` VALUES ('697', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6391 INSERT INTO `marc_subfield_structure` VALUES ('697', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6392 INSERT INTO `marc_subfield_structure` VALUES ('697', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6393 INSERT INTO `marc_subfield_structure` VALUES ('697', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6394 INSERT INTO `marc_subfield_structure` VALUES ('697', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6395 INSERT INTO `marc_subfield_structure` VALUES ('697', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6396 INSERT INTO `marc_subfield_structure` VALUES ('697', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
6397 INSERT INTO `marc_subfield_structure` VALUES ('698', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'BKS', '', '');
6398 INSERT INTO `marc_subfield_structure` VALUES ('698', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6399 INSERT INTO `marc_subfield_structure` VALUES ('698', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6400 INSERT INTO `marc_subfield_structure` VALUES ('698', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6401 INSERT INTO `marc_subfield_structure` VALUES ('698', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6402 INSERT INTO `marc_subfield_structure` VALUES ('698', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6403 INSERT INTO `marc_subfield_structure` VALUES ('698', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
6404 INSERT INTO `marc_subfield_structure` VALUES ('698', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6405 INSERT INTO `marc_subfield_structure` VALUES ('698', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6406 INSERT INTO `marc_subfield_structure` VALUES ('698', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6407 INSERT INTO `marc_subfield_structure` VALUES ('698', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6408 INSERT INTO `marc_subfield_structure` VALUES ('698', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6409 INSERT INTO `marc_subfield_structure` VALUES ('698', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6410 INSERT INTO `marc_subfield_structure` VALUES ('698', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6411 INSERT INTO `marc_subfield_structure` VALUES ('698', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6412 INSERT INTO `marc_subfield_structure` VALUES ('698', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6413 INSERT INTO `marc_subfield_structure` VALUES ('698', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6414 INSERT INTO `marc_subfield_structure` VALUES ('698', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6415 INSERT INTO `marc_subfield_structure` VALUES ('698', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6416 INSERT INTO `marc_subfield_structure` VALUES ('698', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6417 INSERT INTO `marc_subfield_structure` VALUES ('698', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6418 INSERT INTO `marc_subfield_structure` VALUES ('698', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6419 INSERT INTO `marc_subfield_structure` VALUES ('698', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6420 INSERT INTO `marc_subfield_structure` VALUES ('698', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6421 INSERT INTO `marc_subfield_structure` VALUES ('698', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6422 INSERT INTO `marc_subfield_structure` VALUES ('698', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6423 INSERT INTO `marc_subfield_structure` VALUES ('698', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6424 INSERT INTO `marc_subfield_structure` VALUES ('699', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'BKS', '', '');
6425 INSERT INTO `marc_subfield_structure` VALUES ('699', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6426 INSERT INTO `marc_subfield_structure` VALUES ('699', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6427 INSERT INTO `marc_subfield_structure` VALUES ('699', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6428 INSERT INTO `marc_subfield_structure` VALUES ('699', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6429 INSERT INTO `marc_subfield_structure` VALUES ('699', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'BKS', '', '');
6430 INSERT INTO `marc_subfield_structure` VALUES ('699', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6431 INSERT INTO `marc_subfield_structure` VALUES ('699', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6432 INSERT INTO `marc_subfield_structure` VALUES ('699', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6433 INSERT INTO `marc_subfield_structure` VALUES ('699', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6434 INSERT INTO `marc_subfield_structure` VALUES ('699', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6435 INSERT INTO `marc_subfield_structure` VALUES ('699', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6436 INSERT INTO `marc_subfield_structure` VALUES ('699', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6437 INSERT INTO `marc_subfield_structure` VALUES ('699', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6438 INSERT INTO `marc_subfield_structure` VALUES ('699', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6439 INSERT INTO `marc_subfield_structure` VALUES ('699', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6440 INSERT INTO `marc_subfield_structure` VALUES ('699', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6441 INSERT INTO `marc_subfield_structure` VALUES ('699', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6442 INSERT INTO `marc_subfield_structure` VALUES ('699', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6443 INSERT INTO `marc_subfield_structure` VALUES ('699', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6444 INSERT INTO `marc_subfield_structure` VALUES ('699', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6445 INSERT INTO `marc_subfield_structure` VALUES ('699', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6446 INSERT INTO `marc_subfield_structure` VALUES ('699', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6447 INSERT INTO `marc_subfield_structure` VALUES ('700', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6448 INSERT INTO `marc_subfield_structure` VALUES ('700', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6449 INSERT INTO `marc_subfield_structure` VALUES ('700', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6450 INSERT INTO `marc_subfield_structure` VALUES ('700', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6451 INSERT INTO `marc_subfield_structure` VALUES ('700', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6452 INSERT INTO `marc_subfield_structure` VALUES ('700', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'BKS', '', '');
6453 INSERT INTO `marc_subfield_structure` VALUES ('700', 'a', 'Personal name', 'Personal name', 0, 0, 'additionalauthors.author', 7, '', '', '', NULL, -1, 'BKS', '', '');
6454 INSERT INTO `marc_subfield_structure` VALUES ('700', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -1, 'BKS', '', '');
6455 INSERT INTO `marc_subfield_structure` VALUES ('700', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -1, 'BKS', '', '');
6456 INSERT INTO `marc_subfield_structure` VALUES ('700', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -1, 'BKS', '', '');
6457 INSERT INTO `marc_subfield_structure` VALUES ('700', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'BKS', '', '');
6458 INSERT INTO `marc_subfield_structure` VALUES ('700', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6459 INSERT INTO `marc_subfield_structure` VALUES ('700', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6460 INSERT INTO `marc_subfield_structure` VALUES ('700', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6461 INSERT INTO `marc_subfield_structure` VALUES ('700', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6462 INSERT INTO `marc_subfield_structure` VALUES ('700', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6463 INSERT INTO `marc_subfield_structure` VALUES ('700', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6464 INSERT INTO `marc_subfield_structure` VALUES ('700', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6465 INSERT INTO `marc_subfield_structure` VALUES ('700', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6466 INSERT INTO `marc_subfield_structure` VALUES ('700', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6467 INSERT INTO `marc_subfield_structure` VALUES ('700', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6468 INSERT INTO `marc_subfield_structure` VALUES ('700', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -1, 'BKS', '', '');
6469 INSERT INTO `marc_subfield_structure` VALUES ('700', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6470 INSERT INTO `marc_subfield_structure` VALUES ('700', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6471 INSERT INTO `marc_subfield_structure` VALUES ('700', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6472 INSERT INTO `marc_subfield_structure` VALUES ('700', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6473 INSERT INTO `marc_subfield_structure` VALUES ('700', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6474 INSERT INTO `marc_subfield_structure` VALUES ('705', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6475 INSERT INTO `marc_subfield_structure` VALUES ('705', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6476 INSERT INTO `marc_subfield_structure` VALUES ('705', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6477 INSERT INTO `marc_subfield_structure` VALUES ('705', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6478 INSERT INTO `marc_subfield_structure` VALUES ('705', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6479 INSERT INTO `marc_subfield_structure` VALUES ('705', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6480 INSERT INTO `marc_subfield_structure` VALUES ('705', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6481 INSERT INTO `marc_subfield_structure` VALUES ('705', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6482 INSERT INTO `marc_subfield_structure` VALUES ('705', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6483 INSERT INTO `marc_subfield_structure` VALUES ('705', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6484 INSERT INTO `marc_subfield_structure` VALUES ('705', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6485 INSERT INTO `marc_subfield_structure` VALUES ('705', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6486 INSERT INTO `marc_subfield_structure` VALUES ('705', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6487 INSERT INTO `marc_subfield_structure` VALUES ('705', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6488 INSERT INTO `marc_subfield_structure` VALUES ('705', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6489 INSERT INTO `marc_subfield_structure` VALUES ('705', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6490 INSERT INTO `marc_subfield_structure` VALUES ('705', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6491 INSERT INTO `marc_subfield_structure` VALUES ('710', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6492 INSERT INTO `marc_subfield_structure` VALUES ('710', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6493 INSERT INTO `marc_subfield_structure` VALUES ('710', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6494 INSERT INTO `marc_subfield_structure` VALUES ('710', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6495 INSERT INTO `marc_subfield_structure` VALUES ('710', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6496 INSERT INTO `marc_subfield_structure` VALUES ('710', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'BKS', '', '');
6497 INSERT INTO `marc_subfield_structure` VALUES ('710', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -1, 'BKS', '', '');
6498 INSERT INTO `marc_subfield_structure` VALUES ('710', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -1, 'BKS', '', '');
6499 INSERT INTO `marc_subfield_structure` VALUES ('710', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -1, 'BKS', '', '');
6500 INSERT INTO `marc_subfield_structure` VALUES ('710', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -1, 'BKS', '', '');
6501 INSERT INTO `marc_subfield_structure` VALUES ('710', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'BKS', '', '');
6502 INSERT INTO `marc_subfield_structure` VALUES ('710', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6503 INSERT INTO `marc_subfield_structure` VALUES ('710', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6504 INSERT INTO `marc_subfield_structure` VALUES ('710', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6505 INSERT INTO `marc_subfield_structure` VALUES ('710', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6506 INSERT INTO `marc_subfield_structure` VALUES ('710', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6507 INSERT INTO `marc_subfield_structure` VALUES ('710', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6508 INSERT INTO `marc_subfield_structure` VALUES ('710', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6509 INSERT INTO `marc_subfield_structure` VALUES ('710', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6510 INSERT INTO `marc_subfield_structure` VALUES ('710', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6511 INSERT INTO `marc_subfield_structure` VALUES ('710', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6512 INSERT INTO `marc_subfield_structure` VALUES ('710', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6513 INSERT INTO `marc_subfield_structure` VALUES ('710', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6514 INSERT INTO `marc_subfield_structure` VALUES ('710', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6515 INSERT INTO `marc_subfield_structure` VALUES ('710', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6516 INSERT INTO `marc_subfield_structure` VALUES ('711', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6517 INSERT INTO `marc_subfield_structure` VALUES ('711', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6518 INSERT INTO `marc_subfield_structure` VALUES ('711', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6519 INSERT INTO `marc_subfield_structure` VALUES ('711', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6520 INSERT INTO `marc_subfield_structure` VALUES ('711', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6521 INSERT INTO `marc_subfield_structure` VALUES ('711', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'BKS', '', '');
6522 INSERT INTO `marc_subfield_structure` VALUES ('711', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6523 INSERT INTO `marc_subfield_structure` VALUES ('711', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6524 INSERT INTO `marc_subfield_structure` VALUES ('711', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6525 INSERT INTO `marc_subfield_structure` VALUES ('711', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6526 INSERT INTO `marc_subfield_structure` VALUES ('711', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6527 INSERT INTO `marc_subfield_structure` VALUES ('711', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6528 INSERT INTO `marc_subfield_structure` VALUES ('711', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6529 INSERT INTO `marc_subfield_structure` VALUES ('711', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6530 INSERT INTO `marc_subfield_structure` VALUES ('711', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6531 INSERT INTO `marc_subfield_structure` VALUES ('711', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6532 INSERT INTO `marc_subfield_structure` VALUES ('711', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6533 INSERT INTO `marc_subfield_structure` VALUES ('711', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6534 INSERT INTO `marc_subfield_structure` VALUES ('711', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6535 INSERT INTO `marc_subfield_structure` VALUES ('711', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6536 INSERT INTO `marc_subfield_structure` VALUES ('711', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6537 INSERT INTO `marc_subfield_structure` VALUES ('711', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6538 INSERT INTO `marc_subfield_structure` VALUES ('711', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6539 INSERT INTO `marc_subfield_structure` VALUES ('715', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'BKS', '', '');
6540 INSERT INTO `marc_subfield_structure` VALUES ('715', 'a', 'Corporate name or jurisdiction name', 'Corporate name or jurisdiction name', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6541 INSERT INTO `marc_subfield_structure` VALUES ('715', 'b', 'Subordinate unit', 'Subordinate unit', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6542 INSERT INTO `marc_subfield_structure` VALUES ('715', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6543 INSERT INTO `marc_subfield_structure` VALUES ('715', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6544 INSERT INTO `marc_subfield_structure` VALUES ('715', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6545 INSERT INTO `marc_subfield_structure` VALUES ('715', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6546 INSERT INTO `marc_subfield_structure` VALUES ('715', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6547 INSERT INTO `marc_subfield_structure` VALUES ('715', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6548 INSERT INTO `marc_subfield_structure` VALUES ('715', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6549 INSERT INTO `marc_subfield_structure` VALUES ('715', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6550 INSERT INTO `marc_subfield_structure` VALUES ('715', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6551 INSERT INTO `marc_subfield_structure` VALUES ('715', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6552 INSERT INTO `marc_subfield_structure` VALUES ('715', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6553 INSERT INTO `marc_subfield_structure` VALUES ('715', 'u', 'Nonprinting information', 'Nonprinting information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6554 INSERT INTO `marc_subfield_structure` VALUES ('720', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6555 INSERT INTO `marc_subfield_structure` VALUES ('720', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6556 INSERT INTO `marc_subfield_structure` VALUES ('720', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6557 INSERT INTO `marc_subfield_structure` VALUES ('720', 'a', 'Name', 'Name', 0, 0, '', 7, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6558 INSERT INTO `marc_subfield_structure` VALUES ('720', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'BKS', '', '');
6559 INSERT INTO `marc_subfield_structure` VALUES ('730', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6560 INSERT INTO `marc_subfield_structure` VALUES ('730', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6561 INSERT INTO `marc_subfield_structure` VALUES ('730', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6562 INSERT INTO `marc_subfield_structure` VALUES ('730', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6563 INSERT INTO `marc_subfield_structure` VALUES ('730', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'BKS', '', '');
6564 INSERT INTO `marc_subfield_structure` VALUES ('730', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6565 INSERT INTO `marc_subfield_structure` VALUES ('730', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6566 INSERT INTO `marc_subfield_structure` VALUES ('730', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6567 INSERT INTO `marc_subfield_structure` VALUES ('730', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6568 INSERT INTO `marc_subfield_structure` VALUES ('730', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6569 INSERT INTO `marc_subfield_structure` VALUES ('730', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6570 INSERT INTO `marc_subfield_structure` VALUES ('730', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6571 INSERT INTO `marc_subfield_structure` VALUES ('730', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6572 INSERT INTO `marc_subfield_structure` VALUES ('730', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6573 INSERT INTO `marc_subfield_structure` VALUES ('730', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6574 INSERT INTO `marc_subfield_structure` VALUES ('730', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6575 INSERT INTO `marc_subfield_structure` VALUES ('730', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6576 INSERT INTO `marc_subfield_structure` VALUES ('730', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6577 INSERT INTO `marc_subfield_structure` VALUES ('730', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6578 INSERT INTO `marc_subfield_structure` VALUES ('730', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6579 INSERT INTO `marc_subfield_structure` VALUES ('740', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6580 INSERT INTO `marc_subfield_structure` VALUES ('740', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6581 INSERT INTO `marc_subfield_structure` VALUES ('740', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6582 INSERT INTO `marc_subfield_structure` VALUES ('740', 'a', 'Uncontrolled related/analytical title', 'Uncontrolled related/analytical title', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6583 INSERT INTO `marc_subfield_structure` VALUES ('740', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6584 INSERT INTO `marc_subfield_structure` VALUES ('740', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6585 INSERT INTO `marc_subfield_structure` VALUES ('740', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6586 INSERT INTO `marc_subfield_structure` VALUES ('752', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6587 INSERT INTO `marc_subfield_structure` VALUES ('752', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6588 INSERT INTO `marc_subfield_structure` VALUES ('752', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6589 INSERT INTO `marc_subfield_structure` VALUES ('752', 'a', 'Country or larger entity', 'Country or larger entity', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6590 INSERT INTO `marc_subfield_structure` VALUES ('752', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6591 INSERT INTO `marc_subfield_structure` VALUES ('752', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6592 INSERT INTO `marc_subfield_structure` VALUES ('752', 'd', 'City', 'City', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6593 INSERT INTO `marc_subfield_structure` VALUES ('752', 'f', 'City subsection', 'City subsection', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6594 INSERT INTO `marc_subfield_structure` VALUES ('752', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6595 INSERT INTO `marc_subfield_structure` VALUES ('752', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6596 INSERT INTO `marc_subfield_structure` VALUES ('753', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6597 INSERT INTO `marc_subfield_structure` VALUES ('753', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6598 INSERT INTO `marc_subfield_structure` VALUES ('753', 'a', 'Make and model of machine', 'Make and model of machine', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6599 INSERT INTO `marc_subfield_structure` VALUES ('753', 'b', 'Programming language', 'Programming language', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6600 INSERT INTO `marc_subfield_structure` VALUES ('753', 'c', 'Operating system', 'Operating system', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6601 INSERT INTO `marc_subfield_structure` VALUES ('754', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6602 INSERT INTO `marc_subfield_structure` VALUES ('754', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6603 INSERT INTO `marc_subfield_structure` VALUES ('754', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6604 INSERT INTO `marc_subfield_structure` VALUES ('754', 'a', 'Taxonomic name', 'Taxonomic name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6605 INSERT INTO `marc_subfield_structure` VALUES ('754', 'c', 'Taxonomic category', 'Taxonomic category', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6606 INSERT INTO `marc_subfield_structure` VALUES ('754', 'd', 'Common or alternative name', 'Common or alternative name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6607 INSERT INTO `marc_subfield_structure` VALUES ('754', 'x', 'Non-public note', 'Non-public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6608 INSERT INTO `marc_subfield_structure` VALUES ('754', 'z', 'Public note', 'Public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6609 INSERT INTO `marc_subfield_structure` VALUES ('755', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6610 INSERT INTO `marc_subfield_structure` VALUES ('755', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6611 INSERT INTO `marc_subfield_structure` VALUES ('755', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6612 INSERT INTO `marc_subfield_structure` VALUES ('755', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6613 INSERT INTO `marc_subfield_structure` VALUES ('755', 'a', 'Access term', 'Access term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6614 INSERT INTO `marc_subfield_structure` VALUES ('755', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6615 INSERT INTO `marc_subfield_structure` VALUES ('755', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6616 INSERT INTO `marc_subfield_structure` VALUES ('755', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6617 INSERT INTO `marc_subfield_structure` VALUES ('760', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6618 INSERT INTO `marc_subfield_structure` VALUES ('760', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6619 INSERT INTO `marc_subfield_structure` VALUES ('760', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6620 INSERT INTO `marc_subfield_structure` VALUES ('760', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6621 INSERT INTO `marc_subfield_structure` VALUES ('760', 'b', 'Edition', 'Edition', 0, 0, NULL, -6, NULL, NULL, '', NULL, 0, 'BKS', '', '');
6622 INSERT INTO `marc_subfield_structure` VALUES ('760', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6623 INSERT INTO `marc_subfield_structure` VALUES ('760', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6624 INSERT INTO `marc_subfield_structure` VALUES ('760', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6625 INSERT INTO `marc_subfield_structure` VALUES ('760', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6626 INSERT INTO `marc_subfield_structure` VALUES ('760', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6627 INSERT INTO `marc_subfield_structure` VALUES ('760', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6628 INSERT INTO `marc_subfield_structure` VALUES ('760', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6629 INSERT INTO `marc_subfield_structure` VALUES ('760', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6630 INSERT INTO `marc_subfield_structure` VALUES ('760', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6631 INSERT INTO `marc_subfield_structure` VALUES ('760', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6632 INSERT INTO `marc_subfield_structure` VALUES ('760', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6633 INSERT INTO `marc_subfield_structure` VALUES ('760', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6634 INSERT INTO `marc_subfield_structure` VALUES ('760', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6635 INSERT INTO `marc_subfield_structure` VALUES ('760', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6636 INSERT INTO `marc_subfield_structure` VALUES ('762', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6637 INSERT INTO `marc_subfield_structure` VALUES ('762', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6638 INSERT INTO `marc_subfield_structure` VALUES ('762', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6639 INSERT INTO `marc_subfield_structure` VALUES ('762', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6640 INSERT INTO `marc_subfield_structure` VALUES ('762', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6641 INSERT INTO `marc_subfield_structure` VALUES ('762', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6642 INSERT INTO `marc_subfield_structure` VALUES ('762', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6643 INSERT INTO `marc_subfield_structure` VALUES ('762', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6644 INSERT INTO `marc_subfield_structure` VALUES ('762', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6645 INSERT INTO `marc_subfield_structure` VALUES ('762', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6646 INSERT INTO `marc_subfield_structure` VALUES ('762', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6647 INSERT INTO `marc_subfield_structure` VALUES ('762', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6648 INSERT INTO `marc_subfield_structure` VALUES ('762', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6649 INSERT INTO `marc_subfield_structure` VALUES ('762', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6650 INSERT INTO `marc_subfield_structure` VALUES ('762', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6651 INSERT INTO `marc_subfield_structure` VALUES ('762', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6652 INSERT INTO `marc_subfield_structure` VALUES ('762', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6653 INSERT INTO `marc_subfield_structure` VALUES ('762', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6654 INSERT INTO `marc_subfield_structure` VALUES ('762', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6655 INSERT INTO `marc_subfield_structure` VALUES ('765', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6656 INSERT INTO `marc_subfield_structure` VALUES ('765', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6657 INSERT INTO `marc_subfield_structure` VALUES ('765', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6658 INSERT INTO `marc_subfield_structure` VALUES ('765', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6659 INSERT INTO `marc_subfield_structure` VALUES ('765', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6660 INSERT INTO `marc_subfield_structure` VALUES ('765', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6661 INSERT INTO `marc_subfield_structure` VALUES ('765', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6662 INSERT INTO `marc_subfield_structure` VALUES ('765', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6663 INSERT INTO `marc_subfield_structure` VALUES ('765', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6664 INSERT INTO `marc_subfield_structure` VALUES ('765', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6665 INSERT INTO `marc_subfield_structure` VALUES ('765', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6666 INSERT INTO `marc_subfield_structure` VALUES ('765', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6667 INSERT INTO `marc_subfield_structure` VALUES ('765', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6668 INSERT INTO `marc_subfield_structure` VALUES ('765', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6669 INSERT INTO `marc_subfield_structure` VALUES ('765', 'q', 'Parallel title (BK SE)  [OBSOLETE]', 'Parallel title (BK SE)  [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6670 INSERT INTO `marc_subfield_structure` VALUES ('765', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6671 INSERT INTO `marc_subfield_structure` VALUES ('765', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6672 INSERT INTO `marc_subfield_structure` VALUES ('765', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6673 INSERT INTO `marc_subfield_structure` VALUES ('765', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6674 INSERT INTO `marc_subfield_structure` VALUES ('765', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6675 INSERT INTO `marc_subfield_structure` VALUES ('765', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6676 INSERT INTO `marc_subfield_structure` VALUES ('765', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6677 INSERT INTO `marc_subfield_structure` VALUES ('765', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6678 INSERT INTO `marc_subfield_structure` VALUES ('767', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6679 INSERT INTO `marc_subfield_structure` VALUES ('767', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6680 INSERT INTO `marc_subfield_structure` VALUES ('767', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6681 INSERT INTO `marc_subfield_structure` VALUES ('767', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6682 INSERT INTO `marc_subfield_structure` VALUES ('767', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6683 INSERT INTO `marc_subfield_structure` VALUES ('767', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6684 INSERT INTO `marc_subfield_structure` VALUES ('767', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6685 INSERT INTO `marc_subfield_structure` VALUES ('767', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6686 INSERT INTO `marc_subfield_structure` VALUES ('767', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6687 INSERT INTO `marc_subfield_structure` VALUES ('767', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6688 INSERT INTO `marc_subfield_structure` VALUES ('767', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6689 INSERT INTO `marc_subfield_structure` VALUES ('767', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6690 INSERT INTO `marc_subfield_structure` VALUES ('767', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6691 INSERT INTO `marc_subfield_structure` VALUES ('767', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6692 INSERT INTO `marc_subfield_structure` VALUES ('767', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6693 INSERT INTO `marc_subfield_structure` VALUES ('767', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6694 INSERT INTO `marc_subfield_structure` VALUES ('767', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6695 INSERT INTO `marc_subfield_structure` VALUES ('767', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6696 INSERT INTO `marc_subfield_structure` VALUES ('767', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6697 INSERT INTO `marc_subfield_structure` VALUES ('767', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6698 INSERT INTO `marc_subfield_structure` VALUES ('767', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6699 INSERT INTO `marc_subfield_structure` VALUES ('767', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6700 INSERT INTO `marc_subfield_structure` VALUES ('767', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6701 INSERT INTO `marc_subfield_structure` VALUES ('770', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6702 INSERT INTO `marc_subfield_structure` VALUES ('770', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6703 INSERT INTO `marc_subfield_structure` VALUES ('770', '8', 'Field link and sequence number', 'Field link and sequence number ', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6704 INSERT INTO `marc_subfield_structure` VALUES ('770', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6705 INSERT INTO `marc_subfield_structure` VALUES ('770', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6706 INSERT INTO `marc_subfield_structure` VALUES ('770', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6707 INSERT INTO `marc_subfield_structure` VALUES ('770', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6708 INSERT INTO `marc_subfield_structure` VALUES ('770', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6709 INSERT INTO `marc_subfield_structure` VALUES ('770', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6710 INSERT INTO `marc_subfield_structure` VALUES ('770', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6711 INSERT INTO `marc_subfield_structure` VALUES ('770', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6712 INSERT INTO `marc_subfield_structure` VALUES ('770', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6713 INSERT INTO `marc_subfield_structure` VALUES ('770', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6714 INSERT INTO `marc_subfield_structure` VALUES ('770', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6715 INSERT INTO `marc_subfield_structure` VALUES ('770', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6716 INSERT INTO `marc_subfield_structure` VALUES ('770', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6717 INSERT INTO `marc_subfield_structure` VALUES ('770', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6718 INSERT INTO `marc_subfield_structure` VALUES ('770', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6719 INSERT INTO `marc_subfield_structure` VALUES ('770', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6720 INSERT INTO `marc_subfield_structure` VALUES ('770', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6721 INSERT INTO `marc_subfield_structure` VALUES ('770', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6722 INSERT INTO `marc_subfield_structure` VALUES ('770', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6723 INSERT INTO `marc_subfield_structure` VALUES ('770', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6724 INSERT INTO `marc_subfield_structure` VALUES ('772', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6725 INSERT INTO `marc_subfield_structure` VALUES ('772', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6726 INSERT INTO `marc_subfield_structure` VALUES ('772', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6727 INSERT INTO `marc_subfield_structure` VALUES ('772', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6728 INSERT INTO `marc_subfield_structure` VALUES ('772', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6729 INSERT INTO `marc_subfield_structure` VALUES ('772', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6730 INSERT INTO `marc_subfield_structure` VALUES ('772', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6731 INSERT INTO `marc_subfield_structure` VALUES ('772', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6732 INSERT INTO `marc_subfield_structure` VALUES ('772', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6733 INSERT INTO `marc_subfield_structure` VALUES ('772', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6734 INSERT INTO `marc_subfield_structure` VALUES ('772', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6735 INSERT INTO `marc_subfield_structure` VALUES ('772', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6736 INSERT INTO `marc_subfield_structure` VALUES ('772', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6737 INSERT INTO `marc_subfield_structure` VALUES ('772', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6738 INSERT INTO `marc_subfield_structure` VALUES ('772', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6739 INSERT INTO `marc_subfield_structure` VALUES ('772', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6740 INSERT INTO `marc_subfield_structure` VALUES ('772', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6741 INSERT INTO `marc_subfield_structure` VALUES ('772', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6742 INSERT INTO `marc_subfield_structure` VALUES ('772', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6743 INSERT INTO `marc_subfield_structure` VALUES ('772', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6744 INSERT INTO `marc_subfield_structure` VALUES ('772', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6745 INSERT INTO `marc_subfield_structure` VALUES ('772', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6746 INSERT INTO `marc_subfield_structure` VALUES ('772', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6747 INSERT INTO `marc_subfield_structure` VALUES ('773', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6748 INSERT INTO `marc_subfield_structure` VALUES ('773', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6749 INSERT INTO `marc_subfield_structure` VALUES ('773', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6750 INSERT INTO `marc_subfield_structure` VALUES ('773', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6751 INSERT INTO `marc_subfield_structure` VALUES ('773', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6752 INSERT INTO `marc_subfield_structure` VALUES ('773', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6753 INSERT INTO `marc_subfield_structure` VALUES ('773', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6754 INSERT INTO `marc_subfield_structure` VALUES ('773', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6755 INSERT INTO `marc_subfield_structure` VALUES ('773', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6756 INSERT INTO `marc_subfield_structure` VALUES ('773', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6757 INSERT INTO `marc_subfield_structure` VALUES ('773', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6758 INSERT INTO `marc_subfield_structure` VALUES ('773', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6759 INSERT INTO `marc_subfield_structure` VALUES ('773', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6760 INSERT INTO `marc_subfield_structure` VALUES ('773', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6761 INSERT INTO `marc_subfield_structure` VALUES ('773', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6762 INSERT INTO `marc_subfield_structure` VALUES ('773', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6763 INSERT INTO `marc_subfield_structure` VALUES ('773', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6764 INSERT INTO `marc_subfield_structure` VALUES ('773', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6765 INSERT INTO `marc_subfield_structure` VALUES ('773', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6766 INSERT INTO `marc_subfield_structure` VALUES ('773', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6767 INSERT INTO `marc_subfield_structure` VALUES ('773', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6768 INSERT INTO `marc_subfield_structure` VALUES ('773', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6769 INSERT INTO `marc_subfield_structure` VALUES ('773', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6770 INSERT INTO `marc_subfield_structure` VALUES ('774', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6771 INSERT INTO `marc_subfield_structure` VALUES ('774', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6772 INSERT INTO `marc_subfield_structure` VALUES ('774', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6773 INSERT INTO `marc_subfield_structure` VALUES ('774', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6774 INSERT INTO `marc_subfield_structure` VALUES ('774', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6775 INSERT INTO `marc_subfield_structure` VALUES ('774', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6776 INSERT INTO `marc_subfield_structure` VALUES ('774', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6777 INSERT INTO `marc_subfield_structure` VALUES ('774', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6778 INSERT INTO `marc_subfield_structure` VALUES ('774', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6779 INSERT INTO `marc_subfield_structure` VALUES ('774', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6780 INSERT INTO `marc_subfield_structure` VALUES ('774', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6781 INSERT INTO `marc_subfield_structure` VALUES ('774', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6782 INSERT INTO `marc_subfield_structure` VALUES ('774', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6783 INSERT INTO `marc_subfield_structure` VALUES ('774', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6784 INSERT INTO `marc_subfield_structure` VALUES ('774', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6785 INSERT INTO `marc_subfield_structure` VALUES ('774', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6786 INSERT INTO `marc_subfield_structure` VALUES ('774', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6787 INSERT INTO `marc_subfield_structure` VALUES ('774', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6788 INSERT INTO `marc_subfield_structure` VALUES ('774', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6789 INSERT INTO `marc_subfield_structure` VALUES ('774', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6790 INSERT INTO `marc_subfield_structure` VALUES ('774', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6791 INSERT INTO `marc_subfield_structure` VALUES ('774', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6792 INSERT INTO `marc_subfield_structure` VALUES ('775', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6793 INSERT INTO `marc_subfield_structure` VALUES ('775', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6794 INSERT INTO `marc_subfield_structure` VALUES ('775', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6795 INSERT INTO `marc_subfield_structure` VALUES ('775', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6796 INSERT INTO `marc_subfield_structure` VALUES ('775', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6797 INSERT INTO `marc_subfield_structure` VALUES ('775', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6798 INSERT INTO `marc_subfield_structure` VALUES ('775', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6799 INSERT INTO `marc_subfield_structure` VALUES ('775', 'e', 'Language code', 'Language code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6800 INSERT INTO `marc_subfield_structure` VALUES ('775', 'f', 'Country code', 'Country code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6801 INSERT INTO `marc_subfield_structure` VALUES ('775', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6802 INSERT INTO `marc_subfield_structure` VALUES ('775', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6803 INSERT INTO `marc_subfield_structure` VALUES ('775', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6804 INSERT INTO `marc_subfield_structure` VALUES ('775', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6805 INSERT INTO `marc_subfield_structure` VALUES ('775', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6806 INSERT INTO `marc_subfield_structure` VALUES ('775', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6807 INSERT INTO `marc_subfield_structure` VALUES ('775', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6808 INSERT INTO `marc_subfield_structure` VALUES ('775', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6809 INSERT INTO `marc_subfield_structure` VALUES ('775', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6810 INSERT INTO `marc_subfield_structure` VALUES ('775', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6811 INSERT INTO `marc_subfield_structure` VALUES ('775', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6812 INSERT INTO `marc_subfield_structure` VALUES ('775', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6813 INSERT INTO `marc_subfield_structure` VALUES ('775', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6814 INSERT INTO `marc_subfield_structure` VALUES ('775', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6815 INSERT INTO `marc_subfield_structure` VALUES ('775', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6816 INSERT INTO `marc_subfield_structure` VALUES ('775', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6817 INSERT INTO `marc_subfield_structure` VALUES ('776', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6818 INSERT INTO `marc_subfield_structure` VALUES ('776', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6819 INSERT INTO `marc_subfield_structure` VALUES ('776', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6820 INSERT INTO `marc_subfield_structure` VALUES ('776', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6821 INSERT INTO `marc_subfield_structure` VALUES ('776', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6822 INSERT INTO `marc_subfield_structure` VALUES ('776', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6823 INSERT INTO `marc_subfield_structure` VALUES ('776', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6824 INSERT INTO `marc_subfield_structure` VALUES ('776', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6825 INSERT INTO `marc_subfield_structure` VALUES ('776', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6826 INSERT INTO `marc_subfield_structure` VALUES ('776', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6827 INSERT INTO `marc_subfield_structure` VALUES ('776', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6828 INSERT INTO `marc_subfield_structure` VALUES ('776', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6829 INSERT INTO `marc_subfield_structure` VALUES ('776', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6830 INSERT INTO `marc_subfield_structure` VALUES ('776', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6831 INSERT INTO `marc_subfield_structure` VALUES ('776', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6832 INSERT INTO `marc_subfield_structure` VALUES ('776', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6833 INSERT INTO `marc_subfield_structure` VALUES ('776', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6834 INSERT INTO `marc_subfield_structure` VALUES ('776', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6835 INSERT INTO `marc_subfield_structure` VALUES ('776', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6836 INSERT INTO `marc_subfield_structure` VALUES ('776', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6837 INSERT INTO `marc_subfield_structure` VALUES ('776', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6838 INSERT INTO `marc_subfield_structure` VALUES ('776', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6839 INSERT INTO `marc_subfield_structure` VALUES ('776', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6840 INSERT INTO `marc_subfield_structure` VALUES ('777', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6841 INSERT INTO `marc_subfield_structure` VALUES ('777', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6842 INSERT INTO `marc_subfield_structure` VALUES ('777', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6843 INSERT INTO `marc_subfield_structure` VALUES ('777', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6844 INSERT INTO `marc_subfield_structure` VALUES ('777', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6845 INSERT INTO `marc_subfield_structure` VALUES ('777', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6846 INSERT INTO `marc_subfield_structure` VALUES ('777', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6847 INSERT INTO `marc_subfield_structure` VALUES ('777', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6848 INSERT INTO `marc_subfield_structure` VALUES ('777', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6849 INSERT INTO `marc_subfield_structure` VALUES ('777', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6850 INSERT INTO `marc_subfield_structure` VALUES ('777', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6851 INSERT INTO `marc_subfield_structure` VALUES ('777', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6852 INSERT INTO `marc_subfield_structure` VALUES ('777', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6853 INSERT INTO `marc_subfield_structure` VALUES ('777', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6854 INSERT INTO `marc_subfield_structure` VALUES ('777', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6855 INSERT INTO `marc_subfield_structure` VALUES ('777', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6856 INSERT INTO `marc_subfield_structure` VALUES ('777', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6857 INSERT INTO `marc_subfield_structure` VALUES ('777', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6858 INSERT INTO `marc_subfield_structure` VALUES ('777', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6859 INSERT INTO `marc_subfield_structure` VALUES ('777', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6860 INSERT INTO `marc_subfield_structure` VALUES ('780', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6861 INSERT INTO `marc_subfield_structure` VALUES ('780', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6862 INSERT INTO `marc_subfield_structure` VALUES ('780', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6863 INSERT INTO `marc_subfield_structure` VALUES ('780', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6864 INSERT INTO `marc_subfield_structure` VALUES ('780', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6865 INSERT INTO `marc_subfield_structure` VALUES ('780', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6866 INSERT INTO `marc_subfield_structure` VALUES ('780', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6867 INSERT INTO `marc_subfield_structure` VALUES ('780', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6868 INSERT INTO `marc_subfield_structure` VALUES ('780', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6869 INSERT INTO `marc_subfield_structure` VALUES ('780', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6870 INSERT INTO `marc_subfield_structure` VALUES ('780', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6871 INSERT INTO `marc_subfield_structure` VALUES ('780', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6872 INSERT INTO `marc_subfield_structure` VALUES ('780', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6873 INSERT INTO `marc_subfield_structure` VALUES ('780', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6874 INSERT INTO `marc_subfield_structure` VALUES ('780', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6875 INSERT INTO `marc_subfield_structure` VALUES ('780', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6876 INSERT INTO `marc_subfield_structure` VALUES ('780', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6877 INSERT INTO `marc_subfield_structure` VALUES ('780', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6878 INSERT INTO `marc_subfield_structure` VALUES ('780', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6879 INSERT INTO `marc_subfield_structure` VALUES ('780', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6880 INSERT INTO `marc_subfield_structure` VALUES ('780', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6881 INSERT INTO `marc_subfield_structure` VALUES ('780', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6882 INSERT INTO `marc_subfield_structure` VALUES ('780', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6883 INSERT INTO `marc_subfield_structure` VALUES ('785', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6884 INSERT INTO `marc_subfield_structure` VALUES ('785', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6885 INSERT INTO `marc_subfield_structure` VALUES ('785', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6886 INSERT INTO `marc_subfield_structure` VALUES ('785', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6887 INSERT INTO `marc_subfield_structure` VALUES ('785', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6888 INSERT INTO `marc_subfield_structure` VALUES ('785', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6889 INSERT INTO `marc_subfield_structure` VALUES ('785', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6890 INSERT INTO `marc_subfield_structure` VALUES ('785', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6891 INSERT INTO `marc_subfield_structure` VALUES ('785', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6892 INSERT INTO `marc_subfield_structure` VALUES ('785', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6893 INSERT INTO `marc_subfield_structure` VALUES ('785', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6894 INSERT INTO `marc_subfield_structure` VALUES ('785', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6895 INSERT INTO `marc_subfield_structure` VALUES ('785', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6896 INSERT INTO `marc_subfield_structure` VALUES ('785', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6897 INSERT INTO `marc_subfield_structure` VALUES ('785', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6898 INSERT INTO `marc_subfield_structure` VALUES ('785', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6899 INSERT INTO `marc_subfield_structure` VALUES ('785', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6900 INSERT INTO `marc_subfield_structure` VALUES ('785', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6901 INSERT INTO `marc_subfield_structure` VALUES ('785', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6902 INSERT INTO `marc_subfield_structure` VALUES ('785', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6903 INSERT INTO `marc_subfield_structure` VALUES ('785', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6904 INSERT INTO `marc_subfield_structure` VALUES ('785', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6905 INSERT INTO `marc_subfield_structure` VALUES ('785', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6906 INSERT INTO `marc_subfield_structure` VALUES ('786', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6907 INSERT INTO `marc_subfield_structure` VALUES ('786', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6908 INSERT INTO `marc_subfield_structure` VALUES ('786', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6909 INSERT INTO `marc_subfield_structure` VALUES ('786', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6910 INSERT INTO `marc_subfield_structure` VALUES ('786', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6911 INSERT INTO `marc_subfield_structure` VALUES ('786', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6912 INSERT INTO `marc_subfield_structure` VALUES ('786', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6913 INSERT INTO `marc_subfield_structure` VALUES ('786', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6914 INSERT INTO `marc_subfield_structure` VALUES ('786', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6915 INSERT INTO `marc_subfield_structure` VALUES ('786', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6916 INSERT INTO `marc_subfield_structure` VALUES ('786', 'j', 'Period of content', 'Period of content', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6917 INSERT INTO `marc_subfield_structure` VALUES ('786', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6918 INSERT INTO `marc_subfield_structure` VALUES ('786', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6919 INSERT INTO `marc_subfield_structure` VALUES ('786', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6920 INSERT INTO `marc_subfield_structure` VALUES ('786', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6921 INSERT INTO `marc_subfield_structure` VALUES ('786', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6922 INSERT INTO `marc_subfield_structure` VALUES ('786', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6923 INSERT INTO `marc_subfield_structure` VALUES ('786', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6924 INSERT INTO `marc_subfield_structure` VALUES ('786', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6925 INSERT INTO `marc_subfield_structure` VALUES ('786', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6926 INSERT INTO `marc_subfield_structure` VALUES ('786', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6927 INSERT INTO `marc_subfield_structure` VALUES ('786', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6928 INSERT INTO `marc_subfield_structure` VALUES ('786', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6929 INSERT INTO `marc_subfield_structure` VALUES ('786', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6930 INSERT INTO `marc_subfield_structure` VALUES ('787', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6931 INSERT INTO `marc_subfield_structure` VALUES ('787', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6932 INSERT INTO `marc_subfield_structure` VALUES ('787', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6933 INSERT INTO `marc_subfield_structure` VALUES ('787', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6934 INSERT INTO `marc_subfield_structure` VALUES ('787', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6935 INSERT INTO `marc_subfield_structure` VALUES ('787', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6936 INSERT INTO `marc_subfield_structure` VALUES ('787', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6937 INSERT INTO `marc_subfield_structure` VALUES ('787', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6938 INSERT INTO `marc_subfield_structure` VALUES ('787', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6939 INSERT INTO `marc_subfield_structure` VALUES ('787', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6940 INSERT INTO `marc_subfield_structure` VALUES ('787', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6941 INSERT INTO `marc_subfield_structure` VALUES ('787', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6942 INSERT INTO `marc_subfield_structure` VALUES ('787', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6943 INSERT INTO `marc_subfield_structure` VALUES ('787', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6944 INSERT INTO `marc_subfield_structure` VALUES ('787', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6945 INSERT INTO `marc_subfield_structure` VALUES ('787', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6946 INSERT INTO `marc_subfield_structure` VALUES ('787', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6947 INSERT INTO `marc_subfield_structure` VALUES ('787', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6948 INSERT INTO `marc_subfield_structure` VALUES ('787', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6949 INSERT INTO `marc_subfield_structure` VALUES ('787', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6950 INSERT INTO `marc_subfield_structure` VALUES ('787', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6951 INSERT INTO `marc_subfield_structure` VALUES ('787', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6952 INSERT INTO `marc_subfield_structure` VALUES ('787', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
6953 INSERT INTO `marc_subfield_structure` VALUES ('789', '%', '%', '%', 0, 0, '', 7, '', '', '', 0, -6, 'BKS', '', '');
6954 INSERT INTO `marc_subfield_structure` VALUES ('789', '2', '2', '2', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6955 INSERT INTO `marc_subfield_structure` VALUES ('789', '3', '3', '3', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6956 INSERT INTO `marc_subfield_structure` VALUES ('789', '4', '4', '4', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6957 INSERT INTO `marc_subfield_structure` VALUES ('789', '5', '5', '5', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6958 INSERT INTO `marc_subfield_structure` VALUES ('789', '6', '6', '6', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6959 INSERT INTO `marc_subfield_structure` VALUES ('789', '7', '7', '7', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6960 INSERT INTO `marc_subfield_structure` VALUES ('789', '8', '8', '8', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6961 INSERT INTO `marc_subfield_structure` VALUES ('789', '9', '9', '9', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6962 INSERT INTO `marc_subfield_structure` VALUES ('789', 'a', 'a', 'a', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6963 INSERT INTO `marc_subfield_structure` VALUES ('789', 'b', 'b', 'b', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6964 INSERT INTO `marc_subfield_structure` VALUES ('789', 'c', 'c', 'c', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6965 INSERT INTO `marc_subfield_structure` VALUES ('789', 'd', 'd', 'd', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6966 INSERT INTO `marc_subfield_structure` VALUES ('789', 'e', 'e', 'e', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6967 INSERT INTO `marc_subfield_structure` VALUES ('789', 'f', 'f', 'f', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6968 INSERT INTO `marc_subfield_structure` VALUES ('789', 'g', 'g', 'g', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6969 INSERT INTO `marc_subfield_structure` VALUES ('789', 'h', 'h', 'h', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6970 INSERT INTO `marc_subfield_structure` VALUES ('789', 'i', 'i', 'i', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6971 INSERT INTO `marc_subfield_structure` VALUES ('789', 'j', 'j', 'j', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6972 INSERT INTO `marc_subfield_structure` VALUES ('789', 'k', 'k', 'k', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6973 INSERT INTO `marc_subfield_structure` VALUES ('789', 'l', 'l', 'l', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6974 INSERT INTO `marc_subfield_structure` VALUES ('789', 'm', 'm', 'm', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6975 INSERT INTO `marc_subfield_structure` VALUES ('789', 'n', 'n', 'n', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6976 INSERT INTO `marc_subfield_structure` VALUES ('789', 'o', 'o', 'o', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6977 INSERT INTO `marc_subfield_structure` VALUES ('789', 'p', 'p', 'p', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6978 INSERT INTO `marc_subfield_structure` VALUES ('789', 'q', 'q', 'q', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6979 INSERT INTO `marc_subfield_structure` VALUES ('789', 'r', 'r', 'r', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6980 INSERT INTO `marc_subfield_structure` VALUES ('789', 's', 's', 's', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6981 INSERT INTO `marc_subfield_structure` VALUES ('789', 't', 't', 't', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6982 INSERT INTO `marc_subfield_structure` VALUES ('789', 'u', 'u', 'u', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6983 INSERT INTO `marc_subfield_structure` VALUES ('789', 'v', 'v', 'v', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6984 INSERT INTO `marc_subfield_structure` VALUES ('789', 'w', 'w', 'w', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6985 INSERT INTO `marc_subfield_structure` VALUES ('789', 'x', 'x', 'x', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6986 INSERT INTO `marc_subfield_structure` VALUES ('789', 'y', 'y', 'y', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6987 INSERT INTO `marc_subfield_structure` VALUES ('789', 'z', 'z', 'z', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6988 INSERT INTO `marc_subfield_structure` VALUES ('796', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'BKS', '', '');
6989 INSERT INTO `marc_subfield_structure` VALUES ('796', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6990 INSERT INTO `marc_subfield_structure` VALUES ('796', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6991 INSERT INTO `marc_subfield_structure` VALUES ('796', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6992 INSERT INTO `marc_subfield_structure` VALUES ('796', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6993 INSERT INTO `marc_subfield_structure` VALUES ('796', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6994 INSERT INTO `marc_subfield_structure` VALUES ('796', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'BKS', '', '');
6995 INSERT INTO `marc_subfield_structure` VALUES ('796', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6996 INSERT INTO `marc_subfield_structure` VALUES ('796', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6997 INSERT INTO `marc_subfield_structure` VALUES ('796', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6998 INSERT INTO `marc_subfield_structure` VALUES ('796', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
6999 INSERT INTO `marc_subfield_structure` VALUES ('796', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7000 INSERT INTO `marc_subfield_structure` VALUES ('796', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7001 INSERT INTO `marc_subfield_structure` VALUES ('796', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7002 INSERT INTO `marc_subfield_structure` VALUES ('796', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7003 INSERT INTO `marc_subfield_structure` VALUES ('796', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7004 INSERT INTO `marc_subfield_structure` VALUES ('796', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7005 INSERT INTO `marc_subfield_structure` VALUES ('796', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7006 INSERT INTO `marc_subfield_structure` VALUES ('796', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7007 INSERT INTO `marc_subfield_structure` VALUES ('796', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7008 INSERT INTO `marc_subfield_structure` VALUES ('796', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7009 INSERT INTO `marc_subfield_structure` VALUES ('796', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7010 INSERT INTO `marc_subfield_structure` VALUES ('796', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7011 INSERT INTO `marc_subfield_structure` VALUES ('796', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7012 INSERT INTO `marc_subfield_structure` VALUES ('796', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7013 INSERT INTO `marc_subfield_structure` VALUES ('796', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7014 INSERT INTO `marc_subfield_structure` VALUES ('796', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7015 INSERT INTO `marc_subfield_structure` VALUES ('796', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7016 INSERT INTO `marc_subfield_structure` VALUES ('797', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'BKS', '', '');
7017 INSERT INTO `marc_subfield_structure` VALUES ('797', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7018 INSERT INTO `marc_subfield_structure` VALUES ('797', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7019 INSERT INTO `marc_subfield_structure` VALUES ('797', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7020 INSERT INTO `marc_subfield_structure` VALUES ('797', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7021 INSERT INTO `marc_subfield_structure` VALUES ('797', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7022 INSERT INTO `marc_subfield_structure` VALUES ('797', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'BKS', '', '');
7023 INSERT INTO `marc_subfield_structure` VALUES ('797', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7024 INSERT INTO `marc_subfield_structure` VALUES ('797', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7025 INSERT INTO `marc_subfield_structure` VALUES ('797', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7026 INSERT INTO `marc_subfield_structure` VALUES ('797', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7027 INSERT INTO `marc_subfield_structure` VALUES ('797', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7028 INSERT INTO `marc_subfield_structure` VALUES ('797', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7029 INSERT INTO `marc_subfield_structure` VALUES ('797', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7030 INSERT INTO `marc_subfield_structure` VALUES ('797', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7031 INSERT INTO `marc_subfield_structure` VALUES ('797', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7032 INSERT INTO `marc_subfield_structure` VALUES ('797', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7033 INSERT INTO `marc_subfield_structure` VALUES ('797', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7034 INSERT INTO `marc_subfield_structure` VALUES ('797', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7035 INSERT INTO `marc_subfield_structure` VALUES ('797', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7036 INSERT INTO `marc_subfield_structure` VALUES ('797', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7037 INSERT INTO `marc_subfield_structure` VALUES ('797', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7038 INSERT INTO `marc_subfield_structure` VALUES ('797', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7039 INSERT INTO `marc_subfield_structure` VALUES ('797', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7040 INSERT INTO `marc_subfield_structure` VALUES ('797', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7041 INSERT INTO `marc_subfield_structure` VALUES ('797', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7042 INSERT INTO `marc_subfield_structure` VALUES ('798', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'BKS', '', '');
7043 INSERT INTO `marc_subfield_structure` VALUES ('798', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7044 INSERT INTO `marc_subfield_structure` VALUES ('798', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7045 INSERT INTO `marc_subfield_structure` VALUES ('798', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7046 INSERT INTO `marc_subfield_structure` VALUES ('798', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7047 INSERT INTO `marc_subfield_structure` VALUES ('798', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7048 INSERT INTO `marc_subfield_structure` VALUES ('798', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'BKS', '', '');
7049 INSERT INTO `marc_subfield_structure` VALUES ('798', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7050 INSERT INTO `marc_subfield_structure` VALUES ('798', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7051 INSERT INTO `marc_subfield_structure` VALUES ('798', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7052 INSERT INTO `marc_subfield_structure` VALUES ('798', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7053 INSERT INTO `marc_subfield_structure` VALUES ('798', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7054 INSERT INTO `marc_subfield_structure` VALUES ('798', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7055 INSERT INTO `marc_subfield_structure` VALUES ('798', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7056 INSERT INTO `marc_subfield_structure` VALUES ('798', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7057 INSERT INTO `marc_subfield_structure` VALUES ('798', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7058 INSERT INTO `marc_subfield_structure` VALUES ('798', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7059 INSERT INTO `marc_subfield_structure` VALUES ('798', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7060 INSERT INTO `marc_subfield_structure` VALUES ('798', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7061 INSERT INTO `marc_subfield_structure` VALUES ('798', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7062 INSERT INTO `marc_subfield_structure` VALUES ('798', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7063 INSERT INTO `marc_subfield_structure` VALUES ('798', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7064 INSERT INTO `marc_subfield_structure` VALUES ('798', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7065 INSERT INTO `marc_subfield_structure` VALUES ('798', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7066 INSERT INTO `marc_subfield_structure` VALUES ('799', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'BKS', '', '');
7067 INSERT INTO `marc_subfield_structure` VALUES ('799', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7068 INSERT INTO `marc_subfield_structure` VALUES ('799', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7069 INSERT INTO `marc_subfield_structure` VALUES ('799', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7070 INSERT INTO `marc_subfield_structure` VALUES ('799', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7071 INSERT INTO `marc_subfield_structure` VALUES ('799', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'BKS', '', '');
7072 INSERT INTO `marc_subfield_structure` VALUES ('799', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7073 INSERT INTO `marc_subfield_structure` VALUES ('799', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7074 INSERT INTO `marc_subfield_structure` VALUES ('799', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7075 INSERT INTO `marc_subfield_structure` VALUES ('799', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7076 INSERT INTO `marc_subfield_structure` VALUES ('799', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7077 INSERT INTO `marc_subfield_structure` VALUES ('799', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7078 INSERT INTO `marc_subfield_structure` VALUES ('799', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7079 INSERT INTO `marc_subfield_structure` VALUES ('799', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7080 INSERT INTO `marc_subfield_structure` VALUES ('799', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7081 INSERT INTO `marc_subfield_structure` VALUES ('799', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7082 INSERT INTO `marc_subfield_structure` VALUES ('799', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7083 INSERT INTO `marc_subfield_structure` VALUES ('799', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7084 INSERT INTO `marc_subfield_structure` VALUES ('799', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7085 INSERT INTO `marc_subfield_structure` VALUES ('799', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7086 INSERT INTO `marc_subfield_structure` VALUES ('799', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'BKS', '', '');
7087 INSERT INTO `marc_subfield_structure` VALUES ('800', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7088 INSERT INTO `marc_subfield_structure` VALUES ('800', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7089 INSERT INTO `marc_subfield_structure` VALUES ('800', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7090 INSERT INTO `marc_subfield_structure` VALUES ('800', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'BKS', '', '');
7091 INSERT INTO `marc_subfield_structure` VALUES ('800', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7092 INSERT INTO `marc_subfield_structure` VALUES ('800', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7093 INSERT INTO `marc_subfield_structure` VALUES ('800', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7094 INSERT INTO `marc_subfield_structure` VALUES ('800', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7095 INSERT INTO `marc_subfield_structure` VALUES ('800', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7096 INSERT INTO `marc_subfield_structure` VALUES ('800', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7097 INSERT INTO `marc_subfield_structure` VALUES ('800', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7098 INSERT INTO `marc_subfield_structure` VALUES ('800', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7099 INSERT INTO `marc_subfield_structure` VALUES ('800', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7100 INSERT INTO `marc_subfield_structure` VALUES ('800', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7101 INSERT INTO `marc_subfield_structure` VALUES ('800', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7102 INSERT INTO `marc_subfield_structure` VALUES ('800', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7103 INSERT INTO `marc_subfield_structure` VALUES ('800', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7104 INSERT INTO `marc_subfield_structure` VALUES ('800', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7105 INSERT INTO `marc_subfield_structure` VALUES ('800', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7106 INSERT INTO `marc_subfield_structure` VALUES ('800', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7107 INSERT INTO `marc_subfield_structure` VALUES ('800', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7108 INSERT INTO `marc_subfield_structure` VALUES ('800', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7109 INSERT INTO `marc_subfield_structure` VALUES ('800', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7110 INSERT INTO `marc_subfield_structure` VALUES ('800', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7111 INSERT INTO `marc_subfield_structure` VALUES ('800', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7112 INSERT INTO `marc_subfield_structure` VALUES ('810', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7113 INSERT INTO `marc_subfield_structure` VALUES ('810', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7114 INSERT INTO `marc_subfield_structure` VALUES ('810', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7115 INSERT INTO `marc_subfield_structure` VALUES ('810', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'BKS', '', '');
7116 INSERT INTO `marc_subfield_structure` VALUES ('810', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7117 INSERT INTO `marc_subfield_structure` VALUES ('810', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7118 INSERT INTO `marc_subfield_structure` VALUES ('810', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7119 INSERT INTO `marc_subfield_structure` VALUES ('810', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7120 INSERT INTO `marc_subfield_structure` VALUES ('810', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7121 INSERT INTO `marc_subfield_structure` VALUES ('810', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7122 INSERT INTO `marc_subfield_structure` VALUES ('810', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7123 INSERT INTO `marc_subfield_structure` VALUES ('810', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7124 INSERT INTO `marc_subfield_structure` VALUES ('810', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7125 INSERT INTO `marc_subfield_structure` VALUES ('810', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7126 INSERT INTO `marc_subfield_structure` VALUES ('810', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7127 INSERT INTO `marc_subfield_structure` VALUES ('810', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7128 INSERT INTO `marc_subfield_structure` VALUES ('810', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7129 INSERT INTO `marc_subfield_structure` VALUES ('810', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7130 INSERT INTO `marc_subfield_structure` VALUES ('810', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7131 INSERT INTO `marc_subfield_structure` VALUES ('810', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7132 INSERT INTO `marc_subfield_structure` VALUES ('810', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7133 INSERT INTO `marc_subfield_structure` VALUES ('810', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7134 INSERT INTO `marc_subfield_structure` VALUES ('810', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7135 INSERT INTO `marc_subfield_structure` VALUES ('811', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7136 INSERT INTO `marc_subfield_structure` VALUES ('811', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7137 INSERT INTO `marc_subfield_structure` VALUES ('811', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7138 INSERT INTO `marc_subfield_structure` VALUES ('811', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'BKS', '', '');
7139 INSERT INTO `marc_subfield_structure` VALUES ('811', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7140 INSERT INTO `marc_subfield_structure` VALUES ('811', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7141 INSERT INTO `marc_subfield_structure` VALUES ('811', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7142 INSERT INTO `marc_subfield_structure` VALUES ('811', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7143 INSERT INTO `marc_subfield_structure` VALUES ('811', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7144 INSERT INTO `marc_subfield_structure` VALUES ('811', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7145 INSERT INTO `marc_subfield_structure` VALUES ('811', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7146 INSERT INTO `marc_subfield_structure` VALUES ('811', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7147 INSERT INTO `marc_subfield_structure` VALUES ('811', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7148 INSERT INTO `marc_subfield_structure` VALUES ('811', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7149 INSERT INTO `marc_subfield_structure` VALUES ('811', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7150 INSERT INTO `marc_subfield_structure` VALUES ('811', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7151 INSERT INTO `marc_subfield_structure` VALUES ('811', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7152 INSERT INTO `marc_subfield_structure` VALUES ('811', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7153 INSERT INTO `marc_subfield_structure` VALUES ('811', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7154 INSERT INTO `marc_subfield_structure` VALUES ('811', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7155 INSERT INTO `marc_subfield_structure` VALUES ('811', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7156 INSERT INTO `marc_subfield_structure` VALUES ('830', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7157 INSERT INTO `marc_subfield_structure` VALUES ('830', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7158 INSERT INTO `marc_subfield_structure` VALUES ('830', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'BKS', '', '');
7159 INSERT INTO `marc_subfield_structure` VALUES ('830', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7160 INSERT INTO `marc_subfield_structure` VALUES ('830', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7161 INSERT INTO `marc_subfield_structure` VALUES ('830', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7162 INSERT INTO `marc_subfield_structure` VALUES ('830', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7163 INSERT INTO `marc_subfield_structure` VALUES ('830', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7164 INSERT INTO `marc_subfield_structure` VALUES ('830', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7165 INSERT INTO `marc_subfield_structure` VALUES ('830', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7166 INSERT INTO `marc_subfield_structure` VALUES ('830', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7167 INSERT INTO `marc_subfield_structure` VALUES ('830', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7168 INSERT INTO `marc_subfield_structure` VALUES ('830', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7169 INSERT INTO `marc_subfield_structure` VALUES ('830', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7170 INSERT INTO `marc_subfield_structure` VALUES ('830', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7171 INSERT INTO `marc_subfield_structure` VALUES ('830', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7172 INSERT INTO `marc_subfield_structure` VALUES ('830', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7173 INSERT INTO `marc_subfield_structure` VALUES ('830', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7174 INSERT INTO `marc_subfield_structure` VALUES ('840', 'a', 'Title', 'Title', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7175 INSERT INTO `marc_subfield_structure` VALUES ('840', 'h', 'Medium', 'Medium', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7176 INSERT INTO `marc_subfield_structure` VALUES ('840', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7177 INSERT INTO `marc_subfield_structure` VALUES ('841', 'a', 'Type of record', 'Type of record', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7178 INSERT INTO `marc_subfield_structure` VALUES ('841', 'b', 'Fixed-length data elements', 'Fixed-length data elements', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7179 INSERT INTO `marc_subfield_structure` VALUES ('841', 'e', 'Encoding level', 'Encoding level', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7180 INSERT INTO `marc_subfield_structure` VALUES ('842', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7181 INSERT INTO `marc_subfield_structure` VALUES ('842', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7182 INSERT INTO `marc_subfield_structure` VALUES ('842', 'a', 'Textual physical form designator', 'Textual physical form designator', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7183 INSERT INTO `marc_subfield_structure` VALUES ('843', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7184 INSERT INTO `marc_subfield_structure` VALUES ('843', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7185 INSERT INTO `marc_subfield_structure` VALUES ('843', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7186 INSERT INTO `marc_subfield_structure` VALUES ('843', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7187 INSERT INTO `marc_subfield_structure` VALUES ('843', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7188 INSERT INTO `marc_subfield_structure` VALUES ('843', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7189 INSERT INTO `marc_subfield_structure` VALUES ('843', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7190 INSERT INTO `marc_subfield_structure` VALUES ('843', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7191 INSERT INTO `marc_subfield_structure` VALUES ('843', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7192 INSERT INTO `marc_subfield_structure` VALUES ('843', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7193 INSERT INTO `marc_subfield_structure` VALUES ('843', 'm', 'Dates of publication and/or sequential designation of issues reproduced', 'Dates of publication and/or sequential designation of issues reproduced', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7194 INSERT INTO `marc_subfield_structure` VALUES ('843', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7195 INSERT INTO `marc_subfield_structure` VALUES ('844', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7196 INSERT INTO `marc_subfield_structure` VALUES ('844', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7197 INSERT INTO `marc_subfield_structure` VALUES ('844', 'a', 'Name of unit', 'Name of unit', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7198 INSERT INTO `marc_subfield_structure` VALUES ('845', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7199 INSERT INTO `marc_subfield_structure` VALUES ('845', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7200 INSERT INTO `marc_subfield_structure` VALUES ('845', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7201 INSERT INTO `marc_subfield_structure` VALUES ('845', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7202 INSERT INTO `marc_subfield_structure` VALUES ('845', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7203 INSERT INTO `marc_subfield_structure` VALUES ('845', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7204 INSERT INTO `marc_subfield_structure` VALUES ('845', 'c', 'Authorization', 'Authorization', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7205 INSERT INTO `marc_subfield_structure` VALUES ('845', 'd', 'Authorized users', 'Authorized users', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7206 INSERT INTO `marc_subfield_structure` VALUES ('850', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7207 INSERT INTO `marc_subfield_structure` VALUES ('850', 'a', 'Holding institution', 'Holding institution', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7208 INSERT INTO `marc_subfield_structure` VALUES ('850', 'b', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7209 INSERT INTO `marc_subfield_structure` VALUES ('850', 'd', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7210 INSERT INTO `marc_subfield_structure` VALUES ('850', 'e', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7211 INSERT INTO `marc_subfield_structure` VALUES ('851', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7212 INSERT INTO `marc_subfield_structure` VALUES ('851', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7213 INSERT INTO `marc_subfield_structure` VALUES ('851', 'a', 'Name (custodian or owner)', 'Name (custodian or owner)', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7214 INSERT INTO `marc_subfield_structure` VALUES ('851', 'b', 'Institutional division', 'Institutional division', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7215 INSERT INTO `marc_subfield_structure` VALUES ('851', 'c', 'Street address', 'Street address', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7216 INSERT INTO `marc_subfield_structure` VALUES ('851', 'd', 'Country', 'Country', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7217 INSERT INTO `marc_subfield_structure` VALUES ('851', 'e', 'Location of units', 'Location of units', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7218 INSERT INTO `marc_subfield_structure` VALUES ('851', 'f', 'Item number', 'Item number', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7219 INSERT INTO `marc_subfield_structure` VALUES ('851', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'BKS', '', '');
7220 INSERT INTO `marc_subfield_structure` VALUES ('852', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7221 INSERT INTO `marc_subfield_structure` VALUES ('852', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7222 INSERT INTO `marc_subfield_structure` VALUES ('852', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7223 INSERT INTO `marc_subfield_structure` VALUES ('852', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7224 INSERT INTO `marc_subfield_structure` VALUES ('852', 'a', 'Location', 'Location', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7225 INSERT INTO `marc_subfield_structure` VALUES ('852', 'b', 'Sublocation or collection', 'Sublocation or collection', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7226 INSERT INTO `marc_subfield_structure` VALUES ('852', 'c', 'Shelving location', 'Shelving location', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7227 INSERT INTO `marc_subfield_structure` VALUES ('852', 'e', 'Address', 'Address', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7228 INSERT INTO `marc_subfield_structure` VALUES ('852', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7229 INSERT INTO `marc_subfield_structure` VALUES ('852', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7230 INSERT INTO `marc_subfield_structure` VALUES ('852', 'h', 'Classification part', 'Classification part', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7231 INSERT INTO `marc_subfield_structure` VALUES ('852', 'i', 'Item part', 'Item part', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7232 INSERT INTO `marc_subfield_structure` VALUES ('852', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7233 INSERT INTO `marc_subfield_structure` VALUES ('852', 'k', 'Call number prefix', 'Call number prefix', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7234 INSERT INTO `marc_subfield_structure` VALUES ('852', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7235 INSERT INTO `marc_subfield_structure` VALUES ('852', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7236 INSERT INTO `marc_subfield_structure` VALUES ('852', 'n', 'Country code', 'Country code', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7237 INSERT INTO `marc_subfield_structure` VALUES ('852', 'p', 'Piece designation', 'Piece designation', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7238 INSERT INTO `marc_subfield_structure` VALUES ('852', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7239 INSERT INTO `marc_subfield_structure` VALUES ('852', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7240 INSERT INTO `marc_subfield_structure` VALUES ('852', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7241 INSERT INTO `marc_subfield_structure` VALUES ('852', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7242 INSERT INTO `marc_subfield_structure` VALUES ('852', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7243 INSERT INTO `marc_subfield_structure` VALUES ('853', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7244 INSERT INTO `marc_subfield_structure` VALUES ('853', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7245 INSERT INTO `marc_subfield_structure` VALUES ('853', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7246 INSERT INTO `marc_subfield_structure` VALUES ('853', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7247 INSERT INTO `marc_subfield_structure` VALUES ('853', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7248 INSERT INTO `marc_subfield_structure` VALUES ('853', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7249 INSERT INTO `marc_subfield_structure` VALUES ('853', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7250 INSERT INTO `marc_subfield_structure` VALUES ('853', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7251 INSERT INTO `marc_subfield_structure` VALUES ('853', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7252 INSERT INTO `marc_subfield_structure` VALUES ('853', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7253 INSERT INTO `marc_subfield_structure` VALUES ('853', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7254 INSERT INTO `marc_subfield_structure` VALUES ('853', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7255 INSERT INTO `marc_subfield_structure` VALUES ('853', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7256 INSERT INTO `marc_subfield_structure` VALUES ('853', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7257 INSERT INTO `marc_subfield_structure` VALUES ('853', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7258 INSERT INTO `marc_subfield_structure` VALUES ('853', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7259 INSERT INTO `marc_subfield_structure` VALUES ('853', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7260 INSERT INTO `marc_subfield_structure` VALUES ('853', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7261 INSERT INTO `marc_subfield_structure` VALUES ('853', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7262 INSERT INTO `marc_subfield_structure` VALUES ('853', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7263 INSERT INTO `marc_subfield_structure` VALUES ('853', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7264 INSERT INTO `marc_subfield_structure` VALUES ('853', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7265 INSERT INTO `marc_subfield_structure` VALUES ('853', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7266 INSERT INTO `marc_subfield_structure` VALUES ('853', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7267 INSERT INTO `marc_subfield_structure` VALUES ('853', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7268 INSERT INTO `marc_subfield_structure` VALUES ('854', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7269 INSERT INTO `marc_subfield_structure` VALUES ('854', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7270 INSERT INTO `marc_subfield_structure` VALUES ('854', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7271 INSERT INTO `marc_subfield_structure` VALUES ('854', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7272 INSERT INTO `marc_subfield_structure` VALUES ('854', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7273 INSERT INTO `marc_subfield_structure` VALUES ('854', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7274 INSERT INTO `marc_subfield_structure` VALUES ('854', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7275 INSERT INTO `marc_subfield_structure` VALUES ('854', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7276 INSERT INTO `marc_subfield_structure` VALUES ('854', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7277 INSERT INTO `marc_subfield_structure` VALUES ('854', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7278 INSERT INTO `marc_subfield_structure` VALUES ('854', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7279 INSERT INTO `marc_subfield_structure` VALUES ('854', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7280 INSERT INTO `marc_subfield_structure` VALUES ('854', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7281 INSERT INTO `marc_subfield_structure` VALUES ('854', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7282 INSERT INTO `marc_subfield_structure` VALUES ('854', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7283 INSERT INTO `marc_subfield_structure` VALUES ('854', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7284 INSERT INTO `marc_subfield_structure` VALUES ('854', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7285 INSERT INTO `marc_subfield_structure` VALUES ('854', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7286 INSERT INTO `marc_subfield_structure` VALUES ('854', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7287 INSERT INTO `marc_subfield_structure` VALUES ('854', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7288 INSERT INTO `marc_subfield_structure` VALUES ('854', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7289 INSERT INTO `marc_subfield_structure` VALUES ('854', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7290 INSERT INTO `marc_subfield_structure` VALUES ('854', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7291 INSERT INTO `marc_subfield_structure` VALUES ('854', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7292 INSERT INTO `marc_subfield_structure` VALUES ('854', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7293 INSERT INTO `marc_subfield_structure` VALUES ('855', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7294 INSERT INTO `marc_subfield_structure` VALUES ('855', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7295 INSERT INTO `marc_subfield_structure` VALUES ('855', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7296 INSERT INTO `marc_subfield_structure` VALUES ('855', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7297 INSERT INTO `marc_subfield_structure` VALUES ('855', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7298 INSERT INTO `marc_subfield_structure` VALUES ('855', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7299 INSERT INTO `marc_subfield_structure` VALUES ('855', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7300 INSERT INTO `marc_subfield_structure` VALUES ('855', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7301 INSERT INTO `marc_subfield_structure` VALUES ('855', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7302 INSERT INTO `marc_subfield_structure` VALUES ('855', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7303 INSERT INTO `marc_subfield_structure` VALUES ('855', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7304 INSERT INTO `marc_subfield_structure` VALUES ('855', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7305 INSERT INTO `marc_subfield_structure` VALUES ('855', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7306 INSERT INTO `marc_subfield_structure` VALUES ('855', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7307 INSERT INTO `marc_subfield_structure` VALUES ('855', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7308 INSERT INTO `marc_subfield_structure` VALUES ('855', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7309 INSERT INTO `marc_subfield_structure` VALUES ('855', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7310 INSERT INTO `marc_subfield_structure` VALUES ('855', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7311 INSERT INTO `marc_subfield_structure` VALUES ('855', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7312 INSERT INTO `marc_subfield_structure` VALUES ('855', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7313 INSERT INTO `marc_subfield_structure` VALUES ('855', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7314 INSERT INTO `marc_subfield_structure` VALUES ('855', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7315 INSERT INTO `marc_subfield_structure` VALUES ('855', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7316 INSERT INTO `marc_subfield_structure` VALUES ('855', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7317 INSERT INTO `marc_subfield_structure` VALUES ('855', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7318 INSERT INTO `marc_subfield_structure` VALUES ('856', '2', 'Access method', 'Access method', 0, 0, '', 8, '', '', '', 0, -6, 'BKS', '', '');
7319 INSERT INTO `marc_subfield_structure` VALUES ('856', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', 0, -6, 'BKS', '', '');
7320 INSERT INTO `marc_subfield_structure` VALUES ('856', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', 0, -6, 'BKS', '', '');
7321 INSERT INTO `marc_subfield_structure` VALUES ('856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', 0, -6, 'BKS', '', '');
7322 INSERT INTO `marc_subfield_structure` VALUES ('856', 'a', 'Host name', 'Host name', 1, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7323 INSERT INTO `marc_subfield_structure` VALUES ('856', 'b', 'Access number', 'Access number', 1, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7324 INSERT INTO `marc_subfield_structure` VALUES ('856', 'c', 'Compression information', 'Compression information', 1, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7325 INSERT INTO `marc_subfield_structure` VALUES ('856', 'd', 'Path', 'Path', 1, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7326 INSERT INTO `marc_subfield_structure` VALUES ('856', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7327 INSERT INTO `marc_subfield_structure` VALUES ('856', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7328 INSERT INTO `marc_subfield_structure` VALUES ('856', 'i', 'Instruction', 'Instruction', 1, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7329 INSERT INTO `marc_subfield_structure` VALUES ('856', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7330 INSERT INTO `marc_subfield_structure` VALUES ('856', 'k', 'Password', 'Password', 0, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7331 INSERT INTO `marc_subfield_structure` VALUES ('856', 'l', 'Logon', 'Logon', 0, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7332 INSERT INTO `marc_subfield_structure` VALUES ('856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7333 INSERT INTO `marc_subfield_structure` VALUES ('856', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7334 INSERT INTO `marc_subfield_structure` VALUES ('856', 'o', 'Operating system', 'Operating system', 0, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7335 INSERT INTO `marc_subfield_structure` VALUES ('856', 'p', 'Port', 'Port', 0, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7336 INSERT INTO `marc_subfield_structure` VALUES ('856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7337 INSERT INTO `marc_subfield_structure` VALUES ('856', 'r', 'Settings', 'Settings', 0, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7338 INSERT INTO `marc_subfield_structure` VALUES ('856', 's', 'File size', 'File size', 1, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7339 INSERT INTO `marc_subfield_structure` VALUES ('856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7340 INSERT INTO `marc_subfield_structure` VALUES ('856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 'biblioitems.url', 8, '', '', '', 1, -1, 'BKS', '', '');
7341 INSERT INTO `marc_subfield_structure` VALUES ('856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7342 INSERT INTO `marc_subfield_structure` VALUES ('856', 'w', 'Record control number', 'Record control number', 1, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7343 INSERT INTO `marc_subfield_structure` VALUES ('856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 1, 'BKS', '', '');
7344 INSERT INTO `marc_subfield_structure` VALUES ('856', 'y', 'Link text', 'Link text', 1, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7345 INSERT INTO `marc_subfield_structure` VALUES ('856', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, -1, 'BKS', '', '');
7346 INSERT INTO `marc_subfield_structure` VALUES ('859', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'BKS', '', '');
7347 INSERT INTO `marc_subfield_structure` VALUES ('859', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'BKS', '', '');
7348 INSERT INTO `marc_subfield_structure` VALUES ('859', 'd', 'TDC (RLIN)', 'TDC (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'BKS', '', '');
7349 INSERT INTO `marc_subfield_structure` VALUES ('859', 'l', 'LIB (RLIN)', 'LIB (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'BKS', '', '');
7350 INSERT INTO `marc_subfield_structure` VALUES ('859', 'p', 'PRI (RLIN)', 'PRI (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'BKS', '', '');
7351 INSERT INTO `marc_subfield_structure` VALUES ('859', 'r', 'REG (RLIN)', 'REG (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'BKS', '', '');
7352 INSERT INTO `marc_subfield_structure` VALUES ('859', 'v', 'VER (RLIN)', 'VER (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'BKS', '', '');
7353 INSERT INTO `marc_subfield_structure` VALUES ('859', 'x', 'LDEL (RLIN)', 'LDEL (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'BKS', '', '');
7354 INSERT INTO `marc_subfield_structure` VALUES ('866', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7355 INSERT INTO `marc_subfield_structure` VALUES ('866', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7356 INSERT INTO `marc_subfield_structure` VALUES ('866', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'BKS', '', '');
7357 INSERT INTO `marc_subfield_structure` VALUES ('866', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'BKS', '', '');
7358 INSERT INTO `marc_subfield_structure` VALUES ('866', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'BKS', '', '');
7359 INSERT INTO `marc_subfield_structure` VALUES ('867', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7360 INSERT INTO `marc_subfield_structure` VALUES ('867', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7361 INSERT INTO `marc_subfield_structure` VALUES ('867', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'BKS', '', '');
7362 INSERT INTO `marc_subfield_structure` VALUES ('867', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'BKS', '', '');
7363 INSERT INTO `marc_subfield_structure` VALUES ('867', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'BKS', '', '');
7364 INSERT INTO `marc_subfield_structure` VALUES ('868', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7365 INSERT INTO `marc_subfield_structure` VALUES ('868', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7366 INSERT INTO `marc_subfield_structure` VALUES ('868', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'BKS', '', '');
7367 INSERT INTO `marc_subfield_structure` VALUES ('868', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'BKS', '', '');
7368 INSERT INTO `marc_subfield_structure` VALUES ('868', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'BKS', '', '');
7369 INSERT INTO `marc_subfield_structure` VALUES ('870', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7370 INSERT INTO `marc_subfield_structure` VALUES ('870', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7371 INSERT INTO `marc_subfield_structure` VALUES ('870', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7372 INSERT INTO `marc_subfield_structure` VALUES ('870', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7373 INSERT INTO `marc_subfield_structure` VALUES ('870', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7374 INSERT INTO `marc_subfield_structure` VALUES ('870', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7375 INSERT INTO `marc_subfield_structure` VALUES ('870', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7376 INSERT INTO `marc_subfield_structure` VALUES ('870', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7377 INSERT INTO `marc_subfield_structure` VALUES ('870', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7378 INSERT INTO `marc_subfield_structure` VALUES ('870', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7379 INSERT INTO `marc_subfield_structure` VALUES ('870', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7380 INSERT INTO `marc_subfield_structure` VALUES ('870', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7381 INSERT INTO `marc_subfield_structure` VALUES ('870', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7382 INSERT INTO `marc_subfield_structure` VALUES ('870', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7383 INSERT INTO `marc_subfield_structure` VALUES ('870', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7384 INSERT INTO `marc_subfield_structure` VALUES ('870', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7385 INSERT INTO `marc_subfield_structure` VALUES ('870', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7386 INSERT INTO `marc_subfield_structure` VALUES ('871', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7387 INSERT INTO `marc_subfield_structure` VALUES ('871', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7388 INSERT INTO `marc_subfield_structure` VALUES ('871', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7389 INSERT INTO `marc_subfield_structure` VALUES ('871', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7390 INSERT INTO `marc_subfield_structure` VALUES ('871', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7391 INSERT INTO `marc_subfield_structure` VALUES ('871', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7392 INSERT INTO `marc_subfield_structure` VALUES ('871', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7393 INSERT INTO `marc_subfield_structure` VALUES ('871', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7394 INSERT INTO `marc_subfield_structure` VALUES ('871', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7395 INSERT INTO `marc_subfield_structure` VALUES ('871', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7396 INSERT INTO `marc_subfield_structure` VALUES ('871', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7397 INSERT INTO `marc_subfield_structure` VALUES ('871', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7398 INSERT INTO `marc_subfield_structure` VALUES ('871', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7399 INSERT INTO `marc_subfield_structure` VALUES ('871', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7400 INSERT INTO `marc_subfield_structure` VALUES ('871', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7401 INSERT INTO `marc_subfield_structure` VALUES ('871', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7402 INSERT INTO `marc_subfield_structure` VALUES ('872', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7403 INSERT INTO `marc_subfield_structure` VALUES ('872', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7404 INSERT INTO `marc_subfield_structure` VALUES ('872', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7405 INSERT INTO `marc_subfield_structure` VALUES ('872', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7406 INSERT INTO `marc_subfield_structure` VALUES ('872', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7407 INSERT INTO `marc_subfield_structure` VALUES ('872', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7408 INSERT INTO `marc_subfield_structure` VALUES ('872', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7409 INSERT INTO `marc_subfield_structure` VALUES ('872', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7410 INSERT INTO `marc_subfield_structure` VALUES ('872', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7411 INSERT INTO `marc_subfield_structure` VALUES ('872', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7412 INSERT INTO `marc_subfield_structure` VALUES ('872', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7413 INSERT INTO `marc_subfield_structure` VALUES ('872', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7414 INSERT INTO `marc_subfield_structure` VALUES ('872', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7415 INSERT INTO `marc_subfield_structure` VALUES ('872', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7416 INSERT INTO `marc_subfield_structure` VALUES ('872', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7417 INSERT INTO `marc_subfield_structure` VALUES ('872', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7418 INSERT INTO `marc_subfield_structure` VALUES ('872', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7419 INSERT INTO `marc_subfield_structure` VALUES ('873', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7420 INSERT INTO `marc_subfield_structure` VALUES ('873', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7421 INSERT INTO `marc_subfield_structure` VALUES ('873', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7422 INSERT INTO `marc_subfield_structure` VALUES ('873', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7423 INSERT INTO `marc_subfield_structure` VALUES ('873', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7424 INSERT INTO `marc_subfield_structure` VALUES ('873', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7425 INSERT INTO `marc_subfield_structure` VALUES ('873', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7426 INSERT INTO `marc_subfield_structure` VALUES ('873', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7427 INSERT INTO `marc_subfield_structure` VALUES ('873', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7428 INSERT INTO `marc_subfield_structure` VALUES ('873', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7429 INSERT INTO `marc_subfield_structure` VALUES ('873', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7430 INSERT INTO `marc_subfield_structure` VALUES ('873', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7431 INSERT INTO `marc_subfield_structure` VALUES ('873', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7432 INSERT INTO `marc_subfield_structure` VALUES ('873', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7433 INSERT INTO `marc_subfield_structure` VALUES ('873', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7434 INSERT INTO `marc_subfield_structure` VALUES ('873', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7435 INSERT INTO `marc_subfield_structure` VALUES ('876', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7436 INSERT INTO `marc_subfield_structure` VALUES ('876', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7437 INSERT INTO `marc_subfield_structure` VALUES ('876', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7438 INSERT INTO `marc_subfield_structure` VALUES ('876', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7439 INSERT INTO `marc_subfield_structure` VALUES ('876', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7440 INSERT INTO `marc_subfield_structure` VALUES ('876', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7441 INSERT INTO `marc_subfield_structure` VALUES ('876', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7442 INSERT INTO `marc_subfield_structure` VALUES ('876', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7443 INSERT INTO `marc_subfield_structure` VALUES ('876', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7444 INSERT INTO `marc_subfield_structure` VALUES ('876', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7445 INSERT INTO `marc_subfield_structure` VALUES ('876', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7446 INSERT INTO `marc_subfield_structure` VALUES ('876', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7447 INSERT INTO `marc_subfield_structure` VALUES ('876', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7448 INSERT INTO `marc_subfield_structure` VALUES ('876', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7449 INSERT INTO `marc_subfield_structure` VALUES ('876', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7450 INSERT INTO `marc_subfield_structure` VALUES ('876', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7451 INSERT INTO `marc_subfield_structure` VALUES ('877', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7452 INSERT INTO `marc_subfield_structure` VALUES ('877', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7453 INSERT INTO `marc_subfield_structure` VALUES ('877', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7454 INSERT INTO `marc_subfield_structure` VALUES ('877', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7455 INSERT INTO `marc_subfield_structure` VALUES ('877', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7456 INSERT INTO `marc_subfield_structure` VALUES ('877', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7457 INSERT INTO `marc_subfield_structure` VALUES ('877', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7458 INSERT INTO `marc_subfield_structure` VALUES ('877', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7459 INSERT INTO `marc_subfield_structure` VALUES ('877', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7460 INSERT INTO `marc_subfield_structure` VALUES ('877', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7461 INSERT INTO `marc_subfield_structure` VALUES ('877', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7462 INSERT INTO `marc_subfield_structure` VALUES ('877', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7463 INSERT INTO `marc_subfield_structure` VALUES ('877', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7464 INSERT INTO `marc_subfield_structure` VALUES ('877', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7465 INSERT INTO `marc_subfield_structure` VALUES ('877', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7466 INSERT INTO `marc_subfield_structure` VALUES ('877', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7467 INSERT INTO `marc_subfield_structure` VALUES ('878', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7468 INSERT INTO `marc_subfield_structure` VALUES ('878', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7469 INSERT INTO `marc_subfield_structure` VALUES ('878', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7470 INSERT INTO `marc_subfield_structure` VALUES ('878', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7471 INSERT INTO `marc_subfield_structure` VALUES ('878', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7472 INSERT INTO `marc_subfield_structure` VALUES ('878', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7473 INSERT INTO `marc_subfield_structure` VALUES ('878', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7474 INSERT INTO `marc_subfield_structure` VALUES ('878', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7475 INSERT INTO `marc_subfield_structure` VALUES ('878', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7476 INSERT INTO `marc_subfield_structure` VALUES ('878', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7477 INSERT INTO `marc_subfield_structure` VALUES ('878', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7478 INSERT INTO `marc_subfield_structure` VALUES ('878', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7479 INSERT INTO `marc_subfield_structure` VALUES ('878', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7480 INSERT INTO `marc_subfield_structure` VALUES ('878', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7481 INSERT INTO `marc_subfield_structure` VALUES ('878', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7482 INSERT INTO `marc_subfield_structure` VALUES ('878', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7483 INSERT INTO `marc_subfield_structure` VALUES ('880', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7484 INSERT INTO `marc_subfield_structure` VALUES ('880', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7485 INSERT INTO `marc_subfield_structure` VALUES ('880', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7486 INSERT INTO `marc_subfield_structure` VALUES ('880', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7487 INSERT INTO `marc_subfield_structure` VALUES ('880', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7488 INSERT INTO `marc_subfield_structure` VALUES ('880', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7489 INSERT INTO `marc_subfield_structure` VALUES ('880', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7490 INSERT INTO `marc_subfield_structure` VALUES ('880', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7491 INSERT INTO `marc_subfield_structure` VALUES ('880', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7492 INSERT INTO `marc_subfield_structure` VALUES ('880', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7493 INSERT INTO `marc_subfield_structure` VALUES ('880', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7494 INSERT INTO `marc_subfield_structure` VALUES ('880', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7495 INSERT INTO `marc_subfield_structure` VALUES ('880', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7496 INSERT INTO `marc_subfield_structure` VALUES ('880', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7497 INSERT INTO `marc_subfield_structure` VALUES ('880', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7498 INSERT INTO `marc_subfield_structure` VALUES ('880', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7499 INSERT INTO `marc_subfield_structure` VALUES ('880', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7500 INSERT INTO `marc_subfield_structure` VALUES ('880', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7501 INSERT INTO `marc_subfield_structure` VALUES ('880', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7502 INSERT INTO `marc_subfield_structure` VALUES ('880', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7503 INSERT INTO `marc_subfield_structure` VALUES ('880', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7504 INSERT INTO `marc_subfield_structure` VALUES ('880', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7505 INSERT INTO `marc_subfield_structure` VALUES ('880', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7506 INSERT INTO `marc_subfield_structure` VALUES ('880', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7507 INSERT INTO `marc_subfield_structure` VALUES ('880', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7508 INSERT INTO `marc_subfield_structure` VALUES ('880', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7509 INSERT INTO `marc_subfield_structure` VALUES ('880', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7510 INSERT INTO `marc_subfield_structure` VALUES ('880', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7511 INSERT INTO `marc_subfield_structure` VALUES ('880', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7512 INSERT INTO `marc_subfield_structure` VALUES ('880', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7513 INSERT INTO `marc_subfield_structure` VALUES ('880', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7514 INSERT INTO `marc_subfield_structure` VALUES ('880', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7515 INSERT INTO `marc_subfield_structure` VALUES ('880', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7516 INSERT INTO `marc_subfield_structure` VALUES ('880', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7517 INSERT INTO `marc_subfield_structure` VALUES ('886', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7518 INSERT INTO `marc_subfield_structure` VALUES ('886', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7519 INSERT INTO `marc_subfield_structure` VALUES ('886', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7520 INSERT INTO `marc_subfield_structure` VALUES ('886', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7521 INSERT INTO `marc_subfield_structure` VALUES ('886', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7522 INSERT INTO `marc_subfield_structure` VALUES ('886', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7523 INSERT INTO `marc_subfield_structure` VALUES ('886', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7524 INSERT INTO `marc_subfield_structure` VALUES ('886', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7525 INSERT INTO `marc_subfield_structure` VALUES ('886', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7526 INSERT INTO `marc_subfield_structure` VALUES ('886', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7527 INSERT INTO `marc_subfield_structure` VALUES ('886', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7528 INSERT INTO `marc_subfield_structure` VALUES ('886', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7529 INSERT INTO `marc_subfield_structure` VALUES ('886', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7530 INSERT INTO `marc_subfield_structure` VALUES ('886', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7531 INSERT INTO `marc_subfield_structure` VALUES ('886', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7532 INSERT INTO `marc_subfield_structure` VALUES ('886', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7533 INSERT INTO `marc_subfield_structure` VALUES ('886', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7534 INSERT INTO `marc_subfield_structure` VALUES ('886', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7535 INSERT INTO `marc_subfield_structure` VALUES ('886', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7536 INSERT INTO `marc_subfield_structure` VALUES ('886', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7537 INSERT INTO `marc_subfield_structure` VALUES ('886', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7538 INSERT INTO `marc_subfield_structure` VALUES ('886', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7539 INSERT INTO `marc_subfield_structure` VALUES ('886', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7540 INSERT INTO `marc_subfield_structure` VALUES ('886', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7541 INSERT INTO `marc_subfield_structure` VALUES ('886', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7542 INSERT INTO `marc_subfield_structure` VALUES ('886', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7543 INSERT INTO `marc_subfield_structure` VALUES ('886', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7544 INSERT INTO `marc_subfield_structure` VALUES ('886', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7545 INSERT INTO `marc_subfield_structure` VALUES ('886', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7546 INSERT INTO `marc_subfield_structure` VALUES ('886', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7547 INSERT INTO `marc_subfield_structure` VALUES ('886', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7548 INSERT INTO `marc_subfield_structure` VALUES ('886', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7549 INSERT INTO `marc_subfield_structure` VALUES ('886', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7550 INSERT INTO `marc_subfield_structure` VALUES ('886', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7551 INSERT INTO `marc_subfield_structure` VALUES ('886', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7552 INSERT INTO `marc_subfield_structure` VALUES ('886', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7553 INSERT INTO `marc_subfield_structure` VALUES ('887', '2', 'Source of data', 'Source of data', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7554 INSERT INTO `marc_subfield_structure` VALUES ('887', 'a', 'Content of non-MARC field', 'Content of non-MARC field', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7555 INSERT INTO `marc_subfield_structure` VALUES ('896', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'BKS', '', '');
7556 INSERT INTO `marc_subfield_structure` VALUES ('896', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7557 INSERT INTO `marc_subfield_structure` VALUES ('896', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7558 INSERT INTO `marc_subfield_structure` VALUES ('896', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7559 INSERT INTO `marc_subfield_structure` VALUES ('896', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'BKS', '', '');
7560 INSERT INTO `marc_subfield_structure` VALUES ('896', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7561 INSERT INTO `marc_subfield_structure` VALUES ('896', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7562 INSERT INTO `marc_subfield_structure` VALUES ('896', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7563 INSERT INTO `marc_subfield_structure` VALUES ('896', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7564 INSERT INTO `marc_subfield_structure` VALUES ('896', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7565 INSERT INTO `marc_subfield_structure` VALUES ('896', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7566 INSERT INTO `marc_subfield_structure` VALUES ('896', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7567 INSERT INTO `marc_subfield_structure` VALUES ('896', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7568 INSERT INTO `marc_subfield_structure` VALUES ('896', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7569 INSERT INTO `marc_subfield_structure` VALUES ('896', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7570 INSERT INTO `marc_subfield_structure` VALUES ('896', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7571 INSERT INTO `marc_subfield_structure` VALUES ('896', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7572 INSERT INTO `marc_subfield_structure` VALUES ('896', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7573 INSERT INTO `marc_subfield_structure` VALUES ('896', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7574 INSERT INTO `marc_subfield_structure` VALUES ('896', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7575 INSERT INTO `marc_subfield_structure` VALUES ('896', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7576 INSERT INTO `marc_subfield_structure` VALUES ('896', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7577 INSERT INTO `marc_subfield_structure` VALUES ('896', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7578 INSERT INTO `marc_subfield_structure` VALUES ('896', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7579 INSERT INTO `marc_subfield_structure` VALUES ('896', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7580 INSERT INTO `marc_subfield_structure` VALUES ('896', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7581 INSERT INTO `marc_subfield_structure` VALUES ('897', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'BKS', '', '');
7582 INSERT INTO `marc_subfield_structure` VALUES ('897', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7583 INSERT INTO `marc_subfield_structure` VALUES ('897', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7584 INSERT INTO `marc_subfield_structure` VALUES ('897', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7585 INSERT INTO `marc_subfield_structure` VALUES ('897', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'BKS', '', '');
7586 INSERT INTO `marc_subfield_structure` VALUES ('897', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7587 INSERT INTO `marc_subfield_structure` VALUES ('897', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7588 INSERT INTO `marc_subfield_structure` VALUES ('897', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7589 INSERT INTO `marc_subfield_structure` VALUES ('897', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7590 INSERT INTO `marc_subfield_structure` VALUES ('897', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7591 INSERT INTO `marc_subfield_structure` VALUES ('897', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7592 INSERT INTO `marc_subfield_structure` VALUES ('897', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7593 INSERT INTO `marc_subfield_structure` VALUES ('897', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7594 INSERT INTO `marc_subfield_structure` VALUES ('897', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7595 INSERT INTO `marc_subfield_structure` VALUES ('897', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7596 INSERT INTO `marc_subfield_structure` VALUES ('897', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7597 INSERT INTO `marc_subfield_structure` VALUES ('897', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7598 INSERT INTO `marc_subfield_structure` VALUES ('897', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7599 INSERT INTO `marc_subfield_structure` VALUES ('897', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7600 INSERT INTO `marc_subfield_structure` VALUES ('897', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7601 INSERT INTO `marc_subfield_structure` VALUES ('897', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7602 INSERT INTO `marc_subfield_structure` VALUES ('897', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7603 INSERT INTO `marc_subfield_structure` VALUES ('897', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7604 INSERT INTO `marc_subfield_structure` VALUES ('897', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7605 INSERT INTO `marc_subfield_structure` VALUES ('898', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'BKS', '', '');
7606 INSERT INTO `marc_subfield_structure` VALUES ('898', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7607 INSERT INTO `marc_subfield_structure` VALUES ('898', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7608 INSERT INTO `marc_subfield_structure` VALUES ('898', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7609 INSERT INTO `marc_subfield_structure` VALUES ('898', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'BKS', '', '');
7610 INSERT INTO `marc_subfield_structure` VALUES ('898', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7611 INSERT INTO `marc_subfield_structure` VALUES ('898', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7612 INSERT INTO `marc_subfield_structure` VALUES ('898', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7613 INSERT INTO `marc_subfield_structure` VALUES ('898', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7614 INSERT INTO `marc_subfield_structure` VALUES ('898', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7615 INSERT INTO `marc_subfield_structure` VALUES ('898', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7616 INSERT INTO `marc_subfield_structure` VALUES ('898', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7617 INSERT INTO `marc_subfield_structure` VALUES ('898', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7618 INSERT INTO `marc_subfield_structure` VALUES ('898', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7619 INSERT INTO `marc_subfield_structure` VALUES ('898', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7620 INSERT INTO `marc_subfield_structure` VALUES ('898', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7621 INSERT INTO `marc_subfield_structure` VALUES ('898', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7622 INSERT INTO `marc_subfield_structure` VALUES ('898', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7623 INSERT INTO `marc_subfield_structure` VALUES ('898', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7624 INSERT INTO `marc_subfield_structure` VALUES ('898', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7625 INSERT INTO `marc_subfield_structure` VALUES ('898', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7626 INSERT INTO `marc_subfield_structure` VALUES ('898', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7627 INSERT INTO `marc_subfield_structure` VALUES ('899', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'BKS', '', '');
7628 INSERT INTO `marc_subfield_structure` VALUES ('899', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7629 INSERT INTO `marc_subfield_structure` VALUES ('899', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7630 INSERT INTO `marc_subfield_structure` VALUES ('899', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'BKS', '', '');
7631 INSERT INTO `marc_subfield_structure` VALUES ('899', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7632 INSERT INTO `marc_subfield_structure` VALUES ('899', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7633 INSERT INTO `marc_subfield_structure` VALUES ('899', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7634 INSERT INTO `marc_subfield_structure` VALUES ('899', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7635 INSERT INTO `marc_subfield_structure` VALUES ('899', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7636 INSERT INTO `marc_subfield_structure` VALUES ('899', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7637 INSERT INTO `marc_subfield_structure` VALUES ('899', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7638 INSERT INTO `marc_subfield_structure` VALUES ('899', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7639 INSERT INTO `marc_subfield_structure` VALUES ('899', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7640 INSERT INTO `marc_subfield_structure` VALUES ('899', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7641 INSERT INTO `marc_subfield_structure` VALUES ('899', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7642 INSERT INTO `marc_subfield_structure` VALUES ('899', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7643 INSERT INTO `marc_subfield_structure` VALUES ('899', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7644 INSERT INTO `marc_subfield_structure` VALUES ('899', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7645 INSERT INTO `marc_subfield_structure` VALUES ('899', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, 5, 'BKS', '', '');
7646 INSERT INTO `marc_subfield_structure` VALUES ('89e', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7647 INSERT INTO `marc_subfield_structure` VALUES ('89e', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7648 INSERT INTO `marc_subfield_structure` VALUES ('89e', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7649 INSERT INTO `marc_subfield_structure` VALUES ('89e', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7650 INSERT INTO `marc_subfield_structure` VALUES ('89e', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7651 INSERT INTO `marc_subfield_structure` VALUES ('89e', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7652 INSERT INTO `marc_subfield_structure` VALUES ('89e', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7653 INSERT INTO `marc_subfield_structure` VALUES ('89e', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7654 INSERT INTO `marc_subfield_structure` VALUES ('89e', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7655 INSERT INTO `marc_subfield_structure` VALUES ('89e', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7656 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7657 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7658 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7659 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7660 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7661 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7662 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7663 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7664 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7665 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7666 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7667 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7668 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7669 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7670 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7671 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7672 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7673 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7674 INSERT INTO `marc_subfield_structure` VALUES ('89e', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7675 INSERT INTO `marc_subfield_structure` VALUES ('89e', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7676 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7677 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7678 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7679 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7680 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7681 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'BKS', '', '');
7682 INSERT INTO `marc_subfield_structure` VALUES ('900', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7683 INSERT INTO `marc_subfield_structure` VALUES ('900', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7684 INSERT INTO `marc_subfield_structure` VALUES ('900', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7685 INSERT INTO `marc_subfield_structure` VALUES ('900', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
7686 INSERT INTO `marc_subfield_structure` VALUES ('900', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7687 INSERT INTO `marc_subfield_structure` VALUES ('900', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7688 INSERT INTO `marc_subfield_structure` VALUES ('900', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7689 INSERT INTO `marc_subfield_structure` VALUES ('900', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7690 INSERT INTO `marc_subfield_structure` VALUES ('900', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7691 INSERT INTO `marc_subfield_structure` VALUES ('900', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7692 INSERT INTO `marc_subfield_structure` VALUES ('900', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7693 INSERT INTO `marc_subfield_structure` VALUES ('900', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7694 INSERT INTO `marc_subfield_structure` VALUES ('900', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7695 INSERT INTO `marc_subfield_structure` VALUES ('900', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7696 INSERT INTO `marc_subfield_structure` VALUES ('900', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7697 INSERT INTO `marc_subfield_structure` VALUES ('900', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7698 INSERT INTO `marc_subfield_structure` VALUES ('900', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7699 INSERT INTO `marc_subfield_structure` VALUES ('900', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7700 INSERT INTO `marc_subfield_structure` VALUES ('901', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7701 INSERT INTO `marc_subfield_structure` VALUES ('901', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7702 INSERT INTO `marc_subfield_structure` VALUES ('901', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7703 INSERT INTO `marc_subfield_structure` VALUES ('901', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7704 INSERT INTO `marc_subfield_structure` VALUES ('901', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7705 INSERT INTO `marc_subfield_structure` VALUES ('901', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7706 INSERT INTO `marc_subfield_structure` VALUES ('901', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7707 INSERT INTO `marc_subfield_structure` VALUES ('901', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7708 INSERT INTO `marc_subfield_structure` VALUES ('901', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7709 INSERT INTO `marc_subfield_structure` VALUES ('901', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7710 INSERT INTO `marc_subfield_structure` VALUES ('901', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7711 INSERT INTO `marc_subfield_structure` VALUES ('901', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7712 INSERT INTO `marc_subfield_structure` VALUES ('901', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7713 INSERT INTO `marc_subfield_structure` VALUES ('901', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7714 INSERT INTO `marc_subfield_structure` VALUES ('901', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7715 INSERT INTO `marc_subfield_structure` VALUES ('901', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7716 INSERT INTO `marc_subfield_structure` VALUES ('901', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7717 INSERT INTO `marc_subfield_structure` VALUES ('901', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7718 INSERT INTO `marc_subfield_structure` VALUES ('901', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7719 INSERT INTO `marc_subfield_structure` VALUES ('901', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7720 INSERT INTO `marc_subfield_structure` VALUES ('901', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7721 INSERT INTO `marc_subfield_structure` VALUES ('901', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7722 INSERT INTO `marc_subfield_structure` VALUES ('901', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7723 INSERT INTO `marc_subfield_structure` VALUES ('901', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7724 INSERT INTO `marc_subfield_structure` VALUES ('901', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7725 INSERT INTO `marc_subfield_structure` VALUES ('901', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7726 INSERT INTO `marc_subfield_structure` VALUES ('901', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7727 INSERT INTO `marc_subfield_structure` VALUES ('901', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7728 INSERT INTO `marc_subfield_structure` VALUES ('901', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7729 INSERT INTO `marc_subfield_structure` VALUES ('901', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7730 INSERT INTO `marc_subfield_structure` VALUES ('901', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7731 INSERT INTO `marc_subfield_structure` VALUES ('901', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7732 INSERT INTO `marc_subfield_structure` VALUES ('901', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7733 INSERT INTO `marc_subfield_structure` VALUES ('901', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7734 INSERT INTO `marc_subfield_structure` VALUES ('901', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7735 INSERT INTO `marc_subfield_structure` VALUES ('901', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7736 INSERT INTO `marc_subfield_structure` VALUES ('902', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7737 INSERT INTO `marc_subfield_structure` VALUES ('902', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7738 INSERT INTO `marc_subfield_structure` VALUES ('902', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7739 INSERT INTO `marc_subfield_structure` VALUES ('902', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7740 INSERT INTO `marc_subfield_structure` VALUES ('902', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7741 INSERT INTO `marc_subfield_structure` VALUES ('902', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7742 INSERT INTO `marc_subfield_structure` VALUES ('902', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7743 INSERT INTO `marc_subfield_structure` VALUES ('902', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7744 INSERT INTO `marc_subfield_structure` VALUES ('902', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7745 INSERT INTO `marc_subfield_structure` VALUES ('902', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7746 INSERT INTO `marc_subfield_structure` VALUES ('902', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7747 INSERT INTO `marc_subfield_structure` VALUES ('902', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7748 INSERT INTO `marc_subfield_structure` VALUES ('902', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7749 INSERT INTO `marc_subfield_structure` VALUES ('902', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7750 INSERT INTO `marc_subfield_structure` VALUES ('902', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7751 INSERT INTO `marc_subfield_structure` VALUES ('902', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7752 INSERT INTO `marc_subfield_structure` VALUES ('902', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7753 INSERT INTO `marc_subfield_structure` VALUES ('902', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7754 INSERT INTO `marc_subfield_structure` VALUES ('902', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7755 INSERT INTO `marc_subfield_structure` VALUES ('902', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7756 INSERT INTO `marc_subfield_structure` VALUES ('902', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7757 INSERT INTO `marc_subfield_structure` VALUES ('902', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7758 INSERT INTO `marc_subfield_structure` VALUES ('902', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7759 INSERT INTO `marc_subfield_structure` VALUES ('902', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7760 INSERT INTO `marc_subfield_structure` VALUES ('902', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7761 INSERT INTO `marc_subfield_structure` VALUES ('902', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7762 INSERT INTO `marc_subfield_structure` VALUES ('902', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7763 INSERT INTO `marc_subfield_structure` VALUES ('902', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7764 INSERT INTO `marc_subfield_structure` VALUES ('902', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7765 INSERT INTO `marc_subfield_structure` VALUES ('902', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7766 INSERT INTO `marc_subfield_structure` VALUES ('902', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7767 INSERT INTO `marc_subfield_structure` VALUES ('902', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7768 INSERT INTO `marc_subfield_structure` VALUES ('902', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7769 INSERT INTO `marc_subfield_structure` VALUES ('902', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7770 INSERT INTO `marc_subfield_structure` VALUES ('902', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7771 INSERT INTO `marc_subfield_structure` VALUES ('902', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7772 INSERT INTO `marc_subfield_structure` VALUES ('903', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7773 INSERT INTO `marc_subfield_structure` VALUES ('903', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7774 INSERT INTO `marc_subfield_structure` VALUES ('903', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7775 INSERT INTO `marc_subfield_structure` VALUES ('903', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7776 INSERT INTO `marc_subfield_structure` VALUES ('903', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7777 INSERT INTO `marc_subfield_structure` VALUES ('903', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7778 INSERT INTO `marc_subfield_structure` VALUES ('903', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7779 INSERT INTO `marc_subfield_structure` VALUES ('903', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7780 INSERT INTO `marc_subfield_structure` VALUES ('903', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7781 INSERT INTO `marc_subfield_structure` VALUES ('903', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7782 INSERT INTO `marc_subfield_structure` VALUES ('903', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7783 INSERT INTO `marc_subfield_structure` VALUES ('903', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7784 INSERT INTO `marc_subfield_structure` VALUES ('903', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7785 INSERT INTO `marc_subfield_structure` VALUES ('903', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7786 INSERT INTO `marc_subfield_structure` VALUES ('903', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7787 INSERT INTO `marc_subfield_structure` VALUES ('903', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7788 INSERT INTO `marc_subfield_structure` VALUES ('903', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7789 INSERT INTO `marc_subfield_structure` VALUES ('903', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7790 INSERT INTO `marc_subfield_structure` VALUES ('903', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7791 INSERT INTO `marc_subfield_structure` VALUES ('903', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7792 INSERT INTO `marc_subfield_structure` VALUES ('903', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7793 INSERT INTO `marc_subfield_structure` VALUES ('903', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7794 INSERT INTO `marc_subfield_structure` VALUES ('903', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7795 INSERT INTO `marc_subfield_structure` VALUES ('903', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7796 INSERT INTO `marc_subfield_structure` VALUES ('903', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7797 INSERT INTO `marc_subfield_structure` VALUES ('903', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7798 INSERT INTO `marc_subfield_structure` VALUES ('903', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7799 INSERT INTO `marc_subfield_structure` VALUES ('903', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7800 INSERT INTO `marc_subfield_structure` VALUES ('903', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7801 INSERT INTO `marc_subfield_structure` VALUES ('903', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7802 INSERT INTO `marc_subfield_structure` VALUES ('903', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7803 INSERT INTO `marc_subfield_structure` VALUES ('903', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7804 INSERT INTO `marc_subfield_structure` VALUES ('903', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7805 INSERT INTO `marc_subfield_structure` VALUES ('903', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7806 INSERT INTO `marc_subfield_structure` VALUES ('903', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7807 INSERT INTO `marc_subfield_structure` VALUES ('903', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7808 INSERT INTO `marc_subfield_structure` VALUES ('904', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7809 INSERT INTO `marc_subfield_structure` VALUES ('904', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7810 INSERT INTO `marc_subfield_structure` VALUES ('904', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7811 INSERT INTO `marc_subfield_structure` VALUES ('904', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7812 INSERT INTO `marc_subfield_structure` VALUES ('904', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7813 INSERT INTO `marc_subfield_structure` VALUES ('904', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7814 INSERT INTO `marc_subfield_structure` VALUES ('904', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7815 INSERT INTO `marc_subfield_structure` VALUES ('904', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7816 INSERT INTO `marc_subfield_structure` VALUES ('904', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7817 INSERT INTO `marc_subfield_structure` VALUES ('904', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7818 INSERT INTO `marc_subfield_structure` VALUES ('904', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7819 INSERT INTO `marc_subfield_structure` VALUES ('904', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7820 INSERT INTO `marc_subfield_structure` VALUES ('904', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7821 INSERT INTO `marc_subfield_structure` VALUES ('904', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7822 INSERT INTO `marc_subfield_structure` VALUES ('904', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7823 INSERT INTO `marc_subfield_structure` VALUES ('904', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7824 INSERT INTO `marc_subfield_structure` VALUES ('904', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7825 INSERT INTO `marc_subfield_structure` VALUES ('904', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7826 INSERT INTO `marc_subfield_structure` VALUES ('904', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7827 INSERT INTO `marc_subfield_structure` VALUES ('904', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7828 INSERT INTO `marc_subfield_structure` VALUES ('904', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7829 INSERT INTO `marc_subfield_structure` VALUES ('904', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7830 INSERT INTO `marc_subfield_structure` VALUES ('904', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7831 INSERT INTO `marc_subfield_structure` VALUES ('904', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7832 INSERT INTO `marc_subfield_structure` VALUES ('904', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7833 INSERT INTO `marc_subfield_structure` VALUES ('904', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7834 INSERT INTO `marc_subfield_structure` VALUES ('904', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7835 INSERT INTO `marc_subfield_structure` VALUES ('904', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7836 INSERT INTO `marc_subfield_structure` VALUES ('904', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7837 INSERT INTO `marc_subfield_structure` VALUES ('904', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7838 INSERT INTO `marc_subfield_structure` VALUES ('904', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7839 INSERT INTO `marc_subfield_structure` VALUES ('904', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7840 INSERT INTO `marc_subfield_structure` VALUES ('904', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7841 INSERT INTO `marc_subfield_structure` VALUES ('904', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7842 INSERT INTO `marc_subfield_structure` VALUES ('904', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7843 INSERT INTO `marc_subfield_structure` VALUES ('904', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7844 INSERT INTO `marc_subfield_structure` VALUES ('905', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7845 INSERT INTO `marc_subfield_structure` VALUES ('905', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7846 INSERT INTO `marc_subfield_structure` VALUES ('905', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7847 INSERT INTO `marc_subfield_structure` VALUES ('905', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7848 INSERT INTO `marc_subfield_structure` VALUES ('905', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7849 INSERT INTO `marc_subfield_structure` VALUES ('905', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7850 INSERT INTO `marc_subfield_structure` VALUES ('905', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7851 INSERT INTO `marc_subfield_structure` VALUES ('905', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7852 INSERT INTO `marc_subfield_structure` VALUES ('905', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7853 INSERT INTO `marc_subfield_structure` VALUES ('905', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7854 INSERT INTO `marc_subfield_structure` VALUES ('905', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7855 INSERT INTO `marc_subfield_structure` VALUES ('905', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7856 INSERT INTO `marc_subfield_structure` VALUES ('905', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7857 INSERT INTO `marc_subfield_structure` VALUES ('905', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7858 INSERT INTO `marc_subfield_structure` VALUES ('905', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7859 INSERT INTO `marc_subfield_structure` VALUES ('905', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7860 INSERT INTO `marc_subfield_structure` VALUES ('905', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7861 INSERT INTO `marc_subfield_structure` VALUES ('905', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7862 INSERT INTO `marc_subfield_structure` VALUES ('905', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7863 INSERT INTO `marc_subfield_structure` VALUES ('905', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7864 INSERT INTO `marc_subfield_structure` VALUES ('905', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7865 INSERT INTO `marc_subfield_structure` VALUES ('905', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7866 INSERT INTO `marc_subfield_structure` VALUES ('905', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7867 INSERT INTO `marc_subfield_structure` VALUES ('905', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7868 INSERT INTO `marc_subfield_structure` VALUES ('905', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7869 INSERT INTO `marc_subfield_structure` VALUES ('905', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7870 INSERT INTO `marc_subfield_structure` VALUES ('905', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7871 INSERT INTO `marc_subfield_structure` VALUES ('905', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7872 INSERT INTO `marc_subfield_structure` VALUES ('905', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7873 INSERT INTO `marc_subfield_structure` VALUES ('905', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7874 INSERT INTO `marc_subfield_structure` VALUES ('905', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7875 INSERT INTO `marc_subfield_structure` VALUES ('905', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7876 INSERT INTO `marc_subfield_structure` VALUES ('905', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7877 INSERT INTO `marc_subfield_structure` VALUES ('905', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7878 INSERT INTO `marc_subfield_structure` VALUES ('905', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7879 INSERT INTO `marc_subfield_structure` VALUES ('905', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7880 INSERT INTO `marc_subfield_structure` VALUES ('906', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7881 INSERT INTO `marc_subfield_structure` VALUES ('906', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7882 INSERT INTO `marc_subfield_structure` VALUES ('906', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7883 INSERT INTO `marc_subfield_structure` VALUES ('906', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7884 INSERT INTO `marc_subfield_structure` VALUES ('906', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7885 INSERT INTO `marc_subfield_structure` VALUES ('906', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7886 INSERT INTO `marc_subfield_structure` VALUES ('906', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7887 INSERT INTO `marc_subfield_structure` VALUES ('906', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7888 INSERT INTO `marc_subfield_structure` VALUES ('906', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7889 INSERT INTO `marc_subfield_structure` VALUES ('906', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7890 INSERT INTO `marc_subfield_structure` VALUES ('906', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7891 INSERT INTO `marc_subfield_structure` VALUES ('906', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7892 INSERT INTO `marc_subfield_structure` VALUES ('906', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7893 INSERT INTO `marc_subfield_structure` VALUES ('906', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7894 INSERT INTO `marc_subfield_structure` VALUES ('906', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7895 INSERT INTO `marc_subfield_structure` VALUES ('906', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7896 INSERT INTO `marc_subfield_structure` VALUES ('906', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7897 INSERT INTO `marc_subfield_structure` VALUES ('906', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7898 INSERT INTO `marc_subfield_structure` VALUES ('906', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7899 INSERT INTO `marc_subfield_structure` VALUES ('906', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7900 INSERT INTO `marc_subfield_structure` VALUES ('906', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7901 INSERT INTO `marc_subfield_structure` VALUES ('906', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7902 INSERT INTO `marc_subfield_structure` VALUES ('906', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7903 INSERT INTO `marc_subfield_structure` VALUES ('906', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7904 INSERT INTO `marc_subfield_structure` VALUES ('906', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7905 INSERT INTO `marc_subfield_structure` VALUES ('906', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7906 INSERT INTO `marc_subfield_structure` VALUES ('906', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7907 INSERT INTO `marc_subfield_structure` VALUES ('906', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7908 INSERT INTO `marc_subfield_structure` VALUES ('906', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7909 INSERT INTO `marc_subfield_structure` VALUES ('906', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7910 INSERT INTO `marc_subfield_structure` VALUES ('906', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7911 INSERT INTO `marc_subfield_structure` VALUES ('906', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7912 INSERT INTO `marc_subfield_structure` VALUES ('906', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7913 INSERT INTO `marc_subfield_structure` VALUES ('906', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7914 INSERT INTO `marc_subfield_structure` VALUES ('906', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7915 INSERT INTO `marc_subfield_structure` VALUES ('906', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7916 INSERT INTO `marc_subfield_structure` VALUES ('907', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7917 INSERT INTO `marc_subfield_structure` VALUES ('907', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7918 INSERT INTO `marc_subfield_structure` VALUES ('907', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7919 INSERT INTO `marc_subfield_structure` VALUES ('907', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7920 INSERT INTO `marc_subfield_structure` VALUES ('907', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7921 INSERT INTO `marc_subfield_structure` VALUES ('907', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7922 INSERT INTO `marc_subfield_structure` VALUES ('907', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7923 INSERT INTO `marc_subfield_structure` VALUES ('907', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7924 INSERT INTO `marc_subfield_structure` VALUES ('907', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7925 INSERT INTO `marc_subfield_structure` VALUES ('907', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7926 INSERT INTO `marc_subfield_structure` VALUES ('907', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7927 INSERT INTO `marc_subfield_structure` VALUES ('907', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7928 INSERT INTO `marc_subfield_structure` VALUES ('907', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7929 INSERT INTO `marc_subfield_structure` VALUES ('907', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7930 INSERT INTO `marc_subfield_structure` VALUES ('907', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7931 INSERT INTO `marc_subfield_structure` VALUES ('907', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7932 INSERT INTO `marc_subfield_structure` VALUES ('907', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7933 INSERT INTO `marc_subfield_structure` VALUES ('907', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7934 INSERT INTO `marc_subfield_structure` VALUES ('907', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7935 INSERT INTO `marc_subfield_structure` VALUES ('907', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7936 INSERT INTO `marc_subfield_structure` VALUES ('907', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7937 INSERT INTO `marc_subfield_structure` VALUES ('907', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7938 INSERT INTO `marc_subfield_structure` VALUES ('907', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7939 INSERT INTO `marc_subfield_structure` VALUES ('907', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7940 INSERT INTO `marc_subfield_structure` VALUES ('907', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7941 INSERT INTO `marc_subfield_structure` VALUES ('907', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7942 INSERT INTO `marc_subfield_structure` VALUES ('907', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7943 INSERT INTO `marc_subfield_structure` VALUES ('907', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7944 INSERT INTO `marc_subfield_structure` VALUES ('907', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7945 INSERT INTO `marc_subfield_structure` VALUES ('907', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7946 INSERT INTO `marc_subfield_structure` VALUES ('907', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7947 INSERT INTO `marc_subfield_structure` VALUES ('907', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7948 INSERT INTO `marc_subfield_structure` VALUES ('907', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7949 INSERT INTO `marc_subfield_structure` VALUES ('907', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7950 INSERT INTO `marc_subfield_structure` VALUES ('907', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7951 INSERT INTO `marc_subfield_structure` VALUES ('907', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7952 INSERT INTO `marc_subfield_structure` VALUES ('908', 'a', 'Put command parameter', 'Put command parameter', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7953 INSERT INTO `marc_subfield_structure` VALUES ('910', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7954 INSERT INTO `marc_subfield_structure` VALUES ('910', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7955 INSERT INTO `marc_subfield_structure` VALUES ('910', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7956 INSERT INTO `marc_subfield_structure` VALUES ('910', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7957 INSERT INTO `marc_subfield_structure` VALUES ('910', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7958 INSERT INTO `marc_subfield_structure` VALUES ('910', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7959 INSERT INTO `marc_subfield_structure` VALUES ('910', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7960 INSERT INTO `marc_subfield_structure` VALUES ('910', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7961 INSERT INTO `marc_subfield_structure` VALUES ('910', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7962 INSERT INTO `marc_subfield_structure` VALUES ('910', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7963 INSERT INTO `marc_subfield_structure` VALUES ('910', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7964 INSERT INTO `marc_subfield_structure` VALUES ('910', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7965 INSERT INTO `marc_subfield_structure` VALUES ('910', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7966 INSERT INTO `marc_subfield_structure` VALUES ('910', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7967 INSERT INTO `marc_subfield_structure` VALUES ('910', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7968 INSERT INTO `marc_subfield_structure` VALUES ('910', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7969 INSERT INTO `marc_subfield_structure` VALUES ('91o', 'a', 'User-option data', 'User-option data', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
7970 INSERT INTO `marc_subfield_structure` VALUES ('91r', 'a', 'RLG standards note', 'RLG standards note', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
7971 INSERT INTO `marc_subfield_structure` VALUES ('911', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7972 INSERT INTO `marc_subfield_structure` VALUES ('911', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7973 INSERT INTO `marc_subfield_structure` VALUES ('911', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7974 INSERT INTO `marc_subfield_structure` VALUES ('911', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7975 INSERT INTO `marc_subfield_structure` VALUES ('911', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7976 INSERT INTO `marc_subfield_structure` VALUES ('911', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7977 INSERT INTO `marc_subfield_structure` VALUES ('911', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7978 INSERT INTO `marc_subfield_structure` VALUES ('911', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7979 INSERT INTO `marc_subfield_structure` VALUES ('911', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7980 INSERT INTO `marc_subfield_structure` VALUES ('911', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7981 INSERT INTO `marc_subfield_structure` VALUES ('911', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7982 INSERT INTO `marc_subfield_structure` VALUES ('911', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7983 INSERT INTO `marc_subfield_structure` VALUES ('911', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7984 INSERT INTO `marc_subfield_structure` VALUES ('911', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7985 INSERT INTO `marc_subfield_structure` VALUES ('911', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7986 INSERT INTO `marc_subfield_structure` VALUES ('911', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7987 INSERT INTO `marc_subfield_structure` VALUES ('911', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7988 INSERT INTO `marc_subfield_structure` VALUES ('930', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7989 INSERT INTO `marc_subfield_structure` VALUES ('930', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7990 INSERT INTO `marc_subfield_structure` VALUES ('930', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7991 INSERT INTO `marc_subfield_structure` VALUES ('930', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7992 INSERT INTO `marc_subfield_structure` VALUES ('930', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7993 INSERT INTO `marc_subfield_structure` VALUES ('930', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7994 INSERT INTO `marc_subfield_structure` VALUES ('930', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7995 INSERT INTO `marc_subfield_structure` VALUES ('930', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7996 INSERT INTO `marc_subfield_structure` VALUES ('930', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7997 INSERT INTO `marc_subfield_structure` VALUES ('930', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7998 INSERT INTO `marc_subfield_structure` VALUES ('930', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
7999 INSERT INTO `marc_subfield_structure` VALUES ('930', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8000 INSERT INTO `marc_subfield_structure` VALUES ('930', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8001 INSERT INTO `marc_subfield_structure` VALUES ('930', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8002 INSERT INTO `marc_subfield_structure` VALUES ('930', 's', 'Version', 'Version', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8003 INSERT INTO `marc_subfield_structure` VALUES ('930', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8004 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'a', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'BKS', '', '');
8005 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'b', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'BKS', '', '');
8006 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'c', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'BKS', '', '');
8007 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'd', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'BKS', '', '');
8008 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'e', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'BKS', '', '');
8009 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'f', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'BKS', '', '');
8010 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'g', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'BKS', '', '');
8011 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'h', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'BKS', '', '');
8012 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'i', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'BKS', '', '');
8013 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'k', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'BKS', '', '');
8014 INSERT INTO `marc_subfield_structure` VALUES ('936', 'a', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8015 INSERT INTO `marc_subfield_structure` VALUES ('940', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8016 INSERT INTO `marc_subfield_structure` VALUES ('940', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8017 INSERT INTO `marc_subfield_structure` VALUES ('940', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', 1, -6, 'BKS', '', '');
8018 INSERT INTO `marc_subfield_structure` VALUES ('940', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8019 INSERT INTO `marc_subfield_structure` VALUES ('940', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8020 INSERT INTO `marc_subfield_structure` VALUES ('940', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8021 INSERT INTO `marc_subfield_structure` VALUES ('940', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8022 INSERT INTO `marc_subfield_structure` VALUES ('940', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8023 INSERT INTO `marc_subfield_structure` VALUES ('940', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8024 INSERT INTO `marc_subfield_structure` VALUES ('940', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8025 INSERT INTO `marc_subfield_structure` VALUES ('940', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8026 INSERT INTO `marc_subfield_structure` VALUES ('940', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8027 INSERT INTO `marc_subfield_structure` VALUES ('940', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8028 INSERT INTO `marc_subfield_structure` VALUES ('940', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8029 INSERT INTO `marc_subfield_structure` VALUES ('940', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8030 INSERT INTO `marc_subfield_structure` VALUES ('941', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8031 INSERT INTO `marc_subfield_structure` VALUES ('941', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8032 INSERT INTO `marc_subfield_structure` VALUES ('943', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8033 INSERT INTO `marc_subfield_structure` VALUES ('943', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8034 INSERT INTO `marc_subfield_structure` VALUES ('943', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 9, '', '', '', 1, 5, 'BKS', '', '130');
8035 INSERT INTO `marc_subfield_structure` VALUES ('943', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8036 INSERT INTO `marc_subfield_structure` VALUES ('943', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8037 INSERT INTO `marc_subfield_structure` VALUES ('943', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8038 INSERT INTO `marc_subfield_structure` VALUES ('943', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8039 INSERT INTO `marc_subfield_structure` VALUES ('943', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8040 INSERT INTO `marc_subfield_structure` VALUES ('943', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8041 INSERT INTO `marc_subfield_structure` VALUES ('943', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8042 INSERT INTO `marc_subfield_structure` VALUES ('943', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8043 INSERT INTO `marc_subfield_structure` VALUES ('943', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8044 INSERT INTO `marc_subfield_structure` VALUES ('943', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8045 INSERT INTO `marc_subfield_structure` VALUES ('943', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8046 INSERT INTO `marc_subfield_structure` VALUES ('943', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8047 INSERT INTO `marc_subfield_structure` VALUES ('945', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8048 INSERT INTO `marc_subfield_structure` VALUES ('945', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8049 INSERT INTO `marc_subfield_structure` VALUES ('945', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8050 INSERT INTO `marc_subfield_structure` VALUES ('945', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8051 INSERT INTO `marc_subfield_structure` VALUES ('945', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8052 INSERT INTO `marc_subfield_structure` VALUES ('945', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8053 INSERT INTO `marc_subfield_structure` VALUES ('945', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8054 INSERT INTO `marc_subfield_structure` VALUES ('945', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8055 INSERT INTO `marc_subfield_structure` VALUES ('945', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8056 INSERT INTO `marc_subfield_structure` VALUES ('945', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8057 INSERT INTO `marc_subfield_structure` VALUES ('945', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8058 INSERT INTO `marc_subfield_structure` VALUES ('945', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8059 INSERT INTO `marc_subfield_structure` VALUES ('945', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8060 INSERT INTO `marc_subfield_structure` VALUES ('945', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8061 INSERT INTO `marc_subfield_structure` VALUES ('945', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8062 INSERT INTO `marc_subfield_structure` VALUES ('945', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8063 INSERT INTO `marc_subfield_structure` VALUES ('945', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8064 INSERT INTO `marc_subfield_structure` VALUES ('945', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8065 INSERT INTO `marc_subfield_structure` VALUES ('945', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8066 INSERT INTO `marc_subfield_structure` VALUES ('945', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8067 INSERT INTO `marc_subfield_structure` VALUES ('945', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8068 INSERT INTO `marc_subfield_structure` VALUES ('945', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8069 INSERT INTO `marc_subfield_structure` VALUES ('945', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8070 INSERT INTO `marc_subfield_structure` VALUES ('945', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8071 INSERT INTO `marc_subfield_structure` VALUES ('945', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8072 INSERT INTO `marc_subfield_structure` VALUES ('945', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8073 INSERT INTO `marc_subfield_structure` VALUES ('945', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8074 INSERT INTO `marc_subfield_structure` VALUES ('945', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8075 INSERT INTO `marc_subfield_structure` VALUES ('945', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8076 INSERT INTO `marc_subfield_structure` VALUES ('945', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8077 INSERT INTO `marc_subfield_structure` VALUES ('945', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8078 INSERT INTO `marc_subfield_structure` VALUES ('945', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8079 INSERT INTO `marc_subfield_structure` VALUES ('945', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8080 INSERT INTO `marc_subfield_structure` VALUES ('945', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8081 INSERT INTO `marc_subfield_structure` VALUES ('945', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8082 INSERT INTO `marc_subfield_structure` VALUES ('945', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8083 INSERT INTO `marc_subfield_structure` VALUES ('94c', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8084 INSERT INTO `marc_subfield_structure` VALUES ('94c', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8085 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'a', 'Title', 'Title', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8086 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8087 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8088 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8089 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8090 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8091 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8092 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8093 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'k', 'Form', 'Form', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8094 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8095 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8096 INSERT INTO `marc_subfield_structure` VALUES ('94c', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8097 INSERT INTO `marc_subfield_structure` VALUES ('946', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8098 INSERT INTO `marc_subfield_structure` VALUES ('946', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8099 INSERT INTO `marc_subfield_structure` VALUES ('946', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8100 INSERT INTO `marc_subfield_structure` VALUES ('946', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8101 INSERT INTO `marc_subfield_structure` VALUES ('946', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8102 INSERT INTO `marc_subfield_structure` VALUES ('946', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8103 INSERT INTO `marc_subfield_structure` VALUES ('946', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8104 INSERT INTO `marc_subfield_structure` VALUES ('946', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8105 INSERT INTO `marc_subfield_structure` VALUES ('946', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8106 INSERT INTO `marc_subfield_structure` VALUES ('946', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8107 INSERT INTO `marc_subfield_structure` VALUES ('946', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8108 INSERT INTO `marc_subfield_structure` VALUES ('946', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8109 INSERT INTO `marc_subfield_structure` VALUES ('946', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8110 INSERT INTO `marc_subfield_structure` VALUES ('946', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8111 INSERT INTO `marc_subfield_structure` VALUES ('946', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8112 INSERT INTO `marc_subfield_structure` VALUES ('946', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8113 INSERT INTO `marc_subfield_structure` VALUES ('946', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8114 INSERT INTO `marc_subfield_structure` VALUES ('946', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8115 INSERT INTO `marc_subfield_structure` VALUES ('946', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8116 INSERT INTO `marc_subfield_structure` VALUES ('946', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8117 INSERT INTO `marc_subfield_structure` VALUES ('946', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8118 INSERT INTO `marc_subfield_structure` VALUES ('946', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8119 INSERT INTO `marc_subfield_structure` VALUES ('946', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8120 INSERT INTO `marc_subfield_structure` VALUES ('946', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8121 INSERT INTO `marc_subfield_structure` VALUES ('946', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8122 INSERT INTO `marc_subfield_structure` VALUES ('946', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8123 INSERT INTO `marc_subfield_structure` VALUES ('946', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8124 INSERT INTO `marc_subfield_structure` VALUES ('946', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8125 INSERT INTO `marc_subfield_structure` VALUES ('946', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8126 INSERT INTO `marc_subfield_structure` VALUES ('946', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8127 INSERT INTO `marc_subfield_structure` VALUES ('946', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8128 INSERT INTO `marc_subfield_structure` VALUES ('946', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8129 INSERT INTO `marc_subfield_structure` VALUES ('946', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8130 INSERT INTO `marc_subfield_structure` VALUES ('946', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8131 INSERT INTO `marc_subfield_structure` VALUES ('946', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8132 INSERT INTO `marc_subfield_structure` VALUES ('946', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8133 INSERT INTO `marc_subfield_structure` VALUES ('947', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8134 INSERT INTO `marc_subfield_structure` VALUES ('947', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8135 INSERT INTO `marc_subfield_structure` VALUES ('947', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8136 INSERT INTO `marc_subfield_structure` VALUES ('947', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8137 INSERT INTO `marc_subfield_structure` VALUES ('947', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8138 INSERT INTO `marc_subfield_structure` VALUES ('947', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8139 INSERT INTO `marc_subfield_structure` VALUES ('947', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8140 INSERT INTO `marc_subfield_structure` VALUES ('947', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8141 INSERT INTO `marc_subfield_structure` VALUES ('947', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8142 INSERT INTO `marc_subfield_structure` VALUES ('947', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8143 INSERT INTO `marc_subfield_structure` VALUES ('947', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8144 INSERT INTO `marc_subfield_structure` VALUES ('947', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8145 INSERT INTO `marc_subfield_structure` VALUES ('947', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8146 INSERT INTO `marc_subfield_structure` VALUES ('947', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8147 INSERT INTO `marc_subfield_structure` VALUES ('947', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8148 INSERT INTO `marc_subfield_structure` VALUES ('947', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8149 INSERT INTO `marc_subfield_structure` VALUES ('947', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8150 INSERT INTO `marc_subfield_structure` VALUES ('947', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8151 INSERT INTO `marc_subfield_structure` VALUES ('947', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8152 INSERT INTO `marc_subfield_structure` VALUES ('947', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8153 INSERT INTO `marc_subfield_structure` VALUES ('947', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8154 INSERT INTO `marc_subfield_structure` VALUES ('947', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8155 INSERT INTO `marc_subfield_structure` VALUES ('947', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8156 INSERT INTO `marc_subfield_structure` VALUES ('947', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8157 INSERT INTO `marc_subfield_structure` VALUES ('947', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8158 INSERT INTO `marc_subfield_structure` VALUES ('947', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8159 INSERT INTO `marc_subfield_structure` VALUES ('947', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8160 INSERT INTO `marc_subfield_structure` VALUES ('947', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8161 INSERT INTO `marc_subfield_structure` VALUES ('947', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8162 INSERT INTO `marc_subfield_structure` VALUES ('947', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8163 INSERT INTO `marc_subfield_structure` VALUES ('947', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8164 INSERT INTO `marc_subfield_structure` VALUES ('947', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8165 INSERT INTO `marc_subfield_structure` VALUES ('947', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8166 INSERT INTO `marc_subfield_structure` VALUES ('947', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8167 INSERT INTO `marc_subfield_structure` VALUES ('947', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8168 INSERT INTO `marc_subfield_structure` VALUES ('947', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8169 INSERT INTO `marc_subfield_structure` VALUES ('948', '0', '0 (OCLC)', '0 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8170 INSERT INTO `marc_subfield_structure` VALUES ('948', '1', '1 (OCLC)', '1 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8171 INSERT INTO `marc_subfield_structure` VALUES ('948', '2', '2 (OCLC)', '2 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8172 INSERT INTO `marc_subfield_structure` VALUES ('948', '3', '3 (OCLC)', '3 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8173 INSERT INTO `marc_subfield_structure` VALUES ('948', '4', '4 (OCLC)', '4 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8174 INSERT INTO `marc_subfield_structure` VALUES ('948', '5', '5 (OCLC)', '5 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8175 INSERT INTO `marc_subfield_structure` VALUES ('948', '6', '6 (OCLC)', '6 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8176 INSERT INTO `marc_subfield_structure` VALUES ('948', '7', '7 (OCLC)', '7 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8177 INSERT INTO `marc_subfield_structure` VALUES ('948', '8', '8 (OCLC)', '8 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8178 INSERT INTO `marc_subfield_structure` VALUES ('948', '9', '9 (OCLC)', '9 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8179 INSERT INTO `marc_subfield_structure` VALUES ('948', 'a', 'Series part designator, SPT (RLIN)', 'Series part designator, SPT (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8180 INSERT INTO `marc_subfield_structure` VALUES ('948', 'b', 'b (OCLC)', 'b (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8181 INSERT INTO `marc_subfield_structure` VALUES ('948', 'c', 'c (OCLC)', 'c (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8182 INSERT INTO `marc_subfield_structure` VALUES ('948', 'd', 'd (OCLC)', 'd (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8183 INSERT INTO `marc_subfield_structure` VALUES ('948', 'e', 'e (OCLC)', 'e (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8184 INSERT INTO `marc_subfield_structure` VALUES ('948', 'f', 'f (OCLC)', 'f (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8185 INSERT INTO `marc_subfield_structure` VALUES ('948', 'g', 'g (OCLC)', 'g (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8186 INSERT INTO `marc_subfield_structure` VALUES ('948', 'h', 'h (OCLC)', 'h (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8187 INSERT INTO `marc_subfield_structure` VALUES ('948', 'i', 'i (OCLC)', 'i (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8188 INSERT INTO `marc_subfield_structure` VALUES ('948', 'j', 'j (OCLC)', 'j (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8189 INSERT INTO `marc_subfield_structure` VALUES ('948', 'k', 'k (OCLC)', 'k (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8190 INSERT INTO `marc_subfield_structure` VALUES ('948', 'l', 'l (OCLC)', 'l (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8191 INSERT INTO `marc_subfield_structure` VALUES ('948', 'm', 'm (OCLC)', 'm (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8192 INSERT INTO `marc_subfield_structure` VALUES ('948', 'n', 'n (OCLC)', 'n (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8193 INSERT INTO `marc_subfield_structure` VALUES ('948', 'o', 'o (OCLC)', 'o (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8194 INSERT INTO `marc_subfield_structure` VALUES ('948', 'p', 'p (OCLC)', 'p (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8195 INSERT INTO `marc_subfield_structure` VALUES ('948', 'q', 'q (OCLC)', 'q (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8196 INSERT INTO `marc_subfield_structure` VALUES ('948', 'r', 'r (OCLC)', 'r (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8197 INSERT INTO `marc_subfield_structure` VALUES ('948', 's', 's (OCLC)', 's (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8198 INSERT INTO `marc_subfield_structure` VALUES ('948', 't', 't (OCLC)', 't (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8199 INSERT INTO `marc_subfield_structure` VALUES ('948', 'u', 'u (OCLC)', 'u (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8200 INSERT INTO `marc_subfield_structure` VALUES ('948', 'v', 'v (OCLC)', 'v (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8201 INSERT INTO `marc_subfield_structure` VALUES ('948', 'w', 'w (OCLC)', 'w (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8202 INSERT INTO `marc_subfield_structure` VALUES ('948', 'x', 'x (OCLC)', 'x (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8203 INSERT INTO `marc_subfield_structure` VALUES ('948', 'y', 'y (OCLC)', 'y (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8204 INSERT INTO `marc_subfield_structure` VALUES ('948', 'z', 'z (OCLC)', 'z (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8205 INSERT INTO `marc_subfield_structure` VALUES ('949', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8206 INSERT INTO `marc_subfield_structure` VALUES ('949', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8207 INSERT INTO `marc_subfield_structure` VALUES ('949', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8208 INSERT INTO `marc_subfield_structure` VALUES ('949', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8209 INSERT INTO `marc_subfield_structure` VALUES ('949', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8210 INSERT INTO `marc_subfield_structure` VALUES ('949', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8211 INSERT INTO `marc_subfield_structure` VALUES ('949', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8212 INSERT INTO `marc_subfield_structure` VALUES ('949', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8213 INSERT INTO `marc_subfield_structure` VALUES ('949', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8214 INSERT INTO `marc_subfield_structure` VALUES ('949', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8215 INSERT INTO `marc_subfield_structure` VALUES ('949', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8216 INSERT INTO `marc_subfield_structure` VALUES ('949', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8217 INSERT INTO `marc_subfield_structure` VALUES ('949', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8218 INSERT INTO `marc_subfield_structure` VALUES ('949', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8219 INSERT INTO `marc_subfield_structure` VALUES ('949', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8220 INSERT INTO `marc_subfield_structure` VALUES ('949', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8221 INSERT INTO `marc_subfield_structure` VALUES ('949', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8222 INSERT INTO `marc_subfield_structure` VALUES ('949', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8223 INSERT INTO `marc_subfield_structure` VALUES ('949', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8224 INSERT INTO `marc_subfield_structure` VALUES ('949', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8225 INSERT INTO `marc_subfield_structure` VALUES ('949', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8226 INSERT INTO `marc_subfield_structure` VALUES ('949', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8227 INSERT INTO `marc_subfield_structure` VALUES ('949', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8228 INSERT INTO `marc_subfield_structure` VALUES ('949', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8229 INSERT INTO `marc_subfield_structure` VALUES ('949', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8230 INSERT INTO `marc_subfield_structure` VALUES ('949', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8231 INSERT INTO `marc_subfield_structure` VALUES ('949', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8232 INSERT INTO `marc_subfield_structure` VALUES ('949', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8233 INSERT INTO `marc_subfield_structure` VALUES ('949', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8234 INSERT INTO `marc_subfield_structure` VALUES ('949', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8235 INSERT INTO `marc_subfield_structure` VALUES ('949', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8236 INSERT INTO `marc_subfield_structure` VALUES ('949', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8237 INSERT INTO `marc_subfield_structure` VALUES ('949', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8238 INSERT INTO `marc_subfield_structure` VALUES ('949', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8239 INSERT INTO `marc_subfield_structure` VALUES ('949', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8240 INSERT INTO `marc_subfield_structure` VALUES ('949', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8241 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'a', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8242 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'b', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8243 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'c', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8244 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'd', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8245 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'e', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8246 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'a', 'ATC', 'ATC', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8247 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'b', 'SNR', 'SNR', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8248 INSERT INTO `marc_subfield_structure` VALUES ('950', 'a', 'Classification number, LCAL (RLIN)', 'Classification number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8249 INSERT INTO `marc_subfield_structure` VALUES ('950', 'b', 'Book number/undivided call number, LCAL (RLIN)', 'Book number/undivided call number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8250 INSERT INTO `marc_subfield_structure` VALUES ('950', 'd', 'Additional free-text stamp above the call number, LCAL (RLIN)', 'Additional free-text stamp above the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8251 INSERT INTO `marc_subfield_structure` VALUES ('950', 'e', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8252 INSERT INTO `marc_subfield_structure` VALUES ('950', 'f', 'Location-level footnote, LFNT (RLIN)', 'Location-level footnote, LFNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8253 INSERT INTO `marc_subfield_structure` VALUES ('950', 'h', 'Location-level output transaction history, LHST (RLIN)', 'Location-level output transaction history, LHST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8254 INSERT INTO `marc_subfield_structure` VALUES ('950', 'i', 'Location-level extra card request, LEXT (RLIN)', 'Location-level extra card request, LEXT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8255 INSERT INTO `marc_subfield_structure` VALUES ('950', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8256 INSERT INTO `marc_subfield_structure` VALUES ('950', 'n', 'Location-level additional note, LANT (RLIN)', 'Location-level additional note, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8257 INSERT INTO `marc_subfield_structure` VALUES ('950', 'p', 'Location-level pathfinder, LPTH (RLIN)', 'Location-level pathfinder, LPTH (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8258 INSERT INTO `marc_subfield_structure` VALUES ('950', 't', 'Location-level field suppression, LFSP (RLIN)', 'Location-level field suppression, LFSP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8259 INSERT INTO `marc_subfield_structure` VALUES ('950', 'u', 'Non-printing notes, LANT (RLIN)', 'Non-printing notes, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8260 INSERT INTO `marc_subfield_structure` VALUES ('950', 'v', 'Volumes, LVOL (RLIN)', 'Volumes, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8261 INSERT INTO `marc_subfield_structure` VALUES ('950', 'w', 'Subscription status code, LANT (RLIN)', 'Subscription status code, LANT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8262 INSERT INTO `marc_subfield_structure` VALUES ('950', 'y', 'Date, LVOL (RLIN)', 'Date, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8263 INSERT INTO `marc_subfield_structure` VALUES ('950', 'z', 'Retention, LVOL (RLIN)', 'Retention, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8264 INSERT INTO `marc_subfield_structure` VALUES ('951', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
8265 INSERT INTO `marc_subfield_structure` VALUES ('951', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
8266 INSERT INTO `marc_subfield_structure` VALUES ('951', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
8267 INSERT INTO `marc_subfield_structure` VALUES ('951', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
8268 INSERT INTO `marc_subfield_structure` VALUES ('951', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
8269 INSERT INTO `marc_subfield_structure` VALUES ('951', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
8270 INSERT INTO `marc_subfield_structure` VALUES ('951', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
8271 INSERT INTO `marc_subfield_structure` VALUES ('951', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
8272 INSERT INTO `marc_subfield_structure` VALUES ('951', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
8273 INSERT INTO `marc_subfield_structure` VALUES ('951', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'BKS', '', '');
8274 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'a', 'Record ID (RLIN)', 'Record ID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8275 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'b', 'Institution name (RLIN)', 'Institution name (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8276 INSERT INTO `marc_subfield_structure` VALUES ('95r', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'BKS', '', '');
8277 INSERT INTO `marc_subfield_structure` VALUES ('95r', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'BKS', '', '');
8278 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'a', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'BKS', '', '');
8279 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'b', 'State, province, territory', 'State, province, territory', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'BKS', '', '');
8280 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'c', 'County, region, islands area', 'County, region, islands area', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'BKS', '', '');
8281 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'd', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'BKS', '', '');
8282 INSERT INTO `marc_subfield_structure` VALUES ('955', 'a', 'Classification number, CCAL (RLIN)', 'Classification number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8283 INSERT INTO `marc_subfield_structure` VALUES ('955', 'b', 'Book number/undivided call number, CCAL (RLIN)', 'Book number/undivided call number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8284 INSERT INTO `marc_subfield_structure` VALUES ('955', 'c', 'Copy information and material description, CCAL + MDES (RLIN)', 'Copy information and material description, CCAL + MDES (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8285 INSERT INTO `marc_subfield_structure` VALUES ('955', 'h', 'Copy status--for earlier dates, CST (RLIN)', 'Copy status--for earlier dates, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8286 INSERT INTO `marc_subfield_structure` VALUES ('955', 'i', 'Copy status, CST (RLIN)', 'Copy status, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8287 INSERT INTO `marc_subfield_structure` VALUES ('955', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8288 INSERT INTO `marc_subfield_structure` VALUES ('955', 'q', 'Aquisitions control number, HNT (RLIN)', 'Aquisitions control number, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8289 INSERT INTO `marc_subfield_structure` VALUES ('955', 'r', 'Circulation control number, HNT (RLIN)', 'Circulation control number, HNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8290 INSERT INTO `marc_subfield_structure` VALUES ('955', 's', 'Shelflist note, HNT (RLIN)', 'Shelflist note, HNT (RLIN)', 1, 0, '', 9, '', '', '', 1, 5, 'BKS', '', '');
8291 INSERT INTO `marc_subfield_structure` VALUES ('955', 'u', 'Non-printing notes, HNT (RLIN)', 'Non-printing notes, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8292 INSERT INTO `marc_subfield_structure` VALUES ('956', '2', 'Access method', 'Access method', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8293 INSERT INTO `marc_subfield_structure` VALUES ('956', '3', 'Materials specified', 'Materials specified', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8294 INSERT INTO `marc_subfield_structure` VALUES ('956', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8295 INSERT INTO `marc_subfield_structure` VALUES ('956', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8296 INSERT INTO `marc_subfield_structure` VALUES ('956', 'a', 'Host name', 'Host name', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8297 INSERT INTO `marc_subfield_structure` VALUES ('956', 'b', 'Access number', 'Access number', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8298 INSERT INTO `marc_subfield_structure` VALUES ('956', 'c', 'Compression information', 'Compression information', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8299 INSERT INTO `marc_subfield_structure` VALUES ('956', 'd', 'Path', 'Path', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8300 INSERT INTO `marc_subfield_structure` VALUES ('956', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8301 INSERT INTO `marc_subfield_structure` VALUES ('956', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8302 INSERT INTO `marc_subfield_structure` VALUES ('956', 'i', 'Instruction', 'Instruction', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8303 INSERT INTO `marc_subfield_structure` VALUES ('956', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8304 INSERT INTO `marc_subfield_structure` VALUES ('956', 'k', 'Password', 'Password', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8305 INSERT INTO `marc_subfield_structure` VALUES ('956', 'l', 'Logon', 'Logon', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8306 INSERT INTO `marc_subfield_structure` VALUES ('956', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8307 INSERT INTO `marc_subfield_structure` VALUES ('956', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8308 INSERT INTO `marc_subfield_structure` VALUES ('956', 'o', 'Operating system', 'Operating system', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8309 INSERT INTO `marc_subfield_structure` VALUES ('956', 'p', 'Port', 'Port', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8310 INSERT INTO `marc_subfield_structure` VALUES ('956', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8311 INSERT INTO `marc_subfield_structure` VALUES ('956', 'r', 'Settings', 'Settings', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8312 INSERT INTO `marc_subfield_structure` VALUES ('956', 's', 'File size', 'File size', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8313 INSERT INTO `marc_subfield_structure` VALUES ('956', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8314 INSERT INTO `marc_subfield_structure` VALUES ('956', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -6, 'BKS', '', '');
8315 INSERT INTO `marc_subfield_structure` VALUES ('956', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8316 INSERT INTO `marc_subfield_structure` VALUES ('956', 'w', 'Record control number', 'Record control number', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8317 INSERT INTO `marc_subfield_structure` VALUES ('956', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', 0, 6, 'BKS', '', '');
8318 INSERT INTO `marc_subfield_structure` VALUES ('956', 'y', 'Link text', 'Link text', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8319 INSERT INTO `marc_subfield_structure` VALUES ('956', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8320 INSERT INTO `marc_subfield_structure` VALUES ('960', '3', 'Materials specified, MATL', 'Materials specified, MATL', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8321 INSERT INTO `marc_subfield_structure` VALUES ('960', 'a', 'Physical location, PLOC (RLIN)', 'Physical location, PLOC (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8322 INSERT INTO `marc_subfield_structure` VALUES ('967', 'a', 'GNR (RLIN)', 'GNR (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8323 INSERT INTO `marc_subfield_structure` VALUES ('967', 'c', 'PSI (RLIN)', 'PSI (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8324 INSERT INTO `marc_subfield_structure` VALUES ('980', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8325 INSERT INTO `marc_subfield_structure` VALUES ('980', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8326 INSERT INTO `marc_subfield_structure` VALUES ('980', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8327 INSERT INTO `marc_subfield_structure` VALUES ('980', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8328 INSERT INTO `marc_subfield_structure` VALUES ('980', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8329 INSERT INTO `marc_subfield_structure` VALUES ('980', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8330 INSERT INTO `marc_subfield_structure` VALUES ('980', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8331 INSERT INTO `marc_subfield_structure` VALUES ('980', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8332 INSERT INTO `marc_subfield_structure` VALUES ('980', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8333 INSERT INTO `marc_subfield_structure` VALUES ('980', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8334 INSERT INTO `marc_subfield_structure` VALUES ('980', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8335 INSERT INTO `marc_subfield_structure` VALUES ('980', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8336 INSERT INTO `marc_subfield_structure` VALUES ('980', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8337 INSERT INTO `marc_subfield_structure` VALUES ('980', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8338 INSERT INTO `marc_subfield_structure` VALUES ('980', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8339 INSERT INTO `marc_subfield_structure` VALUES ('980', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8340 INSERT INTO `marc_subfield_structure` VALUES ('980', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8341 INSERT INTO `marc_subfield_structure` VALUES ('980', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8342 INSERT INTO `marc_subfield_structure` VALUES ('980', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8343 INSERT INTO `marc_subfield_structure` VALUES ('980', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8344 INSERT INTO `marc_subfield_structure` VALUES ('980', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8345 INSERT INTO `marc_subfield_structure` VALUES ('980', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8346 INSERT INTO `marc_subfield_structure` VALUES ('980', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8347 INSERT INTO `marc_subfield_structure` VALUES ('980', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8348 INSERT INTO `marc_subfield_structure` VALUES ('981', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8349 INSERT INTO `marc_subfield_structure` VALUES ('981', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8350 INSERT INTO `marc_subfield_structure` VALUES ('981', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8351 INSERT INTO `marc_subfield_structure` VALUES ('981', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8352 INSERT INTO `marc_subfield_structure` VALUES ('981', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8353 INSERT INTO `marc_subfield_structure` VALUES ('981', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8354 INSERT INTO `marc_subfield_structure` VALUES ('981', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8355 INSERT INTO `marc_subfield_structure` VALUES ('981', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8356 INSERT INTO `marc_subfield_structure` VALUES ('981', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8357 INSERT INTO `marc_subfield_structure` VALUES ('981', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8358 INSERT INTO `marc_subfield_structure` VALUES ('981', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8359 INSERT INTO `marc_subfield_structure` VALUES ('981', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8360 INSERT INTO `marc_subfield_structure` VALUES ('981', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8361 INSERT INTO `marc_subfield_structure` VALUES ('981', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8362 INSERT INTO `marc_subfield_structure` VALUES ('981', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8363 INSERT INTO `marc_subfield_structure` VALUES ('981', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8364 INSERT INTO `marc_subfield_structure` VALUES ('981', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8365 INSERT INTO `marc_subfield_structure` VALUES ('981', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8366 INSERT INTO `marc_subfield_structure` VALUES ('981', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8367 INSERT INTO `marc_subfield_structure` VALUES ('981', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8368 INSERT INTO `marc_subfield_structure` VALUES ('981', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8369 INSERT INTO `marc_subfield_structure` VALUES ('981', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8370 INSERT INTO `marc_subfield_structure` VALUES ('982', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8371 INSERT INTO `marc_subfield_structure` VALUES ('982', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8372 INSERT INTO `marc_subfield_structure` VALUES ('982', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8373 INSERT INTO `marc_subfield_structure` VALUES ('982', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8374 INSERT INTO `marc_subfield_structure` VALUES ('982', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8375 INSERT INTO `marc_subfield_structure` VALUES ('982', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8376 INSERT INTO `marc_subfield_structure` VALUES ('982', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8377 INSERT INTO `marc_subfield_structure` VALUES ('982', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8378 INSERT INTO `marc_subfield_structure` VALUES ('982', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8379 INSERT INTO `marc_subfield_structure` VALUES ('982', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8380 INSERT INTO `marc_subfield_structure` VALUES ('982', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8381 INSERT INTO `marc_subfield_structure` VALUES ('982', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8382 INSERT INTO `marc_subfield_structure` VALUES ('982', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8383 INSERT INTO `marc_subfield_structure` VALUES ('982', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8384 INSERT INTO `marc_subfield_structure` VALUES ('982', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8385 INSERT INTO `marc_subfield_structure` VALUES ('982', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8386 INSERT INTO `marc_subfield_structure` VALUES ('982', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8387 INSERT INTO `marc_subfield_structure` VALUES ('982', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8388 INSERT INTO `marc_subfield_structure` VALUES ('982', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8389 INSERT INTO `marc_subfield_structure` VALUES ('982', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'BKS', '', '');
8390 INSERT INTO `marc_subfield_structure` VALUES ('983', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8391 INSERT INTO `marc_subfield_structure` VALUES ('983', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8392 INSERT INTO `marc_subfield_structure` VALUES ('983', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8393 INSERT INTO `marc_subfield_structure` VALUES ('983', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8394 INSERT INTO `marc_subfield_structure` VALUES ('983', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8395 INSERT INTO `marc_subfield_structure` VALUES ('983', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8396 INSERT INTO `marc_subfield_structure` VALUES ('983', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8397 INSERT INTO `marc_subfield_structure` VALUES ('983', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8398 INSERT INTO `marc_subfield_structure` VALUES ('983', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8399 INSERT INTO `marc_subfield_structure` VALUES ('983', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8400 INSERT INTO `marc_subfield_structure` VALUES ('983', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8401 INSERT INTO `marc_subfield_structure` VALUES ('983', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8402 INSERT INTO `marc_subfield_structure` VALUES ('983', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8403 INSERT INTO `marc_subfield_structure` VALUES ('983', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8404 INSERT INTO `marc_subfield_structure` VALUES ('983', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8405 INSERT INTO `marc_subfield_structure` VALUES ('983', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8406 INSERT INTO `marc_subfield_structure` VALUES ('983', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8407 INSERT INTO `marc_subfield_structure` VALUES ('984', 'a', 'Holding library identification number', 'Holding library identification number', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8408 INSERT INTO `marc_subfield_structure` VALUES ('984', 'b', 'Physical description codes', 'Physical description codes', 1, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8409 INSERT INTO `marc_subfield_structure` VALUES ('984', 'c', 'Call number', 'Call number', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8410 INSERT INTO `marc_subfield_structure` VALUES ('984', 'd', 'Volume or other numbering', 'Volume or other numbering', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8411 INSERT INTO `marc_subfield_structure` VALUES ('984', 'e', 'Dates', 'Dates', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8412 INSERT INTO `marc_subfield_structure` VALUES ('984', 'f', 'Completeness note', 'Completeness note', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8413 INSERT INTO `marc_subfield_structure` VALUES ('984', 'g', 'Referral note', 'Referral note', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8414 INSERT INTO `marc_subfield_structure` VALUES ('984', 'h', 'Retention note', 'Retention note', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8415 INSERT INTO `marc_subfield_structure` VALUES ('987', 'a', 'Romanization/conversion identifier', 'Romanization/conversion identifier', 0, 0, '', 9, '', '', '', NULL, -6, 'BKS', '', '');
8416 INSERT INTO `marc_subfield_structure` VALUES ('987', 'b', 'Agency that converted, created or reviewed', 'Agency that converted, created or reviewed', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8417 INSERT INTO `marc_subfield_structure` VALUES ('987', 'c', 'Date of conversion or review', 'Date of conversion or review', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8418 INSERT INTO `marc_subfield_structure` VALUES ('987', 'd', 'Status code', 'Status code ', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8419 INSERT INTO `marc_subfield_structure` VALUES ('987', 'e', 'Version of conversion program used', 'Version of conversion program used', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8420 INSERT INTO `marc_subfield_structure` VALUES ('987', 'f', 'Note', 'Note', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8421 INSERT INTO `marc_subfield_structure` VALUES ('990', 'a', 'Link information for 9XX fields', 'Link information for 9XX fields', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8422 INSERT INTO `marc_subfield_structure` VALUES ('990', 'b', 'Link information for field corresponding to 9XX field', 'Link information for field corresponding to 9XX field', 1, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8423 INSERT INTO `marc_subfield_structure` VALUES ('995', 'a', 'Origine du document, texte libre', 'Origine du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8424 INSERT INTO `marc_subfield_structure` VALUES ('995', 'b', 'Origine du document, donn&eacute;e cod&eacute;e', '', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8425 INSERT INTO `marc_subfield_structure` VALUES ('995', 'c', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8426 INSERT INTO `marc_subfield_structure` VALUES ('995', 'd', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8427 INSERT INTO `marc_subfield_structure` VALUES ('995', 'e', 'Genre d&eacute;taill&eacute;', 'Genre d&eacute;taill&eacute;', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8428 INSERT INTO `marc_subfield_structure` VALUES ('995', 'f', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8429 INSERT INTO `marc_subfield_structure` VALUES ('995', 'g', 'Code &agrave; barres, pr&eacute;fixe', 'Code &agrave; barres, pr&eacute;fixe', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8430 INSERT INTO `marc_subfield_structure` VALUES ('995', 'h', 'Code &agrave; barres, incr&eacute;mentation', 'Code &agrave; barres, incr&eacute;mentation', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8431 INSERT INTO `marc_subfield_structure` VALUES ('995', 'i', 'Code &agrave; barres, suffixe', 'Code &agrave; barres, suffixe', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8432 INSERT INTO `marc_subfield_structure` VALUES ('995', 'j', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8433 INSERT INTO `marc_subfield_structure` VALUES ('995', 'k', 'Cote', 'Cote', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8434 INSERT INTO `marc_subfield_structure` VALUES ('995', 'l', 'Volumaison', 'Volumaison', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8435 INSERT INTO `marc_subfield_structure` VALUES ('995', 'm', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8436 INSERT INTO `marc_subfield_structure` VALUES ('995', 'n', 'Date de restitution pr&eacute;vue', 'Date de restitution pr&eacute;vue', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8437 INSERT INTO `marc_subfield_structure` VALUES ('995', 'o', 'Cat&eacute;gorie de circulation', 'Cat&eacute;gorie de circulation', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8438 INSERT INTO `marc_subfield_structure` VALUES ('995', 'p', 'P&eacute;riodique', 'P&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8439 INSERT INTO `marc_subfield_structure` VALUES ('995', 'q', 'Public vis&eacute; (selon l\'&acirc;ge)', 'Public vis&eacute; (selon l\'&acirc;ge)', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8440 INSERT INTO `marc_subfield_structure` VALUES ('995', 'r', 'Type de document et support mat&eacute;riel', 'Type de document et support mat&eacute;riel', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8441 INSERT INTO `marc_subfield_structure` VALUES ('995', 's', 'Él&eacute;ment de tri', 'Él&eacute;ment de tri', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8442 INSERT INTO `marc_subfield_structure` VALUES ('995', 't', 'Genre', 'Genre', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8443 INSERT INTO `marc_subfield_structure` VALUES ('995', 'u', 'Note sur l\'exemplaire', 'Note sur l\'exemplaire', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8444 INSERT INTO `marc_subfield_structure` VALUES ('995', 'v', 'Note sur le num&eacute;ro de p&eacute;riodique', 'Note sur le num&eacute;ro de p&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8445 INSERT INTO `marc_subfield_structure` VALUES ('995', 'w', 'Établissement cible du document, texte libre', 'Établissement cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8446 INSERT INTO `marc_subfield_structure` VALUES ('995', 'x', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8447 INSERT INTO `marc_subfield_structure` VALUES ('995', 'y', 'Ensemble cible du document , texte libre', 'Ensemble cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8448 INSERT INTO `marc_subfield_structure` VALUES ('995', 'z', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'BKS', '', '');
8449 INSERT INTO `marc_subfield_structure` VALUES ('998', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8450 INSERT INTO `marc_subfield_structure` VALUES ('998', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8451 INSERT INTO `marc_subfield_structure` VALUES ('998', 'd', 'First date, FD (RLIN)', 'First Date, FD (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'BKS', '', '');
8452 INSERT INTO `marc_subfield_structure` VALUES ('998', 'i', 'RINS (RLIN)', 'RINS (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8453 INSERT INTO `marc_subfield_structure` VALUES ('998', 'l', 'LI (RLIN)', 'LI (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8454 INSERT INTO `marc_subfield_structure` VALUES ('998', 'n', 'NUC (RLIN)', 'NUC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8455 INSERT INTO `marc_subfield_structure` VALUES ('998', 'p', 'PROC (RLIN)', 'PROC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8456 INSERT INTO `marc_subfield_structure` VALUES ('998', 's', 'CC (RLIN)', 'CC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8457 INSERT INTO `marc_subfield_structure` VALUES ('998', 't', 'RTYP (RLIN)', 'RTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8458 INSERT INTO `marc_subfield_structure` VALUES ('998', 'w', 'PLINK (RLIN)', 'PLINK (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8459 INSERT INTO `marc_subfield_structure` VALUES ('999', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
8460 INSERT INTO `marc_subfield_structure` VALUES ('999', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'BKS', '', '');
8461 INSERT INTO `marc_subfield_structure` VALUES ('999', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
8462 INSERT INTO `marc_subfield_structure` VALUES ('999', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
8463 INSERT INTO `marc_subfield_structure` VALUES ('999', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
8464 INSERT INTO `marc_subfield_structure` VALUES ('999', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
8465 INSERT INTO `marc_subfield_structure` VALUES ('999', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
8466 INSERT INTO `marc_subfield_structure` VALUES ('999', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
8467 INSERT INTO `marc_subfield_structure` VALUES ('999', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
8468 INSERT INTO `marc_subfield_structure` VALUES ('999', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
8469 INSERT INTO `marc_subfield_structure` VALUES ('999', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
8470 INSERT INTO `marc_subfield_structure` VALUES ('999', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
8471 INSERT INTO `marc_subfield_structure` VALUES ('999', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'BKS', '', '');
8472 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'a', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8473 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'd', 'UAD (RLIN)', 'UAD (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8474 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'f', 'FPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8475 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'h', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8476 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'i', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8477 INSERT INTO `marc_subfield_structure` VALUES ('u01', 's', 'UST (RLIN)', 'UST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8478 INSERT INTO `marc_subfield_structure` VALUES ('u01', 't', 'UTYP (RLIN)', 'UTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8479 INSERT INTO `marc_subfield_structure` VALUES ('u02', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8480 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8481 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'b', 'Additional codes following the standard number', 'Additional codes following the standard number', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8482 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8483 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8484 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'n', 'LSI', 'LSI', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8485 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'o', 'SID', 'SID', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8486 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'p', 'DP', 'DP', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8487 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'r', 'RUSH', 'RUSH', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8488 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'a', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8489 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'b', 'SID', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8490 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'c', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8491 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'd', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8492 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'e', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8493 INSERT INTO `marc_subfield_structure` VALUES ('u10', 's', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8494 INSERT INTO `marc_subfield_structure` VALUES ('u11', 'a', 'Department report request, DRR (DRRH for earlier occurrences)', 'DRR (DRRH for earlier occurrences)', 1, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8495 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'a', 'SUPN', 'SUPN', 1, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8496 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'b', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8497 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'c', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8498 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'd', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8499 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'e', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8500 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'x', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8501 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'a', 'SHIP', 'SHIP', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8502 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'b', 'BILL', 'BILL', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8503 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'c', 'DAC', 'DAC', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8504 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'n', 'LSAC', 'LSAC', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8505 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'a', 'SICO', 'SICO', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8506 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'b', 'SICO', 'SICO', 1, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8507 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'c', 'SCAT', 'SCAT', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8508 INSERT INTO `marc_subfield_structure` VALUES ('u25', 'a', 'Supplier report(s), SRPT', 'Supplier report(s), SRPT', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8509 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'a', 'NCC [OBSOLETE]', 'NCC [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8510 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'i', 'ICI', 'ICI', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8511 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'm', 'MCI', 'MCI', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8512 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'a', 'NCC', 'NCC', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8513 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'b', 'NCS', 'NCS', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8514 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'a', 'ICL', 'ICL', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8515 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'd', 'ICAD', 'ICAD', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8516 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'a', 'EPCL', 'EPCL', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8517 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'r', 'ERI', 'ERI', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8518 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'd', 'EPDT [OBSOLETE]', 'EPDT [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8519 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'f', 'EFRQ', 'EFRQ', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8520 INSERT INTO `marc_subfield_structure` VALUES ('u40', 's', 'EPST', 'EPST', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8521 INSERT INTO `marc_subfield_structure` VALUES ('u40', 't', 'ETYP', 'ETYP', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8522 INSERT INTO `marc_subfield_structure` VALUES ('u50', 'a', 'Acquisitions notes, AQNT', 'Acquisitions notes, AQNT', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8523 INSERT INTO `marc_subfield_structure` VALUES ('u51', 'a', 'Selection notes, SLNT', 'Selection notes, SLNT', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8524 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'a', 'INT', 'INT', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8525 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'b', 'INT', 'NT', 1, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8526 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'a', 'CLNT', 'CLNT', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8527 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'b', 'CLNT', 'CLNT', 1, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8528 INSERT INTO `marc_subfield_structure` VALUES ('u54', 'a', 'Notes to serials department, SRNT', 'Notes to serials department, SRNT', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8529 INSERT INTO `marc_subfield_structure` VALUES ('u55', 'a', 'Cataloging notes, CTNT', 'Cataloging notes, CTNT', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8530 INSERT INTO `marc_subfield_structure` VALUES ('u5f', 'a', 'Accounting notes, ACNT', 'Accounting notes, ACNT', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8531 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'a', 'QTY', 'QTY', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8532 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'b', 'MAT', 'MAT', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8533 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'l', 'MLOC', 'MLOC', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8534 INSERT INTO `marc_subfield_structure` VALUES ('u71', 'a', 'Fund account, FUND', 'Fund account, FUND', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8535 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'a', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8536 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'c', 'CIRC', 'CIRC', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8537 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'h', 'IPST', 'IPST', 1, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8538 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'i', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8539 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'l', 'SLOC', 'SLOC', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8540 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'a', 'LPRI', 'LPRI', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8541 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'b', 'CURR', 'CURR', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8542 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'k', 'CVRT [OBSOLETE]', 'CVRT [OBSOLETE]', 1, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8543 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'p', 'LPD', 'LPD', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8544 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'r', 'EDRT', 'EDRT', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8545 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'h', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8546 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'i', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8547 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'a', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8548 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'b', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8549 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'c', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8550 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'd', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8551 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'e', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8552 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'f', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8553 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'g', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8554 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'h', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8555 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'n', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'BKS', '', '');
8556
8557
8558 -- *******************************************************
8559
8560
8561
8562 -- ****************************************************************************
8563 -- SIMPLE COMPUTER FILES KOHA RECORD AND HOLDINGS MANAGEMENT FIELDS/SUBFIELDS. 
8564 -- ****************************************************************************
8565
8566 -- These ought to be adjusted for different less conflicting and more 
8567 -- rationally chosen fields and subfields but I had left that for last. 
8568
8569 -- ADJUST ME
8570 -- Use values from your dump of marc_tag_structure and marc_subfield_structure 
8571 -- to provide support for your Koha database.
8572
8573
8574 -- ******************************************************
8575
8576
8577 -- Current Record ID Field/Subfields 
8578
8579
8580 INSERT INTO `marc_tag_structure` VALUES ('090', 'SYSTEM CONTROL NUMBERS (KOHA)', 'SYSTEM CONTROL NUMBERS (KOHA)', 1, 0, '', 'CF');
8581
8582 INSERT INTO `marc_subfield_structure` VALUES ('090', 'a', 'Item type [OBSOLETE]', 'Item type [OBSOLETE]', 0, 0, NULL, -1, NULL, NULL, '', NULL, -5, 'CF', '', '');
8583 INSERT INTO `marc_subfield_structure` VALUES ('090', 'b', 'Koha Dewey Subclass [OBSOLETE]', 'Koha Dewey Subclass [OBSOLETE]', 0, 0, NULL, 0, NULL, NULL, '', NULL, -5, 'CF', '', '');
8584 INSERT INTO `marc_subfield_structure` VALUES ('090', 'c', 'Koha biblionumber', 'Koha biblionumber', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, -5, 'CF', '', '');
8585 INSERT INTO `marc_subfield_structure` VALUES ('090', 'd', 'Koha biblioitemnumber', 'Koha biblioitemnumber', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, -5, 'CF', '', '');
8586
8587
8588 -- ******************************************************
8589
8590
8591 -- Current primary biblioitems Field/Subfields 
8592
8593
8594 INSERT INTO `marc_tag_structure` VALUES ('942', 'ADDED ENTRY ELEMENTS (KOHA)', 'ADDED ENTRY ELEMENTS (KOHA)', 0, 0, '', 'CF');
8595
8596 INSERT INTO `marc_subfield_structure` VALUES ('942', 'a', 'Institution code [OBSOLETE]', 'Institution code [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -5, 'CF', '', '');
8597 INSERT INTO `marc_subfield_structure` VALUES ('942', 'c', 'Item type', 'Item type', 0, 1, 'biblioitems.itemtype', 9, 'itemtypes', '', '', NULL, 0, 'CF', '', '');
8598 INSERT INTO `marc_subfield_structure` VALUES ('942', 'j', 'Location (call number prefix code)', 'Location (call number prefix code)', 0, 0, 'biblioitems.classification', 9, '', '', '', NULL, -6, 'CF', '', '');
8599 INSERT INTO `marc_subfield_structure` VALUES ('942', 'k', 'Classification base (DDC to decimal or LCC letter class padded after single letter classes with trailing 0', 'Classification base', 0, 0, 'biblioitems.dewey', 9, '', '', '', NULL, -6, 'CF', '', '');
8600 INSERT INTO `marc_subfield_structure` VALUES ('942', 'l', 'Classification subclass (DDC after decimal or LCC number after letters', 'Classification subclass', 0, 0, 'biblioitems.subclass', 9, '', '', '', NULL, -6, 'CF', '', '');
8601
8602
8603 -- ******************************************************
8604
8605
8606 -- Recommended items Field/Subfields 
8607
8608
8609 -- INSERT INTO `marc_tag_structure` VALUES ('95k', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', '');
8610
8611 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '0', 'Item status (withdrawn) (similar to 876-8 $j)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'CF', '', '');
8612 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '1', 'Item status (lost) (similar to 876-8 $j)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'CF', '', '');
8613 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '2', 'Source of classification or shelving scheme (similar to 852 $2)', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8614 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '3', 'Materials specified (similar to 852, 876-8 $3)', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'CF', '', '');
8615 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '4', 'Use restrictions (similar to 506 $a, 876-8 $h)', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'CF', '', '');
8616 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '6', 'Linkage (similar to 852, 876-8 $6)', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'CF', '', '');
8617 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '8', 'Sequence number (similar to 852, 876-8 $8)', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8618 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '9', 'Koha itemnumber (autogenerated similar to 852, 876-8 $3 $8 $t combined)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, 'CF', '', '');
8619 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'a', 'Location (homebranch) (similar to 852 $a)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, '', '', '');
8620 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'b', 'Sublocation or collection (holdingbranch) (similar to 852 $b)', 'Sublocation or collection (holdingbranch)', 1, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'CF', '', '');
8621 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'c', 'Shelving location (similar to 852 $c, 876-8 $l)', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'CF', '', '');
8622 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'd', 'Date acquired (similar to 541, 876-8 $d)', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, 'CF', '', '');
8623 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'e', 'Source of acquisition (similar to 541 $a, 876-8 $e)', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'CF', '', '');
8624 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'f', 'Coded location qualifier (similar to 852 $f)', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8625 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'g', 'Non-coded location qualifier (similar to 852 $g)', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8626 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'h', 'Classification part (similar to 852 $h)', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8627 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'i', 'Item part (similar to 852 $i)', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8628 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'j', 'Shelving control number (similar to 852 $j)', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8629 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'k', 'Call number prefix (similar to 852 $k)', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8630 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'l', 'Shelving form of title (similar to 852 $l)', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8631 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'm', 'Call number suffix (similar to 852 $m)', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8632 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'n', 'Country code (similar to 852 $n)', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8633 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'o', 'Call number (similar to 852 $k $h $i $m combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'CF', '', '');
8634 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'p', 'Piece designation (barcode) (similar to 852, 876-8 $p)', 'Piece designation (barcode)', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, 'CF', '', '');
8635 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'q', 'Piece physical condition (similar to 562 $a, 852 $q)', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8636 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'r', 'Invalid or canceled piece designation (canceled barcode) (similar to 876-8 $r)', 'Invalid or canceled piece designation (canceled barcode)', 1, 0, '', 10, '', '', '', NULL, -1, 'CF', '', '');
8637 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 's', 'Copyright article-fee code (similar to 018 $a, 852 $s)', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8638 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 't', 'Copy number (similar to 852, 876-8 $t)', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8639 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'u', 'Cost, normal purchase price (similar to 541 $h, 876-8 $c)', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'CF', '', '');
8640 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'v', 'Cost, replacement price (similar to 365 $b, 876-8 $c)', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'CF', '', '');
8641 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'w', 'Price effective from (similar to 365 $f)', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'CF', '', '');
8642 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'x', 'Nonpublic note (similar to 852, 876-8 $x)', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'CF', '', '');
8643 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'y', 'Use restrictions (not for loan) (similar to 506 $a, 876-8 $h)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'CF', '', '');
8644 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'z', 'Public note (similar to 852, 876-8 $z)', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'CF', '', '');
8645
8646
8647
8648 -- Current items Field/Subfields 
8649
8650
8651 INSERT INTO `marc_tag_structure` VALUES ('952', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', 'CF');
8652
8653 INSERT INTO `marc_subfield_structure` VALUES ('952', '0', 'Item status (withdrawn)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'CF', '', '');
8654 INSERT INTO `marc_subfield_structure` VALUES ('952', '1', 'Item status (lost)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'CF', '', '');
8655 INSERT INTO `marc_subfield_structure` VALUES ('952', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8656 INSERT INTO `marc_subfield_structure` VALUES ('952', '3', 'Materials specified', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'CF', '', '');
8657 INSERT INTO `marc_subfield_structure` VALUES ('952', '4', 'Use restrictions', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'CF', '', '');
8658 INSERT INTO `marc_subfield_structure` VALUES ('952', '6', 'Linkage', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'CF', '', '');
8659 INSERT INTO `marc_subfield_structure` VALUES ('952', '8', 'Sequence number', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8660 INSERT INTO `marc_subfield_structure` VALUES ('952', '9', 'Cost, normal purchase price', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'CF', '', '');
8661 INSERT INTO `marc_subfield_structure` VALUES ('952', 'a', 'Canceled barcode', 'Canceled barcode', 1, 0, '', 10, '', '', '', NULL, -1, 'CF', '', '');
8662 INSERT INTO `marc_subfield_structure` VALUES ('952', 'b', 'Location (homebranch)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, 'CF', '', '');
8663 INSERT INTO `marc_subfield_structure` VALUES ('952', 'c', 'Shelving location', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'CF', '', '');
8664 INSERT INTO `marc_subfield_structure` VALUES ('952', 'd', 'Sublocation or collection (holdingbranch)', 'Sublocation or collection (holdingbranch)', 0, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'CF', '''952b''', '');
8665 INSERT INTO `marc_subfield_structure` VALUES ('952', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'CF', '', '');
8666 INSERT INTO `marc_subfield_structure` VALUES ('952', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8667 INSERT INTO `marc_subfield_structure` VALUES ('952', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8668 INSERT INTO `marc_subfield_structure` VALUES ('952', 'h', 'Classification part', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8669 INSERT INTO `marc_subfield_structure` VALUES ('952', 'i', 'Item part', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8670 INSERT INTO `marc_subfield_structure` VALUES ('952', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8671 INSERT INTO `marc_subfield_structure` VALUES ('952', 'k', 'Call number (combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'CF', '', '');
8672 INSERT INTO `marc_subfield_structure` VALUES ('952', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8673 INSERT INTO `marc_subfield_structure` VALUES ('952', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8674 INSERT INTO `marc_subfield_structure` VALUES ('952', 'n', 'Country code', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8675 INSERT INTO `marc_subfield_structure` VALUES ('952', 'o', 'Call number prefix', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8676 INSERT INTO `marc_subfield_structure` VALUES ('952', 'p', 'Barcode', 'Barcode', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, 'CF', '', '');
8677 INSERT INTO `marc_subfield_structure` VALUES ('952', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8678 INSERT INTO `marc_subfield_structure` VALUES ('952', 'r', 'Cost, replacement price', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'CF', '', '');
8679 INSERT INTO `marc_subfield_structure` VALUES ('952', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8680 INSERT INTO `marc_subfield_structure` VALUES ('952', 't', 'Copy number', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'CF', '', '');
8681 INSERT INTO `marc_subfield_structure` VALUES ('952', 'u', 'Koha itemnumber (autogenerated)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, 'CF', '', '');
8682 INSERT INTO `marc_subfield_structure` VALUES ('952', 'v', 'Date acquired', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, 'CF', '', '');
8683 INSERT INTO `marc_subfield_structure` VALUES ('952', 'w', 'Price effective from', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'CF', '', '');
8684 INSERT INTO `marc_subfield_structure` VALUES ('952', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'CF', '', '');
8685 INSERT INTO `marc_subfield_structure` VALUES ('952', 'y', 'Use restrictions (not for loan)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'CF', '', '');
8686 INSERT INTO `marc_subfield_structure` VALUES ('952', 'z', 'Public note', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'CF', '', '');
8687
8688
8689 -- *******************************************************
8690
8691
8692
8693 -- ******************************************************************
8694 -- SIMPLE COMPUTER FILES MARC 21 FIELDS/SUBFIELDS AND COMMMONLY USED 
8695 -- EXTENSIONS.                                                       
8696 -- ******************************************************************
8697
8698
8699 -- A Few local use codes need specifying.  Several seealso, plugin, and 
8700 -- authority framework columns need improving.  $9 for authority record linking 
8701 -- needs to be added where not already provided by RLIN specifications. 
8702 -- Needs checking for errors but probably tolerable for use on a production. 
8703 -- A server can be upgraded easily from later versions of this file.
8704 --                                                                          
8705 -- In the absense of more column support for qualifying the relative 
8706 -- importance of subfields to the record editor, some modest modification of 
8707 -- the default framework is needed setting the not-useful non-Koha holdings 
8708 -- subfields to not managed in Koha.
8709
8710 -- MARC fields including letters as part of the field identifier are from RLIN
8711 -- and should be expected to remain along with RLIN $% subfields.  RLIN has 
8712 -- been using letters in fields because there are not enough local use number 
8713 -- fields which have not already been specified for very large union catalogue 
8714 -- networks such as RLIN itself.
8715
8716
8717 -- Fields ending in c, o, or r are temporary placeholders for information from
8718 -- a numeric value until a non-conflicting way to treat the content under the
8719 -- proper original numeric field is adopted.  090 for LC call numbers is much 
8720 -- too common and important so 999 is also provided as a temporary place 
8721 -- holder until all Koha code for finding control fields has been changed from 
8722 -- a numeric test of < 10 to a regular expression match of m/^00/ to prevent 
8723 -- mistaken matching of fields with letters such as 09o if they were control 
8724 -- fields.
8725
8726 INSERT INTO `marc_tag_structure` VALUES ('000', 'LEADER', 'LEADER', 0, 1, '', 'CF');
8727 INSERT INTO `marc_tag_structure` VALUES ('001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 0, '', 'CF');
8728 INSERT INTO `marc_tag_structure` VALUES ('003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 0, '', 'CF');
8729 INSERT INTO `marc_tag_structure` VALUES ('005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 0, '', 'CF');
8730 INSERT INTO `marc_tag_structure` VALUES ('006', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 1, 0, '', 'CF');
8731 INSERT INTO `marc_tag_structure` VALUES ('007', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 1, 0, '', 'CF');
8732 INSERT INTO `marc_tag_structure` VALUES ('008', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 0, 1, '', 'CF');
8733 INSERT INTO `marc_tag_structure` VALUES ('009', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 1, 0, '', 'CF');
8734 INSERT INTO `marc_tag_structure` VALUES ('010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, '', 'CF');
8735 INSERT INTO `marc_tag_structure` VALUES ('011', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 0, 0, '', 'CF');
8736 INSERT INTO `marc_tag_structure` VALUES ('013', 'PATENT CONTROL INFORMATION', 'PATENT CONTROL INFORMATION', 1, 0, '', 'CF');
8737 INSERT INTO `marc_tag_structure` VALUES ('015', 'NATIONAL BIBLIOGRAPHY NUMBER', 'NATIONAL BIBLIOGRAPHY NUMBER', 1, 0, '', 'CF');
8738 INSERT INTO `marc_tag_structure` VALUES ('016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, '', 'CF');
8739 INSERT INTO `marc_tag_structure` VALUES ('017', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 1, 0, '', 'CF');
8740 INSERT INTO `marc_tag_structure` VALUES ('018', 'COPYRIGHT ARTICLE-FEE CODE', 'COPYRIGHT ARTICLE-FEE CODE', 0, 0, '', 'CF');
8741 INSERT INTO `marc_tag_structure` VALUES ('01e', 'CODED FIELD ERROR (RLIN)', 'CODED FIELD ERROR (RLIN)', 1, 0, '', 'CF');
8742 INSERT INTO `marc_tag_structure` VALUES ('020', 'ISBN', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL, 'CF');
8743 INSERT INTO `marc_tag_structure` VALUES ('022', 'ISSN', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL, 'CF');
8744 INSERT INTO `marc_tag_structure` VALUES ('023', 'STANDARD FILM NUMBER (VM) [DELETED]', 'STANDARD FILM NUMBER (VM) [DELETED]', 1, 0, NULL, 'CF');
8745 INSERT INTO `marc_tag_structure` VALUES ('024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL, 'CF');
8746 INSERT INTO `marc_tag_structure` VALUES ('025', 'OVERSEAS ACQUISITION NUMBER', 'OVERSEAS ACQUISITION NUMBER', 1, 0, '', 'CF');
8747 INSERT INTO `marc_tag_structure` VALUES ('026', 'FINGERPRINT IDENTIFIER', 'FINGERPRINT IDENTIFIER', 1, 0, '', 'CF');
8748 INSERT INTO `marc_tag_structure` VALUES ('027', 'STANDARD TECHNICAL REPORT NUMBER', 'STANDARD TECHNICAL REPORT NUMBER', 1, 0, '', 'CF');
8749 INSERT INTO `marc_tag_structure` VALUES ('028', 'IDENTIFICATION NUMBER--PUBLISHER NUMBER', 'PUBLISHER NUMBER', 1, 0, NULL, 'CF');
8750 INSERT INTO `marc_tag_structure` VALUES ('029', 'OTHER SYSTEM CONTROL NUMBER (OCLC)', ' (OCLC)', 1, 0, '', 'CF');
8751 INSERT INTO `marc_tag_structure` VALUES ('030', 'CODEN DESIGNATION', 'CODEN DESIGNATION', 1, 0, '', 'CF');
8752 INSERT INTO `marc_tag_structure` VALUES ('031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, '', 'CF');
8753 INSERT INTO `marc_tag_structure` VALUES ('032', 'POSTAL REGISTRATION NUMBER', 'POSTAL REGISTRATION NUMBER', 1, 0, '', 'CF');
8754 INSERT INTO `marc_tag_structure` VALUES ('033', 'DATE/TIME AND PLACE OF AN EVENT', 'DATE/TIME AND PLACE OF AN EVENT', 1, 0, '', 'CF');
8755 INSERT INTO `marc_tag_structure` VALUES ('034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, '', 'CF');
8756 INSERT INTO `marc_tag_structure` VALUES ('035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL, 'CF');
8757 INSERT INTO `marc_tag_structure` VALUES ('036', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 0, 0, '', 'CF');
8758 INSERT INTO `marc_tag_structure` VALUES ('037', 'PUBLICATION, DISTRIBUTION DETAILS--SOURCE OF ACQUISITION', 'SOURCE OF ACQUISITION', 1, 0, NULL, 'CF');
8759 INSERT INTO `marc_tag_structure` VALUES ('038', 'RECORD CONTENT LICENSOR', 'RECORD CONTENT LICENSOR', 0, 0, '', 'CF');
8760 INSERT INTO `marc_tag_structure` VALUES ('039', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 0, 0, '', 'CF');
8761 INSERT INTO `marc_tag_structure` VALUES ('040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 0, NULL, 'CF');
8762 INSERT INTO `marc_tag_structure` VALUES ('041', 'LANGUAGE CODE', 'LANGUAGE CODE', 1, 0, '', 'CF');
8763 INSERT INTO `marc_tag_structure` VALUES ('042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, '', 'CF');
8764 INSERT INTO `marc_tag_structure` VALUES ('043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL, 'CF');
8765 INSERT INTO `marc_tag_structure` VALUES ('044', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 0, 0, '', 'CF');
8766 INSERT INTO `marc_tag_structure` VALUES ('045', 'TIME PERIOD OF CONTENT', 'TIME PERIOD OF CONTENT', 0, 0, '', 'CF');
8767 INSERT INTO `marc_tag_structure` VALUES ('046', 'SPECIAL CODED DATES', 'SPECIAL CODED DATES', 1, 0, '', 'CF');
8768 INSERT INTO `marc_tag_structure` VALUES ('047', 'FORM OF MUSICAL COMPOSITION CODE', 'FORM OF MUSICAL COMPOSITION CODE', 0, 0, '', 'CF');
8769 INSERT INTO `marc_tag_structure` VALUES ('048', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 1, 0, '', 'CF');
8770 INSERT INTO `marc_tag_structure` VALUES ('049', 'LOCAL HOLDINGS (OCLC)', 'LOCAL HOLDINGS (OCLC)', 0, 0, '', 'CF');
8771 INSERT INTO `marc_tag_structure` VALUES ('050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL, 'CF');
8772 INSERT INTO `marc_tag_structure` VALUES ('051', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 1, 0, NULL, 'CF');
8773 INSERT INTO `marc_tag_structure` VALUES ('052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL, 'CF');
8774 INSERT INTO `marc_tag_structure` VALUES ('055', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 1, 0, NULL, 'CF');
8775 INSERT INTO `marc_tag_structure` VALUES ('060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL, 'CF');
8776 INSERT INTO `marc_tag_structure` VALUES ('061', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 1, 0, NULL, 'CF');
8777 INSERT INTO `marc_tag_structure` VALUES ('066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL, 'CF');
8778 INSERT INTO `marc_tag_structure` VALUES ('070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL, 'CF');
8779 INSERT INTO `marc_tag_structure` VALUES ('071', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 1, 0, NULL, 'CF');
8780 INSERT INTO `marc_tag_structure` VALUES ('072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL, 'CF');
8781 INSERT INTO `marc_tag_structure` VALUES ('074', 'GPO ITEM NUMBER', 'GPO ITEM NUMBER', 1, 0, NULL, 'CF');
8782 INSERT INTO `marc_tag_structure` VALUES ('080', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'CF');
8783 INSERT INTO `marc_tag_structure` VALUES ('082', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'CF');
8784 INSERT INTO `marc_tag_structure` VALUES ('084', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL, 'CF');
8785 INSERT INTO `marc_tag_structure` VALUES ('086', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL, 'CF');
8786 INSERT INTO `marc_tag_structure` VALUES ('087', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 1, 0, NULL, 'CF');
8787 INSERT INTO `marc_tag_structure` VALUES ('088', 'REPORT NUMBER', 'REPORT NUMBER', 1, 0, NULL, 'CF');
8788 INSERT INTO `marc_tag_structure` VALUES ('09o', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'CF');
8789 INSERT INTO `marc_tag_structure` VALUES ('091', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 0, 0, '', 'CF');
8790 INSERT INTO `marc_tag_structure` VALUES ('092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, '', 'CF');
8791 INSERT INTO `marc_tag_structure` VALUES ('096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, '', 'CF');
8792 INSERT INTO `marc_tag_structure` VALUES ('098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, '', 'CF');
8793 INSERT INTO `marc_tag_structure` VALUES ('099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, '', 'CF');
8794 INSERT INTO `marc_tag_structure` VALUES ('100', 'MAIN ENTRY--AUTHOR--PERSONAL NAME', 'MAIN ENTRY--PERSONAL NAME', 0, 0, NULL, 'CF');
8795 INSERT INTO `marc_tag_structure` VALUES ('110', 'MAIN ENTRY--AUTHOR--CORPORATE NAME', 'MAIN ENTRY--CORPORATE NAME', 0, 0, NULL, 'CF');
8796 INSERT INTO `marc_tag_structure` VALUES ('111', 'MAIN ENTRY--MEETING NAME', 'MAIN ENTRY--MEETING NAME', 0, 0, NULL, 'CF');
8797 INSERT INTO `marc_tag_structure` VALUES ('130', 'MAIN ENTRY--UNIFORM TITLE', 'MAIN ENTRY--UNIFORM TITLE', 0, 0, NULL, 'CF');
8798 INSERT INTO `marc_tag_structure` VALUES ('210', 'ABBREVIATED TITLE', 'ABBREVIATED TITLE', 1, 0, NULL, 'CF');
8799 INSERT INTO `marc_tag_structure` VALUES ('211', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 1, 0, NULL, 'CF');
8800 INSERT INTO `marc_tag_structure` VALUES ('212', 'VARIANT ACCESS TITLE [OBSOLETE]', 'VARIANT ACCESS TITLE [OBSOLETE]', 1, 0, NULL, 'CF');
8801 INSERT INTO `marc_tag_structure` VALUES ('214', 'AUGMENTED TITLE [OBSOLETE]', 'AUGMENTED TITLE [OBSOLETE]', 1, 0, NULL, 'CF');
8802 INSERT INTO `marc_tag_structure` VALUES ('222', 'KEY TITLE', 'KEY TITLE', 1, 0, NULL, 'CF');
8803 INSERT INTO `marc_tag_structure` VALUES ('240', 'UNIFORM TITLE', 'UNIFORM TITLE', 0, 0, 'Unititle', 'CF');
8804 INSERT INTO `marc_tag_structure` VALUES ('241', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 0, 0, '', 'CF');
8805 INSERT INTO `marc_tag_structure` VALUES ('242', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 1, 0, NULL, 'CF');
8806 INSERT INTO `marc_tag_structure` VALUES ('243', 'COLLECTIVE UNIFORM TITLE', 'COLLECTIVE UNIFORM TITLE', 0, 0, '', 'CF');
8807 INSERT INTO `marc_tag_structure` VALUES ('245', 'TITLE', 'TITLE STATEMENT', 0, 1, '', 'CF');
8808 INSERT INTO `marc_tag_structure` VALUES ('246', 'VARYING FORM OF TITLE', 'VARYING FORM OF TITLE', 1, 0, NULL, 'CF');
8809 INSERT INTO `marc_tag_structure` VALUES ('247', 'FORMER TITLE', 'FORMER TITLE', 1, 0, NULL, 'CF');
8810 INSERT INTO `marc_tag_structure` VALUES ('250', 'EDITION STATEMENT', 'EDITION STATEMENT', 0, 0, NULL, 'CF');
8811 INSERT INTO `marc_tag_structure` VALUES ('254', 'MUSICAL PRESENTATION STATEMENT', 'MUSICAL PRESENTATION STATEMENT', 0, 0, NULL, 'CF');
8812 INSERT INTO `marc_tag_structure` VALUES ('255', 'CARTOGRAPHIC MATHEMATICAL DATA', 'CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL, 'CF');
8813 INSERT INTO `marc_tag_structure` VALUES ('256', 'COMPUTER FILE CHARACTERISTICS', 'COMPUTER FILE CHARACTERISTICS', 0, 0, NULL, 'CF');
8814 INSERT INTO `marc_tag_structure` VALUES ('257', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 0, 0, NULL, 'CF');
8815 INSERT INTO `marc_tag_structure` VALUES ('258', 'PHILATELIC ISSUE DATE', 'PHILATELIC ISSUE DATE', 1, 0, NULL, 'CF');
8816 INSERT INTO `marc_tag_structure` VALUES ('260', 'PUBLISHER--PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 'PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 1, 0, NULL, 'CF');
8817 INSERT INTO `marc_tag_structure` VALUES ('261', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, NULL, 'CF');
8818 INSERT INTO `marc_tag_structure` VALUES ('262', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 0, 0, NULL, 'CF');
8819 INSERT INTO `marc_tag_structure` VALUES ('263', 'PROJECTED PUBLICATION DATE', 'PROJECTED PUBLICATION DATE', 0, 0, NULL, 'CF');
8820 INSERT INTO `marc_tag_structure` VALUES ('265', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 0, 0, NULL, 'CF');
8821 INSERT INTO `marc_tag_structure` VALUES ('270', 'PUBLICATION, DISTRIBUTION DETAILS--ADDRESS', 'ADDRESS', 1, 0, NULL, 'CF');
8822 INSERT INTO `marc_tag_structure` VALUES ('300', 'PHYSICAL DESCRIPTION', 'PHYSICAL DESCRIPTION', 1, 1, NULL, 'CF');
8823 INSERT INTO `marc_tag_structure` VALUES ('301', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 0, 0, NULL, 'CF');
8824 INSERT INTO `marc_tag_structure` VALUES ('302', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 0, 0, NULL, 'CF');
8825 INSERT INTO `marc_tag_structure` VALUES ('303', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'CF');
8826 INSERT INTO `marc_tag_structure` VALUES ('304', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'CF');
8827 INSERT INTO `marc_tag_structure` VALUES ('305', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 0, 0, NULL, 'CF');
8828 INSERT INTO `marc_tag_structure` VALUES ('306', 'RUN TIME', 'PLAYING TIME', 0, 0, NULL, 'CF');
8829 INSERT INTO `marc_tag_structure` VALUES ('307', 'HOURS, ETC.', 'HOURS, ETC.', 1, 0, NULL, 'CF');
8830 INSERT INTO `marc_tag_structure` VALUES ('308', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 1, 0, NULL, 'CF');
8831 INSERT INTO `marc_tag_structure` VALUES ('310', 'CURRENT PUBLICATION FREQUENCY', 'CURRENT PUBLICATION FREQUENCY', 0, 0, NULL, 'CF');
8832 INSERT INTO `marc_tag_structure` VALUES ('315', 'FREQUENCY (CF MP) [OBSOLETE]', 'FREQUENCY (CF MP) [OBSOLETE]', 0, 0, NULL, 'CF');
8833 INSERT INTO `marc_tag_structure` VALUES ('321', 'FORMER PUBLICATION FREQUENCY', 'FORMER PUBLICATION FREQUENCY', 1, 0, NULL, 'CF');
8834 INSERT INTO `marc_tag_structure` VALUES ('340', 'PHYSICAL MEDIUM', 'PHYSICAL MEDIUM', 1, 0, NULL, 'CF');
8835 INSERT INTO `marc_tag_structure` VALUES ('342', 'GEOSPATIAL REFERENCE DATA', 'GEOSPATIAL REFERENCE DATA', 1, 0, NULL, 'CF');
8836 INSERT INTO `marc_tag_structure` VALUES ('343', 'PLANAR COORDINATE DATA', 'PLANAR COORDINATE DATA', 1, 0, NULL, 'CF');
8837 INSERT INTO `marc_tag_structure` VALUES ('350', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 1, 0, NULL, 'CF');
8838 INSERT INTO `marc_tag_structure` VALUES ('351', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 1, 0, NULL, 'CF');
8839 INSERT INTO `marc_tag_structure` VALUES ('352', 'DIGITAL GRAPHIC REPRESENTATION', 'DIGITAL GRAPHIC REPRESENTATION', 1, 0, NULL, 'CF');
8840 INSERT INTO `marc_tag_structure` VALUES ('355', 'SECURITY CLASSIFICATION CONTROL', 'SECURITY CLASSIFICATION CONTROL', 1, 0, NULL, 'CF');
8841 INSERT INTO `marc_tag_structure` VALUES ('357', 'ORIGINATOR DISSEMINATION CONTROL', 'ORIGINATOR DISSEMINATION CONTROL', 0, 0, NULL, 'CF');
8842 INSERT INTO `marc_tag_structure` VALUES ('359', 'RENTAL PRICE (VM) [OBSOLETE]', 'RENTAL PRICE (VM) [OBSOLETE]', 0, 0, NULL, 'CF');
8843 INSERT INTO `marc_tag_structure` VALUES ('362', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 1, 0, NULL, 'CF');
8844 INSERT INTO `marc_tag_structure` VALUES ('365', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE PRICE', 'TRADE PRICE', 1, 0, NULL, 'CF');
8845 INSERT INTO `marc_tag_structure` VALUES ('366', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE AVAILABILITY INFORMATION', 'TRADE AVAILABILITY INFORMATION', 1, 0, NULL, 'CF');
8846 INSERT INTO `marc_tag_structure` VALUES ('400', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'CF');
8847 INSERT INTO `marc_tag_structure` VALUES ('410', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'CF');
8848 INSERT INTO `marc_tag_structure` VALUES ('411', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'CF');
8849 INSERT INTO `marc_tag_structure` VALUES ('440', 'SERIES--TITLE', 'SERIES STATEMENT/ADDED ENTRY--TITLE', 1, 0, NULL, 'CF');
8850 INSERT INTO `marc_tag_structure` VALUES ('490', 'SERIES STATEMENT', 'SERIES STATEMENT', 1, 0, '', 'CF');
8851 INSERT INTO `marc_tag_structure` VALUES ('500', 'GENERAL NOTE', 'GENERAL NOTE', 1, 0, NULL, 'CF');
8852 INSERT INTO `marc_tag_structure` VALUES ('501', 'WITH NOTE', 'WITH NOTE', 1, 0, NULL, 'CF');
8853 INSERT INTO `marc_tag_structure` VALUES ('502', 'DISSERTATION NOTE', 'DISSERTATION NOTE', 1, 0, NULL, 'CF');
8854 INSERT INTO `marc_tag_structure` VALUES ('503', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 1, 0, NULL, 'CF');
8855 INSERT INTO `marc_tag_structure` VALUES ('504', 'BIBLIOGRAPHY, ETC. NOTE', 'BIBLIOGRAPHY, ETC. NOTE', 1, 0, NULL, 'CF');
8856 INSERT INTO `marc_tag_structure` VALUES ('505', 'FORMATTED CONTENTS NOTE', 'FORMATTED CONTENTS NOTE', 1, 0, NULL, 'CF');
8857 INSERT INTO `marc_tag_structure` VALUES ('506', 'RESTRICTIONS ON ACCESS NOTE', 'RESTRICTIONS ON ACCESS NOTE', 1, 0, NULL, 'CF');
8858 INSERT INTO `marc_tag_structure` VALUES ('507', 'SCALE NOTE FOR GRAPHIC MATERIAL', 'SCALE NOTE FOR GRAPHIC MATERIAL', 0, 0, NULL, 'CF');
8859 INSERT INTO `marc_tag_structure` VALUES ('508', 'CREATION/PRODUCTION CREDITS NOTE', 'CREATION/PRODUCTION CREDITS NOTE', 1, 0, NULL, 'CF');
8860 INSERT INTO `marc_tag_structure` VALUES ('509', 'INFORMAL NOTES (RLIN)', 'INFORMAL NOTES (RLIN)', 0, 0, NULL, 'CF');
8861 INSERT INTO `marc_tag_structure` VALUES ('510', 'CITATION/REFERENCES NOTE', 'CITATION/REFERENCES NOTE', 1, 0, NULL, 'CF');
8862 INSERT INTO `marc_tag_structure` VALUES ('511', 'PARTICIPANT OR PERFORMER NOTE', 'PARTICIPANT OR PERFORMER NOTE', 1, 0, NULL, 'CF');
8863 INSERT INTO `marc_tag_structure` VALUES ('512', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'CF');
8864 INSERT INTO `marc_tag_structure` VALUES ('513', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 1, 0, NULL, 'CF');
8865 INSERT INTO `marc_tag_structure` VALUES ('514', 'DATA QUALITY NOTE', 'DATA QUALITY NOTE', 0, 0, NULL, 'CF');
8866 INSERT INTO `marc_tag_structure` VALUES ('515', 'NUMBERING PECULIARITIES NOTE', 'NUMBERING PECULIARITIES NOTE', 1, 0, NULL, 'CF');
8867 INSERT INTO `marc_tag_structure` VALUES ('516', 'TYPE OF COMPUTER FILE OR DATA NOTE', 'TYPE OF COMPUTER FILE OR DATA NOTE', 1, 0, NULL, 'CF');
8868 INSERT INTO `marc_tag_structure` VALUES ('517', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 0, 0, NULL, 'CF');
8869 INSERT INTO `marc_tag_structure` VALUES ('518', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 1, 0, NULL, 'CF');
8870 INSERT INTO `marc_tag_structure` VALUES ('520', 'SUMMARY, ETC.', 'SUMMARY, ETC.', 1, 0, NULL, 'CF');
8871 INSERT INTO `marc_tag_structure` VALUES ('521', 'GRADE LEVEL/TARGET AUDIENCE NOTE', 'TARGET AUDIENCE NOTE', 1, 0, NULL, 'CF');
8872 INSERT INTO `marc_tag_structure` VALUES ('522', 'GEOGRAPHIC DETAILS/GEOGRAPHIC COVERAGE NOTE', 'GEOGRAPHIC COVERAGE NOTE', 1, 0, NULL, 'CF');
8873 INSERT INTO `marc_tag_structure` VALUES ('523', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'CF');
8874 INSERT INTO `marc_tag_structure` VALUES ('524', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'CF');
8875 INSERT INTO `marc_tag_structure` VALUES ('525', 'SUPPLEMENT NOTE', 'SUPPLEMENT NOTE', 0, 0, NULL, 'CF');
8876 INSERT INTO `marc_tag_structure` VALUES ('526', 'STUDY PROGRAM INFORMATION NOTE', 'STUDY PROGRAM INFORMATION NOTE', 0, 0, NULL, 'CF');
8877 INSERT INTO `marc_tag_structure` VALUES ('527', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 1, 0, NULL, 'CF');
8878 INSERT INTO `marc_tag_structure` VALUES ('530', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 1, 0, NULL, 'CF');
8879 INSERT INTO `marc_tag_structure` VALUES ('533', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'CF');
8880 INSERT INTO `marc_tag_structure` VALUES ('534', 'ORIGINAL VERSION NOTE', 'ORIGINAL VERSION NOTE', 1, 0, NULL, 'CF');
8881 INSERT INTO `marc_tag_structure` VALUES ('535', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 1, 0, NULL, 'CF');
8882 INSERT INTO `marc_tag_structure` VALUES ('536', 'FUNDING INFORMATION NOTE', 'FUNDING INFORMATION NOTE', 1, 0, NULL, 'CF');
8883 INSERT INTO `marc_tag_structure` VALUES ('537', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'CF');
8884 INSERT INTO `marc_tag_structure` VALUES ('538', 'SYSTEM DETAILS NOTE', 'SYSTEM DETAILS NOTE', 1, 0, NULL, 'CF');
8885 INSERT INTO `marc_tag_structure` VALUES ('540', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'CF');
8886 INSERT INTO `marc_tag_structure` VALUES ('541', 'ACQUISITION INFO--IMMEDIATE SOURCE OF ACQUISITION NOTE', 'IMMEDIATE SOURCE OF ACQUISITION NOTE', 1, 0, NULL, 'CF');
8887 INSERT INTO `marc_tag_structure` VALUES ('543', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 1, 0, NULL, 'CF');
8888 INSERT INTO `marc_tag_structure` VALUES ('544', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 1, 0, NULL, 'CF');
8889 INSERT INTO `marc_tag_structure` VALUES ('546', 'LANGUAGE/TRANSLATION INFO', 'LANGUAGE NOTE', 1, 0, NULL, 'CF');
8890 INSERT INTO `marc_tag_structure` VALUES ('547', 'FORMER TITLE COMPLEXITY NOTE', 'FORMER TITLE COMPLEXITY NOTE', 1, 0, NULL, 'CF');
8891 INSERT INTO `marc_tag_structure` VALUES ('550', 'ISSUING BODY NOTE', 'ISSUING BODY NOTE', 1, 0, NULL, 'CF');
8892 INSERT INTO `marc_tag_structure` VALUES ('552', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 1, 0, NULL, 'CF');
8893 INSERT INTO `marc_tag_structure` VALUES ('555', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 1, 0, NULL, 'CF');
8894 INSERT INTO `marc_tag_structure` VALUES ('556', 'INFORMATION ABOUT DOCUMENTATION NOTE', 'INFORMATION ABOUT DOCUMENTATION NOTE', 1, 0, NULL, 'CF');
8895 INSERT INTO `marc_tag_structure` VALUES ('561', 'OWNERSHIP AND CUSTODIAL HISTORY', 'OWNERSHIP AND CUSTODIAL HISTORY', 1, 0, NULL, 'CF');
8896 INSERT INTO `marc_tag_structure` VALUES ('562', 'COPY AND VERSION IDENTIFICATION NOTE', 'COPY AND VERSION IDENTIFICATION NOTE', 1, 0, NULL, 'CF');
8897 INSERT INTO `marc_tag_structure` VALUES ('563', 'BINDING INFORMATION', 'BINDING INFORMATION', 1, 0, NULL, 'CF');
8898 INSERT INTO `marc_tag_structure` VALUES ('565', 'CASE FILE CHARACTERISTICS NOTE', 'CASE FILE CHARACTERISTICS NOTE', 1, 0, NULL, 'CF');
8899 INSERT INTO `marc_tag_structure` VALUES ('567', 'METHODOLOGY NOTE', 'METHODOLOGY NOTE', 1, 0, NULL, 'CF');
8900 INSERT INTO `marc_tag_structure` VALUES ('570', 'EDITOR NOTE (SE) [OBSOLETE]', 'EDITOR NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'CF');
8901 INSERT INTO `marc_tag_structure` VALUES ('580', 'LINKING ENTRY COMPLEXITY NOTE', 'LINKING ENTRY COMPLEXITY NOTE', 1, 0, NULL, 'CF');
8902 INSERT INTO `marc_tag_structure` VALUES ('581', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'CF');
8903 INSERT INTO `marc_tag_structure` VALUES ('582', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 1, 0, NULL, 'CF');
8904 INSERT INTO `marc_tag_structure` VALUES ('583', 'ACQUISITION INFO--ACTION NOTE', 'ACTION NOTE', 1, 0, NULL, 'CF');
8905 INSERT INTO `marc_tag_structure` VALUES ('584', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 1, 0, NULL, 'CF');
8906 INSERT INTO `marc_tag_structure` VALUES ('585', 'EXHIBITIONS NOTE', 'EXHIBITIONS NOTE', 1, 0, NULL, 'CF');
8907 INSERT INTO `marc_tag_structure` VALUES ('586', 'AWARDS', 'AWARDS NOTE', 1, 0, NULL, 'CF');
8908 INSERT INTO `marc_tag_structure` VALUES ('590', 'LOCAL NOTE (RLIN)', 'LOCAL NOTE (RLIN)', 1, 0, NULL, 'CF');
8909 INSERT INTO `marc_tag_structure` VALUES ('600', 'SUBJECT--PERSONAL NAME', 'SUBJECT ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'CF');
8910 INSERT INTO `marc_tag_structure` VALUES ('610', 'SUBJECT--CORPORATE NAME', 'SUBJECT ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'CF');
8911 INSERT INTO `marc_tag_structure` VALUES ('611', 'SUBJECT--MEETING NAME', 'SUBJECT ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'CF');
8912 INSERT INTO `marc_tag_structure` VALUES ('630', 'SUBJECT--UNIFORM TITLE', 'SUBJECT ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'CF');
8913 INSERT INTO `marc_tag_structure` VALUES ('648', 'SUBJECT--CHRONOLOGICAL TERM', 'SUBJECT ADDED ENTRY--CHRONOLOGICAL TERM', 1, 0, NULL, 'CF');
8914 INSERT INTO `marc_tag_structure` VALUES ('650', 'SUBJECT--TOPIC', 'SUBJECT ADDED ENTRY--TOPICAL TERM', 1, 0, NULL, 'CF');
8915 INSERT INTO `marc_tag_structure` VALUES ('651', 'SUBJECT--GEOGRAPHIC NAME', 'SUBJECT ADDED ENTRY--GEOGRAPHIC NAME', 1, 0, NULL, 'CF');
8916 INSERT INTO `marc_tag_structure` VALUES ('652', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 1, 0, NULL, 'CF');
8917 INSERT INTO `marc_tag_structure` VALUES ('653', 'SUBJECT--UNCONTROLLED', 'INDEX TERM--UNCONTROLLED', 1, 0, NULL, 'CF');
8918 INSERT INTO `marc_tag_structure` VALUES ('654', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 1, 0, NULL, 'CF');
8919 INSERT INTO `marc_tag_structure` VALUES ('655', 'SUBJECT--GENRE/FORM', 'INDEX TERM--GENRE/FORM', 1, 0, NULL, 'CF');
8920 INSERT INTO `marc_tag_structure` VALUES ('656', 'SUBJECT--OCCUPATION', 'INDEX TERM--OCCUPATION', 1, 0, NULL, 'CF');
8921 INSERT INTO `marc_tag_structure` VALUES ('657', 'SUBJECT--FUNCTION', 'INDEX TERM--FUNCTION', 1, 0, NULL, 'CF');
8922 INSERT INTO `marc_tag_structure` VALUES ('658', 'SUBJECT--CURRICULUM OBJECTIVE', 'INDEX TERM--CURRICULUM OBJECTIVE', 1, 0, NULL, 'CF');
8923 INSERT INTO `marc_tag_structure` VALUES ('662', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'CF');
8924 INSERT INTO `marc_tag_structure` VALUES ('690', 'LOCAL SUBJECT--TOPICAL TERM (OCLC, RLIN)', 'LOCAL SUBJECT ADDED ENTRY--TOPICAL TERM (OCLC, RLIN)', 1, 0, '', 'CF');
8925 INSERT INTO `marc_tag_structure` VALUES ('691', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 1, 0, '', 'CF');
8926 INSERT INTO `marc_tag_structure` VALUES ('696', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'CF');
8927 INSERT INTO `marc_tag_structure` VALUES ('697', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'CF');
8928 INSERT INTO `marc_tag_structure` VALUES ('698', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'CF');
8929 INSERT INTO `marc_tag_structure` VALUES ('699', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'CF');
8930 INSERT INTO `marc_tag_structure` VALUES ('700', 'ADDED ENTRY--PERSONAL NAME', 'ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'CF');
8931 INSERT INTO `marc_tag_structure` VALUES ('705', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'CF');
8932 INSERT INTO `marc_tag_structure` VALUES ('710', 'ADDED ENTRY--CORPORATE NAME', 'ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'CF');
8933 INSERT INTO `marc_tag_structure` VALUES ('711', 'ADDED ENTRY--MEETING NAME', 'ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'CF');
8934 INSERT INTO `marc_tag_structure` VALUES ('715', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'CF');
8935 INSERT INTO `marc_tag_structure` VALUES ('720', 'ADDED ENTRY--UNCONTROLLED NAME', 'ADDED ENTRY--UNCONTROLLED NAME', 1, 0, NULL, 'CF');
8936 INSERT INTO `marc_tag_structure` VALUES ('730', 'ADDED ENTRY--UNIFORM TITLE', 'ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'CF');
8937 INSERT INTO `marc_tag_structure` VALUES ('740', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 1, 0, NULL, 'CF');
8938 INSERT INTO `marc_tag_structure` VALUES ('752', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'CF');
8939 INSERT INTO `marc_tag_structure` VALUES ('753', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 1, 0, NULL, 'CF');
8940 INSERT INTO `marc_tag_structure` VALUES ('754', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 1, 0, NULL, 'CF');
8941 INSERT INTO `marc_tag_structure` VALUES ('755', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 1, 0, NULL, 'CF');
8942 INSERT INTO `marc_tag_structure` VALUES ('760', 'MAIN SERIES ENTRY', 'MAIN SERIES ENTRY', 1, 0, NULL, 'CF');
8943 INSERT INTO `marc_tag_structure` VALUES ('762', 'SUBSERIES ENTRY', 'SUBSERIES ENTRY', 1, 0, NULL, 'CF');
8944 INSERT INTO `marc_tag_structure` VALUES ('765', 'ORIGINAL LANGUAGE ENTRY', 'ORIGINAL LANGUAGE ENTRY', 1, 0, NULL, 'CF');
8945 INSERT INTO `marc_tag_structure` VALUES ('767', 'TRANSLATION ENTRY', 'TRANSLATION ENTRY', 1, 0, NULL, 'CF');
8946 INSERT INTO `marc_tag_structure` VALUES ('770', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 1, 0, NULL, 'CF');
8947 INSERT INTO `marc_tag_structure` VALUES ('772', 'SUPPLEMENT PARENT ENTRY', 'SUPPLEMENT PARENT ENTRY', 1, 0, NULL, 'CF');
8948 INSERT INTO `marc_tag_structure` VALUES ('773', 'HOST ITEM ENTRY', 'HOST ITEM ENTRY', 1, 0, NULL, 'CF');
8949 INSERT INTO `marc_tag_structure` VALUES ('774', 'CONSTITUENT UNIT ENTRY', 'CONSTITUENT UNIT ENTRY', 1, 0, NULL, 'CF');
8950 INSERT INTO `marc_tag_structure` VALUES ('775', 'OTHER EDITION ENTRY', 'OTHER EDITION ENTRY', 1, 0, NULL, 'CF');
8951 INSERT INTO `marc_tag_structure` VALUES ('776', 'ADDITIONAL PHYSICAL FORM ENTRY', 'ADDITIONAL PHYSICAL FORM ENTRY', 1, 0, NULL, 'CF');
8952 INSERT INTO `marc_tag_structure` VALUES ('777', 'ISSUED WITH ENTRY', 'ISSUED WITH ENTRY', 1, 0, NULL, 'CF');
8953 INSERT INTO `marc_tag_structure` VALUES ('780', 'PRECEDING ENTRY', 'PRECEDING ENTRY', 1, 0, NULL, 'CF');
8954 INSERT INTO `marc_tag_structure` VALUES ('785', 'SUCCEEDING ENTRY', 'SUCCEEDING ENTRY', 1, 0, NULL, 'CF');
8955 INSERT INTO `marc_tag_structure` VALUES ('786', 'DATA SOURCE ENTRY', 'DATA SOURCE ENTRY', 1, 0, NULL, 'CF');
8956 INSERT INTO `marc_tag_structure` VALUES ('787', 'NONSPECIFIC RELATIONSHIP ENTRY', 'NONSPECIFIC RELATIONSHIP ENTRY', 1, 0, NULL, 'CF');
8957 INSERT INTO `marc_tag_structure` VALUES ('789', 'COMPONENT ITEM ENTRY (RLIN)', 'COMPONENT ITEM ENTRY (RLIN)', 1, 0, '', 'CF');
8958 INSERT INTO `marc_tag_structure` VALUES ('796', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'CF');
8959 INSERT INTO `marc_tag_structure` VALUES ('797', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'CF');
8960 INSERT INTO `marc_tag_structure` VALUES ('798', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'CF');
8961 INSERT INTO `marc_tag_structure` VALUES ('799', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'CF');
8962 INSERT INTO `marc_tag_structure` VALUES ('800', 'SERIES ADDED ENTRY--PERSONAL NAME', 'SERIES ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'CF');
8963 INSERT INTO `marc_tag_structure` VALUES ('810', 'SERIES ADDED ENTRY--CORPORATE NAME', 'SERIES ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'CF');
8964 INSERT INTO `marc_tag_structure` VALUES ('811', 'SERIES ADDED ENTRY--MEETING NAME', 'SERIES ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'CF');
8965 INSERT INTO `marc_tag_structure` VALUES ('830', 'SERIES ADDED ENTRY--UNIFORM TITLE', 'SERIES ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'CF');
8966 INSERT INTO `marc_tag_structure` VALUES ('840', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 1, 0, NULL, 'CF');
8967 INSERT INTO `marc_tag_structure` VALUES ('841', 'HOLDINGS CODED DATA VALUES', 'HOLDINGS CODED DATA VALUES', 0, 0, NULL, 'CF');
8968 INSERT INTO `marc_tag_structure` VALUES ('842', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 0, 0, NULL, 'CF');
8969 INSERT INTO `marc_tag_structure` VALUES ('843', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'CF');
8970 INSERT INTO `marc_tag_structure` VALUES ('844', 'NAME OF UNIT', 'NAME OF UNIT', 0, 0, NULL, 'CF');
8971 INSERT INTO `marc_tag_structure` VALUES ('845', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'CF');
8972 INSERT INTO `marc_tag_structure` VALUES ('850', 'HOLDING INSTITUTION', 'HOLDING INSTITUTION', 1, 0, NULL, 'CF');
8973 INSERT INTO `marc_tag_structure` VALUES ('851', 'LOCATION [OBSOLETE]', 'LOCATION [OBSOLETE]', 1, 0, NULL, 'CF');
8974 INSERT INTO `marc_tag_structure` VALUES ('852', 'LOCATION/CALL NUMBER', 'LOCATION/CALL NUMBER', 1, 0, NULL, 'CF');
8975 INSERT INTO `marc_tag_structure` VALUES ('853', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'CF');
8976 INSERT INTO `marc_tag_structure` VALUES ('854', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'CF');
8977 INSERT INTO `marc_tag_structure` VALUES ('855', 'CAPTIONS AND PATTERN--INDEXES', 'CAPTIONS AND PATTERN--INDEXES', 1, 0, NULL, 'CF');
8978 INSERT INTO `marc_tag_structure` VALUES ('856', 'URL/ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL, 'CF');
8979 INSERT INTO `marc_tag_structure` VALUES ('859', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'CF');
8980 INSERT INTO `marc_tag_structure` VALUES ('863', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'CF');
8981 INSERT INTO `marc_tag_structure` VALUES ('864', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'CF');
8982 INSERT INTO `marc_tag_structure` VALUES ('865', 'ENUMERATION AND CHRONOLOGY--INDEXES', 'ENUMERATION AND CHRONOLOGY--INDEXES', 1, 0, NULL, 'CF');
8983 INSERT INTO `marc_tag_structure` VALUES ('866', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'CF');
8984 INSERT INTO `marc_tag_structure` VALUES ('867', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'CF');
8985 INSERT INTO `marc_tag_structure` VALUES ('868', 'TEXTUAL HOLDINGS--INDEXES', 'TEXTUAL HOLDINGS--INDEXES', 1, 0, NULL, 'CF');
8986 INSERT INTO `marc_tag_structure` VALUES ('870', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 1, 0, NULL, 'CF');
8987 INSERT INTO `marc_tag_structure` VALUES ('871', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 1, 0, NULL, 'CF');
8988 INSERT INTO `marc_tag_structure` VALUES ('872', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 1, 0, NULL, 'CF');
8989 INSERT INTO `marc_tag_structure` VALUES ('873', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 1, 0, NULL, 'CF');
8990 INSERT INTO `marc_tag_structure` VALUES ('876', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'CF');
8991 INSERT INTO `marc_tag_structure` VALUES ('877', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'CF');
8992 INSERT INTO `marc_tag_structure` VALUES ('878', 'ITEM INFORMATION--INDEXES', 'ITEM INFORMATION--INDEXES', 1, 0, NULL, 'CF');
8993 INSERT INTO `marc_tag_structure` VALUES ('880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL, 'CF');
8994 INSERT INTO `marc_tag_structure` VALUES ('886', 'FOREIGN MARC INFORMATION FIELD', 'FOREIGN MARC INFORMATION FIELD', 1, 0, NULL, 'CF');
8995 INSERT INTO `marc_tag_structure` VALUES ('887', 'NON-MARC INFORMATION FIELD', 'NON-MARC INFORMATION FIELD', 1, 0, NULL, 'CF');
8996 INSERT INTO `marc_tag_structure` VALUES ('896', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'CF');
8997 INSERT INTO `marc_tag_structure` VALUES ('897', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'CF');
8998 INSERT INTO `marc_tag_structure` VALUES ('898', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'CF');
8999 INSERT INTO `marc_tag_structure` VALUES ('899', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'CF');
9000 INSERT INTO `marc_tag_structure` VALUES ('89e', 'ERRONEOUS FIELD, ERR (RLIN)', 'ERRONEOUS FIELD, ERR (RLIN)', 1, 0, '', 'CF');
9001 INSERT INTO `marc_tag_structure` VALUES ('900', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 1, 0, '', 'CF');
9002 INSERT INTO `marc_tag_structure` VALUES ('901', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 1, 0, '', 'CF');
9003 INSERT INTO `marc_tag_structure` VALUES ('902', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 1, 0, '', 'CF');
9004 INSERT INTO `marc_tag_structure` VALUES ('903', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 1, 0, '', 'CF');
9005 INSERT INTO `marc_tag_structure` VALUES ('904', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 1, 0, '', 'CF');
9006 INSERT INTO `marc_tag_structure` VALUES ('905', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 1, 0, '', 'CF');
9007 INSERT INTO `marc_tag_structure` VALUES ('906', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 1, 0, '', 'CF');
9008 INSERT INTO `marc_tag_structure` VALUES ('907', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 1, 0, '', 'CF');
9009 INSERT INTO `marc_tag_structure` VALUES ('908', 'PUT COMMAND PARAMETER (RLIN)', 'PUT COMMAND PARAMETER (RLIN)', 0, 0, '', 'CF');
9010 INSERT INTO `marc_tag_structure` VALUES ('910', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 1, 0, '', 'CF');
9011 INSERT INTO `marc_tag_structure` VALUES ('91o', 'USER-OPTION DATA (COLC)', 'USER-OPTION DATA (OCLC)', 0, 0, '', 'CF');
9012 INSERT INTO `marc_tag_structure` VALUES ('91r', 'RLG STANDARDS NOTE (RLIN)', 'RLG STANDARDS NOTE (RLIN)', 1, 0, '', 'CF');
9013 INSERT INTO `marc_tag_structure` VALUES ('911', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 1, 0, '', 'CF');
9014 INSERT INTO `marc_tag_structure` VALUES ('930', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 1, 0, '', 'CF');
9015 INSERT INTO `marc_tag_structure` VALUES ('93r', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 1, 0, '', 'CF');
9016 INSERT INTO `marc_tag_structure` VALUES ('936', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 0, 0, '', 'CF');
9017 INSERT INTO `marc_tag_structure` VALUES ('940', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'CF');
9018 INSERT INTO `marc_tag_structure` VALUES ('941', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'CF');
9019 INSERT INTO `marc_tag_structure` VALUES ('943', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'CF');
9020 INSERT INTO `marc_tag_structure` VALUES ('945', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'CF');
9021 INSERT INTO `marc_tag_structure` VALUES ('94c', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'CF');
9022 INSERT INTO `marc_tag_structure` VALUES ('946', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'CF');
9023 INSERT INTO `marc_tag_structure` VALUES ('947', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'CF');
9024 INSERT INTO `marc_tag_structure` VALUES ('948', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 1, 0, '', 'CF');
9025 INSERT INTO `marc_tag_structure` VALUES ('949', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'CF');
9026 INSERT INTO `marc_tag_structure` VALUES ('94a', 'ANALYSIS TREATMENT NOTE (RLIN)', 'ANALYSIS TREATMENT NOTE (RLIN)', 1, 0, '', 'CF');
9027 INSERT INTO `marc_tag_structure` VALUES ('94b', 'TREATMENT CODES (RLIN)', 'TREATMENT CODES (RLIN)', 1, 0, '', 'CF');
9028 INSERT INTO `marc_tag_structure` VALUES ('950', 'LOCAL HOLDINGS (RLIN)', 'LOCAL HOLDINGS (RLIN)', 1, 0, '', 'CF');
9029 INSERT INTO `marc_tag_structure` VALUES ('951', 'EQUIVALENCE OR CROSS-REFERENCE--GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'CF');
9030 INSERT INTO `marc_tag_structure` VALUES ('95c', 'EQUIVALENCE OR CROSS-REFERENCE--HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'CF');
9031 INSERT INTO `marc_tag_structure` VALUES ('95r', 'CLUSTER MEMBER (RLIN)', 'CLUSTER MEMBER (RLIN)', 1, 0, '', 'CF');
9032 INSERT INTO `marc_tag_structure` VALUES ('955', 'COPY-LEVEL INFORMATION (RLIN)', 'COPY-LEVEL INFORMATION (RLIN)', 1, 0, '', 'CF');
9033 INSERT INTO `marc_tag_structure` VALUES ('956', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 1, 0, '', 'CF');
9034 INSERT INTO `marc_tag_structure` VALUES ('960', 'PHYSICAL LOCATION (RLIN)', 'PHYSICAL LOCATION (RLIN)', 1, 0, '', 'CF');
9035 INSERT INTO `marc_tag_structure` VALUES ('967', 'ADDITIONAL ESTC CODES (RLIN)', 'ADDITIONAL ESTC CODES (RLIN)', 1, 0, '', 'CF');
9036 INSERT INTO `marc_tag_structure` VALUES ('980', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'CF');
9037 INSERT INTO `marc_tag_structure` VALUES ('981', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'CF');
9038 INSERT INTO `marc_tag_structure` VALUES ('982', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'CF');
9039 INSERT INTO `marc_tag_structure` VALUES ('983', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--TITLE/UNIFORM TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE--SERIES STATEMENT-TITLE/UNIFORM TITLE [LOCAL, CANADA]', 1, 0, '', 'CF');
9040 INSERT INTO `marc_tag_structure` VALUES ('984', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 1, 0, '', 'CF');
9041 INSERT INTO `marc_tag_structure` VALUES ('987', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 1, 0, '', 'CF');
9042 INSERT INTO `marc_tag_structure` VALUES ('990', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 1, 0, '', 'CF');
9043 INSERT INTO `marc_tag_structure` VALUES ('995', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 1, 0, '', 'CF');
9044 INSERT INTO `marc_tag_structure` VALUES ('998', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'CF');
9045 INSERT INTO `marc_tag_structure` VALUES ('999', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'CF');
9046 INSERT INTO `marc_tag_structure` VALUES ('b99', 'PRIVATE LOCAL INFORMATION (RLIN)', 'PRIVATE LOCAL INFORMATION (RLIN)', 1, 0, '', 'CF');
9047 INSERT INTO `marc_tag_structure` VALUES ('u01', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 0, 0, '', 'CF');
9048 INSERT INTO `marc_tag_structure` VALUES ('u02', 'STANDARD NUMBER (RLIN)', 'STANDARD NUMBER (RLIN)', 0, 0, '', 'CF');
9049 INSERT INTO `marc_tag_structure` VALUES ('u08', 'CODED INFORMATION (RLIN)', 'CODED INFORMATION (RLIN)', 0, 0, '', 'CF');
9050 INSERT INTO `marc_tag_structure` VALUES ('u10', 'REQUESTER IDENTIFICATION (RLIN)', 'REQUESTER IDENTIFICATION (RLIN)', 1, 0, '', 'CF');
9051 INSERT INTO `marc_tag_structure` VALUES ('u11', 'DEPARTMENT REPORT REQUEST (RLIN)', 'DEPARTMENT REPORT REQUEST (RLIN)', 1, 0, '', 'CF');
9052 INSERT INTO `marc_tag_structure` VALUES ('u20', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 0, 0, '', 'CF');
9053 INSERT INTO `marc_tag_structure` VALUES ('u21', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 0, 0, '', 'CF');
9054 INSERT INTO `marc_tag_structure` VALUES ('u22', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 0, 0, '', 'CF');
9055 INSERT INTO `marc_tag_structure` VALUES ('u25', 'SUPPLIER REPORT(S) (RLIN)', 'SUPPLIER REPORT(S) (RLIN)', 0, 0, '', 'CF');
9056 INSERT INTO `marc_tag_structure` VALUES ('u30', 'INTERVALS (RLIN)', 'INTERVALS (RLIN)', 0, 0, '', 'CF');
9057 INSERT INTO `marc_tag_structure` VALUES ('u31', 'CLAIM COUNTS (RLIN)', 'CLAIM COUNTS (RLIN)', 0, 0, '', 'CF');
9058 INSERT INTO `marc_tag_structure` VALUES ('u33', 'INVOICE CLAIM (RLIN)', 'INVOICE CLAIM (RLIN)', 0, 0, '', 'CF');
9059 INSERT INTO `marc_tag_structure` VALUES ('u34', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 0, 0, '', 'CF');
9060 INSERT INTO `marc_tag_structure` VALUES ('u40', 'EXTENDED PROCUREMENT CODES (RLIN)', 'EXTENDED PROCUREMENT CODES (RLIN)', 0, 0, '', 'CF');
9061 INSERT INTO `marc_tag_structure` VALUES ('u50', 'ACQUISITIONS NOTES (RLIN)', 'ACQUISITIONS NOTES (RLIN)', 0, 0, '', 'CF');
9062 INSERT INTO `marc_tag_structure` VALUES ('u51', 'SELECTION NOTES (RLIN)', 'SELECTION NOTES (RLIN)', 0, 0, '', 'CF');
9063 INSERT INTO `marc_tag_structure` VALUES ('u52', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 0, 0, '', 'CF');
9064 INSERT INTO `marc_tag_structure` VALUES ('u53', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 0, 0, '', 'CF');
9065 INSERT INTO `marc_tag_structure` VALUES ('u54', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 0, 0, '', 'CF');
9066 INSERT INTO `marc_tag_structure` VALUES ('u55', 'CATALOGING NOTES (RLIN)', 'CATALOGING NOTES (RLIN)', 0, 0, '', 'CF');
9067 INSERT INTO `marc_tag_structure` VALUES ('u5f', 'ACCOUNTING NOTES (RLIN)', 'ACCOUNTING NOTES (RLIN)', 0, 0, '', 'CF');
9068 INSERT INTO `marc_tag_structure` VALUES ('u70', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 0, 0, '', 'CF');
9069 INSERT INTO `marc_tag_structure` VALUES ('u71', 'FUND ACCOUNT (RLIN)', 'FUND ACCOUNT (RLIN)', 0, 0, '', 'CF');
9070 INSERT INTO `marc_tag_structure` VALUES ('u75', 'ITEM DETAILS (RLIN)', 'ITEM DETAILS (RLIN)', 1, 0, '', 'CF');
9071 INSERT INTO `marc_tag_structure` VALUES ('u7f', 'PRICE INFORMATION (RLIN)', 'PRICE INFORMATION (RLIN)', 1, 0, '', 'CF');
9072 INSERT INTO `marc_tag_structure` VALUES ('u90', 'TAPE OUTPUT, TAPE (RLIN)', 'TAPE OUTPUT, TAPE (RLIN)', 0, 0, '', 'CF');
9073 INSERT INTO `marc_tag_structure` VALUES ('ufi', 'FISCAL INFORMATION, FI (RLIN)', 'FISCAL INFORMATION, FI (RLIN)', 1, 0, '', 'CF');
9074
9075
9076
9077 INSERT INTO `marc_subfield_structure` VALUES ('000', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_leader.pl', 0, 0, 'CF', '', '');
9078 INSERT INTO `marc_subfield_structure` VALUES ('001', '@', 'control field', 'control field', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9079 INSERT INTO `marc_subfield_structure` VALUES ('003', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_003.pl', 0, -6, 'CF', '', '');
9080 INSERT INTO `marc_subfield_structure` VALUES ('005', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_005.pl', 0, -1, 'CF', '', '');
9081 INSERT INTO `marc_subfield_structure` VALUES ('006', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_006.pl', 0, -1, 'CF', '', '');
9082 INSERT INTO `marc_subfield_structure` VALUES ('007', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_007.pl', 0, 0, 'CF', '', '');
9083 INSERT INTO `marc_subfield_structure` VALUES ('008', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_field_008.pl', 0, 0, 'CF', '', '');
9084 INSERT INTO `marc_subfield_structure` VALUES ('009', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9085 INSERT INTO `marc_subfield_structure` VALUES ('010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', NULL, 0, -6, 'CF', '', '');
9086 INSERT INTO `marc_subfield_structure` VALUES ('010', 'a', 'LC control number', 'LC control number', 0, 0, 'biblioitems.lccn', 0, '', '', '', 0, -6, 'CF', '', '');
9087 INSERT INTO `marc_subfield_structure` VALUES ('010', 'b', 'NUCMC control number', 'NUCMC control number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9088 INSERT INTO `marc_subfield_structure` VALUES ('010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9089 INSERT INTO `marc_subfield_structure` VALUES ('011', 'a', 'LC control number', 'LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9090 INSERT INTO `marc_subfield_structure` VALUES ('013', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'CF', '', '');
9091 INSERT INTO `marc_subfield_structure` VALUES ('013', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9092 INSERT INTO `marc_subfield_structure` VALUES ('013', 'a', 'Number', 'Number', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9093 INSERT INTO `marc_subfield_structure` VALUES ('013', 'b', 'Country', 'Country', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9094 INSERT INTO `marc_subfield_structure` VALUES ('013', 'c', 'Type of number', 'Type of number', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9095 INSERT INTO `marc_subfield_structure` VALUES ('013', 'd', 'Date', 'Date', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9096 INSERT INTO `marc_subfield_structure` VALUES ('013', 'e', 'Status', 'Status', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9097 INSERT INTO `marc_subfield_structure` VALUES ('013', 'f', 'Party to document', 'Party to document', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9098 INSERT INTO `marc_subfield_structure` VALUES ('015', '2', 'Source', 'Source', 0, 0, '', 0, '', '', NULL, 0, -6, 'CF', '', '');
9099 INSERT INTO `marc_subfield_structure` VALUES ('015', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9100 INSERT INTO `marc_subfield_structure` VALUES ('015', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9101 INSERT INTO `marc_subfield_structure` VALUES ('015', 'a', 'National bibliography number', 'National bibliography number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9102 INSERT INTO `marc_subfield_structure` VALUES ('016', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9103 INSERT INTO `marc_subfield_structure` VALUES ('016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9104 INSERT INTO `marc_subfield_structure` VALUES ('016', 'a', 'Record control number', 'Record control number', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9105 INSERT INTO `marc_subfield_structure` VALUES ('016', 'z', 'Canceled or invalid record control number', 'Canceled or invalid record control number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9106 INSERT INTO `marc_subfield_structure` VALUES ('017', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9107 INSERT INTO `marc_subfield_structure` VALUES ('017', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9108 INSERT INTO `marc_subfield_structure` VALUES ('017', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9109 INSERT INTO `marc_subfield_structure` VALUES ('017', 'a', 'Copyright or legal deposit number', 'Copyright or legal deposit number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9110 INSERT INTO `marc_subfield_structure` VALUES ('017', 'b', 'Assigning agency', 'Assigning agency', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9111 INSERT INTO `marc_subfield_structure` VALUES ('017', 'd', 'Date', 'Date', 0, 0, '', 0, '', '', NULL, 0, -6, 'CF', '', '');
9112 INSERT INTO `marc_subfield_structure` VALUES ('017', 'i', 'Display text', 'Display text', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9113 INSERT INTO `marc_subfield_structure` VALUES ('018', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9114 INSERT INTO `marc_subfield_structure` VALUES ('018', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9115 INSERT INTO `marc_subfield_structure` VALUES ('018', 'a', 'Copyright article-fee code', 'Copyright article-fee code', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9116 INSERT INTO `marc_subfield_structure` VALUES ('01e', 'a', 'Coded field error', 'Coded field error', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9117 INSERT INTO `marc_subfield_structure` VALUES ('020', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9118 INSERT INTO `marc_subfield_structure` VALUES ('020', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9119 INSERT INTO `marc_subfield_structure` VALUES ('020', 'a', 'International Standard Book Number', 'International Standard Book Number', 0, 0, 'biblioitems.isbn', 0, '', '', '', 0, -1, 'CF', '', '');
9120 INSERT INTO `marc_subfield_structure` VALUES ('020', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9121 INSERT INTO `marc_subfield_structure` VALUES ('020', 'z', 'Cancelled/invalid ISBN', 'Cancelled/invalid ISBN', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9122 INSERT INTO `marc_subfield_structure` VALUES ('022', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9123 INSERT INTO `marc_subfield_structure` VALUES ('022', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9124 INSERT INTO `marc_subfield_structure` VALUES ('022', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9125 INSERT INTO `marc_subfield_structure` VALUES ('022', 'a', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, 'biblioitems.issn', 0, '', '', '', 0, -1, 'CF', '', '');
9126 INSERT INTO `marc_subfield_structure` VALUES ('022', 'y', 'Incorrect ISSN', 'Incorrect ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9127 INSERT INTO `marc_subfield_structure` VALUES ('022', 'z', 'Canceled ISSN', 'Canceled ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9128 INSERT INTO `marc_subfield_structure` VALUES ('023', 'a', 'Standard film number', 'Standard film number', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9129 INSERT INTO `marc_subfield_structure` VALUES ('024', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 0, '', '', '', 0, -1, 'CF', '', '');
9130 INSERT INTO `marc_subfield_structure` VALUES ('024', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9131 INSERT INTO `marc_subfield_structure` VALUES ('024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9132 INSERT INTO `marc_subfield_structure` VALUES ('024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'CF', '', '');
9133 INSERT INTO `marc_subfield_structure` VALUES ('024', 'b', 'Additional codes following the standard number [OBSOLETE]', 'Additional codes following the standard number [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9134 INSERT INTO `marc_subfield_structure` VALUES ('024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -1, 'CF', '', '');
9135 INSERT INTO `marc_subfield_structure` VALUES ('024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'CF', '', '');
9136 INSERT INTO `marc_subfield_structure` VALUES ('024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9137 INSERT INTO `marc_subfield_structure` VALUES ('025', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9138 INSERT INTO `marc_subfield_structure` VALUES ('025', 'a', 'Overseas acquisition number', 'Overseas acquisition number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9139 INSERT INTO `marc_subfield_structure` VALUES ('026', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9140 INSERT INTO `marc_subfield_structure` VALUES ('026', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9141 INSERT INTO `marc_subfield_structure` VALUES ('026', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9142 INSERT INTO `marc_subfield_structure` VALUES ('026', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9143 INSERT INTO `marc_subfield_structure` VALUES ('026', 'a', 'First and second groups of characters', 'First and second groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9144 INSERT INTO `marc_subfield_structure` VALUES ('026', 'b', 'Third and fourth groups of characters', 'Third and fourth groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9145 INSERT INTO `marc_subfield_structure` VALUES ('026', 'c', 'Date', 'Date', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9146 INSERT INTO `marc_subfield_structure` VALUES ('026', 'd', 'Number of volume or part', 'Number of volume or part', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9147 INSERT INTO `marc_subfield_structure` VALUES ('026', 'e', 'unparsed fingerprint', 'unparsed fingerprint', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9148 INSERT INTO `marc_subfield_structure` VALUES ('027', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9149 INSERT INTO `marc_subfield_structure` VALUES ('027', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9150 INSERT INTO `marc_subfield_structure` VALUES ('027', 'a', 'Standard technical report number', 'Standard technical report number', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9151 INSERT INTO `marc_subfield_structure` VALUES ('027', 'z', 'Canceled/invalid number', 'Canceled/invalid number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9152 INSERT INTO `marc_subfield_structure` VALUES ('028', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9153 INSERT INTO `marc_subfield_structure` VALUES ('028', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9154 INSERT INTO `marc_subfield_structure` VALUES ('028', 'a', 'Publisher number', 'Publisher number', 0, 0, '', 0, '', '', '', 0, 0, 'CF', '', '');
9155 INSERT INTO `marc_subfield_structure` VALUES ('028', 'b', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, 0, 'CF', '', '');
9156 INSERT INTO `marc_subfield_structure` VALUES ('030', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9157 INSERT INTO `marc_subfield_structure` VALUES ('030', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9158 INSERT INTO `marc_subfield_structure` VALUES ('030', 'a', 'CODEN', 'CODEN', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9159 INSERT INTO `marc_subfield_structure` VALUES ('030', 'z', 'Canceled/invalid CODEN', 'Canceled/invalid CODEN', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9160 INSERT INTO `marc_subfield_structure` VALUES ('031', '2', 'System code', 'System code', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9161 INSERT INTO `marc_subfield_structure` VALUES ('031', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9162 INSERT INTO `marc_subfield_structure` VALUES ('031', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9163 INSERT INTO `marc_subfield_structure` VALUES ('031', 'a', 'Number of work', 'Number of work', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9164 INSERT INTO `marc_subfield_structure` VALUES ('031', 'b', 'Number of movement', 'Number of movement', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9165 INSERT INTO `marc_subfield_structure` VALUES ('031', 'c', 'Number of excerpt', 'Number of excerpt', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9166 INSERT INTO `marc_subfield_structure` VALUES ('031', 'd', 'Caption or heading', 'Caption or heading', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9167 INSERT INTO `marc_subfield_structure` VALUES ('031', 'e', 'Role', 'Role', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9168 INSERT INTO `marc_subfield_structure` VALUES ('031', 'g', 'Clef', 'Clef', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9169 INSERT INTO `marc_subfield_structure` VALUES ('031', 'm', 'Voice/instrument', 'Voice/instrument', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9170 INSERT INTO `marc_subfield_structure` VALUES ('031', 'n', 'Key signature', 'Key signature', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9171 INSERT INTO `marc_subfield_structure` VALUES ('031', 'o', 'Time signature', 'Time signature', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9172 INSERT INTO `marc_subfield_structure` VALUES ('031', 'p', 'Musical notation', 'Musical notation', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9173 INSERT INTO `marc_subfield_structure` VALUES ('031', 'q', 'General note', 'General note', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9174 INSERT INTO `marc_subfield_structure` VALUES ('031', 'r', 'Key or mode', 'Key or mode', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9175 INSERT INTO `marc_subfield_structure` VALUES ('031', 's', 'Coded validity note', 'Coded validity note', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9176 INSERT INTO `marc_subfield_structure` VALUES ('031', 't', 'Text incipit', 'Text incipit', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9177 INSERT INTO `marc_subfield_structure` VALUES ('031', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 0, '', '', '', 1, -6, 'CF', '', '');
9178 INSERT INTO `marc_subfield_structure` VALUES ('031', 'y', 'Link text', 'Link text', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9179 INSERT INTO `marc_subfield_structure` VALUES ('031', 'z', 'Public note', 'Public note', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9180 INSERT INTO `marc_subfield_structure` VALUES ('032', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'CF', '', '');
9181 INSERT INTO `marc_subfield_structure` VALUES ('032', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9182 INSERT INTO `marc_subfield_structure` VALUES ('032', 'a', 'Postal registration number', 'Postal registration number', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9183 INSERT INTO `marc_subfield_structure` VALUES ('032', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9184 INSERT INTO `marc_subfield_structure` VALUES ('033', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9185 INSERT INTO `marc_subfield_structure` VALUES ('033', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9186 INSERT INTO `marc_subfield_structure` VALUES ('033', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9187 INSERT INTO `marc_subfield_structure` VALUES ('033', 'a', 'Formatted date/time', 'Formatted date/time', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9188 INSERT INTO `marc_subfield_structure` VALUES ('033', 'b', 'Geographic classification area code', 'Geographic classification area code', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9189 INSERT INTO `marc_subfield_structure` VALUES ('033', 'c', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9190 INSERT INTO `marc_subfield_structure` VALUES ('034', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9191 INSERT INTO `marc_subfield_structure` VALUES ('034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9192 INSERT INTO `marc_subfield_structure` VALUES ('034', 'a', 'Category of scale', 'Category of scale', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9193 INSERT INTO `marc_subfield_structure` VALUES ('034', 'b', 'Constant ratio linear horizontal scale', 'Constant ratio linear horizontal scale', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9194 INSERT INTO `marc_subfield_structure` VALUES ('034', 'c', 'Constant ratio linear vertical scale', 'Constant ratio linear vertical scale', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9195 INSERT INTO `marc_subfield_structure` VALUES ('034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9196 INSERT INTO `marc_subfield_structure` VALUES ('034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9197 INSERT INTO `marc_subfield_structure` VALUES ('034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9198 INSERT INTO `marc_subfield_structure` VALUES ('034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9199 INSERT INTO `marc_subfield_structure` VALUES ('034', 'h', 'Angular scale', 'Angular scale', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9200 INSERT INTO `marc_subfield_structure` VALUES ('034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9201 INSERT INTO `marc_subfield_structure` VALUES ('034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9202 INSERT INTO `marc_subfield_structure` VALUES ('034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9203 INSERT INTO `marc_subfield_structure` VALUES ('034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9204 INSERT INTO `marc_subfield_structure` VALUES ('034', 'p', 'Equinox', 'Equinox', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9205 INSERT INTO `marc_subfield_structure` VALUES ('034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9206 INSERT INTO `marc_subfield_structure` VALUES ('034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9207 INSERT INTO `marc_subfield_structure` VALUES ('035', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9208 INSERT INTO `marc_subfield_structure` VALUES ('035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9209 INSERT INTO `marc_subfield_structure` VALUES ('035', 'a', 'System control number', 'System control number', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9210 INSERT INTO `marc_subfield_structure` VALUES ('035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9211 INSERT INTO `marc_subfield_structure` VALUES ('036', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9212 INSERT INTO `marc_subfield_structure` VALUES ('036', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9213 INSERT INTO `marc_subfield_structure` VALUES ('036', 'a', 'Original study number', 'Original study number', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9214 INSERT INTO `marc_subfield_structure` VALUES ('036', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9215 INSERT INTO `marc_subfield_structure` VALUES ('037', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
9216 INSERT INTO `marc_subfield_structure` VALUES ('037', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9217 INSERT INTO `marc_subfield_structure` VALUES ('037', 'a', 'Stock number', 'Stock number', 0, 0, '', 9, '', '', '', 0, -1, 'CF', '', '');
9218 INSERT INTO `marc_subfield_structure` VALUES ('037', 'b', 'Source of stock number/acquisition', 'Source of stock number/acquisition', 0, 0, '', 0, '', '', '', 0, -1, 'CF', '', '');
9219 INSERT INTO `marc_subfield_structure` VALUES ('037', 'c', 'Terms of availability', 'Terms of availability', 1, 0, '', 9, '', '', '', 0, -1, 'CF', '', '');
9220 INSERT INTO `marc_subfield_structure` VALUES ('037', 'f', 'Form of issue', 'Form of issue', 1, 0, '', 9, '', '', '', 0, -1, 'CF', '', '');
9221 INSERT INTO `marc_subfield_structure` VALUES ('037', 'g', 'Additional format characteristics', 'Additional format characteristics', 1, 0, '', 9, '', '', '', 0, -1, 'CF', '', '');
9222 INSERT INTO `marc_subfield_structure` VALUES ('037', 'n', 'Note', 'Note', 1, 0, '', 9, '', '', '', 0, -1, 'CF', '', '');
9223 INSERT INTO `marc_subfield_structure` VALUES ('038', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9224 INSERT INTO `marc_subfield_structure` VALUES ('038', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9225 INSERT INTO `marc_subfield_structure` VALUES ('038', 'a', 'Record content licensor', 'Record content licensor', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9226 INSERT INTO `marc_subfield_structure` VALUES ('039', 'a', 'Level of rules in bibliographic description', 'Level of rules in bibliographic description', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9227 INSERT INTO `marc_subfield_structure` VALUES ('039', 'b', 'Level of effort used to assign nonsubject heading access points', 'Level of effort used to assign nonsubject heading access points', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9228 INSERT INTO `marc_subfield_structure` VALUES ('039', 'c', 'Level of effort used to assign subject headings', 'Level of effort used to assign subject headings', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9229 INSERT INTO `marc_subfield_structure` VALUES ('039', 'd', 'Level of effort used to assign classification', 'Level of effort used to assign classification', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9230 INSERT INTO `marc_subfield_structure` VALUES ('039', 'e', 'Number of fixed field character positions coded', 'Number of fixed field character positions coded', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9231 INSERT INTO `marc_subfield_structure` VALUES ('040', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9232 INSERT INTO `marc_subfield_structure` VALUES ('040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9233 INSERT INTO `marc_subfield_structure` VALUES ('040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 0, '', 0, '', '', '', 0, -1, 'CF', '', '');
9234 INSERT INTO `marc_subfield_structure` VALUES ('040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9235 INSERT INTO `marc_subfield_structure` VALUES ('040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, '', 0, '', '', '', 0, -1, 'CF', '', '');
9236 INSERT INTO `marc_subfield_structure` VALUES ('040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, '', 0, '', '', '', 0, -1, 'CF', '', '');
9237 INSERT INTO `marc_subfield_structure` VALUES ('040', 'e', 'Description conventions', 'Description conventions', 0, 0, '', 0, '', '', '', 0, -1, 'CF', '', '');
9238 INSERT INTO `marc_subfield_structure` VALUES ('041', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9239 INSERT INTO `marc_subfield_structure` VALUES ('041', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9240 INSERT INTO `marc_subfield_structure` VALUES ('041', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9241 INSERT INTO `marc_subfield_structure` VALUES ('041', 'a', 'Language code of text/sound track or separate title', 'Language code of text/sound track or separate title', 1, 0, '', 0, '', '', '', 0, -1, 'CF', '', '');
9242 INSERT INTO `marc_subfield_structure` VALUES ('041', 'b', 'Language code of summary or abstract/overprinted title or subtitle', 'Language code of summary or abstract/overprinted title or subtitle', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9243 INSERT INTO `marc_subfield_structure` VALUES ('041', 'c', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9244 INSERT INTO `marc_subfield_structure` VALUES ('041', 'd', 'Language code of sung or spoken text', 'Language code of sung or spoken text', 1, 0, '', 0, '', '', '', 0, -1, 'CF', '', '');
9245 INSERT INTO `marc_subfield_structure` VALUES ('041', 'e', 'Language code of librettos', 'Language code of librettos', 1, 0, '', 0, '', '', '', 0, -1, 'CF', '', '');
9246 INSERT INTO `marc_subfield_structure` VALUES ('041', 'f', 'Language code of table of contents', 'Language code of table of contents', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9247 INSERT INTO `marc_subfield_structure` VALUES ('041', 'g', 'Language code of accompanying material other than librettos', 'Language code of accompanying material other than librettos', 1, 0, '', 0, '', '', '', 0, -1, 'CF', '', '');
9248 INSERT INTO `marc_subfield_structure` VALUES ('041', 'h', 'Language code of original and/or intermediate translations of text', 'Language code of original and/or intermediate translations of text', 1, 0, '', 0, '', '', '', 0, -1, 'CF', '', '');
9249 INSERT INTO `marc_subfield_structure` VALUES ('042', 'a', 'Authentication code', 'Authentication code', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9250 INSERT INTO `marc_subfield_structure` VALUES ('043', '2', 'Source of local code', 'Source of local code', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9251 INSERT INTO `marc_subfield_structure` VALUES ('043', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9252 INSERT INTO `marc_subfield_structure` VALUES ('043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9253 INSERT INTO `marc_subfield_structure` VALUES ('043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9254 INSERT INTO `marc_subfield_structure` VALUES ('043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9255 INSERT INTO `marc_subfield_structure` VALUES ('043', 'c', 'ISO code', 'ISO code', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9256 INSERT INTO `marc_subfield_structure` VALUES ('044', '2', 'Source of local subentity code', 'Source of local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9257 INSERT INTO `marc_subfield_structure` VALUES ('044', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9258 INSERT INTO `marc_subfield_structure` VALUES ('044', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9259 INSERT INTO `marc_subfield_structure` VALUES ('044', 'a', 'MARC country code', 'MARC country code', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9260 INSERT INTO `marc_subfield_structure` VALUES ('044', 'b', 'Local subentity code', 'Local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9261 INSERT INTO `marc_subfield_structure` VALUES ('044', 'c', 'ISO country code', 'ISO country code', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9262 INSERT INTO `marc_subfield_structure` VALUES ('045', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9263 INSERT INTO `marc_subfield_structure` VALUES ('045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9264 INSERT INTO `marc_subfield_structure` VALUES ('045', 'a', 'Time period code', 'Time period code', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9265 INSERT INTO `marc_subfield_structure` VALUES ('045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9266 INSERT INTO `marc_subfield_structure` VALUES ('045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9267 INSERT INTO `marc_subfield_structure` VALUES ('046', '2', 'Source of date', 'Source of date', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9268 INSERT INTO `marc_subfield_structure` VALUES ('046', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9269 INSERT INTO `marc_subfield_structure` VALUES ('046', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9270 INSERT INTO `marc_subfield_structure` VALUES ('046', 'a', 'Type of date code', 'Type of date code', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9271 INSERT INTO `marc_subfield_structure` VALUES ('046', 'b', 'Date 1 (B.C. date)', 'Date 1 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9272 INSERT INTO `marc_subfield_structure` VALUES ('046', 'c', 'Date 1 (C.E. date)', 'Date 1 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9273 INSERT INTO `marc_subfield_structure` VALUES ('046', 'd', 'Date 2 (B.C. date)', 'Date 2 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9274 INSERT INTO `marc_subfield_structure` VALUES ('046', 'e', 'Date 2 (C.E. date)', 'Date 2 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9275 INSERT INTO `marc_subfield_structure` VALUES ('046', 'j', 'Date resource modified', 'Date resource modified', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9276 INSERT INTO `marc_subfield_structure` VALUES ('046', 'k', 'Beginning or single date created', 'Beginning or single date created', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9277 INSERT INTO `marc_subfield_structure` VALUES ('046', 'l', 'Ending date created', 'Ending date created', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9278 INSERT INTO `marc_subfield_structure` VALUES ('046', 'm', 'Beginning of date valid', 'Beginning of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9279 INSERT INTO `marc_subfield_structure` VALUES ('046', 'n', 'End of date valid', 'End of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9280 INSERT INTO `marc_subfield_structure` VALUES ('047', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9281 INSERT INTO `marc_subfield_structure` VALUES ('047', 'a', 'Form of musical composition code', 'Form of musical composition code', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9282 INSERT INTO `marc_subfield_structure` VALUES ('048', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9283 INSERT INTO `marc_subfield_structure` VALUES ('048', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9284 INSERT INTO `marc_subfield_structure` VALUES ('048', 'a', 'Performer or ensemble', 'Performer or ensemble', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9285 INSERT INTO `marc_subfield_structure` VALUES ('048', 'b', 'Soloist', 'Soloist', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9286 INSERT INTO `marc_subfield_structure` VALUES ('049', 'a', 'Holding library', 'Holding library', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9287 INSERT INTO `marc_subfield_structure` VALUES ('049', 'c', 'Copy statement', 'Copy statement', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9288 INSERT INTO `marc_subfield_structure` VALUES ('049', 'd', 'Definition of bibliographic subdivisions', 'Definition of bibliographic subdivisions', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9289 INSERT INTO `marc_subfield_structure` VALUES ('049', 'l', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9290 INSERT INTO `marc_subfield_structure` VALUES ('049', 'm', 'Missing elements', 'Missing elements', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9291 INSERT INTO `marc_subfield_structure` VALUES ('049', 'n', 'Notes about holdings', 'Notes about holdings', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9292 INSERT INTO `marc_subfield_structure` VALUES ('049', 'o', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9293 INSERT INTO `marc_subfield_structure` VALUES ('049', 'p', 'Secondary bibliographic subdivision', 'Secondary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9294 INSERT INTO `marc_subfield_structure` VALUES ('049', 'q', 'Third bibliographic subdivision', 'Third bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9295 INSERT INTO `marc_subfield_structure` VALUES ('049', 'r', 'Fourth bibliographic subdivision', 'Fourth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9296 INSERT INTO `marc_subfield_structure` VALUES ('049', 's', 'Fifth bibliographic subdivision', 'Fifth bibliographic subdivision', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9297 INSERT INTO `marc_subfield_structure` VALUES ('049', 't', 'Sixth bibliographic subdivision', 'Sixth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9298 INSERT INTO `marc_subfield_structure` VALUES ('049', 'u', 'Seventh bibliographic subdivision', 'Seventh bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9299 INSERT INTO `marc_subfield_structure` VALUES ('049', 'v', 'Primary bibliographic subdivision', 'Primary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9300 INSERT INTO `marc_subfield_structure` VALUES ('049', 'y', 'Inclusive dates of publication or coverage', 'Inclusive dates of publication or coverage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9301 INSERT INTO `marc_subfield_structure` VALUES ('050', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9302 INSERT INTO `marc_subfield_structure` VALUES ('050', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9303 INSERT INTO `marc_subfield_structure` VALUES ('050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9304 INSERT INTO `marc_subfield_structure` VALUES ('050', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, 0, 'CF', '', '');
9305 INSERT INTO `marc_subfield_structure` VALUES ('050', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, 0, 'CF', '', '');
9306 INSERT INTO `marc_subfield_structure` VALUES ('050', 'd', 'Supplementary class number (MU) [OBSOLETE]', 'Supplementary class number (MU) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9307 INSERT INTO `marc_subfield_structure` VALUES ('051', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9308 INSERT INTO `marc_subfield_structure` VALUES ('051', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9309 INSERT INTO `marc_subfield_structure` VALUES ('051', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9310 INSERT INTO `marc_subfield_structure` VALUES ('051', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9311 INSERT INTO `marc_subfield_structure` VALUES ('052', '2', 'Code Source', 'Code Source', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9312 INSERT INTO `marc_subfield_structure` VALUES ('052', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9313 INSERT INTO `marc_subfield_structure` VALUES ('052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9314 INSERT INTO `marc_subfield_structure` VALUES ('052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9315 INSERT INTO `marc_subfield_structure` VALUES ('052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9316 INSERT INTO `marc_subfield_structure` VALUES ('052', 'c', 'Subject (MP) [OBSOLETE]', 'Subject (MP) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9317 INSERT INTO `marc_subfield_structure` VALUES ('052', 'd', 'Populated place name', 'Populated place name', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9318 INSERT INTO `marc_subfield_structure` VALUES ('055', '2', 'Source of call/class number', 'Source of call/class number', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9319 INSERT INTO `marc_subfield_structure` VALUES ('055', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9320 INSERT INTO `marc_subfield_structure` VALUES ('055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9321 INSERT INTO `marc_subfield_structure` VALUES ('055', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9322 INSERT INTO `marc_subfield_structure` VALUES ('055', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9323 INSERT INTO `marc_subfield_structure` VALUES ('060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9324 INSERT INTO `marc_subfield_structure` VALUES ('060', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9325 INSERT INTO `marc_subfield_structure` VALUES ('060', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9326 INSERT INTO `marc_subfield_structure` VALUES ('061', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9327 INSERT INTO `marc_subfield_structure` VALUES ('061', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9328 INSERT INTO `marc_subfield_structure` VALUES ('061', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9329 INSERT INTO `marc_subfield_structure` VALUES ('061', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9330 INSERT INTO `marc_subfield_structure` VALUES ('066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9331 INSERT INTO `marc_subfield_structure` VALUES ('066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9332 INSERT INTO `marc_subfield_structure` VALUES ('066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9333 INSERT INTO `marc_subfield_structure` VALUES ('070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9334 INSERT INTO `marc_subfield_structure` VALUES ('070', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9335 INSERT INTO `marc_subfield_structure` VALUES ('070', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9336 INSERT INTO `marc_subfield_structure` VALUES ('071', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9337 INSERT INTO `marc_subfield_structure` VALUES ('071', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9338 INSERT INTO `marc_subfield_structure` VALUES ('071', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9339 INSERT INTO `marc_subfield_structure` VALUES ('071', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9340 INSERT INTO `marc_subfield_structure` VALUES ('072', '2', 'Source', 'Source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9341 INSERT INTO `marc_subfield_structure` VALUES ('072', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9342 INSERT INTO `marc_subfield_structure` VALUES ('072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9343 INSERT INTO `marc_subfield_structure` VALUES ('072', 'a', 'Subject category code', 'Subject category code', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9344 INSERT INTO `marc_subfield_structure` VALUES ('072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9345 INSERT INTO `marc_subfield_structure` VALUES ('074', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9346 INSERT INTO `marc_subfield_structure` VALUES ('074', 'a', 'GPO item number', 'GPO item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'CF', '', '');
9347 INSERT INTO `marc_subfield_structure` VALUES ('074', 'z', 'Canceled/invalid GPO item number', 'Canceled/invalid GPO item number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9348 INSERT INTO `marc_subfield_structure` VALUES ('080', '2', 'Edition identifier', 'Edition identifier', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9349 INSERT INTO `marc_subfield_structure` VALUES ('080', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9350 INSERT INTO `marc_subfield_structure` VALUES ('080', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9351 INSERT INTO `marc_subfield_structure` VALUES ('080', 'a', 'Universal Decimal Classification number', 'Universal Decimal Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9352 INSERT INTO `marc_subfield_structure` VALUES ('080', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9353 INSERT INTO `marc_subfield_structure` VALUES ('080', 'x', 'Common auxiliary subdivision', 'Common auxiliary subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9354 INSERT INTO `marc_subfield_structure` VALUES ('082', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, 0, 'CF', '', '');
9355 INSERT INTO `marc_subfield_structure` VALUES ('082', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', NULL, -6, 'CF', '', '');
9356 INSERT INTO `marc_subfield_structure` VALUES ('082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', NULL, -6, 'CF', '', '');
9357 INSERT INTO `marc_subfield_structure` VALUES ('082', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, 0, 'CF', '', '');
9358 INSERT INTO `marc_subfield_structure` VALUES ('082', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, 0, 'CF', '', '');
9359 INSERT INTO `marc_subfield_structure` VALUES ('084', '2', 'Source of number', 'Source of number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9360 INSERT INTO `marc_subfield_structure` VALUES ('084', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9361 INSERT INTO `marc_subfield_structure` VALUES ('084', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9362 INSERT INTO `marc_subfield_structure` VALUES ('084', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9363 INSERT INTO `marc_subfield_structure` VALUES ('084', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9364 INSERT INTO `marc_subfield_structure` VALUES ('086', '2', 'Number source', 'Number source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'CF', '', '');
9365 INSERT INTO `marc_subfield_structure` VALUES ('086', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9366 INSERT INTO `marc_subfield_structure` VALUES ('086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9367 INSERT INTO `marc_subfield_structure` VALUES ('086', 'a', 'Classification number', 'Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'CF', '', '');
9368 INSERT INTO `marc_subfield_structure` VALUES ('086', 'z', 'Canceled/invalid classification number', 'Canceled/invalid classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9369 INSERT INTO `marc_subfield_structure` VALUES ('087', 'a', 'Report number [OBSOLETE, CAN/MARC]', 'Report number [OBSOLETE, CAN/MARC]', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9370 INSERT INTO `marc_subfield_structure` VALUES ('087', 'z', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9371 INSERT INTO `marc_subfield_structure` VALUES ('088', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9372 INSERT INTO `marc_subfield_structure` VALUES ('088', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9373 INSERT INTO `marc_subfield_structure` VALUES ('088', 'a', 'Report number', 'Report number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9374 INSERT INTO `marc_subfield_structure` VALUES ('088', 'z', 'Canceled/invalid report number', 'Canceled/invalid report number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'CF', '', '');
9375 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9376 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9377 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
9378 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
9379 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
9380 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
9381 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
9382 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
9383 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
9384 INSERT INTO `marc_subfield_structure` VALUES ('09o', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
9385 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
9386 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
9387 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
9388 INSERT INTO `marc_subfield_structure` VALUES ('091', 'a', 'Microfilm shelf location', 'Microfilm shelf location', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9389 INSERT INTO `marc_subfield_structure` VALUES ('092', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, -6, 'CF', '', '');
9390 INSERT INTO `marc_subfield_structure` VALUES ('092', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'CF', '', '');
9391 INSERT INTO `marc_subfield_structure` VALUES ('092', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'CF', '', '');
9392 INSERT INTO `marc_subfield_structure` VALUES ('092', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9393 INSERT INTO `marc_subfield_structure` VALUES ('092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9394 INSERT INTO `marc_subfield_structure` VALUES ('096', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'CF', '', '');
9395 INSERT INTO `marc_subfield_structure` VALUES ('096', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'CF', '', '');
9396 INSERT INTO `marc_subfield_structure` VALUES ('096', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9397 INSERT INTO `marc_subfield_structure` VALUES ('096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9398 INSERT INTO `marc_subfield_structure` VALUES ('098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, '', 0, '', '', '', NULL, -6, 'CF', '', '');
9399 INSERT INTO `marc_subfield_structure` VALUES ('098', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9400 INSERT INTO `marc_subfield_structure` VALUES ('098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9401 INSERT INTO `marc_subfield_structure` VALUES ('099', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, -6, 'CF', '', '');
9402 INSERT INTO `marc_subfield_structure` VALUES ('099', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9403 INSERT INTO `marc_subfield_structure` VALUES ('099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
9404 INSERT INTO `marc_subfield_structure` VALUES ('100', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', 0, -6, 'CF', '', '');
9405 INSERT INTO `marc_subfield_structure` VALUES ('100', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', 0, -6, 'CF', '', '');
9406 INSERT INTO `marc_subfield_structure` VALUES ('100', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', 0, -6, 'CF', '', '');
9407 INSERT INTO `marc_subfield_structure` VALUES ('100', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
9408 INSERT INTO `marc_subfield_structure` VALUES ('100', 'a', 'Personal name', 'Personal name', 0, 0, 'biblio.author', 1, '', '', '', 0, -1, 'CF', '''100b'',''100c'',''100q'',''100d'',''100e'',''110a'',''110b'',''110c'',''110d'',''110e'',''700a'',''700b'',''700c'',''700q'',''700d'',''700e'',''710a'',''710b'',''710c'',''710d'',''710e'',''720a'',''720e'',''900a''', '');
9409 INSERT INTO `marc_subfield_structure` VALUES ('100', 'b', 'Numeration', 'Numeration', 0, 0, '', 1, '', '', '', 0, -1, 'CF', '', '');
9410 INSERT INTO `marc_subfield_structure` VALUES ('100', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 1, '', '', '', 0, -1, 'CF', '', '');
9411 INSERT INTO `marc_subfield_structure` VALUES ('100', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 1, '', '', '', 0, -1, 'CF', '', '');
9412 INSERT INTO `marc_subfield_structure` VALUES ('100', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', 0, -1, 'CF', '', '');
9413 INSERT INTO `marc_subfield_structure` VALUES ('100', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', 0, -6, 'CF', '', '');
9414 INSERT INTO `marc_subfield_structure` VALUES ('100', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', 0, -6, 'CF', '', '');
9415 INSERT INTO `marc_subfield_structure` VALUES ('100', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 1, '', '', '', 0, -6, 'CF', '', '');
9416 INSERT INTO `marc_subfield_structure` VALUES ('100', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', 0, -6, 'CF', '', '');
9417 INSERT INTO `marc_subfield_structure` VALUES ('100', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', 0, -6, 'CF', '', '');
9418 INSERT INTO `marc_subfield_structure` VALUES ('100', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'CF', '', '');
9419 INSERT INTO `marc_subfield_structure` VALUES ('100', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'CF', '', '');
9420 INSERT INTO `marc_subfield_structure` VALUES ('100', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 1, '', '', '', 0, -1, 'CF', '', '');
9421 INSERT INTO `marc_subfield_structure` VALUES ('100', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', 0, -6, 'CF', '', '');
9422 INSERT INTO `marc_subfield_structure` VALUES ('100', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', 0, -6, 'CF', '', '');
9423 INSERT INTO `marc_subfield_structure` VALUES ('110', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', NULL, -6, 'CF', '', '');
9424 INSERT INTO `marc_subfield_structure` VALUES ('110', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', NULL, -6, 'CF', '', '');
9425 INSERT INTO `marc_subfield_structure` VALUES ('110', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', NULL, -6, 'CF', '', '');
9426 INSERT INTO `marc_subfield_structure` VALUES ('110', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
9427 INSERT INTO `marc_subfield_structure` VALUES ('110', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 1, '', '', '', NULL, -1, 'CF', '', '');
9428 INSERT INTO `marc_subfield_structure` VALUES ('110', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 1, '', '', '', NULL, -1, 'CF', '', '');
9429 INSERT INTO `marc_subfield_structure` VALUES ('110', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 1, '', '', '', NULL, -1, 'CF', '', '');
9430 INSERT INTO `marc_subfield_structure` VALUES ('110', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 1, '', '', '', NULL, -1, 'CF', '', '');
9431 INSERT INTO `marc_subfield_structure` VALUES ('110', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', NULL, -1, 'CF', '', '');
9432 INSERT INTO `marc_subfield_structure` VALUES ('110', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'CF', '', '');
9433 INSERT INTO `marc_subfield_structure` VALUES ('110', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', NULL, -6, 'CF', '', '');
9434 INSERT INTO `marc_subfield_structure` VALUES ('110', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', NULL, -6, 'CF', '', '');
9435 INSERT INTO `marc_subfield_structure` VALUES ('110', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'CF', '', '');
9436 INSERT INTO `marc_subfield_structure` VALUES ('110', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 1, '', '', '', NULL, -6, 'CF', '', '');
9437 INSERT INTO `marc_subfield_structure` VALUES ('110', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', NULL, -6, 'CF', '', '');
9438 INSERT INTO `marc_subfield_structure` VALUES ('110', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'CF', '', '');
9439 INSERT INTO `marc_subfield_structure` VALUES ('110', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', NULL, -6, 'CF', '', '');
9440 INSERT INTO `marc_subfield_structure` VALUES ('111', '4', 'Relator code', 'Relator code', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9441 INSERT INTO `marc_subfield_structure` VALUES ('111', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9442 INSERT INTO `marc_subfield_structure` VALUES ('111', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9443 INSERT INTO `marc_subfield_structure` VALUES ('111', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
9444 INSERT INTO `marc_subfield_structure` VALUES ('111', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'CF', '', '');
9445 INSERT INTO `marc_subfield_structure` VALUES ('111', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9446 INSERT INTO `marc_subfield_structure` VALUES ('111', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'CF', '', '');
9447 INSERT INTO `marc_subfield_structure` VALUES ('111', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'CF', '', '');
9448 INSERT INTO `marc_subfield_structure` VALUES ('111', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'CF', '', '');
9449 INSERT INTO `marc_subfield_structure` VALUES ('111', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9450 INSERT INTO `marc_subfield_structure` VALUES ('111', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9451 INSERT INTO `marc_subfield_structure` VALUES ('111', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9452 INSERT INTO `marc_subfield_structure` VALUES ('111', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9453 INSERT INTO `marc_subfield_structure` VALUES ('111', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9454 INSERT INTO `marc_subfield_structure` VALUES ('111', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9455 INSERT INTO `marc_subfield_structure` VALUES ('111', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9456 INSERT INTO `marc_subfield_structure` VALUES ('111', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9457 INSERT INTO `marc_subfield_structure` VALUES ('111', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9458 INSERT INTO `marc_subfield_structure` VALUES ('130', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9459 INSERT INTO `marc_subfield_structure` VALUES ('130', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9460 INSERT INTO `marc_subfield_structure` VALUES ('130', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
9461 INSERT INTO `marc_subfield_structure` VALUES ('130', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9462 INSERT INTO `marc_subfield_structure` VALUES ('130', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9463 INSERT INTO `marc_subfield_structure` VALUES ('130', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9464 INSERT INTO `marc_subfield_structure` VALUES ('130', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9465 INSERT INTO `marc_subfield_structure` VALUES ('130', 'h', 'Medium', 'Medium', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9466 INSERT INTO `marc_subfield_structure` VALUES ('130', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9467 INSERT INTO `marc_subfield_structure` VALUES ('130', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9468 INSERT INTO `marc_subfield_structure` VALUES ('130', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9469 INSERT INTO `marc_subfield_structure` VALUES ('130', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9470 INSERT INTO `marc_subfield_structure` VALUES ('130', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9471 INSERT INTO `marc_subfield_structure` VALUES ('130', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9472 INSERT INTO `marc_subfield_structure` VALUES ('130', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9473 INSERT INTO `marc_subfield_structure` VALUES ('130', 's', 'Version', 'Version', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9474 INSERT INTO `marc_subfield_structure` VALUES ('130', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'CF', '', '');
9475 INSERT INTO `marc_subfield_structure` VALUES ('210', '2', 'Source', 'Source', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9476 INSERT INTO `marc_subfield_structure` VALUES ('210', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9477 INSERT INTO `marc_subfield_structure` VALUES ('210', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9478 INSERT INTO `marc_subfield_structure` VALUES ('210', 'a', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, 'CF', '', '');
9479 INSERT INTO `marc_subfield_structure` VALUES ('210', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9480 INSERT INTO `marc_subfield_structure` VALUES ('211', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9481 INSERT INTO `marc_subfield_structure` VALUES ('211', 'a', 'Acronym or shortened title', 'Acronym or shortened title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9482 INSERT INTO `marc_subfield_structure` VALUES ('212', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9483 INSERT INTO `marc_subfield_structure` VALUES ('212', 'a', 'Variant access title', 'Variant access title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9484 INSERT INTO `marc_subfield_structure` VALUES ('214', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9485 INSERT INTO `marc_subfield_structure` VALUES ('214', 'a', 'Augmented title', 'Augmented title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9486 INSERT INTO `marc_subfield_structure` VALUES ('222', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9487 INSERT INTO `marc_subfield_structure` VALUES ('222', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9488 INSERT INTO `marc_subfield_structure` VALUES ('222', 'a', 'Key title', 'Key title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, 'CF', '', '');
9489 INSERT INTO `marc_subfield_structure` VALUES ('222', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9490 INSERT INTO `marc_subfield_structure` VALUES ('240', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9491 INSERT INTO `marc_subfield_structure` VALUES ('240', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9492 INSERT INTO `marc_subfield_structure` VALUES ('240', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
9493 INSERT INTO `marc_subfield_structure` VALUES ('240', 'a', 'Uniform title', 'Uniform title', 0, 0, 'biblio.unititle', 2, '', '', '', 1, -1, 'CF', '', '');
9494 INSERT INTO `marc_subfield_structure` VALUES ('240', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9495 INSERT INTO `marc_subfield_structure` VALUES ('240', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9496 INSERT INTO `marc_subfield_structure` VALUES ('240', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9497 INSERT INTO `marc_subfield_structure` VALUES ('240', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'CF', '', '');
9498 INSERT INTO `marc_subfield_structure` VALUES ('240', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9499 INSERT INTO `marc_subfield_structure` VALUES ('240', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'CF', '', '');
9500 INSERT INTO `marc_subfield_structure` VALUES ('240', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9501 INSERT INTO `marc_subfield_structure` VALUES ('240', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9502 INSERT INTO `marc_subfield_structure` VALUES ('240', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9503 INSERT INTO `marc_subfield_structure` VALUES ('240', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9504 INSERT INTO `marc_subfield_structure` VALUES ('240', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -1, 'CF', '', '');
9505 INSERT INTO `marc_subfield_structure` VALUES ('240', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'CF', '', '');
9506 INSERT INTO `marc_subfield_structure` VALUES ('241', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9507 INSERT INTO `marc_subfield_structure` VALUES ('241', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9508 INSERT INTO `marc_subfield_structure` VALUES ('242', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9509 INSERT INTO `marc_subfield_structure` VALUES ('242', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9510 INSERT INTO `marc_subfield_structure` VALUES ('242', 'a', 'Title', 'Title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9511 INSERT INTO `marc_subfield_structure` VALUES ('242', 'b', 'Remainder of title', 'Remainder of title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9512 INSERT INTO `marc_subfield_structure` VALUES ('242', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9513 INSERT INTO `marc_subfield_structure` VALUES ('242', 'd', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9514 INSERT INTO `marc_subfield_structure` VALUES ('242', 'e', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9515 INSERT INTO `marc_subfield_structure` VALUES ('242', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9516 INSERT INTO `marc_subfield_structure` VALUES ('242', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9517 INSERT INTO `marc_subfield_structure` VALUES ('242', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9518 INSERT INTO `marc_subfield_structure` VALUES ('242', 'y', 'Language code of translated title', 'Language code of translated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'CF', '', '');
9519 INSERT INTO `marc_subfield_structure` VALUES ('243', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9520 INSERT INTO `marc_subfield_structure` VALUES ('243', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9521 INSERT INTO `marc_subfield_structure` VALUES ('243', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
9522 INSERT INTO `marc_subfield_structure` VALUES ('243', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 2, '', '', '', 1, -1, 'CF', '', '');
9523 INSERT INTO `marc_subfield_structure` VALUES ('243', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9524 INSERT INTO `marc_subfield_structure` VALUES ('243', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9525 INSERT INTO `marc_subfield_structure` VALUES ('243', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9526 INSERT INTO `marc_subfield_structure` VALUES ('243', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'CF', '', '');
9527 INSERT INTO `marc_subfield_structure` VALUES ('243', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9528 INSERT INTO `marc_subfield_structure` VALUES ('243', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'CF', '', '');
9529 INSERT INTO `marc_subfield_structure` VALUES ('243', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9530 INSERT INTO `marc_subfield_structure` VALUES ('243', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9531 INSERT INTO `marc_subfield_structure` VALUES ('243', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9532 INSERT INTO `marc_subfield_structure` VALUES ('243', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'CF', '', '');
9533 INSERT INTO `marc_subfield_structure` VALUES ('243', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -1, 'CF', '', '');
9534 INSERT INTO `marc_subfield_structure` VALUES ('243', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'CF', '', '');
9535 INSERT INTO `marc_subfield_structure` VALUES ('245', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9536 INSERT INTO `marc_subfield_structure` VALUES ('245', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9537 INSERT INTO `marc_subfield_structure` VALUES ('245', 'a', 'Title', 'Title', 0, 1, 'biblio.title', 2, '', '', '', NULL, 0, 'CF', '''245b'',''245f'',''245g'',''245k'',''245n'',''245p'',''245s'',''245h'',''246i'',''246a'',''246b'',''246f'',''246g'',''246n'',''246p'',''246h'',''242a'',''242b'',''242n'',''242p'',''242h''', '');
9538 INSERT INTO `marc_subfield_structure` VALUES ('245', 'b', 'Remainder of title', 'Remainder of title', 0, 0, 'bibliosubtitle.subtitle', 2, '', '', '', NULL, 0, 'CF', '', '');
9539 INSERT INTO `marc_subfield_structure` VALUES ('245', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 2, '', '', '', NULL, 0, 'CF', '', '');
9540 INSERT INTO `marc_subfield_structure` VALUES ('245', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series: (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9541 INSERT INTO `marc_subfield_structure` VALUES ('245', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9542 INSERT INTO `marc_subfield_structure` VALUES ('245', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9543 INSERT INTO `marc_subfield_structure` VALUES ('245', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9544 INSERT INTO `marc_subfield_structure` VALUES ('245', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, 0, 'CF', '', '');
9545 INSERT INTO `marc_subfield_structure` VALUES ('245', 'k', 'Form', 'Form', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9546 INSERT INTO `marc_subfield_structure` VALUES ('245', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9547 INSERT INTO `marc_subfield_structure` VALUES ('245', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9548 INSERT INTO `marc_subfield_structure` VALUES ('245', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9549 INSERT INTO `marc_subfield_structure` VALUES ('246', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9550 INSERT INTO `marc_subfield_structure` VALUES ('246', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9551 INSERT INTO `marc_subfield_structure` VALUES ('246', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9552 INSERT INTO `marc_subfield_structure` VALUES ('246', 'a', 'Title proper/short title', 'Title proper/short title', 0, 0, '', 2, '', '', '', NULL, -1, 'CF', '', '');
9553 INSERT INTO `marc_subfield_structure` VALUES ('246', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -1, 'CF', '', '');
9554 INSERT INTO `marc_subfield_structure` VALUES ('246', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9555 INSERT INTO `marc_subfield_structure` VALUES ('246', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9556 INSERT INTO `marc_subfield_structure` VALUES ('246', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9557 INSERT INTO `marc_subfield_structure` VALUES ('246', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9558 INSERT INTO `marc_subfield_structure` VALUES ('246', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -1, 'CF', '', '');
9559 INSERT INTO `marc_subfield_structure` VALUES ('246', 'i', 'Display text', 'Display text', 0, 0, '', 2, '', '', '', NULL, -1, 'CF', '', '');
9560 INSERT INTO `marc_subfield_structure` VALUES ('246', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9561 INSERT INTO `marc_subfield_structure` VALUES ('246', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9562 INSERT INTO `marc_subfield_structure` VALUES ('247', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9563 INSERT INTO `marc_subfield_structure` VALUES ('247', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9564 INSERT INTO `marc_subfield_structure` VALUES ('247', 'a', 'Title', 'Title', 0, 0, '', 2, '', '', '', NULL, -1, 'CF', '', '');
9565 INSERT INTO `marc_subfield_structure` VALUES ('247', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -1, 'CF', '', '');
9566 INSERT INTO `marc_subfield_structure` VALUES ('247', 'd', 'Designation of section (SE) [OBSOLETE]', 'Designation of section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9567 INSERT INTO `marc_subfield_structure` VALUES ('247', 'e', 'Name of part/section (SE) [OBSOLETE]', 'Name of part/section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9568 INSERT INTO `marc_subfield_structure` VALUES ('247', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -1, 'CF', '', '');
9569 INSERT INTO `marc_subfield_structure` VALUES ('247', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9570 INSERT INTO `marc_subfield_structure` VALUES ('247', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -1, 'CF', '', '');
9571 INSERT INTO `marc_subfield_structure` VALUES ('247', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9572 INSERT INTO `marc_subfield_structure` VALUES ('247', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9573 INSERT INTO `marc_subfield_structure` VALUES ('247', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 2, '', '', '', NULL, -1, 'CF', '', '');
9574 INSERT INTO `marc_subfield_structure` VALUES ('250', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9575 INSERT INTO `marc_subfield_structure` VALUES ('250', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9576 INSERT INTO `marc_subfield_structure` VALUES ('250', 'a', 'Edition statement', 'Edition statement', 0, 0, '', 2, '', '', '', NULL, -1, 'CF', '', '');
9577 INSERT INTO `marc_subfield_structure` VALUES ('250', 'b', 'Remainder of edition statement', 'Remainder of edition statement', 0, 0, '', 2, '', '', '', NULL, -1, 'CF', '', '');
9578 INSERT INTO `marc_subfield_structure` VALUES ('254', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9579 INSERT INTO `marc_subfield_structure` VALUES ('254', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9580 INSERT INTO `marc_subfield_structure` VALUES ('254', 'a', 'Musical presentation statement', 'Musical presentation statement', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9581 INSERT INTO `marc_subfield_structure` VALUES ('255', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9582 INSERT INTO `marc_subfield_structure` VALUES ('255', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9583 INSERT INTO `marc_subfield_structure` VALUES ('255', 'a', 'Statement of scale', 'Statement of scale', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9584 INSERT INTO `marc_subfield_structure` VALUES ('255', 'b', 'Statement of projection', 'Statement of projection', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9585 INSERT INTO `marc_subfield_structure` VALUES ('255', 'c', 'Statement of coordinates', 'Statement of coordinates', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9586 INSERT INTO `marc_subfield_structure` VALUES ('255', 'd', 'Statement of zone', 'Statement of zone', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9587 INSERT INTO `marc_subfield_structure` VALUES ('255', 'e', 'Statement of equinox', 'Statement of equinox', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9588 INSERT INTO `marc_subfield_structure` VALUES ('255', 'f', 'Outer G-ring coordinate pairs', 'Outer G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9589 INSERT INTO `marc_subfield_structure` VALUES ('255', 'g', 'Exclusion G-ring coordinate pairs', 'Exclusion G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9590 INSERT INTO `marc_subfield_structure` VALUES ('256', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9591 INSERT INTO `marc_subfield_structure` VALUES ('256', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9592 INSERT INTO `marc_subfield_structure` VALUES ('256', 'a', 'Computer file characteristics', 'Computer file characteristics', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9593 INSERT INTO `marc_subfield_structure` VALUES ('257', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9594 INSERT INTO `marc_subfield_structure` VALUES ('257', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9595 INSERT INTO `marc_subfield_structure` VALUES ('257', 'a', 'Country of producing entity', 'Country of producing entity', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9596 INSERT INTO `marc_subfield_structure` VALUES ('258', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9597 INSERT INTO `marc_subfield_structure` VALUES ('258', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9598 INSERT INTO `marc_subfield_structure` VALUES ('258', 'a', 'Issuing jurisdiction', 'Issuing jurisdiction', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9599 INSERT INTO `marc_subfield_structure` VALUES ('258', 'b', 'Denomination', 'Denomination', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9600 INSERT INTO `marc_subfield_structure` VALUES ('260', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9601 INSERT INTO `marc_subfield_structure` VALUES ('260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9602 INSERT INTO `marc_subfield_structure` VALUES ('260', 'a', 'Place of publication, distribution, etc', 'Place of publication, distribution, etc', 1, 0, 'biblioitems.place', 2, '', '', '', NULL, 0, 'CF', '', '');
9603 INSERT INTO `marc_subfield_structure` VALUES ('260', 'b', 'Name of publisher, distributor, etc', 'Name of publisher, distributor, etc', 1, 0, 'biblioitems.publishercode', 2, '', '', '', NULL, 0, 'CF', '', '');
9604 INSERT INTO `marc_subfield_structure` VALUES ('260', 'c', 'Date of copyright, publication, distribution, release, etc', 'Date of publication, distribution, etc', 1, 0, 'biblio.copyrightdate', 2, '', '', '', NULL, 0, 'CF', '', '');
9605 INSERT INTO `marc_subfield_structure` VALUES ('260', 'd', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9606 INSERT INTO `marc_subfield_structure` VALUES ('260', 'e', 'Place of manufacture', 'Place of manufacture', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9607 INSERT INTO `marc_subfield_structure` VALUES ('260', 'f', 'Manufacturer', 'Manufacturer', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9608 INSERT INTO `marc_subfield_structure` VALUES ('260', 'g', 'Date of manufacture', 'Date of manufacture', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9609 INSERT INTO `marc_subfield_structure` VALUES ('260', 'k', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9610 INSERT INTO `marc_subfield_structure` VALUES ('260', 'l', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9611 INSERT INTO `marc_subfield_structure` VALUES ('261', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9612 INSERT INTO `marc_subfield_structure` VALUES ('261', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9613 INSERT INTO `marc_subfield_structure` VALUES ('261', 'a', 'Producing company', 'Producing company', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9614 INSERT INTO `marc_subfield_structure` VALUES ('261', 'b', 'Releasing company (primary distributor)', 'Releasing company (primary distributor)', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9615 INSERT INTO `marc_subfield_structure` VALUES ('261', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9616 INSERT INTO `marc_subfield_structure` VALUES ('261', 'd', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9617 INSERT INTO `marc_subfield_structure` VALUES ('261', 'e', 'Contractual producer', 'Contractual producer', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9618 INSERT INTO `marc_subfield_structure` VALUES ('261', 'f', 'Place of production, release, etc.', 'Place of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9619 INSERT INTO `marc_subfield_structure` VALUES ('262', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9620 INSERT INTO `marc_subfield_structure` VALUES ('262', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9621 INSERT INTO `marc_subfield_structure` VALUES ('262', 'a', 'Place of production, release, etc.', 'Place of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9622 INSERT INTO `marc_subfield_structure` VALUES ('262', 'b', 'Publisher or trade name', 'Publisher or trade name', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9623 INSERT INTO `marc_subfield_structure` VALUES ('262', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9624 INSERT INTO `marc_subfield_structure` VALUES ('262', 'k', 'Serial identification', 'Serial identification', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9625 INSERT INTO `marc_subfield_structure` VALUES ('262', 'l', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9626 INSERT INTO `marc_subfield_structure` VALUES ('263', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9627 INSERT INTO `marc_subfield_structure` VALUES ('263', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9628 INSERT INTO `marc_subfield_structure` VALUES ('263', 'a', 'Projected publication date', 'Projected publication date', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9629 INSERT INTO `marc_subfield_structure` VALUES ('265', '6', 'Linkage [OBSOLETE]', 'Linkage [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9630 INSERT INTO `marc_subfield_structure` VALUES ('265', 'a', 'Source for acquisition/subscription address [OBSOLETE]', 'Source for acquisition/subscription address [OBSOLETE]', 1, 0, '', 2, '', '', '', NULL, -6, 'CF', '', '');
9631 INSERT INTO `marc_subfield_structure` VALUES ('270', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
9632 INSERT INTO `marc_subfield_structure` VALUES ('270', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
9633 INSERT INTO `marc_subfield_structure` VALUES ('270', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
9634 INSERT INTO `marc_subfield_structure` VALUES ('270', 'a', 'Address', 'Address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'CF', '', '');
9635 INSERT INTO `marc_subfield_structure` VALUES ('270', 'b', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'CF', '', '');
9636 INSERT INTO `marc_subfield_structure` VALUES ('270', 'c', 'State or province', 'State or province', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
9637 INSERT INTO `marc_subfield_structure` VALUES ('270', 'd', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'CF', '', '');
9638 INSERT INTO `marc_subfield_structure` VALUES ('270', 'e', 'Postal code', 'Postal code', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'CF', '', '');
9639 INSERT INTO `marc_subfield_structure` VALUES ('270', 'f', 'Terms preceding attention name', 'Terms preceding attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'CF', '', '');
9640 INSERT INTO `marc_subfield_structure` VALUES ('270', 'g', 'Attention name', 'Attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'CF', '', '');
9641 INSERT INTO `marc_subfield_structure` VALUES ('270', 'h', 'Attention position', 'Attention position', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'CF', '', '');
9642 INSERT INTO `marc_subfield_structure` VALUES ('270', 'i', 'Type of address', 'Type of address', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'CF', '', '');
9643 INSERT INTO `marc_subfield_structure` VALUES ('270', 'j', 'Specialized telephone number', 'Specialized telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'CF', '', '');
9644 INSERT INTO `marc_subfield_structure` VALUES ('270', 'k', 'Telephone number', 'Telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'CF', '', '');
9645 INSERT INTO `marc_subfield_structure` VALUES ('270', 'l', 'Fax number', 'Fax number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'CF', '', '');
9646 INSERT INTO `marc_subfield_structure` VALUES ('270', 'm', 'Electronic mail address', 'Electronic mail address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'CF', '', '');
9647 INSERT INTO `marc_subfield_structure` VALUES ('270', 'n', 'TDD or TTY number', 'TDD or TTY number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'CF', '', '');
9648 INSERT INTO `marc_subfield_structure` VALUES ('270', 'p', 'Contact person', 'Contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'CF', '', '');
9649 INSERT INTO `marc_subfield_structure` VALUES ('270', 'q', 'Title of contact person', 'Title of contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'CF', '', '');
9650 INSERT INTO `marc_subfield_structure` VALUES ('270', 'r', 'Hours', 'Hours', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'CF', '', '');
9651 INSERT INTO `marc_subfield_structure` VALUES ('270', 'z', 'Public note', 'Public note', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'CF', '', '');
9652 INSERT INTO `marc_subfield_structure` VALUES ('300', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9653 INSERT INTO `marc_subfield_structure` VALUES ('300', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9654 INSERT INTO `marc_subfield_structure` VALUES ('300', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9655 INSERT INTO `marc_subfield_structure` VALUES ('300', 'a', 'Extent (number of discs followed by format or leave blank for mere web sites)', 'Extent', 1, 0, 'biblioitems.pages', 3, '', '', '', NULL, 0, 'CF', '', '');
9656 INSERT INTO `marc_subfield_structure` VALUES ('300', 'b', 'Other physical details', 'Other physical details', 0, 0, 'biblioitems.illus', 3, '', '', '', 0, 0, 'CF', '', '');
9657 INSERT INTO `marc_subfield_structure` VALUES ('300', 'c', 'Dimensions', 'Dimensions', 1, 0, 'biblioitems.size', 3, '', '', '', NULL, 0, 'CF', '', '');
9658 INSERT INTO `marc_subfield_structure` VALUES ('300', 'd', 'Accompanying material [OBSOLETE, CAN/MARC]', 'Accompanying material [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9659 INSERT INTO `marc_subfield_structure` VALUES ('300', 'e', 'Accompanying material', 'Accompanying material', 0, 0, '', 3, '', '', '', NULL, 0, 'CF', '', '');
9660 INSERT INTO `marc_subfield_structure` VALUES ('300', 'f', 'Type of unit', 'Type of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'CF', '', '');
9661 INSERT INTO `marc_subfield_structure` VALUES ('300', 'g', 'Size of unit', 'Size of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'CF', '', '');
9662 INSERT INTO `marc_subfield_structure` VALUES ('300', 'k', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9663 INSERT INTO `marc_subfield_structure` VALUES ('300', 'm', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9664 INSERT INTO `marc_subfield_structure` VALUES ('300', 'n', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9665 INSERT INTO `marc_subfield_structure` VALUES ('301', 'a', 'Extent of item', 'Extent of item', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9666 INSERT INTO `marc_subfield_structure` VALUES ('301', 'b', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9667 INSERT INTO `marc_subfield_structure` VALUES ('301', 'c', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', NULL, NULL, -6, 'CF', '', '');
9668 INSERT INTO `marc_subfield_structure` VALUES ('301', 'd', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9669 INSERT INTO `marc_subfield_structure` VALUES ('301', 'e', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9670 INSERT INTO `marc_subfield_structure` VALUES ('301', 'f', 'Speed', 'Speed', 0, 0, '', 3, '', '', NULL, NULL, -6, 'CF', '', '');
9671 INSERT INTO `marc_subfield_structure` VALUES ('302', 'a', 'Page count', 'Page count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'CF', '', '');
9672 INSERT INTO `marc_subfield_structure` VALUES ('303', 'a', 'Unit count', 'Unit count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'CF', '', '');
9673 INSERT INTO `marc_subfield_structure` VALUES ('304', 'a', 'Linear footage', 'Linear footage', 0, 0, '', 3, '', '', NULL, NULL, -6, 'CF', '', '');
9674 INSERT INTO `marc_subfield_structure` VALUES ('305', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9675 INSERT INTO `marc_subfield_structure` VALUES ('305', 'a', 'Extent', 'Extent', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9676 INSERT INTO `marc_subfield_structure` VALUES ('305', 'b', 'Other physical details', 'Other physical details', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9677 INSERT INTO `marc_subfield_structure` VALUES ('305', 'c', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', NULL, NULL, -6, 'CF', '', '');
9678 INSERT INTO `marc_subfield_structure` VALUES ('305', 'd', 'Microgroove or standard', 'Microgroove or standard', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9679 INSERT INTO `marc_subfield_structure` VALUES ('305', 'e', 'Stereophonic, monaural', 'Stereophonic, monaural', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9680 INSERT INTO `marc_subfield_structure` VALUES ('305', 'f', 'Number of tracks', 'Number of tracks', 0, 0, '', 3, '', '', NULL, NULL, -6, 'CF', '', '');
9681 INSERT INTO `marc_subfield_structure` VALUES ('305', 'm', 'Serial identification', 'Serial identification', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9682 INSERT INTO `marc_subfield_structure` VALUES ('305', 'n', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 3, '', '', NULL, NULL, -6, 'CF', '', '');
9683 INSERT INTO `marc_subfield_structure` VALUES ('306', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9684 INSERT INTO `marc_subfield_structure` VALUES ('306', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9685 INSERT INTO `marc_subfield_structure` VALUES ('306', 'a', 'Playing time', 'Playing time', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9686 INSERT INTO `marc_subfield_structure` VALUES ('307', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9687 INSERT INTO `marc_subfield_structure` VALUES ('307', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9688 INSERT INTO `marc_subfield_structure` VALUES ('307', 'a', 'Hours', 'Hours', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9689 INSERT INTO `marc_subfield_structure` VALUES ('307', 'b', 'Additional information', 'Additional information', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9690 INSERT INTO `marc_subfield_structure` VALUES ('308', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9691 INSERT INTO `marc_subfield_structure` VALUES ('308', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9692 INSERT INTO `marc_subfield_structure` VALUES ('308', 'a', 'Number of reels', 'Number of reels', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9693 INSERT INTO `marc_subfield_structure` VALUES ('308', 'b', 'Footage', 'Footage', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9694 INSERT INTO `marc_subfield_structure` VALUES ('308', 'c', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9695 INSERT INTO `marc_subfield_structure` VALUES ('308', 'd', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9696 INSERT INTO `marc_subfield_structure` VALUES ('308', 'e', 'Width', 'Width', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9697 INSERT INTO `marc_subfield_structure` VALUES ('308', 'f', 'Presentation format', 'Presentation format', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9698 INSERT INTO `marc_subfield_structure` VALUES ('310', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9699 INSERT INTO `marc_subfield_structure` VALUES ('310', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9700 INSERT INTO `marc_subfield_structure` VALUES ('310', 'a', 'Current publication frequency', 'Current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -1, 'CF', '', '');
9701 INSERT INTO `marc_subfield_structure` VALUES ('310', 'b', 'Date of current publication frequency', 'Date of current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -1, 'CF', '', '');
9702 INSERT INTO `marc_subfield_structure` VALUES ('315', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9703 INSERT INTO `marc_subfield_structure` VALUES ('315', 'a', 'Frequency', 'Frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9704 INSERT INTO `marc_subfield_structure` VALUES ('315', 'b', 'Dates of frequency', 'Dates of frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9705 INSERT INTO `marc_subfield_structure` VALUES ('321', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9706 INSERT INTO `marc_subfield_structure` VALUES ('321', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9707 INSERT INTO `marc_subfield_structure` VALUES ('321', 'a', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9708 INSERT INTO `marc_subfield_structure` VALUES ('321', 'b', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9709 INSERT INTO `marc_subfield_structure` VALUES ('340', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9710 INSERT INTO `marc_subfield_structure` VALUES ('340', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9711 INSERT INTO `marc_subfield_structure` VALUES ('340', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9712 INSERT INTO `marc_subfield_structure` VALUES ('340', 'a', 'Material base and configuration', 'Material base and configuration', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9713 INSERT INTO `marc_subfield_structure` VALUES ('340', 'b', 'Dimensions', 'Dimensions', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9714 INSERT INTO `marc_subfield_structure` VALUES ('340', 'c', 'Materials applied to surface', 'Materials applied to surface', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9715 INSERT INTO `marc_subfield_structure` VALUES ('340', 'd', 'Information recording technique', 'Information recording technique', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9716 INSERT INTO `marc_subfield_structure` VALUES ('340', 'e', 'Support', 'Support', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9717 INSERT INTO `marc_subfield_structure` VALUES ('340', 'f', 'Production rate/ratio', 'Production rate/ratio', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9718 INSERT INTO `marc_subfield_structure` VALUES ('340', 'h', 'Location within medium', 'Location within medium', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9719 INSERT INTO `marc_subfield_structure` VALUES ('340', 'i', 'Technical specifications of medium', 'Technical specifications of medium', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9720 INSERT INTO `marc_subfield_structure` VALUES ('342', '2', 'Reference method used', 'Reference method used', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9721 INSERT INTO `marc_subfield_structure` VALUES ('342', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9722 INSERT INTO `marc_subfield_structure` VALUES ('342', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9723 INSERT INTO `marc_subfield_structure` VALUES ('342', 'a', 'Name', 'Name', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9724 INSERT INTO `marc_subfield_structure` VALUES ('342', 'b', 'Coordinate or distance units', 'Coordinate or distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9725 INSERT INTO `marc_subfield_structure` VALUES ('342', 'c', 'Latitude resolution', 'Latitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9726 INSERT INTO `marc_subfield_structure` VALUES ('342', 'd', 'Longitude resolution', 'Longitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9727 INSERT INTO `marc_subfield_structure` VALUES ('342', 'e', 'Standard parallel or oblique line latitude', 'Standard parallel or oblique line latitude', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9728 INSERT INTO `marc_subfield_structure` VALUES ('342', 'f', 'Oblique line longitude', 'Oblique line longitude', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9729 INSERT INTO `marc_subfield_structure` VALUES ('342', 'g', 'Longitude of central meridian or projection center', 'Longitude of central meridian or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9730 INSERT INTO `marc_subfield_structure` VALUES ('342', 'h', 'Latitude of projection origin or projection center', 'Latitude of projection origin or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9731 INSERT INTO `marc_subfield_structure` VALUES ('342', 'i', 'False easting', 'False easting', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9732 INSERT INTO `marc_subfield_structure` VALUES ('342', 'j', 'False northing', 'False northing', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9733 INSERT INTO `marc_subfield_structure` VALUES ('342', 'k', 'Scale factor', 'Scale factor', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9734 INSERT INTO `marc_subfield_structure` VALUES ('342', 'l', 'Height of perspective point above surface', 'Height of perspective point above surface', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9735 INSERT INTO `marc_subfield_structure` VALUES ('342', 'm', 'Azimuthal angle', 'Azimuthal angle', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9736 INSERT INTO `marc_subfield_structure` VALUES ('342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole', 'Azimuth measure point longitude or straight vertical longitude from pole', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9737 INSERT INTO `marc_subfield_structure` VALUES ('342', 'o', 'Landsat number and path number', 'Landsat number and path number', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9738 INSERT INTO `marc_subfield_structure` VALUES ('342', 'p', 'Zone identifier', 'Zone identifier', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9739 INSERT INTO `marc_subfield_structure` VALUES ('342', 'q', 'Ellipsoid name', 'Ellipsoid name', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9740 INSERT INTO `marc_subfield_structure` VALUES ('342', 'r', 'Semi-major axis', 'Semi-major axis', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9741 INSERT INTO `marc_subfield_structure` VALUES ('342', 's', 'Denominator of flattening ratio', 'Denominator of flattening ratio', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9742 INSERT INTO `marc_subfield_structure` VALUES ('342', 't', 'Vertical resolution', 'Vertical resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9743 INSERT INTO `marc_subfield_structure` VALUES ('342', 'u', 'Vertical encoding method', 'Vertical encoding method', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9744 INSERT INTO `marc_subfield_structure` VALUES ('342', 'v', 'Local planar, local, or other projection or grid description', 'Local planar, local, or other projection or grid description', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9745 INSERT INTO `marc_subfield_structure` VALUES ('342', 'w', 'Local planar or local georeference information', 'Local planar or local georeference information', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9746 INSERT INTO `marc_subfield_structure` VALUES ('343', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9747 INSERT INTO `marc_subfield_structure` VALUES ('343', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9748 INSERT INTO `marc_subfield_structure` VALUES ('343', 'a', 'Planar coordinate encoding method', 'Planar coordinate encoding method', 1, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9749 INSERT INTO `marc_subfield_structure` VALUES ('343', 'b', 'Planar distance units', 'Planar distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9750 INSERT INTO `marc_subfield_structure` VALUES ('343', 'c', 'Abscissa resolution', 'Abscissa resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9751 INSERT INTO `marc_subfield_structure` VALUES ('343', 'd', 'Ordinate resolution', 'Ordinate resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9752 INSERT INTO `marc_subfield_structure` VALUES ('343', 'e', 'Distance resolution', 'Distance resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9753 INSERT INTO `marc_subfield_structure` VALUES ('343', 'f', 'Bearing resolution', 'Bearing resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9754 INSERT INTO `marc_subfield_structure` VALUES ('343', 'g', 'Bearing unit', 'Bearing unit', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9755 INSERT INTO `marc_subfield_structure` VALUES ('343', 'h', 'Bearing reference direction', 'Bearing reference direction', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9756 INSERT INTO `marc_subfield_structure` VALUES ('343', 'i', 'Bearing reference meridian', 'Bearing reference meridian', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
9757 INSERT INTO `marc_subfield_structure` VALUES ('350', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9758 INSERT INTO `marc_subfield_structure` VALUES ('350', 'a', 'Price', 'Price', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9759 INSERT INTO `marc_subfield_structure` VALUES ('350', 'b', 'Form of issue', 'Form of issue', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9760 INSERT INTO `marc_subfield_structure` VALUES ('351', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9761 INSERT INTO `marc_subfield_structure` VALUES ('351', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9762 INSERT INTO `marc_subfield_structure` VALUES ('351', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9763 INSERT INTO `marc_subfield_structure` VALUES ('351', 'a', 'Organization', 'Organization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9764 INSERT INTO `marc_subfield_structure` VALUES ('351', 'b', 'Arrangement', 'Arrangement', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9765 INSERT INTO `marc_subfield_structure` VALUES ('351', 'c', 'Hierarchical level', 'Hierarchical level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9766 INSERT INTO `marc_subfield_structure` VALUES ('352', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9767 INSERT INTO `marc_subfield_structure` VALUES ('352', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9768 INSERT INTO `marc_subfield_structure` VALUES ('352', 'a', 'Direct reference method', 'Direct reference method', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9769 INSERT INTO `marc_subfield_structure` VALUES ('352', 'b', 'Object type', 'Object type', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9770 INSERT INTO `marc_subfield_structure` VALUES ('352', 'c', 'Object count', 'Object count', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9771 INSERT INTO `marc_subfield_structure` VALUES ('352', 'd', 'Row count', 'Row count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9772 INSERT INTO `marc_subfield_structure` VALUES ('352', 'e', 'Column count', 'Column count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9773 INSERT INTO `marc_subfield_structure` VALUES ('352', 'f', 'Vertical count', 'Vertical count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9774 INSERT INTO `marc_subfield_structure` VALUES ('352', 'g', 'VPF topology level', 'VPF topology level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9775 INSERT INTO `marc_subfield_structure` VALUES ('352', 'i', 'Indirect reference description', 'Indirect reference description', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9776 INSERT INTO `marc_subfield_structure` VALUES ('355', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9777 INSERT INTO `marc_subfield_structure` VALUES ('355', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9778 INSERT INTO `marc_subfield_structure` VALUES ('355', 'a', 'Security classification', 'Security classification', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9779 INSERT INTO `marc_subfield_structure` VALUES ('355', 'b', 'Handling instructions', 'Handling instructions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9780 INSERT INTO `marc_subfield_structure` VALUES ('355', 'c', 'External dissemination information', 'External dissemination information', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9781 INSERT INTO `marc_subfield_structure` VALUES ('355', 'd', 'Downgrading or declassification event', 'Downgrading or declassification event', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9782 INSERT INTO `marc_subfield_structure` VALUES ('355', 'e', 'Classification system', 'Classification system', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9783 INSERT INTO `marc_subfield_structure` VALUES ('355', 'f', 'Country of origin code', 'Country of origin code', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9784 INSERT INTO `marc_subfield_structure` VALUES ('355', 'g', 'Downgrading date', 'Downgrading date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9785 INSERT INTO `marc_subfield_structure` VALUES ('355', 'h', 'Declassification date', 'Declassification date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9786 INSERT INTO `marc_subfield_structure` VALUES ('355', 'j', 'Authorization', 'Authorization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9787 INSERT INTO `marc_subfield_structure` VALUES ('357', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9788 INSERT INTO `marc_subfield_structure` VALUES ('357', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9789 INSERT INTO `marc_subfield_structure` VALUES ('357', 'a', 'Originator control term', 'Originator control term', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9790 INSERT INTO `marc_subfield_structure` VALUES ('357', 'b', 'Originating agency', 'Originating agency', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9791 INSERT INTO `marc_subfield_structure` VALUES ('357', 'c', 'Authorized recipients of material', 'Authorized recipients of material', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9792 INSERT INTO `marc_subfield_structure` VALUES ('357', 'g', 'Other restrictions', 'Other restrictions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9793 INSERT INTO `marc_subfield_structure` VALUES ('359', 'a', 'Rental price', 'Rental price', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9794 INSERT INTO `marc_subfield_structure` VALUES ('362', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9795 INSERT INTO `marc_subfield_structure` VALUES ('362', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9796 INSERT INTO `marc_subfield_structure` VALUES ('362', 'a', 'Dates of publication and/or sequential designation', 'Dates of publication and/or sequential designation', 0, 0, 'biblioitems.volumedesc', 3, NULL, NULL, '', NULL, -1, 'CF', '', '');
9797 INSERT INTO `marc_subfield_structure` VALUES ('362', 'z', 'Source of information', 'Source of information', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'CF', '', '');
9798 INSERT INTO `marc_subfield_structure` VALUES ('365', '2', 'Source of price type code', 'Source of price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9799 INSERT INTO `marc_subfield_structure` VALUES ('365', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
9800 INSERT INTO `marc_subfield_structure` VALUES ('365', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
9801 INSERT INTO `marc_subfield_structure` VALUES ('365', 'a', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9802 INSERT INTO `marc_subfield_structure` VALUES ('365', 'b', 'Price amount', 'Price amount', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9803 INSERT INTO `marc_subfield_structure` VALUES ('365', 'c', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9804 INSERT INTO `marc_subfield_structure` VALUES ('365', 'd', 'Unit of pricing', 'Unit of pricing', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9805 INSERT INTO `marc_subfield_structure` VALUES ('365', 'e', 'Price note', 'Price note', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9806 INSERT INTO `marc_subfield_structure` VALUES ('365', 'f', 'Price effective from', 'Price effective from', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9807 INSERT INTO `marc_subfield_structure` VALUES ('365', 'g', 'Price effective until', 'Price effective until', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9808 INSERT INTO `marc_subfield_structure` VALUES ('365', 'h', 'Tax rate 1', 'Tax rate 1', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9809 INSERT INTO `marc_subfield_structure` VALUES ('365', 'i', 'Tax rate 2', 'Tax rate 2', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9810 INSERT INTO `marc_subfield_structure` VALUES ('365', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9811 INSERT INTO `marc_subfield_structure` VALUES ('365', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9812 INSERT INTO `marc_subfield_structure` VALUES ('365', 'm', 'Identification of pricing entity', 'Identification of pricing entity', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9813 INSERT INTO `marc_subfield_structure` VALUES ('366', '2', 'Source of availability status code', 'Source of availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9814 INSERT INTO `marc_subfield_structure` VALUES ('366', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
9815 INSERT INTO `marc_subfield_structure` VALUES ('366', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
9816 INSERT INTO `marc_subfield_structure` VALUES ('366', 'a', 'Publishers\' compressed title identification', 'Publishers\' compressed title identification', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9817 INSERT INTO `marc_subfield_structure` VALUES ('366', 'b', 'Detailed date of publication', 'Detailed date of publication', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9818 INSERT INTO `marc_subfield_structure` VALUES ('366', 'c', 'Availability status code', 'Availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9819 INSERT INTO `marc_subfield_structure` VALUES ('366', 'd', 'Expected next availability date', 'Expected next availability date', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9820 INSERT INTO `marc_subfield_structure` VALUES ('366', 'e', 'Note', 'Note', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9821 INSERT INTO `marc_subfield_structure` VALUES ('366', 'f', 'Publishers\' discount category', 'Publishers\' discount category', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9822 INSERT INTO `marc_subfield_structure` VALUES ('366', 'g', 'Date made out of print', 'Date made out of print', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9823 INSERT INTO `marc_subfield_structure` VALUES ('366', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9824 INSERT INTO `marc_subfield_structure` VALUES ('366', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9825 INSERT INTO `marc_subfield_structure` VALUES ('366', 'm', 'Identification of agency', 'Identification of agency', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
9826 INSERT INTO `marc_subfield_structure` VALUES ('400', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', 0, -6, 'CF', '', '');
9827 INSERT INTO `marc_subfield_structure` VALUES ('400', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', 0, -6, 'CF', '', '');
9828 INSERT INTO `marc_subfield_structure` VALUES ('400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', 0, -6, 'CF', '', '');
9829 INSERT INTO `marc_subfield_structure` VALUES ('400', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
9830 INSERT INTO `marc_subfield_structure` VALUES ('400', 'a', 'Personal name', 'Personal name', 0, 0, '', 4, '', '', '', 0, -6, 'CF', '', '');
9831 INSERT INTO `marc_subfield_structure` VALUES ('400', 'b', 'Numeration', 'Numeration', 0, 0, '', 4, '', '', '', 0, -6, 'CF', '', '');
9832 INSERT INTO `marc_subfield_structure` VALUES ('400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 4, '', '', '', 0, -6, 'CF', '', '');
9833 INSERT INTO `marc_subfield_structure` VALUES ('400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 4, '', '', '', 0, -6, 'CF', '', '');
9834 INSERT INTO `marc_subfield_structure` VALUES ('400', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', 0, -6, 'CF', '', '');
9835 INSERT INTO `marc_subfield_structure` VALUES ('400', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', 0, -6, 'CF', '', '');
9836 INSERT INTO `marc_subfield_structure` VALUES ('400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', 0, -6, 'CF', '', '');
9837 INSERT INTO `marc_subfield_structure` VALUES ('400', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', 0, -6, 'CF', '', '');
9838 INSERT INTO `marc_subfield_structure` VALUES ('400', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', 0, -6, 'CF', '', '');
9839 INSERT INTO `marc_subfield_structure` VALUES ('400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'CF', '', '');
9840 INSERT INTO `marc_subfield_structure` VALUES ('400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'CF', '', '');
9841 INSERT INTO `marc_subfield_structure` VALUES ('400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 4, '', '', '', 0, -6, 'CF', '', '');
9842 INSERT INTO `marc_subfield_structure` VALUES ('400', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', 0, -6, 'CF', '', '');
9843 INSERT INTO `marc_subfield_structure` VALUES ('400', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', 0, -6, 'CF', '', '');
9844 INSERT INTO `marc_subfield_structure` VALUES ('400', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9845 INSERT INTO `marc_subfield_structure` VALUES ('400', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9846 INSERT INTO `marc_subfield_structure` VALUES ('410', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9847 INSERT INTO `marc_subfield_structure` VALUES ('410', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9848 INSERT INTO `marc_subfield_structure` VALUES ('410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9849 INSERT INTO `marc_subfield_structure` VALUES ('410', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'CF', '', '');
9850 INSERT INTO `marc_subfield_structure` VALUES ('410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9851 INSERT INTO `marc_subfield_structure` VALUES ('410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9852 INSERT INTO `marc_subfield_structure` VALUES ('410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9853 INSERT INTO `marc_subfield_structure` VALUES ('410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9854 INSERT INTO `marc_subfield_structure` VALUES ('410', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9855 INSERT INTO `marc_subfield_structure` VALUES ('410', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9856 INSERT INTO `marc_subfield_structure` VALUES ('410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9857 INSERT INTO `marc_subfield_structure` VALUES ('410', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9858 INSERT INTO `marc_subfield_structure` VALUES ('410', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9859 INSERT INTO `marc_subfield_structure` VALUES ('410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9860 INSERT INTO `marc_subfield_structure` VALUES ('410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9861 INSERT INTO `marc_subfield_structure` VALUES ('410', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9862 INSERT INTO `marc_subfield_structure` VALUES ('410', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9863 INSERT INTO `marc_subfield_structure` VALUES ('410', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9864 INSERT INTO `marc_subfield_structure` VALUES ('410', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9865 INSERT INTO `marc_subfield_structure` VALUES ('411', '4', 'Relator code', 'Relator code', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'CF', '', '');
9866 INSERT INTO `marc_subfield_structure` VALUES ('411', '6', 'Linkage', 'Linkage', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'CF', '', '');
9867 INSERT INTO `marc_subfield_structure` VALUES ('411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'CF', '', '');
9868 INSERT INTO `marc_subfield_structure` VALUES ('411', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
9869 INSERT INTO `marc_subfield_structure` VALUES ('411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'CF', '', '');
9870 INSERT INTO `marc_subfield_structure` VALUES ('411', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'CF', '', '');
9871 INSERT INTO `marc_subfield_structure` VALUES ('411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'CF', '', '');
9872 INSERT INTO `marc_subfield_structure` VALUES ('411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'CF', '', '');
9873 INSERT INTO `marc_subfield_structure` VALUES ('411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'CF', '', '');
9874 INSERT INTO `marc_subfield_structure` VALUES ('411', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'CF', '', '');
9875 INSERT INTO `marc_subfield_structure` VALUES ('411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'CF', '', '');
9876 INSERT INTO `marc_subfield_structure` VALUES ('411', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'CF', '', '');
9877 INSERT INTO `marc_subfield_structure` VALUES ('411', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'CF', '', '');
9878 INSERT INTO `marc_subfield_structure` VALUES ('411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'CF', '', '');
9879 INSERT INTO `marc_subfield_structure` VALUES ('411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'CF', '', '');
9880 INSERT INTO `marc_subfield_structure` VALUES ('411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'CF', '', '');
9881 INSERT INTO `marc_subfield_structure` VALUES ('411', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'CF', '', '');
9882 INSERT INTO `marc_subfield_structure` VALUES ('411', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'CF', '', '');
9883 INSERT INTO `marc_subfield_structure` VALUES ('411', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9884 INSERT INTO `marc_subfield_structure` VALUES ('411', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9885 INSERT INTO `marc_subfield_structure` VALUES ('440', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9886 INSERT INTO `marc_subfield_structure` VALUES ('440', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9887 INSERT INTO `marc_subfield_structure` VALUES ('440', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
9888 INSERT INTO `marc_subfield_structure` VALUES ('440', 'a', 'Title', 'Title', 0, 0, 'biblio.seriestitle', 4, '', '', '', NULL, 0, 'CF', '', '');
9889 INSERT INTO `marc_subfield_structure` VALUES ('440', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 'biblioitems.number', 4, '', '', '', NULL, 0, 'CF', '', '');
9890 INSERT INTO `marc_subfield_structure` VALUES ('440', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, 0, 'CF', '', '');
9891 INSERT INTO `marc_subfield_structure` VALUES ('440', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, 'biblioitems.volume', 4, '', '', '', NULL, 0, 'CF', '', '');
9892 INSERT INTO `marc_subfield_structure` VALUES ('440', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, 0, 'CF', '', '');
9893 INSERT INTO `marc_subfield_structure` VALUES ('490', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9894 INSERT INTO `marc_subfield_structure` VALUES ('490', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', NULL, NULL, -6, 'CF', '', '');
9895 INSERT INTO `marc_subfield_structure` VALUES ('490', 'a', 'Series statement', 'Series statement', 1, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9896 INSERT INTO `marc_subfield_structure` VALUES ('490', 'l', 'Library of Congress call number', 'Library of Congress call number', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9897 INSERT INTO `marc_subfield_structure` VALUES ('490', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 1, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9898 INSERT INTO `marc_subfield_structure` VALUES ('490', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'CF', '', '');
9899 INSERT INTO `marc_subfield_structure` VALUES ('500', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9900 INSERT INTO `marc_subfield_structure` VALUES ('500', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9901 INSERT INTO `marc_subfield_structure` VALUES ('500', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9902 INSERT INTO `marc_subfield_structure` VALUES ('500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9903 INSERT INTO `marc_subfield_structure` VALUES ('500', 'a', 'General note', 'General note', 0, 0, 'biblio.notes', 5, '', '', '', NULL, -1, 'CF', '', '');
9904 INSERT INTO `marc_subfield_structure` VALUES ('500', 'l', 'Library of Congress call number (SE) [OBSOLETE]', 'Library of Congress call number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9905 INSERT INTO `marc_subfield_structure` VALUES ('500', 'n', 'n (RLIN) [OBSOLETE]', 'n (RLIN) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9906 INSERT INTO `marc_subfield_structure` VALUES ('500', 'x', 'International Standard Serial Number (SE) [OBSOLETE]', 'International Standard Serial Number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9907 INSERT INTO `marc_subfield_structure` VALUES ('500', 'z', 'Source of note information (AM SE) [OBSOLETE]', 'Source of note information (AM SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9908 INSERT INTO `marc_subfield_structure` VALUES ('501', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9909 INSERT INTO `marc_subfield_structure` VALUES ('501', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9910 INSERT INTO `marc_subfield_structure` VALUES ('501', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9911 INSERT INTO `marc_subfield_structure` VALUES ('501', 'a', 'With note', 'With note', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9912 INSERT INTO `marc_subfield_structure` VALUES ('502', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9913 INSERT INTO `marc_subfield_structure` VALUES ('502', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9914 INSERT INTO `marc_subfield_structure` VALUES ('502', 'a', 'Dissertation note', 'Dissertation note', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9915 INSERT INTO `marc_subfield_structure` VALUES ('503', '8', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9916 INSERT INTO `marc_subfield_structure` VALUES ('503', 'a', 'Bibliographic history note', 'Bibliographic history note', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9917 INSERT INTO `marc_subfield_structure` VALUES ('504', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
9918 INSERT INTO `marc_subfield_structure` VALUES ('504', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
9919 INSERT INTO `marc_subfield_structure` VALUES ('504', 'a', 'Bibliography, etc', 'Bibliography, etc', 0, 0, '', 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
9920 INSERT INTO `marc_subfield_structure` VALUES ('504', 'b', 'Number of references', 'Number of references', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
9921 INSERT INTO `marc_subfield_structure` VALUES ('505', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9922 INSERT INTO `marc_subfield_structure` VALUES ('505', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9923 INSERT INTO `marc_subfield_structure` VALUES ('505', 'a', 'Formatted contents note', 'Formatted contents note', 0, 0, '', 5, '', '', '', NULL, -1, 'CF', '', '');
9924 INSERT INTO `marc_subfield_structure` VALUES ('505', 'g', 'Miscellaneous information', 'Miscellaneous information', 1, 0, '', 5, '', '', '', NULL, -1, 'CF', '', '');
9925 INSERT INTO `marc_subfield_structure` VALUES ('505', 'r', 'Statement of responsibility', 'Statement of responsibility', 1, 0, '', 5, '', '', '', NULL, -1, 'CF', '', '');
9926 INSERT INTO `marc_subfield_structure` VALUES ('505', 't', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -1, 'CF', '', '');
9927 INSERT INTO `marc_subfield_structure` VALUES ('505', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'CF', '', '');
9928 INSERT INTO `marc_subfield_structure` VALUES ('506', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9929 INSERT INTO `marc_subfield_structure` VALUES ('506', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9930 INSERT INTO `marc_subfield_structure` VALUES ('506', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9931 INSERT INTO `marc_subfield_structure` VALUES ('506', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9932 INSERT INTO `marc_subfield_structure` VALUES ('506', 'a', 'Terms governing access', 'Terms governing access', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9933 INSERT INTO `marc_subfield_structure` VALUES ('506', 'b', 'Jurisdiction', 'Jurisdiction', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9934 INSERT INTO `marc_subfield_structure` VALUES ('506', 'c', 'Physical access provisions', 'Physical access provisions', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9935 INSERT INTO `marc_subfield_structure` VALUES ('506', 'd', 'Authorized users', 'Authorized users', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9936 INSERT INTO `marc_subfield_structure` VALUES ('506', 'e', 'Authorization', 'Authorization', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9937 INSERT INTO `marc_subfield_structure` VALUES ('506', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'CF', '', '');
9938 INSERT INTO `marc_subfield_structure` VALUES ('507', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9939 INSERT INTO `marc_subfield_structure` VALUES ('507', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9940 INSERT INTO `marc_subfield_structure` VALUES ('507', 'a', 'Representative fraction of scale note', 'Representative fraction of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9941 INSERT INTO `marc_subfield_structure` VALUES ('507', 'b', 'Remainder of scale note', 'Remainder of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9942 INSERT INTO `marc_subfield_structure` VALUES ('508', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9943 INSERT INTO `marc_subfield_structure` VALUES ('508', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
9944 INSERT INTO `marc_subfield_structure` VALUES ('508', 'a', 'Creation/production credits note', 'Creation/production credits note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
9945 INSERT INTO `marc_subfield_structure` VALUES ('509', 'a', 'Informal Notes', 'Informal Notes', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
9946 INSERT INTO `marc_subfield_structure` VALUES ('510', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9947 INSERT INTO `marc_subfield_structure` VALUES ('510', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9948 INSERT INTO `marc_subfield_structure` VALUES ('510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9949 INSERT INTO `marc_subfield_structure` VALUES ('510', 'a', 'Name of source', 'Name of source', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9950 INSERT INTO `marc_subfield_structure` VALUES ('510', 'b', 'Coverage of source', 'Coverage of source', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9951 INSERT INTO `marc_subfield_structure` VALUES ('510', 'c', 'Location within source', 'Location within source', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9952 INSERT INTO `marc_subfield_structure` VALUES ('510', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9953 INSERT INTO `marc_subfield_structure` VALUES ('511', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9954 INSERT INTO `marc_subfield_structure` VALUES ('511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9955 INSERT INTO `marc_subfield_structure` VALUES ('511', 'a', 'Participant or performer note', 'Participant or performer note', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9956 INSERT INTO `marc_subfield_structure` VALUES ('512', '6', 'Linkage', 'Linkage', 0, 0, '', -1, '', '', '', NULL, -6, 'CF', '', '');
9957 INSERT INTO `marc_subfield_structure` VALUES ('512', 'a', 'Earlier or later volumes separately cataloged note', 'Earlier or later volumes separately cataloged note', 0, 0, '', -1, '', '', '', NULL, -6, 'CF', '', '');
9958 INSERT INTO `marc_subfield_structure` VALUES ('513', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9959 INSERT INTO `marc_subfield_structure` VALUES ('513', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9960 INSERT INTO `marc_subfield_structure` VALUES ('513', 'a', 'Type of report', 'Type of report', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9961 INSERT INTO `marc_subfield_structure` VALUES ('513', 'b', 'Period covered', 'Period covered', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9962 INSERT INTO `marc_subfield_structure` VALUES ('514', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9963 INSERT INTO `marc_subfield_structure` VALUES ('514', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9964 INSERT INTO `marc_subfield_structure` VALUES ('514', 'a', 'Attribute accuracy report', 'Attribute accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9965 INSERT INTO `marc_subfield_structure` VALUES ('514', 'b', 'Attribute accuracy value', 'Attribute accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9966 INSERT INTO `marc_subfield_structure` VALUES ('514', 'c', 'Attribute accuracy explanation', 'Attribute accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9967 INSERT INTO `marc_subfield_structure` VALUES ('514', 'd', 'Logical consistency report', 'Logical consistency report', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9968 INSERT INTO `marc_subfield_structure` VALUES ('514', 'e', 'Completeness report', 'Completeness report', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9969 INSERT INTO `marc_subfield_structure` VALUES ('514', 'f', 'Horizontal position accuracy report', 'Horizontal position accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9970 INSERT INTO `marc_subfield_structure` VALUES ('514', 'g', 'Horizontal position accuracy value', 'Horizontal position accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9971 INSERT INTO `marc_subfield_structure` VALUES ('514', 'h', 'Horizontal position accuracy explanation', 'Horizontal position accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9972 INSERT INTO `marc_subfield_structure` VALUES ('514', 'i', 'Vertical positional accuracy report', 'Vertical positional accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9973 INSERT INTO `marc_subfield_structure` VALUES ('514', 'j', 'Vertical positional accuracy value', 'Vertical positional accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9974 INSERT INTO `marc_subfield_structure` VALUES ('514', 'k', 'Vertical positional accuracy explanation', 'Vertical positional accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9975 INSERT INTO `marc_subfield_structure` VALUES ('514', 'm', 'Cloud cover', 'Cloud cover', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9976 INSERT INTO `marc_subfield_structure` VALUES ('514', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'CF', '', '');
9977 INSERT INTO `marc_subfield_structure` VALUES ('514', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9978 INSERT INTO `marc_subfield_structure` VALUES ('515', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9979 INSERT INTO `marc_subfield_structure` VALUES ('515', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9980 INSERT INTO `marc_subfield_structure` VALUES ('515', 'a', 'Numbering peculiarities note', 'Numbering peculiarities note', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9981 INSERT INTO `marc_subfield_structure` VALUES ('515', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, '', -1, '', '', '', NULL, -6, 'CF', '', '');
9982 INSERT INTO `marc_subfield_structure` VALUES ('516', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9983 INSERT INTO `marc_subfield_structure` VALUES ('516', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9984 INSERT INTO `marc_subfield_structure` VALUES ('516', 'a', 'Type of computer file or data note', 'Type of computer file or data note', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9985 INSERT INTO `marc_subfield_structure` VALUES ('517', 'a', 'Different formats', 'Different formats', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9986 INSERT INTO `marc_subfield_structure` VALUES ('517', 'b', 'Content descriptors', 'Content descriptors', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9987 INSERT INTO `marc_subfield_structure` VALUES ('517', 'c', 'Additional animation techniques', 'Additional animation techniques', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9988 INSERT INTO `marc_subfield_structure` VALUES ('518', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9989 INSERT INTO `marc_subfield_structure` VALUES ('518', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9990 INSERT INTO `marc_subfield_structure` VALUES ('518', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9991 INSERT INTO `marc_subfield_structure` VALUES ('518', 'a', 'Date/time and place of an event note', 'Date/time and place of an event note', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9992 INSERT INTO `marc_subfield_structure` VALUES ('520', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9993 INSERT INTO `marc_subfield_structure` VALUES ('520', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9994 INSERT INTO `marc_subfield_structure` VALUES ('520', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9995 INSERT INTO `marc_subfield_structure` VALUES ('520', 'a', 'Summary, etc', 'Summary, etc', 0, 0, 'biblio.abstract', 5, '', '', '', NULL, -1, 'CF', '', '');
9996 INSERT INTO `marc_subfield_structure` VALUES ('520', 'b', 'Expansion of summary note', 'Expansion of summary note', 0, 0, '', 5, '', '', '', NULL, -1, 'CF', '', '');
9997 INSERT INTO `marc_subfield_structure` VALUES ('520', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'CF', '', '');
9998 INSERT INTO `marc_subfield_structure` VALUES ('520', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
9999 INSERT INTO `marc_subfield_structure` VALUES ('521', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10000 INSERT INTO `marc_subfield_structure` VALUES ('521', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10001 INSERT INTO `marc_subfield_structure` VALUES ('521', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10002 INSERT INTO `marc_subfield_structure` VALUES ('521', 'a', 'Target audience note', 'Target audience note', 1, 0, NULL, 5, NULL, NULL, '', NULL, 0, 'CF', '', '');
10003 INSERT INTO `marc_subfield_structure` VALUES ('521', 'b', 'Source', 'Source', 0, 0, NULL, 5, NULL, NULL, '', NULL, 0, 'CF', '', '');
10004 INSERT INTO `marc_subfield_structure` VALUES ('522', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10005 INSERT INTO `marc_subfield_structure` VALUES ('522', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10006 INSERT INTO `marc_subfield_structure` VALUES ('522', 'a', 'Geographic coverage note', 'Geographic coverage note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'CF', '', '');
10007 INSERT INTO `marc_subfield_structure` VALUES ('523', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10008 INSERT INTO `marc_subfield_structure` VALUES ('523', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10009 INSERT INTO `marc_subfield_structure` VALUES ('523', 'a', 'Time period of content note', 'Time period of content note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10010 INSERT INTO `marc_subfield_structure` VALUES ('524', '2', 'Source of schema used', 'Source of schema used', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10011 INSERT INTO `marc_subfield_structure` VALUES ('524', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10012 INSERT INTO `marc_subfield_structure` VALUES ('524', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10013 INSERT INTO `marc_subfield_structure` VALUES ('524', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10014 INSERT INTO `marc_subfield_structure` VALUES ('524', 'a', 'Preferred citation of described materials note', 'Preferred citation of described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10015 INSERT INTO `marc_subfield_structure` VALUES ('525', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10016 INSERT INTO `marc_subfield_structure` VALUES ('525', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10017 INSERT INTO `marc_subfield_structure` VALUES ('525', 'a', 'Supplement note', 'Supplement note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10018 INSERT INTO `marc_subfield_structure` VALUES ('525', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10019 INSERT INTO `marc_subfield_structure` VALUES ('526', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10020 INSERT INTO `marc_subfield_structure` VALUES ('526', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10021 INSERT INTO `marc_subfield_structure` VALUES ('526', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10022 INSERT INTO `marc_subfield_structure` VALUES ('526', 'a', 'Program name', 'Program name', 0, 0, '', 5, '', '', '', NULL, -1, 'CF', '', '');
10023 INSERT INTO `marc_subfield_structure` VALUES ('526', 'b', 'Interest level', 'Interest level', 0, 0, '', 5, '', '', '', NULL, -1, 'CF', '', '');
10024 INSERT INTO `marc_subfield_structure` VALUES ('526', 'c', 'Reading level', 'Reading level', 0, 0, '', 5, '', '', '', NULL, -1, 'CF', '', '');
10025 INSERT INTO `marc_subfield_structure` VALUES ('526', 'd', 'Title point value', 'Title point value', 0, 0, '', 5, '', '', '', NULL, -1, 'CF', '', '');
10026 INSERT INTO `marc_subfield_structure` VALUES ('526', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10027 INSERT INTO `marc_subfield_structure` VALUES ('526', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 5, '', '', '', NULL, 6, 'CF', '', '');
10028 INSERT INTO `marc_subfield_structure` VALUES ('526', 'z', 'Public note', 'Public note', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10029 INSERT INTO `marc_subfield_structure` VALUES ('527', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10030 INSERT INTO `marc_subfield_structure` VALUES ('527', 'a', 'Censorship note', 'Censorship note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10031 INSERT INTO `marc_subfield_structure` VALUES ('530', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10032 INSERT INTO `marc_subfield_structure` VALUES ('530', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10033 INSERT INTO `marc_subfield_structure` VALUES ('530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10034 INSERT INTO `marc_subfield_structure` VALUES ('530', 'a', 'Additional physical form available note', 'Additional physical form available note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10035 INSERT INTO `marc_subfield_structure` VALUES ('530', 'b', 'Availability source', 'Availability source', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10036 INSERT INTO `marc_subfield_structure` VALUES ('530', 'c', 'Availability conditions', 'Availability conditions', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10037 INSERT INTO `marc_subfield_structure` VALUES ('530', 'd', 'Order number', 'Order number', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10038 INSERT INTO `marc_subfield_structure` VALUES ('530', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'CF', '', '');
10039 INSERT INTO `marc_subfield_structure` VALUES ('530', 'z', 'Source of note information (AM CF VM SE) [OBSOLETE]', 'Source of note information (AM CF VM SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10040 INSERT INTO `marc_subfield_structure` VALUES ('533', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10041 INSERT INTO `marc_subfield_structure` VALUES ('533', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10042 INSERT INTO `marc_subfield_structure` VALUES ('533', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10043 INSERT INTO `marc_subfield_structure` VALUES ('533', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10044 INSERT INTO `marc_subfield_structure` VALUES ('533', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10045 INSERT INTO `marc_subfield_structure` VALUES ('533', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10046 INSERT INTO `marc_subfield_structure` VALUES ('533', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10047 INSERT INTO `marc_subfield_structure` VALUES ('533', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10048 INSERT INTO `marc_subfield_structure` VALUES ('533', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10049 INSERT INTO `marc_subfield_structure` VALUES ('533', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10050 INSERT INTO `marc_subfield_structure` VALUES ('533', 'm', 'Dates and/or sequential designation of issues reproduced', 'Dates and/or sequential designation of issues reproduced', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10051 INSERT INTO `marc_subfield_structure` VALUES ('533', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10052 INSERT INTO `marc_subfield_structure` VALUES ('534', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10053 INSERT INTO `marc_subfield_structure` VALUES ('534', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10054 INSERT INTO `marc_subfield_structure` VALUES ('534', 'a', 'Main entry of original', 'Main entry of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10055 INSERT INTO `marc_subfield_structure` VALUES ('534', 'b', 'Edition statement of original', 'Edition statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10056 INSERT INTO `marc_subfield_structure` VALUES ('534', 'c', 'Publication, distribution, etc', 'Publication, distribution, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10057 INSERT INTO `marc_subfield_structure` VALUES ('534', 'e', 'Physical description, etc', 'Physical description, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10058 INSERT INTO `marc_subfield_structure` VALUES ('534', 'f', 'Series statement of original', 'Series statement of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10059 INSERT INTO `marc_subfield_structure` VALUES ('534', 'k', 'Key title of original', 'Key title of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10060 INSERT INTO `marc_subfield_structure` VALUES ('534', 'l', 'Location of original', 'Location of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10061 INSERT INTO `marc_subfield_structure` VALUES ('534', 'm', 'Material specific details', 'Material specific details', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10062 INSERT INTO `marc_subfield_structure` VALUES ('534', 'n', 'Note about original', 'Note about original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10063 INSERT INTO `marc_subfield_structure` VALUES ('534', 'p', 'Introductory phrase', 'Introductory phrase', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10064 INSERT INTO `marc_subfield_structure` VALUES ('534', 't', 'Title statement of original', 'Title statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10065 INSERT INTO `marc_subfield_structure` VALUES ('534', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10066 INSERT INTO `marc_subfield_structure` VALUES ('534', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10067 INSERT INTO `marc_subfield_structure` VALUES ('535', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10068 INSERT INTO `marc_subfield_structure` VALUES ('535', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10069 INSERT INTO `marc_subfield_structure` VALUES ('535', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10070 INSERT INTO `marc_subfield_structure` VALUES ('535', 'a', 'Custodian', 'Custodian', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10071 INSERT INTO `marc_subfield_structure` VALUES ('535', 'b', 'Postal address', 'Postal address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10072 INSERT INTO `marc_subfield_structure` VALUES ('535', 'c', 'Country', 'Country', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10073 INSERT INTO `marc_subfield_structure` VALUES ('535', 'd', 'Telecommunications address', 'Telecommunications address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10074 INSERT INTO `marc_subfield_structure` VALUES ('535', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10075 INSERT INTO `marc_subfield_structure` VALUES ('536', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10076 INSERT INTO `marc_subfield_structure` VALUES ('536', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10077 INSERT INTO `marc_subfield_structure` VALUES ('536', 'a', 'Text of note', 'Text of note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10078 INSERT INTO `marc_subfield_structure` VALUES ('536', 'b', 'Contract number', 'Contract number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10079 INSERT INTO `marc_subfield_structure` VALUES ('536', 'c', 'Grant number', 'Grant number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10080 INSERT INTO `marc_subfield_structure` VALUES ('536', 'd', 'Undifferentiated number', 'Undifferentiated number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10081 INSERT INTO `marc_subfield_structure` VALUES ('536', 'e', 'Program element number', 'Program element number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10082 INSERT INTO `marc_subfield_structure` VALUES ('536', 'f', 'Project number', 'Project number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10083 INSERT INTO `marc_subfield_structure` VALUES ('536', 'g', 'Task number', 'Task number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10084 INSERT INTO `marc_subfield_structure` VALUES ('536', 'h', 'Work unit number', 'Work unit number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10085 INSERT INTO `marc_subfield_structure` VALUES ('537', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10086 INSERT INTO `marc_subfield_structure` VALUES ('537', 'a', 'Source of data note', 'Source of data note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10087 INSERT INTO `marc_subfield_structure` VALUES ('538', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10088 INSERT INTO `marc_subfield_structure` VALUES ('538', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10089 INSERT INTO `marc_subfield_structure` VALUES ('538', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10090 INSERT INTO `marc_subfield_structure` VALUES ('538', 'a', 'System details note', 'System details note', 0, 0, '', 5, '', '', '', NULL, -1, 'CF', '', '');
10091 INSERT INTO `marc_subfield_structure` VALUES ('538', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -1, 'CF', '', '');
10092 INSERT INTO `marc_subfield_structure` VALUES ('538', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'CF', '', '');
10093 INSERT INTO `marc_subfield_structure` VALUES ('540', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10094 INSERT INTO `marc_subfield_structure` VALUES ('540', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10095 INSERT INTO `marc_subfield_structure` VALUES ('540', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10096 INSERT INTO `marc_subfield_structure` VALUES ('540', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10097 INSERT INTO `marc_subfield_structure` VALUES ('540', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10098 INSERT INTO `marc_subfield_structure` VALUES ('540', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10099 INSERT INTO `marc_subfield_structure` VALUES ('540', 'c', 'Authorization', 'Authorization', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10100 INSERT INTO `marc_subfield_structure` VALUES ('540', 'd', 'Authorized users', 'Authorized users', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10101 INSERT INTO `marc_subfield_structure` VALUES ('540', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'CF', '', '');
10102 INSERT INTO `marc_subfield_structure` VALUES ('541', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
10103 INSERT INTO `marc_subfield_structure` VALUES ('541', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
10104 INSERT INTO `marc_subfield_structure` VALUES ('541', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
10105 INSERT INTO `marc_subfield_structure` VALUES ('541', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
10106 INSERT INTO `marc_subfield_structure` VALUES ('541', 'a', 'Source of acquisition', 'Source of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'CF', '', '');
10107 INSERT INTO `marc_subfield_structure` VALUES ('541', 'b', 'Address', 'Address', 0, 0, '', 9, '', '', '', NULL, 1, 'CF', '', '');
10108 INSERT INTO `marc_subfield_structure` VALUES ('541', 'c', 'Method of acquisition', 'Method of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'CF', '', '');
10109 INSERT INTO `marc_subfield_structure` VALUES ('541', 'd', 'Date of acquisition', 'Date of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'CF', '', '');
10110 INSERT INTO `marc_subfield_structure` VALUES ('541', 'e', 'Accession number', 'Accession number', 0, 0, '', 9, '', '', '', NULL, 1, 'CF', '', '');
10111 INSERT INTO `marc_subfield_structure` VALUES ('541', 'f', 'Owner', 'Owner', 0, 0, '', 9, '', '', '', NULL, 1, 'CF', '', '');
10112 INSERT INTO `marc_subfield_structure` VALUES ('541', 'h', 'Purchase price', 'Purchase price', 0, 0, '', 9, '', '', '', NULL, 1, 'CF', '', '');
10113 INSERT INTO `marc_subfield_structure` VALUES ('541', 'n', 'Extent', 'Extent', 0, 0, '', 9, '', '', '', NULL, 1, 'CF', '', '');
10114 INSERT INTO `marc_subfield_structure` VALUES ('541', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, 1, 'CF', '', '');
10115 INSERT INTO `marc_subfield_structure` VALUES ('543', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10116 INSERT INTO `marc_subfield_structure` VALUES ('543', 'a', 'Solicitation information note', 'Solicitation information note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10117 INSERT INTO `marc_subfield_structure` VALUES ('544', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10118 INSERT INTO `marc_subfield_structure` VALUES ('544', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10119 INSERT INTO `marc_subfield_structure` VALUES ('544', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10120 INSERT INTO `marc_subfield_structure` VALUES ('544', 'a', 'Custodian', 'Custodian', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10121 INSERT INTO `marc_subfield_structure` VALUES ('544', 'b', 'Address', 'Address', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10122 INSERT INTO `marc_subfield_structure` VALUES ('544', 'c', 'Country', 'Country', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10123 INSERT INTO `marc_subfield_structure` VALUES ('544', 'd', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10124 INSERT INTO `marc_subfield_structure` VALUES ('544', 'e', 'Provenance', 'Provenance', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10125 INSERT INTO `marc_subfield_structure` VALUES ('544', 'n', 'Note', 'Note', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10126 INSERT INTO `marc_subfield_structure` VALUES ('545', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10127 INSERT INTO `marc_subfield_structure` VALUES ('545', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10128 INSERT INTO `marc_subfield_structure` VALUES ('545', 'a', 'Biographical or historical note', 'Biographical or historical note', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10129 INSERT INTO `marc_subfield_structure` VALUES ('545', 'b', 'Expansion', 'Expansion', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10130 INSERT INTO `marc_subfield_structure` VALUES ('545', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'CF', '', '');
10131 INSERT INTO `marc_subfield_structure` VALUES ('546', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10132 INSERT INTO `marc_subfield_structure` VALUES ('546', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10133 INSERT INTO `marc_subfield_structure` VALUES ('546', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10134 INSERT INTO `marc_subfield_structure` VALUES ('546', 'a', 'Language note', 'Language note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'CF', '', '');
10135 INSERT INTO `marc_subfield_structure` VALUES ('546', 'b', 'Information code or alphabet', 'Information code or alphabet', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'CF', '', '');
10136 INSERT INTO `marc_subfield_structure` VALUES ('546', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10137 INSERT INTO `marc_subfield_structure` VALUES ('547', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10138 INSERT INTO `marc_subfield_structure` VALUES ('547', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10139 INSERT INTO `marc_subfield_structure` VALUES ('547', 'a', 'Former title complexity note', 'Former title complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10140 INSERT INTO `marc_subfield_structure` VALUES ('547', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10141 INSERT INTO `marc_subfield_structure` VALUES ('550', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10142 INSERT INTO `marc_subfield_structure` VALUES ('550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10143 INSERT INTO `marc_subfield_structure` VALUES ('550', 'a', 'Issuing body note', 'Issuing body note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10144 INSERT INTO `marc_subfield_structure` VALUES ('550', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10145 INSERT INTO `marc_subfield_structure` VALUES ('552', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10146 INSERT INTO `marc_subfield_structure` VALUES ('552', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10147 INSERT INTO `marc_subfield_structure` VALUES ('552', 'a', 'Entity type label', 'Entity type label', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10148 INSERT INTO `marc_subfield_structure` VALUES ('552', 'b', 'Entity type definition and source', 'Entity type definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10149 INSERT INTO `marc_subfield_structure` VALUES ('552', 'c', 'Attribute label', 'Attribute label', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10150 INSERT INTO `marc_subfield_structure` VALUES ('552', 'd', 'Attribute definition and source', 'Attribute definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10151 INSERT INTO `marc_subfield_structure` VALUES ('552', 'e', 'Enumerated domain value', 'Enumerated domain value', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10152 INSERT INTO `marc_subfield_structure` VALUES ('552', 'f', 'Enumerated domain value definition and source', 'Enumerated domain value definition and source', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10153 INSERT INTO `marc_subfield_structure` VALUES ('552', 'g', 'Range domain minimum and maximum', 'Range domain minimum and maximum', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10154 INSERT INTO `marc_subfield_structure` VALUES ('552', 'h', 'Codeset name and source', 'Codeset name and source', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10155 INSERT INTO `marc_subfield_structure` VALUES ('552', 'i', 'Unrepresentable domain', 'Unrepresentable domain', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10156 INSERT INTO `marc_subfield_structure` VALUES ('552', 'j', 'Attribute units of measurement and resolution', 'Attribute units of measurement and resolution', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10157 INSERT INTO `marc_subfield_structure` VALUES ('552', 'k', 'Beginning date and ending date of attribute values', 'Beginning date and ending date of attribute values', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10158 INSERT INTO `marc_subfield_structure` VALUES ('552', 'l', 'Attribute value accuracy', 'Attribute value accuracy', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10159 INSERT INTO `marc_subfield_structure` VALUES ('552', 'm', 'Attribute value accuracy explanation', 'Attribute value accuracy explanation', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10160 INSERT INTO `marc_subfield_structure` VALUES ('552', 'n', 'Attribute measurement frequency', 'Attribute measurement frequency', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10161 INSERT INTO `marc_subfield_structure` VALUES ('552', 'o', 'Entity and attribute overview', 'Entity and attribute overview', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10162 INSERT INTO `marc_subfield_structure` VALUES ('552', 'p', 'Entity and attribute detail citation', 'Entity and attribute detail citation', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10163 INSERT INTO `marc_subfield_structure` VALUES ('552', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'CF', '', '');
10164 INSERT INTO `marc_subfield_structure` VALUES ('552', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10165 INSERT INTO `marc_subfield_structure` VALUES ('555', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10166 INSERT INTO `marc_subfield_structure` VALUES ('555', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10167 INSERT INTO `marc_subfield_structure` VALUES ('555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10168 INSERT INTO `marc_subfield_structure` VALUES ('555', 'a', 'Cumulative index/finding aids note', 'Cumulative index/finding aids note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10169 INSERT INTO `marc_subfield_structure` VALUES ('555', 'b', 'Availability source', 'Availability source', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10170 INSERT INTO `marc_subfield_structure` VALUES ('555', 'c', 'Degree of control', 'Degree of control', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10171 INSERT INTO `marc_subfield_structure` VALUES ('555', 'd', 'Bibliographic reference', 'Bibliographic reference', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10172 INSERT INTO `marc_subfield_structure` VALUES ('555', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'CF', '', '');
10173 INSERT INTO `marc_subfield_structure` VALUES ('556', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10174 INSERT INTO `marc_subfield_structure` VALUES ('556', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10175 INSERT INTO `marc_subfield_structure` VALUES ('556', 'a', 'Information about documentation note', 'Information about documentation note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10176 INSERT INTO `marc_subfield_structure` VALUES ('556', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10177 INSERT INTO `marc_subfield_structure` VALUES ('561', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10178 INSERT INTO `marc_subfield_structure` VALUES ('561', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10179 INSERT INTO `marc_subfield_structure` VALUES ('561', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10180 INSERT INTO `marc_subfield_structure` VALUES ('561', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10181 INSERT INTO `marc_subfield_structure` VALUES ('561', 'a', 'History', 'History', 0, 0, '', 5, '', '', '', NULL, 6, 'CF', '', '');
10182 INSERT INTO `marc_subfield_structure` VALUES ('561', 'b', 'Time of collation [OBSOLETE]', 'Time of collation [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, 6, 'CF', '', '');
10183 INSERT INTO `marc_subfield_structure` VALUES ('562', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10184 INSERT INTO `marc_subfield_structure` VALUES ('562', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'CF', '', '');
10185 INSERT INTO `marc_subfield_structure` VALUES ('562', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10186 INSERT INTO `marc_subfield_structure` VALUES ('562', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10187 INSERT INTO `marc_subfield_structure` VALUES ('562', 'a', 'Identifying markings', 'Identifying markings', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10188 INSERT INTO `marc_subfield_structure` VALUES ('562', 'b', 'Copy identification', 'Copy identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10189 INSERT INTO `marc_subfield_structure` VALUES ('562', 'c', 'Version identification', 'Version identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10190 INSERT INTO `marc_subfield_structure` VALUES ('562', 'd', 'Presentation format', 'Presentation format', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10191 INSERT INTO `marc_subfield_structure` VALUES ('562', 'e', 'Number of copies', 'Number of copies', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10192 INSERT INTO `marc_subfield_structure` VALUES ('563', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10193 INSERT INTO `marc_subfield_structure` VALUES ('563', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'CF', '', '');
10194 INSERT INTO `marc_subfield_structure` VALUES ('563', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10195 INSERT INTO `marc_subfield_structure` VALUES ('563', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10196 INSERT INTO `marc_subfield_structure` VALUES ('563', 'a', 'Binding note', 'Binding note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10197 INSERT INTO `marc_subfield_structure` VALUES ('563', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'CF', '', '');
10198 INSERT INTO `marc_subfield_structure` VALUES ('565', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10199 INSERT INTO `marc_subfield_structure` VALUES ('565', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10200 INSERT INTO `marc_subfield_structure` VALUES ('565', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10201 INSERT INTO `marc_subfield_structure` VALUES ('565', 'a', 'Number of cases/variables', 'Number of cases/variables', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10202 INSERT INTO `marc_subfield_structure` VALUES ('565', 'b', 'Name of variable', 'Name of variable', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10203 INSERT INTO `marc_subfield_structure` VALUES ('565', 'c', 'Unit of analysis', 'Unit of analysis', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10204 INSERT INTO `marc_subfield_structure` VALUES ('565', 'd', 'Universe of data', 'Universe of data', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10205 INSERT INTO `marc_subfield_structure` VALUES ('565', 'e', 'Filing scheme or code', 'Filing scheme or code', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10206 INSERT INTO `marc_subfield_structure` VALUES ('567', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10207 INSERT INTO `marc_subfield_structure` VALUES ('567', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10208 INSERT INTO `marc_subfield_structure` VALUES ('567', 'a', 'Methodology note', 'Methodology note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10209 INSERT INTO `marc_subfield_structure` VALUES ('570', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10210 INSERT INTO `marc_subfield_structure` VALUES ('570', 'a', 'Editor note', 'Editor note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10211 INSERT INTO `marc_subfield_structure` VALUES ('570', 'z', 'Source of note information', 'Source of note information', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10212 INSERT INTO `marc_subfield_structure` VALUES ('580', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10213 INSERT INTO `marc_subfield_structure` VALUES ('580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10214 INSERT INTO `marc_subfield_structure` VALUES ('580', 'a', 'Linking entry complexity note', 'Linking entry complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10215 INSERT INTO `marc_subfield_structure` VALUES ('580', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10216 INSERT INTO `marc_subfield_structure` VALUES ('581', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10217 INSERT INTO `marc_subfield_structure` VALUES ('581', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10218 INSERT INTO `marc_subfield_structure` VALUES ('581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10219 INSERT INTO `marc_subfield_structure` VALUES ('581', 'a', 'Publications about described materials note', 'Publications about described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10220 INSERT INTO `marc_subfield_structure` VALUES ('581', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10221 INSERT INTO `marc_subfield_structure` VALUES ('582', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10222 INSERT INTO `marc_subfield_structure` VALUES ('582', 'a', 'Related computer files note', 'Related computer files note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10223 INSERT INTO `marc_subfield_structure` VALUES ('583', '2', 'Source of term', 'Source of term', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
10224 INSERT INTO `marc_subfield_structure` VALUES ('583', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
10225 INSERT INTO `marc_subfield_structure` VALUES ('583', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
10226 INSERT INTO `marc_subfield_structure` VALUES ('583', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
10227 INSERT INTO `marc_subfield_structure` VALUES ('583', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
10228 INSERT INTO `marc_subfield_structure` VALUES ('583', 'a', 'Action', 'Action', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
10229 INSERT INTO `marc_subfield_structure` VALUES ('583', 'b', 'Action identification', 'Action identification', 1, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
10230 INSERT INTO `marc_subfield_structure` VALUES ('583', 'c', 'Time/date of action', 'Time/date of action', 1, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
10231 INSERT INTO `marc_subfield_structure` VALUES ('583', 'd', 'Action interval', 'Action interval', 1, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
10232 INSERT INTO `marc_subfield_structure` VALUES ('583', 'e', 'Contingency for action', 'Contingency for action', 1, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
10233 INSERT INTO `marc_subfield_structure` VALUES ('583', 'f', 'Authorization', 'Authorization', 1, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
10234 INSERT INTO `marc_subfield_structure` VALUES ('583', 'h', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
10235 INSERT INTO `marc_subfield_structure` VALUES ('583', 'i', 'Method of action', 'Method of action', 1, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
10236 INSERT INTO `marc_subfield_structure` VALUES ('583', 'j', 'Site of action', 'Site of action', 1, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
10237 INSERT INTO `marc_subfield_structure` VALUES ('583', 'k', 'Action agent', 'Action agent', 1, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
10238 INSERT INTO `marc_subfield_structure` VALUES ('583', 'l', 'Status', 'Status', 1, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
10239 INSERT INTO `marc_subfield_structure` VALUES ('583', 'n', 'Extent', 'Extent', 1, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
10240 INSERT INTO `marc_subfield_structure` VALUES ('583', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
10241 INSERT INTO `marc_subfield_structure` VALUES ('583', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -1, 'CF', '', '');
10242 INSERT INTO `marc_subfield_structure` VALUES ('583', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', NULL, 4, 'CF', '', '');
10243 INSERT INTO `marc_subfield_structure` VALUES ('583', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', NULL, -1, 'CF', '', '');
10244 INSERT INTO `marc_subfield_structure` VALUES ('584', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10245 INSERT INTO `marc_subfield_structure` VALUES ('584', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10246 INSERT INTO `marc_subfield_structure` VALUES ('584', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10247 INSERT INTO `marc_subfield_structure` VALUES ('584', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10248 INSERT INTO `marc_subfield_structure` VALUES ('584', 'a', 'Accumulation', 'Accumulation', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10249 INSERT INTO `marc_subfield_structure` VALUES ('584', 'b', 'Frequency of use', 'Frequency of use', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10250 INSERT INTO `marc_subfield_structure` VALUES ('585', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10251 INSERT INTO `marc_subfield_structure` VALUES ('585', '5', 'Institution to which field applies', 'Institution to which field applies', 0, -6, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10252 INSERT INTO `marc_subfield_structure` VALUES ('585', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10253 INSERT INTO `marc_subfield_structure` VALUES ('585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10254 INSERT INTO `marc_subfield_structure` VALUES ('585', 'a', 'Exhibitions note', 'Exhibitions note', 0, 0, '', 5, '', '', '', NULL, -6, 'CF', '', '');
10255 INSERT INTO `marc_subfield_structure` VALUES ('586', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10256 INSERT INTO `marc_subfield_structure` VALUES ('586', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10257 INSERT INTO `marc_subfield_structure` VALUES ('586', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10258 INSERT INTO `marc_subfield_structure` VALUES ('586', 'a', 'Awards note', 'Awards note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'CF', '', '');
10259 INSERT INTO `marc_subfield_structure` VALUES ('590', '6', 'Linkage (RLIN)', 'Linkage (RLIN)', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10260 INSERT INTO `marc_subfield_structure` VALUES ('590', '8', 'Field link and sequence number (RLIN)', 'Field link and sequence number (RLIN)', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10261 INSERT INTO `marc_subfield_structure` VALUES ('590', 'a', 'Local note', 'Local note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10262 INSERT INTO `marc_subfield_structure` VALUES ('590', 'b', 'Provenance (VM) [OBSOLETE]', 'Provenance (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10263 INSERT INTO `marc_subfield_structure` VALUES ('590', 'c', 'Condition of individual reels (VM) [OBSOLETE]', 'Condition of individual reels (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10264 INSERT INTO `marc_subfield_structure` VALUES ('590', 'd', 'Origin of safety copy (VM) [OBSOLETE]', 'Origin of safety copy (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'CF', '', '');
10265 INSERT INTO `marc_subfield_structure` VALUES ('600', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10266 INSERT INTO `marc_subfield_structure` VALUES ('600', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10267 INSERT INTO `marc_subfield_structure` VALUES ('600', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10268 INSERT INTO `marc_subfield_structure` VALUES ('600', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10269 INSERT INTO `marc_subfield_structure` VALUES ('600', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10270 INSERT INTO `marc_subfield_structure` VALUES ('600', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
10271 INSERT INTO `marc_subfield_structure` VALUES ('600', 'a', 'Personal name', 'Personal name', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10272 INSERT INTO `marc_subfield_structure` VALUES ('600', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10273 INSERT INTO `marc_subfield_structure` VALUES ('600', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10274 INSERT INTO `marc_subfield_structure` VALUES ('600', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10275 INSERT INTO `marc_subfield_structure` VALUES ('600', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10276 INSERT INTO `marc_subfield_structure` VALUES ('600', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10277 INSERT INTO `marc_subfield_structure` VALUES ('600', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10278 INSERT INTO `marc_subfield_structure` VALUES ('600', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10279 INSERT INTO `marc_subfield_structure` VALUES ('600', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10280 INSERT INTO `marc_subfield_structure` VALUES ('600', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10281 INSERT INTO `marc_subfield_structure` VALUES ('600', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10282 INSERT INTO `marc_subfield_structure` VALUES ('600', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10283 INSERT INTO `marc_subfield_structure` VALUES ('600', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10284 INSERT INTO `marc_subfield_structure` VALUES ('600', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10285 INSERT INTO `marc_subfield_structure` VALUES ('600', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10286 INSERT INTO `marc_subfield_structure` VALUES ('600', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10287 INSERT INTO `marc_subfield_structure` VALUES ('600', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10288 INSERT INTO `marc_subfield_structure` VALUES ('600', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10289 INSERT INTO `marc_subfield_structure` VALUES ('600', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10290 INSERT INTO `marc_subfield_structure` VALUES ('600', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10291 INSERT INTO `marc_subfield_structure` VALUES ('600', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10292 INSERT INTO `marc_subfield_structure` VALUES ('600', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10293 INSERT INTO `marc_subfield_structure` VALUES ('600', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10294 INSERT INTO `marc_subfield_structure` VALUES ('600', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10295 INSERT INTO `marc_subfield_structure` VALUES ('610', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10296 INSERT INTO `marc_subfield_structure` VALUES ('610', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10297 INSERT INTO `marc_subfield_structure` VALUES ('610', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10298 INSERT INTO `marc_subfield_structure` VALUES ('610', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10299 INSERT INTO `marc_subfield_structure` VALUES ('610', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10300 INSERT INTO `marc_subfield_structure` VALUES ('610', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
10301 INSERT INTO `marc_subfield_structure` VALUES ('610', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10302 INSERT INTO `marc_subfield_structure` VALUES ('610', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10303 INSERT INTO `marc_subfield_structure` VALUES ('610', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10304 INSERT INTO `marc_subfield_structure` VALUES ('610', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10305 INSERT INTO `marc_subfield_structure` VALUES ('610', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10306 INSERT INTO `marc_subfield_structure` VALUES ('610', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10307 INSERT INTO `marc_subfield_structure` VALUES ('610', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10308 INSERT INTO `marc_subfield_structure` VALUES ('610', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10309 INSERT INTO `marc_subfield_structure` VALUES ('610', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10310 INSERT INTO `marc_subfield_structure` VALUES ('610', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10311 INSERT INTO `marc_subfield_structure` VALUES ('610', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10312 INSERT INTO `marc_subfield_structure` VALUES ('610', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10313 INSERT INTO `marc_subfield_structure` VALUES ('610', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10314 INSERT INTO `marc_subfield_structure` VALUES ('610', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10315 INSERT INTO `marc_subfield_structure` VALUES ('610', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10316 INSERT INTO `marc_subfield_structure` VALUES ('610', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10317 INSERT INTO `marc_subfield_structure` VALUES ('610', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10318 INSERT INTO `marc_subfield_structure` VALUES ('610', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10319 INSERT INTO `marc_subfield_structure` VALUES ('610', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10320 INSERT INTO `marc_subfield_structure` VALUES ('610', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10321 INSERT INTO `marc_subfield_structure` VALUES ('610', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10322 INSERT INTO `marc_subfield_structure` VALUES ('610', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10323 INSERT INTO `marc_subfield_structure` VALUES ('611', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10324 INSERT INTO `marc_subfield_structure` VALUES ('611', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10325 INSERT INTO `marc_subfield_structure` VALUES ('611', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10326 INSERT INTO `marc_subfield_structure` VALUES ('611', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10327 INSERT INTO `marc_subfield_structure` VALUES ('611', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10328 INSERT INTO `marc_subfield_structure` VALUES ('611', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
10329 INSERT INTO `marc_subfield_structure` VALUES ('611', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10330 INSERT INTO `marc_subfield_structure` VALUES ('611', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'CF', '', '');
10331 INSERT INTO `marc_subfield_structure` VALUES ('611', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10332 INSERT INTO `marc_subfield_structure` VALUES ('611', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10333 INSERT INTO `marc_subfield_structure` VALUES ('611', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10334 INSERT INTO `marc_subfield_structure` VALUES ('611', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10335 INSERT INTO `marc_subfield_structure` VALUES ('611', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10336 INSERT INTO `marc_subfield_structure` VALUES ('611', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10337 INSERT INTO `marc_subfield_structure` VALUES ('611', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10338 INSERT INTO `marc_subfield_structure` VALUES ('611', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10339 INSERT INTO `marc_subfield_structure` VALUES ('611', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10340 INSERT INTO `marc_subfield_structure` VALUES ('611', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10341 INSERT INTO `marc_subfield_structure` VALUES ('611', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10342 INSERT INTO `marc_subfield_structure` VALUES ('611', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10343 INSERT INTO `marc_subfield_structure` VALUES ('611', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10344 INSERT INTO `marc_subfield_structure` VALUES ('611', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10345 INSERT INTO `marc_subfield_structure` VALUES ('611', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10346 INSERT INTO `marc_subfield_structure` VALUES ('611', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10347 INSERT INTO `marc_subfield_structure` VALUES ('611', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10348 INSERT INTO `marc_subfield_structure` VALUES ('611', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10349 INSERT INTO `marc_subfield_structure` VALUES ('630', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10350 INSERT INTO `marc_subfield_structure` VALUES ('630', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10351 INSERT INTO `marc_subfield_structure` VALUES ('630', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10352 INSERT INTO `marc_subfield_structure` VALUES ('630', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10353 INSERT INTO `marc_subfield_structure` VALUES ('630', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10354 INSERT INTO `marc_subfield_structure` VALUES ('630', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
10355 INSERT INTO `marc_subfield_structure` VALUES ('630', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10356 INSERT INTO `marc_subfield_structure` VALUES ('630', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10357 INSERT INTO `marc_subfield_structure` VALUES ('630', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10358 INSERT INTO `marc_subfield_structure` VALUES ('630', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10359 INSERT INTO `marc_subfield_structure` VALUES ('630', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10360 INSERT INTO `marc_subfield_structure` VALUES ('630', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10361 INSERT INTO `marc_subfield_structure` VALUES ('630', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10362 INSERT INTO `marc_subfield_structure` VALUES ('630', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10363 INSERT INTO `marc_subfield_structure` VALUES ('630', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10364 INSERT INTO `marc_subfield_structure` VALUES ('630', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10365 INSERT INTO `marc_subfield_structure` VALUES ('630', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10366 INSERT INTO `marc_subfield_structure` VALUES ('630', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10367 INSERT INTO `marc_subfield_structure` VALUES ('630', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10368 INSERT INTO `marc_subfield_structure` VALUES ('630', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10369 INSERT INTO `marc_subfield_structure` VALUES ('630', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10370 INSERT INTO `marc_subfield_structure` VALUES ('630', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10371 INSERT INTO `marc_subfield_structure` VALUES ('630', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10372 INSERT INTO `marc_subfield_structure` VALUES ('630', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10373 INSERT INTO `marc_subfield_structure` VALUES ('630', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10374 INSERT INTO `marc_subfield_structure` VALUES ('648', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10375 INSERT INTO `marc_subfield_structure` VALUES ('648', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10376 INSERT INTO `marc_subfield_structure` VALUES ('648', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10377 INSERT INTO `marc_subfield_structure` VALUES ('648', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10378 INSERT INTO `marc_subfield_structure` VALUES ('648', 'a', 'Chronological term', 'Chronological term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10379 INSERT INTO `marc_subfield_structure` VALUES ('648', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10380 INSERT INTO `marc_subfield_structure` VALUES ('648', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10381 INSERT INTO `marc_subfield_structure` VALUES ('648', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10382 INSERT INTO `marc_subfield_structure` VALUES ('648', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10383 INSERT INTO `marc_subfield_structure` VALUES ('650', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, 0, 'CF', '', '');
10384 INSERT INTO `marc_subfield_structure` VALUES ('650', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'CF', '', '');
10385 INSERT INTO `marc_subfield_structure` VALUES ('650', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10386 INSERT INTO `marc_subfield_structure` VALUES ('650', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'CF', '', '');
10387 INSERT INTO `marc_subfield_structure` VALUES ('650', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'CF', '', '');
10388 INSERT INTO `marc_subfield_structure` VALUES ('650', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
10389 INSERT INTO `marc_subfield_structure` VALUES ('650', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 'bibliosubject.subject', 6, '', '', '', 0, 0, 'CF', '''6003'',''600a'',''600b'',''600c'',''600d'',''600e'',''600f'',''600g'',''600h'',''600k'',''600l'',''600m'',''600n'',''600o'',''600p'',''600r'',''600s'',''600t'',''600u'',''600x'',''600z'',''600y'',''600v'',''6103'',''610a'',''610b'',''610c'',''610d'',''610e'',''610f'',''610g'',''610h'',''610k'',''610l'',''610m'',''610n'',''610o'',''610p'',''610r'',''610s'',''610t'',''610u'',''610x'',''610z'',''610y'',''610v'',''6113'',''611a'',''611b'',''611c'',''611d'',''611e'',''611f'',''611g'',''611h'',''611k'',''611l'',''611m'',''611n'',''611o'',''611p'',''611r'',''611s'',''611t'',''611u'',''611x'',''611z'',''611y'',''611v'',''630a'',''630b'',''630c'',''630d'',''630e'',''630f'',''630g'',''630h'',''630k'',''630l'',''630m'',''630n'',''630o'',''630p'',''630r'',''630s'',''630t'',''630x'',''630z'',''630y'',''630v'',''6483'',''648a'',''648x'',''648z'',''648y'',''648v'',''6503'',''650b'',''650c'',''650d'',''650e'',''650x'',''650z'',''650y'',''650v'',''6513'',''651a'',''651b'',''651c'',''651d'',''651e'',''651x'',''651z'',''651y'',''651v'',''653a'',''6543'',''654a'',''654b'',''654x'',''654z'',''654y'',''654v'',''6553'',''655a'',''655b'',''655x'',''655z'',''655y'',''655v'',''6563'',''656a'',''656k'',''656x'',''656z'',''656y'',''656v'',''6573'',''657a'',''657x'',''657z'',''657y'',''657v'',''658a'',''658b'',''658c'',''658d'',''658v''', '');
10390 INSERT INTO `marc_subfield_structure` VALUES ('650', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'CF', '', '');
10391 INSERT INTO `marc_subfield_structure` VALUES ('650', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'CF', '', '');
10392 INSERT INTO `marc_subfield_structure` VALUES ('650', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -1, 'CF', '', '');
10393 INSERT INTO `marc_subfield_structure` VALUES ('650', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -1, 'CF', '', '');
10394 INSERT INTO `marc_subfield_structure` VALUES ('650', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'CF', '', '');
10395 INSERT INTO `marc_subfield_structure` VALUES ('650', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'CF', '', '');
10396 INSERT INTO `marc_subfield_structure` VALUES ('650', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'CF', '', '');
10397 INSERT INTO `marc_subfield_structure` VALUES ('650', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'CF', '', '');
10398 INSERT INTO `marc_subfield_structure` VALUES ('651', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10399 INSERT INTO `marc_subfield_structure` VALUES ('651', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10400 INSERT INTO `marc_subfield_structure` VALUES ('651', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10401 INSERT INTO `marc_subfield_structure` VALUES ('651', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10402 INSERT INTO `marc_subfield_structure` VALUES ('651', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10403 INSERT INTO `marc_subfield_structure` VALUES ('651', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
10404 INSERT INTO `marc_subfield_structure` VALUES ('651', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10405 INSERT INTO `marc_subfield_structure` VALUES ('651', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10406 INSERT INTO `marc_subfield_structure` VALUES ('651', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10407 INSERT INTO `marc_subfield_structure` VALUES ('651', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10408 INSERT INTO `marc_subfield_structure` VALUES ('651', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10409 INSERT INTO `marc_subfield_structure` VALUES ('651', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10410 INSERT INTO `marc_subfield_structure` VALUES ('651', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10411 INSERT INTO `marc_subfield_structure` VALUES ('652', 'a', 'Geographic name of place element', 'Geographic name of place element', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10412 INSERT INTO `marc_subfield_structure` VALUES ('652', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10413 INSERT INTO `marc_subfield_structure` VALUES ('652', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10414 INSERT INTO `marc_subfield_structure` VALUES ('652', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10415 INSERT INTO `marc_subfield_structure` VALUES ('653', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10416 INSERT INTO `marc_subfield_structure` VALUES ('653', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10417 INSERT INTO `marc_subfield_structure` VALUES ('653', 'a', 'Uncontrolled term', 'Uncontrolled term', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'CF', '', '');
10418 INSERT INTO `marc_subfield_structure` VALUES ('654', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10419 INSERT INTO `marc_subfield_structure` VALUES ('654', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10420 INSERT INTO `marc_subfield_structure` VALUES ('654', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10421 INSERT INTO `marc_subfield_structure` VALUES ('654', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10422 INSERT INTO `marc_subfield_structure` VALUES ('654', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10423 INSERT INTO `marc_subfield_structure` VALUES ('654', 'a', 'Focus term', 'Focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10424 INSERT INTO `marc_subfield_structure` VALUES ('654', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10425 INSERT INTO `marc_subfield_structure` VALUES ('654', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10426 INSERT INTO `marc_subfield_structure` VALUES ('654', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10427 INSERT INTO `marc_subfield_structure` VALUES ('654', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10428 INSERT INTO `marc_subfield_structure` VALUES ('654', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10429 INSERT INTO `marc_subfield_structure` VALUES ('654', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10430 INSERT INTO `marc_subfield_structure` VALUES ('654', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10431 INSERT INTO `marc_subfield_structure` VALUES ('655', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10432 INSERT INTO `marc_subfield_structure` VALUES ('655', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10433 INSERT INTO `marc_subfield_structure` VALUES ('655', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10434 INSERT INTO `marc_subfield_structure` VALUES ('655', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10435 INSERT INTO `marc_subfield_structure` VALUES ('655', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10436 INSERT INTO `marc_subfield_structure` VALUES ('655', 'a', 'Genre/form data or focus term', 'Genre/form data or focus term', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10437 INSERT INTO `marc_subfield_structure` VALUES ('655', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10438 INSERT INTO `marc_subfield_structure` VALUES ('655', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10439 INSERT INTO `marc_subfield_structure` VALUES ('655', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10440 INSERT INTO `marc_subfield_structure` VALUES ('655', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10441 INSERT INTO `marc_subfield_structure` VALUES ('655', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10442 INSERT INTO `marc_subfield_structure` VALUES ('655', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10443 INSERT INTO `marc_subfield_structure` VALUES ('656', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10444 INSERT INTO `marc_subfield_structure` VALUES ('656', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10445 INSERT INTO `marc_subfield_structure` VALUES ('656', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10446 INSERT INTO `marc_subfield_structure` VALUES ('656', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10447 INSERT INTO `marc_subfield_structure` VALUES ('656', 'a', 'Occupation', 'Occupation', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10448 INSERT INTO `marc_subfield_structure` VALUES ('656', 'k', 'Form', 'Form', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10449 INSERT INTO `marc_subfield_structure` VALUES ('656', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10450 INSERT INTO `marc_subfield_structure` VALUES ('656', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10451 INSERT INTO `marc_subfield_structure` VALUES ('656', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10452 INSERT INTO `marc_subfield_structure` VALUES ('656', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10453 INSERT INTO `marc_subfield_structure` VALUES ('657', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10454 INSERT INTO `marc_subfield_structure` VALUES ('657', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10455 INSERT INTO `marc_subfield_structure` VALUES ('657', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10456 INSERT INTO `marc_subfield_structure` VALUES ('657', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10457 INSERT INTO `marc_subfield_structure` VALUES ('657', 'a', 'Function', 'Function', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10458 INSERT INTO `marc_subfield_structure` VALUES ('657', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10459 INSERT INTO `marc_subfield_structure` VALUES ('657', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10460 INSERT INTO `marc_subfield_structure` VALUES ('657', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10461 INSERT INTO `marc_subfield_structure` VALUES ('657', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10462 INSERT INTO `marc_subfield_structure` VALUES ('658', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10463 INSERT INTO `marc_subfield_structure` VALUES ('658', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10464 INSERT INTO `marc_subfield_structure` VALUES ('658', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10465 INSERT INTO `marc_subfield_structure` VALUES ('658', 'a', 'Main curriculum objective', 'Main curriculum objective', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10466 INSERT INTO `marc_subfield_structure` VALUES ('658', 'b', 'Subordinate curriculum objective', 'Subordinate curriculum objective', 1, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10467 INSERT INTO `marc_subfield_structure` VALUES ('658', 'c', 'Curriculum code', 'Curriculum code', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10468 INSERT INTO `marc_subfield_structure` VALUES ('658', 'd', 'Correlation factor', 'Correlation factor', 0, 0, '', 6, '', '', '', NULL, -1, 'CF', '', '');
10469 INSERT INTO `marc_subfield_structure` VALUES ('662', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10470 INSERT INTO `marc_subfield_structure` VALUES ('662', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10471 INSERT INTO `marc_subfield_structure` VALUES ('662', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10472 INSERT INTO `marc_subfield_structure` VALUES ('662', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10473 INSERT INTO `marc_subfield_structure` VALUES ('662', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10474 INSERT INTO `marc_subfield_structure` VALUES ('662', 'a', 'Country or larger entity', 'Country or larger entity', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10475 INSERT INTO `marc_subfield_structure` VALUES ('662', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10476 INSERT INTO `marc_subfield_structure` VALUES ('662', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10477 INSERT INTO `marc_subfield_structure` VALUES ('662', 'd', 'City', 'City', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10478 INSERT INTO `marc_subfield_structure` VALUES ('662', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10479 INSERT INTO `marc_subfield_structure` VALUES ('662', 'f', 'City subsection', 'City subsection', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10480 INSERT INTO `marc_subfield_structure` VALUES ('662', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10481 INSERT INTO `marc_subfield_structure` VALUES ('662', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10482 INSERT INTO `marc_subfield_structure` VALUES ('690', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'CF', '', '');
10483 INSERT INTO `marc_subfield_structure` VALUES ('690', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, -6, 'CF', '', '');
10484 INSERT INTO `marc_subfield_structure` VALUES ('690', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'CF', '', '');
10485 INSERT INTO `marc_subfield_structure` VALUES ('690', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'CF', '', '');
10486 INSERT INTO `marc_subfield_structure` VALUES ('690', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'CF', '', '');
10487 INSERT INTO `marc_subfield_structure` VALUES ('690', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
10488 INSERT INTO `marc_subfield_structure` VALUES ('690', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'CF', '', '');
10489 INSERT INTO `marc_subfield_structure` VALUES ('690', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'CF', '', '');
10490 INSERT INTO `marc_subfield_structure` VALUES ('690', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'CF', '', '');
10491 INSERT INTO `marc_subfield_structure` VALUES ('690', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -6, 'CF', '', '');
10492 INSERT INTO `marc_subfield_structure` VALUES ('690', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -6, 'CF', '', '');
10493 INSERT INTO `marc_subfield_structure` VALUES ('690', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'CF', '', '');
10494 INSERT INTO `marc_subfield_structure` VALUES ('690', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'CF', '', '');
10495 INSERT INTO `marc_subfield_structure` VALUES ('690', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'CF', '', '');
10496 INSERT INTO `marc_subfield_structure` VALUES ('690', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'CF', '', '');
10497 INSERT INTO `marc_subfield_structure` VALUES ('691', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'CF', '', '');
10498 INSERT INTO `marc_subfield_structure` VALUES ('691', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10499 INSERT INTO `marc_subfield_structure` VALUES ('691', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10500 INSERT INTO `marc_subfield_structure` VALUES ('691', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10501 INSERT INTO `marc_subfield_structure` VALUES ('691', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10502 INSERT INTO `marc_subfield_structure` VALUES ('691', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
10503 INSERT INTO `marc_subfield_structure` VALUES ('691', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10504 INSERT INTO `marc_subfield_structure` VALUES ('691', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10505 INSERT INTO `marc_subfield_structure` VALUES ('691', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10506 INSERT INTO `marc_subfield_structure` VALUES ('691', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10507 INSERT INTO `marc_subfield_structure` VALUES ('691', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10508 INSERT INTO `marc_subfield_structure` VALUES ('691', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10509 INSERT INTO `marc_subfield_structure` VALUES ('696', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'CF', '', '');
10510 INSERT INTO `marc_subfield_structure` VALUES ('696', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10511 INSERT INTO `marc_subfield_structure` VALUES ('696', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10512 INSERT INTO `marc_subfield_structure` VALUES ('696', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10513 INSERT INTO `marc_subfield_structure` VALUES ('696', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10514 INSERT INTO `marc_subfield_structure` VALUES ('696', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10515 INSERT INTO `marc_subfield_structure` VALUES ('696', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
10516 INSERT INTO `marc_subfield_structure` VALUES ('696', 'a', 'Personal name', 'Personal name', 0, 0, '', 3, '', '', '', NULL, -6, 'CF', '', '');
10517 INSERT INTO `marc_subfield_structure` VALUES ('696', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10518 INSERT INTO `marc_subfield_structure` VALUES ('696', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10519 INSERT INTO `marc_subfield_structure` VALUES ('696', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10520 INSERT INTO `marc_subfield_structure` VALUES ('696', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10521 INSERT INTO `marc_subfield_structure` VALUES ('696', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10522 INSERT INTO `marc_subfield_structure` VALUES ('696', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10523 INSERT INTO `marc_subfield_structure` VALUES ('696', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10524 INSERT INTO `marc_subfield_structure` VALUES ('696', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10525 INSERT INTO `marc_subfield_structure` VALUES ('696', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10526 INSERT INTO `marc_subfield_structure` VALUES ('696', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10527 INSERT INTO `marc_subfield_structure` VALUES ('696', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10528 INSERT INTO `marc_subfield_structure` VALUES ('696', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10529 INSERT INTO `marc_subfield_structure` VALUES ('696', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10530 INSERT INTO `marc_subfield_structure` VALUES ('696', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10531 INSERT INTO `marc_subfield_structure` VALUES ('696', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10532 INSERT INTO `marc_subfield_structure` VALUES ('696', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10533 INSERT INTO `marc_subfield_structure` VALUES ('696', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10534 INSERT INTO `marc_subfield_structure` VALUES ('696', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10535 INSERT INTO `marc_subfield_structure` VALUES ('696', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10536 INSERT INTO `marc_subfield_structure` VALUES ('696', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10537 INSERT INTO `marc_subfield_structure` VALUES ('696', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10538 INSERT INTO `marc_subfield_structure` VALUES ('696', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10539 INSERT INTO `marc_subfield_structure` VALUES ('696', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10540 INSERT INTO `marc_subfield_structure` VALUES ('697', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'CF', '', '');
10541 INSERT INTO `marc_subfield_structure` VALUES ('697', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10542 INSERT INTO `marc_subfield_structure` VALUES ('697', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10543 INSERT INTO `marc_subfield_structure` VALUES ('697', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10544 INSERT INTO `marc_subfield_structure` VALUES ('697', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10545 INSERT INTO `marc_subfield_structure` VALUES ('697', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10546 INSERT INTO `marc_subfield_structure` VALUES ('697', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
10547 INSERT INTO `marc_subfield_structure` VALUES ('697', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10548 INSERT INTO `marc_subfield_structure` VALUES ('697', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10549 INSERT INTO `marc_subfield_structure` VALUES ('697', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10550 INSERT INTO `marc_subfield_structure` VALUES ('697', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10551 INSERT INTO `marc_subfield_structure` VALUES ('697', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10552 INSERT INTO `marc_subfield_structure` VALUES ('697', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10553 INSERT INTO `marc_subfield_structure` VALUES ('697', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10554 INSERT INTO `marc_subfield_structure` VALUES ('697', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10555 INSERT INTO `marc_subfield_structure` VALUES ('697', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10556 INSERT INTO `marc_subfield_structure` VALUES ('697', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10557 INSERT INTO `marc_subfield_structure` VALUES ('697', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10558 INSERT INTO `marc_subfield_structure` VALUES ('697', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10559 INSERT INTO `marc_subfield_structure` VALUES ('697', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10560 INSERT INTO `marc_subfield_structure` VALUES ('697', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10561 INSERT INTO `marc_subfield_structure` VALUES ('697', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10562 INSERT INTO `marc_subfield_structure` VALUES ('697', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10563 INSERT INTO `marc_subfield_structure` VALUES ('697', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10564 INSERT INTO `marc_subfield_structure` VALUES ('697', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10565 INSERT INTO `marc_subfield_structure` VALUES ('697', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10566 INSERT INTO `marc_subfield_structure` VALUES ('697', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10567 INSERT INTO `marc_subfield_structure` VALUES ('697', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10568 INSERT INTO `marc_subfield_structure` VALUES ('697', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
10569 INSERT INTO `marc_subfield_structure` VALUES ('698', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'CF', '', '');
10570 INSERT INTO `marc_subfield_structure` VALUES ('698', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10571 INSERT INTO `marc_subfield_structure` VALUES ('698', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10572 INSERT INTO `marc_subfield_structure` VALUES ('698', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10573 INSERT INTO `marc_subfield_structure` VALUES ('698', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10574 INSERT INTO `marc_subfield_structure` VALUES ('698', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10575 INSERT INTO `marc_subfield_structure` VALUES ('698', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
10576 INSERT INTO `marc_subfield_structure` VALUES ('698', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10577 INSERT INTO `marc_subfield_structure` VALUES ('698', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'CF', '', '');
10578 INSERT INTO `marc_subfield_structure` VALUES ('698', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10579 INSERT INTO `marc_subfield_structure` VALUES ('698', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10580 INSERT INTO `marc_subfield_structure` VALUES ('698', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10581 INSERT INTO `marc_subfield_structure` VALUES ('698', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10582 INSERT INTO `marc_subfield_structure` VALUES ('698', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10583 INSERT INTO `marc_subfield_structure` VALUES ('698', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10584 INSERT INTO `marc_subfield_structure` VALUES ('698', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10585 INSERT INTO `marc_subfield_structure` VALUES ('698', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10586 INSERT INTO `marc_subfield_structure` VALUES ('698', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10587 INSERT INTO `marc_subfield_structure` VALUES ('698', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10588 INSERT INTO `marc_subfield_structure` VALUES ('698', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10589 INSERT INTO `marc_subfield_structure` VALUES ('698', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10590 INSERT INTO `marc_subfield_structure` VALUES ('698', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10591 INSERT INTO `marc_subfield_structure` VALUES ('698', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10592 INSERT INTO `marc_subfield_structure` VALUES ('698', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10593 INSERT INTO `marc_subfield_structure` VALUES ('698', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10594 INSERT INTO `marc_subfield_structure` VALUES ('698', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10595 INSERT INTO `marc_subfield_structure` VALUES ('698', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10596 INSERT INTO `marc_subfield_structure` VALUES ('699', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'CF', '', '');
10597 INSERT INTO `marc_subfield_structure` VALUES ('699', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10598 INSERT INTO `marc_subfield_structure` VALUES ('699', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10599 INSERT INTO `marc_subfield_structure` VALUES ('699', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10600 INSERT INTO `marc_subfield_structure` VALUES ('699', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10601 INSERT INTO `marc_subfield_structure` VALUES ('699', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'CF', '', '');
10602 INSERT INTO `marc_subfield_structure` VALUES ('699', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10603 INSERT INTO `marc_subfield_structure` VALUES ('699', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10604 INSERT INTO `marc_subfield_structure` VALUES ('699', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10605 INSERT INTO `marc_subfield_structure` VALUES ('699', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10606 INSERT INTO `marc_subfield_structure` VALUES ('699', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10607 INSERT INTO `marc_subfield_structure` VALUES ('699', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10608 INSERT INTO `marc_subfield_structure` VALUES ('699', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10609 INSERT INTO `marc_subfield_structure` VALUES ('699', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10610 INSERT INTO `marc_subfield_structure` VALUES ('699', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10611 INSERT INTO `marc_subfield_structure` VALUES ('699', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10612 INSERT INTO `marc_subfield_structure` VALUES ('699', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10613 INSERT INTO `marc_subfield_structure` VALUES ('699', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10614 INSERT INTO `marc_subfield_structure` VALUES ('699', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10615 INSERT INTO `marc_subfield_structure` VALUES ('699', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10616 INSERT INTO `marc_subfield_structure` VALUES ('699', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10617 INSERT INTO `marc_subfield_structure` VALUES ('699', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10618 INSERT INTO `marc_subfield_structure` VALUES ('699', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'CF', '', '');
10619 INSERT INTO `marc_subfield_structure` VALUES ('700', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10620 INSERT INTO `marc_subfield_structure` VALUES ('700', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10621 INSERT INTO `marc_subfield_structure` VALUES ('700', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10622 INSERT INTO `marc_subfield_structure` VALUES ('700', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10623 INSERT INTO `marc_subfield_structure` VALUES ('700', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10624 INSERT INTO `marc_subfield_structure` VALUES ('700', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'CF', '', '');
10625 INSERT INTO `marc_subfield_structure` VALUES ('700', 'a', 'Personal name', 'Personal name', 0, 0, 'additionalauthors.author', 7, '', '', '', NULL, -1, 'CF', '', '');
10626 INSERT INTO `marc_subfield_structure` VALUES ('700', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -1, 'CF', '', '');
10627 INSERT INTO `marc_subfield_structure` VALUES ('700', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -1, 'CF', '', '');
10628 INSERT INTO `marc_subfield_structure` VALUES ('700', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -1, 'CF', '', '');
10629 INSERT INTO `marc_subfield_structure` VALUES ('700', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'CF', '', '');
10630 INSERT INTO `marc_subfield_structure` VALUES ('700', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10631 INSERT INTO `marc_subfield_structure` VALUES ('700', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10632 INSERT INTO `marc_subfield_structure` VALUES ('700', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10633 INSERT INTO `marc_subfield_structure` VALUES ('700', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10634 INSERT INTO `marc_subfield_structure` VALUES ('700', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10635 INSERT INTO `marc_subfield_structure` VALUES ('700', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10636 INSERT INTO `marc_subfield_structure` VALUES ('700', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10637 INSERT INTO `marc_subfield_structure` VALUES ('700', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10638 INSERT INTO `marc_subfield_structure` VALUES ('700', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10639 INSERT INTO `marc_subfield_structure` VALUES ('700', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10640 INSERT INTO `marc_subfield_structure` VALUES ('700', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -1, 'CF', '', '');
10641 INSERT INTO `marc_subfield_structure` VALUES ('700', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10642 INSERT INTO `marc_subfield_structure` VALUES ('700', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10643 INSERT INTO `marc_subfield_structure` VALUES ('700', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10644 INSERT INTO `marc_subfield_structure` VALUES ('700', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10645 INSERT INTO `marc_subfield_structure` VALUES ('700', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10646 INSERT INTO `marc_subfield_structure` VALUES ('705', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10647 INSERT INTO `marc_subfield_structure` VALUES ('705', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10648 INSERT INTO `marc_subfield_structure` VALUES ('705', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10649 INSERT INTO `marc_subfield_structure` VALUES ('705', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10650 INSERT INTO `marc_subfield_structure` VALUES ('705', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10651 INSERT INTO `marc_subfield_structure` VALUES ('705', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10652 INSERT INTO `marc_subfield_structure` VALUES ('705', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10653 INSERT INTO `marc_subfield_structure` VALUES ('705', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10654 INSERT INTO `marc_subfield_structure` VALUES ('705', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10655 INSERT INTO `marc_subfield_structure` VALUES ('705', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10656 INSERT INTO `marc_subfield_structure` VALUES ('705', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10657 INSERT INTO `marc_subfield_structure` VALUES ('705', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10658 INSERT INTO `marc_subfield_structure` VALUES ('705', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10659 INSERT INTO `marc_subfield_structure` VALUES ('705', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10660 INSERT INTO `marc_subfield_structure` VALUES ('705', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10661 INSERT INTO `marc_subfield_structure` VALUES ('705', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10662 INSERT INTO `marc_subfield_structure` VALUES ('705', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10663 INSERT INTO `marc_subfield_structure` VALUES ('710', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10664 INSERT INTO `marc_subfield_structure` VALUES ('710', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10665 INSERT INTO `marc_subfield_structure` VALUES ('710', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10666 INSERT INTO `marc_subfield_structure` VALUES ('710', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10667 INSERT INTO `marc_subfield_structure` VALUES ('710', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10668 INSERT INTO `marc_subfield_structure` VALUES ('710', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'CF', '', '');
10669 INSERT INTO `marc_subfield_structure` VALUES ('710', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -1, 'CF', '', '');
10670 INSERT INTO `marc_subfield_structure` VALUES ('710', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -1, 'CF', '', '');
10671 INSERT INTO `marc_subfield_structure` VALUES ('710', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -1, 'CF', '', '');
10672 INSERT INTO `marc_subfield_structure` VALUES ('710', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -1, 'CF', '', '');
10673 INSERT INTO `marc_subfield_structure` VALUES ('710', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'CF', '', '');
10674 INSERT INTO `marc_subfield_structure` VALUES ('710', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10675 INSERT INTO `marc_subfield_structure` VALUES ('710', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10676 INSERT INTO `marc_subfield_structure` VALUES ('710', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10677 INSERT INTO `marc_subfield_structure` VALUES ('710', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10678 INSERT INTO `marc_subfield_structure` VALUES ('710', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10679 INSERT INTO `marc_subfield_structure` VALUES ('710', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10680 INSERT INTO `marc_subfield_structure` VALUES ('710', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10681 INSERT INTO `marc_subfield_structure` VALUES ('710', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10682 INSERT INTO `marc_subfield_structure` VALUES ('710', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10683 INSERT INTO `marc_subfield_structure` VALUES ('710', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10684 INSERT INTO `marc_subfield_structure` VALUES ('710', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10685 INSERT INTO `marc_subfield_structure` VALUES ('710', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10686 INSERT INTO `marc_subfield_structure` VALUES ('710', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10687 INSERT INTO `marc_subfield_structure` VALUES ('710', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10688 INSERT INTO `marc_subfield_structure` VALUES ('711', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10689 INSERT INTO `marc_subfield_structure` VALUES ('711', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10690 INSERT INTO `marc_subfield_structure` VALUES ('711', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10691 INSERT INTO `marc_subfield_structure` VALUES ('711', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10692 INSERT INTO `marc_subfield_structure` VALUES ('711', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10693 INSERT INTO `marc_subfield_structure` VALUES ('711', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'CF', '', '');
10694 INSERT INTO `marc_subfield_structure` VALUES ('711', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'CF', '', '');
10695 INSERT INTO `marc_subfield_structure` VALUES ('711', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10696 INSERT INTO `marc_subfield_structure` VALUES ('711', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'CF', '', '');
10697 INSERT INTO `marc_subfield_structure` VALUES ('711', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'CF', '', '');
10698 INSERT INTO `marc_subfield_structure` VALUES ('711', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'CF', '', '');
10699 INSERT INTO `marc_subfield_structure` VALUES ('711', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10700 INSERT INTO `marc_subfield_structure` VALUES ('711', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10701 INSERT INTO `marc_subfield_structure` VALUES ('711', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10702 INSERT INTO `marc_subfield_structure` VALUES ('711', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10703 INSERT INTO `marc_subfield_structure` VALUES ('711', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10704 INSERT INTO `marc_subfield_structure` VALUES ('711', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10705 INSERT INTO `marc_subfield_structure` VALUES ('711', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10706 INSERT INTO `marc_subfield_structure` VALUES ('711', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10707 INSERT INTO `marc_subfield_structure` VALUES ('711', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10708 INSERT INTO `marc_subfield_structure` VALUES ('711', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10709 INSERT INTO `marc_subfield_structure` VALUES ('711', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10710 INSERT INTO `marc_subfield_structure` VALUES ('711', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10711 INSERT INTO `marc_subfield_structure` VALUES ('715', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'CF', '', '');
10712 INSERT INTO `marc_subfield_structure` VALUES ('715', 'a', 'Corporate name or jurisdiction name', 'Corporate name or jurisdiction name', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10713 INSERT INTO `marc_subfield_structure` VALUES ('715', 'b', 'Subordinate unit', 'Subordinate unit', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10714 INSERT INTO `marc_subfield_structure` VALUES ('715', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10715 INSERT INTO `marc_subfield_structure` VALUES ('715', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10716 INSERT INTO `marc_subfield_structure` VALUES ('715', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10717 INSERT INTO `marc_subfield_structure` VALUES ('715', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10718 INSERT INTO `marc_subfield_structure` VALUES ('715', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10719 INSERT INTO `marc_subfield_structure` VALUES ('715', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10720 INSERT INTO `marc_subfield_structure` VALUES ('715', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10721 INSERT INTO `marc_subfield_structure` VALUES ('715', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10722 INSERT INTO `marc_subfield_structure` VALUES ('715', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10723 INSERT INTO `marc_subfield_structure` VALUES ('715', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10724 INSERT INTO `marc_subfield_structure` VALUES ('715', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10725 INSERT INTO `marc_subfield_structure` VALUES ('715', 'u', 'Nonprinting information', 'Nonprinting information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10726 INSERT INTO `marc_subfield_structure` VALUES ('720', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10727 INSERT INTO `marc_subfield_structure` VALUES ('720', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10728 INSERT INTO `marc_subfield_structure` VALUES ('720', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10729 INSERT INTO `marc_subfield_structure` VALUES ('720', 'a', 'Name', 'Name', 0, 0, '', 7, NULL, NULL, '', NULL, -1, 'CF', '', '');
10730 INSERT INTO `marc_subfield_structure` VALUES ('720', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'CF', '', '');
10731 INSERT INTO `marc_subfield_structure` VALUES ('730', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10732 INSERT INTO `marc_subfield_structure` VALUES ('730', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10733 INSERT INTO `marc_subfield_structure` VALUES ('730', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10734 INSERT INTO `marc_subfield_structure` VALUES ('730', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10735 INSERT INTO `marc_subfield_structure` VALUES ('730', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'CF', '', '');
10736 INSERT INTO `marc_subfield_structure` VALUES ('730', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10737 INSERT INTO `marc_subfield_structure` VALUES ('730', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10738 INSERT INTO `marc_subfield_structure` VALUES ('730', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10739 INSERT INTO `marc_subfield_structure` VALUES ('730', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10740 INSERT INTO `marc_subfield_structure` VALUES ('730', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10741 INSERT INTO `marc_subfield_structure` VALUES ('730', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10742 INSERT INTO `marc_subfield_structure` VALUES ('730', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10743 INSERT INTO `marc_subfield_structure` VALUES ('730', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10744 INSERT INTO `marc_subfield_structure` VALUES ('730', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10745 INSERT INTO `marc_subfield_structure` VALUES ('730', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10746 INSERT INTO `marc_subfield_structure` VALUES ('730', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10747 INSERT INTO `marc_subfield_structure` VALUES ('730', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10748 INSERT INTO `marc_subfield_structure` VALUES ('730', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10749 INSERT INTO `marc_subfield_structure` VALUES ('730', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10750 INSERT INTO `marc_subfield_structure` VALUES ('730', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10751 INSERT INTO `marc_subfield_structure` VALUES ('740', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10752 INSERT INTO `marc_subfield_structure` VALUES ('740', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10753 INSERT INTO `marc_subfield_structure` VALUES ('740', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10754 INSERT INTO `marc_subfield_structure` VALUES ('740', 'a', 'Uncontrolled related/analytical title', 'Uncontrolled related/analytical title', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10755 INSERT INTO `marc_subfield_structure` VALUES ('740', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10756 INSERT INTO `marc_subfield_structure` VALUES ('740', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10757 INSERT INTO `marc_subfield_structure` VALUES ('740', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10758 INSERT INTO `marc_subfield_structure` VALUES ('752', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10759 INSERT INTO `marc_subfield_structure` VALUES ('752', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10760 INSERT INTO `marc_subfield_structure` VALUES ('752', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10761 INSERT INTO `marc_subfield_structure` VALUES ('752', 'a', 'Country or larger entity', 'Country or larger entity', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10762 INSERT INTO `marc_subfield_structure` VALUES ('752', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10763 INSERT INTO `marc_subfield_structure` VALUES ('752', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10764 INSERT INTO `marc_subfield_structure` VALUES ('752', 'd', 'City', 'City', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10765 INSERT INTO `marc_subfield_structure` VALUES ('752', 'f', 'City subsection', 'City subsection', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10766 INSERT INTO `marc_subfield_structure` VALUES ('752', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10767 INSERT INTO `marc_subfield_structure` VALUES ('752', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10768 INSERT INTO `marc_subfield_structure` VALUES ('753', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10769 INSERT INTO `marc_subfield_structure` VALUES ('753', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10770 INSERT INTO `marc_subfield_structure` VALUES ('753', 'a', 'Make and model of machine', 'Make and model of machine', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10771 INSERT INTO `marc_subfield_structure` VALUES ('753', 'b', 'Programming language', 'Programming language', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10772 INSERT INTO `marc_subfield_structure` VALUES ('753', 'c', 'Operating system', 'Operating system', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10773 INSERT INTO `marc_subfield_structure` VALUES ('754', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10774 INSERT INTO `marc_subfield_structure` VALUES ('754', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10775 INSERT INTO `marc_subfield_structure` VALUES ('754', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10776 INSERT INTO `marc_subfield_structure` VALUES ('754', 'a', 'Taxonomic name', 'Taxonomic name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10777 INSERT INTO `marc_subfield_structure` VALUES ('754', 'c', 'Taxonomic category', 'Taxonomic category', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10778 INSERT INTO `marc_subfield_structure` VALUES ('754', 'd', 'Common or alternative name', 'Common or alternative name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10779 INSERT INTO `marc_subfield_structure` VALUES ('754', 'x', 'Non-public note', 'Non-public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10780 INSERT INTO `marc_subfield_structure` VALUES ('754', 'z', 'Public note', 'Public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10781 INSERT INTO `marc_subfield_structure` VALUES ('755', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10782 INSERT INTO `marc_subfield_structure` VALUES ('755', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10783 INSERT INTO `marc_subfield_structure` VALUES ('755', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10784 INSERT INTO `marc_subfield_structure` VALUES ('755', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10785 INSERT INTO `marc_subfield_structure` VALUES ('755', 'a', 'Access term', 'Access term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10786 INSERT INTO `marc_subfield_structure` VALUES ('755', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10787 INSERT INTO `marc_subfield_structure` VALUES ('755', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10788 INSERT INTO `marc_subfield_structure` VALUES ('755', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
10789 INSERT INTO `marc_subfield_structure` VALUES ('760', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10790 INSERT INTO `marc_subfield_structure` VALUES ('760', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10791 INSERT INTO `marc_subfield_structure` VALUES ('760', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10792 INSERT INTO `marc_subfield_structure` VALUES ('760', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10793 INSERT INTO `marc_subfield_structure` VALUES ('760', 'b', 'Edition', 'Edition', 0, 0, NULL, -6, NULL, NULL, '', NULL, 0, 'CF', '', '');
10794 INSERT INTO `marc_subfield_structure` VALUES ('760', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10795 INSERT INTO `marc_subfield_structure` VALUES ('760', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10796 INSERT INTO `marc_subfield_structure` VALUES ('760', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10797 INSERT INTO `marc_subfield_structure` VALUES ('760', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10798 INSERT INTO `marc_subfield_structure` VALUES ('760', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10799 INSERT INTO `marc_subfield_structure` VALUES ('760', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10800 INSERT INTO `marc_subfield_structure` VALUES ('760', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10801 INSERT INTO `marc_subfield_structure` VALUES ('760', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10802 INSERT INTO `marc_subfield_structure` VALUES ('760', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10803 INSERT INTO `marc_subfield_structure` VALUES ('760', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10804 INSERT INTO `marc_subfield_structure` VALUES ('760', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10805 INSERT INTO `marc_subfield_structure` VALUES ('760', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10806 INSERT INTO `marc_subfield_structure` VALUES ('760', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10807 INSERT INTO `marc_subfield_structure` VALUES ('760', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10808 INSERT INTO `marc_subfield_structure` VALUES ('762', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10809 INSERT INTO `marc_subfield_structure` VALUES ('762', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10810 INSERT INTO `marc_subfield_structure` VALUES ('762', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10811 INSERT INTO `marc_subfield_structure` VALUES ('762', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10812 INSERT INTO `marc_subfield_structure` VALUES ('762', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10813 INSERT INTO `marc_subfield_structure` VALUES ('762', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10814 INSERT INTO `marc_subfield_structure` VALUES ('762', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10815 INSERT INTO `marc_subfield_structure` VALUES ('762', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10816 INSERT INTO `marc_subfield_structure` VALUES ('762', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10817 INSERT INTO `marc_subfield_structure` VALUES ('762', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10818 INSERT INTO `marc_subfield_structure` VALUES ('762', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10819 INSERT INTO `marc_subfield_structure` VALUES ('762', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10820 INSERT INTO `marc_subfield_structure` VALUES ('762', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10821 INSERT INTO `marc_subfield_structure` VALUES ('762', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10822 INSERT INTO `marc_subfield_structure` VALUES ('762', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10823 INSERT INTO `marc_subfield_structure` VALUES ('762', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10824 INSERT INTO `marc_subfield_structure` VALUES ('762', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10825 INSERT INTO `marc_subfield_structure` VALUES ('762', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10826 INSERT INTO `marc_subfield_structure` VALUES ('762', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10827 INSERT INTO `marc_subfield_structure` VALUES ('765', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10828 INSERT INTO `marc_subfield_structure` VALUES ('765', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10829 INSERT INTO `marc_subfield_structure` VALUES ('765', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10830 INSERT INTO `marc_subfield_structure` VALUES ('765', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10831 INSERT INTO `marc_subfield_structure` VALUES ('765', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10832 INSERT INTO `marc_subfield_structure` VALUES ('765', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10833 INSERT INTO `marc_subfield_structure` VALUES ('765', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10834 INSERT INTO `marc_subfield_structure` VALUES ('765', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10835 INSERT INTO `marc_subfield_structure` VALUES ('765', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10836 INSERT INTO `marc_subfield_structure` VALUES ('765', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10837 INSERT INTO `marc_subfield_structure` VALUES ('765', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10838 INSERT INTO `marc_subfield_structure` VALUES ('765', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10839 INSERT INTO `marc_subfield_structure` VALUES ('765', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10840 INSERT INTO `marc_subfield_structure` VALUES ('765', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10841 INSERT INTO `marc_subfield_structure` VALUES ('765', 'q', 'Parallel title (BK SE)  [OBSOLETE]', 'Parallel title (BK SE)  [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10842 INSERT INTO `marc_subfield_structure` VALUES ('765', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10843 INSERT INTO `marc_subfield_structure` VALUES ('765', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10844 INSERT INTO `marc_subfield_structure` VALUES ('765', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10845 INSERT INTO `marc_subfield_structure` VALUES ('765', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10846 INSERT INTO `marc_subfield_structure` VALUES ('765', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10847 INSERT INTO `marc_subfield_structure` VALUES ('765', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10848 INSERT INTO `marc_subfield_structure` VALUES ('765', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10849 INSERT INTO `marc_subfield_structure` VALUES ('765', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10850 INSERT INTO `marc_subfield_structure` VALUES ('767', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10851 INSERT INTO `marc_subfield_structure` VALUES ('767', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10852 INSERT INTO `marc_subfield_structure` VALUES ('767', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10853 INSERT INTO `marc_subfield_structure` VALUES ('767', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10854 INSERT INTO `marc_subfield_structure` VALUES ('767', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10855 INSERT INTO `marc_subfield_structure` VALUES ('767', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10856 INSERT INTO `marc_subfield_structure` VALUES ('767', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10857 INSERT INTO `marc_subfield_structure` VALUES ('767', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10858 INSERT INTO `marc_subfield_structure` VALUES ('767', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10859 INSERT INTO `marc_subfield_structure` VALUES ('767', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10860 INSERT INTO `marc_subfield_structure` VALUES ('767', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10861 INSERT INTO `marc_subfield_structure` VALUES ('767', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10862 INSERT INTO `marc_subfield_structure` VALUES ('767', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10863 INSERT INTO `marc_subfield_structure` VALUES ('767', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10864 INSERT INTO `marc_subfield_structure` VALUES ('767', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10865 INSERT INTO `marc_subfield_structure` VALUES ('767', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10866 INSERT INTO `marc_subfield_structure` VALUES ('767', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10867 INSERT INTO `marc_subfield_structure` VALUES ('767', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10868 INSERT INTO `marc_subfield_structure` VALUES ('767', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10869 INSERT INTO `marc_subfield_structure` VALUES ('767', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10870 INSERT INTO `marc_subfield_structure` VALUES ('767', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10871 INSERT INTO `marc_subfield_structure` VALUES ('767', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10872 INSERT INTO `marc_subfield_structure` VALUES ('767', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10873 INSERT INTO `marc_subfield_structure` VALUES ('770', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10874 INSERT INTO `marc_subfield_structure` VALUES ('770', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10875 INSERT INTO `marc_subfield_structure` VALUES ('770', '8', 'Field link and sequence number', 'Field link and sequence number ', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10876 INSERT INTO `marc_subfield_structure` VALUES ('770', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10877 INSERT INTO `marc_subfield_structure` VALUES ('770', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10878 INSERT INTO `marc_subfield_structure` VALUES ('770', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10879 INSERT INTO `marc_subfield_structure` VALUES ('770', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10880 INSERT INTO `marc_subfield_structure` VALUES ('770', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10881 INSERT INTO `marc_subfield_structure` VALUES ('770', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10882 INSERT INTO `marc_subfield_structure` VALUES ('770', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10883 INSERT INTO `marc_subfield_structure` VALUES ('770', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10884 INSERT INTO `marc_subfield_structure` VALUES ('770', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10885 INSERT INTO `marc_subfield_structure` VALUES ('770', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10886 INSERT INTO `marc_subfield_structure` VALUES ('770', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10887 INSERT INTO `marc_subfield_structure` VALUES ('770', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10888 INSERT INTO `marc_subfield_structure` VALUES ('770', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10889 INSERT INTO `marc_subfield_structure` VALUES ('770', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10890 INSERT INTO `marc_subfield_structure` VALUES ('770', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10891 INSERT INTO `marc_subfield_structure` VALUES ('770', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10892 INSERT INTO `marc_subfield_structure` VALUES ('770', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10893 INSERT INTO `marc_subfield_structure` VALUES ('770', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10894 INSERT INTO `marc_subfield_structure` VALUES ('770', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10895 INSERT INTO `marc_subfield_structure` VALUES ('770', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10896 INSERT INTO `marc_subfield_structure` VALUES ('772', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10897 INSERT INTO `marc_subfield_structure` VALUES ('772', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10898 INSERT INTO `marc_subfield_structure` VALUES ('772', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10899 INSERT INTO `marc_subfield_structure` VALUES ('772', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10900 INSERT INTO `marc_subfield_structure` VALUES ('772', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10901 INSERT INTO `marc_subfield_structure` VALUES ('772', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10902 INSERT INTO `marc_subfield_structure` VALUES ('772', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10903 INSERT INTO `marc_subfield_structure` VALUES ('772', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10904 INSERT INTO `marc_subfield_structure` VALUES ('772', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10905 INSERT INTO `marc_subfield_structure` VALUES ('772', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10906 INSERT INTO `marc_subfield_structure` VALUES ('772', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10907 INSERT INTO `marc_subfield_structure` VALUES ('772', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10908 INSERT INTO `marc_subfield_structure` VALUES ('772', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10909 INSERT INTO `marc_subfield_structure` VALUES ('772', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10910 INSERT INTO `marc_subfield_structure` VALUES ('772', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10911 INSERT INTO `marc_subfield_structure` VALUES ('772', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10912 INSERT INTO `marc_subfield_structure` VALUES ('772', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10913 INSERT INTO `marc_subfield_structure` VALUES ('772', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10914 INSERT INTO `marc_subfield_structure` VALUES ('772', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10915 INSERT INTO `marc_subfield_structure` VALUES ('772', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10916 INSERT INTO `marc_subfield_structure` VALUES ('772', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10917 INSERT INTO `marc_subfield_structure` VALUES ('772', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10918 INSERT INTO `marc_subfield_structure` VALUES ('772', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10919 INSERT INTO `marc_subfield_structure` VALUES ('773', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10920 INSERT INTO `marc_subfield_structure` VALUES ('773', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10921 INSERT INTO `marc_subfield_structure` VALUES ('773', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10922 INSERT INTO `marc_subfield_structure` VALUES ('773', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10923 INSERT INTO `marc_subfield_structure` VALUES ('773', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10924 INSERT INTO `marc_subfield_structure` VALUES ('773', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10925 INSERT INTO `marc_subfield_structure` VALUES ('773', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10926 INSERT INTO `marc_subfield_structure` VALUES ('773', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10927 INSERT INTO `marc_subfield_structure` VALUES ('773', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10928 INSERT INTO `marc_subfield_structure` VALUES ('773', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10929 INSERT INTO `marc_subfield_structure` VALUES ('773', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10930 INSERT INTO `marc_subfield_structure` VALUES ('773', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10931 INSERT INTO `marc_subfield_structure` VALUES ('773', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10932 INSERT INTO `marc_subfield_structure` VALUES ('773', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10933 INSERT INTO `marc_subfield_structure` VALUES ('773', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10934 INSERT INTO `marc_subfield_structure` VALUES ('773', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10935 INSERT INTO `marc_subfield_structure` VALUES ('773', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10936 INSERT INTO `marc_subfield_structure` VALUES ('773', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10937 INSERT INTO `marc_subfield_structure` VALUES ('773', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10938 INSERT INTO `marc_subfield_structure` VALUES ('773', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10939 INSERT INTO `marc_subfield_structure` VALUES ('773', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10940 INSERT INTO `marc_subfield_structure` VALUES ('773', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10941 INSERT INTO `marc_subfield_structure` VALUES ('773', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10942 INSERT INTO `marc_subfield_structure` VALUES ('774', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10943 INSERT INTO `marc_subfield_structure` VALUES ('774', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10944 INSERT INTO `marc_subfield_structure` VALUES ('774', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10945 INSERT INTO `marc_subfield_structure` VALUES ('774', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10946 INSERT INTO `marc_subfield_structure` VALUES ('774', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10947 INSERT INTO `marc_subfield_structure` VALUES ('774', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10948 INSERT INTO `marc_subfield_structure` VALUES ('774', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10949 INSERT INTO `marc_subfield_structure` VALUES ('774', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10950 INSERT INTO `marc_subfield_structure` VALUES ('774', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10951 INSERT INTO `marc_subfield_structure` VALUES ('774', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10952 INSERT INTO `marc_subfield_structure` VALUES ('774', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10953 INSERT INTO `marc_subfield_structure` VALUES ('774', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10954 INSERT INTO `marc_subfield_structure` VALUES ('774', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10955 INSERT INTO `marc_subfield_structure` VALUES ('774', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10956 INSERT INTO `marc_subfield_structure` VALUES ('774', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10957 INSERT INTO `marc_subfield_structure` VALUES ('774', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10958 INSERT INTO `marc_subfield_structure` VALUES ('774', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10959 INSERT INTO `marc_subfield_structure` VALUES ('774', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10960 INSERT INTO `marc_subfield_structure` VALUES ('774', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10961 INSERT INTO `marc_subfield_structure` VALUES ('774', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10962 INSERT INTO `marc_subfield_structure` VALUES ('774', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10963 INSERT INTO `marc_subfield_structure` VALUES ('774', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10964 INSERT INTO `marc_subfield_structure` VALUES ('775', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10965 INSERT INTO `marc_subfield_structure` VALUES ('775', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10966 INSERT INTO `marc_subfield_structure` VALUES ('775', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10967 INSERT INTO `marc_subfield_structure` VALUES ('775', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10968 INSERT INTO `marc_subfield_structure` VALUES ('775', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10969 INSERT INTO `marc_subfield_structure` VALUES ('775', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10970 INSERT INTO `marc_subfield_structure` VALUES ('775', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10971 INSERT INTO `marc_subfield_structure` VALUES ('775', 'e', 'Language code', 'Language code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10972 INSERT INTO `marc_subfield_structure` VALUES ('775', 'f', 'Country code', 'Country code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10973 INSERT INTO `marc_subfield_structure` VALUES ('775', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10974 INSERT INTO `marc_subfield_structure` VALUES ('775', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10975 INSERT INTO `marc_subfield_structure` VALUES ('775', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10976 INSERT INTO `marc_subfield_structure` VALUES ('775', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10977 INSERT INTO `marc_subfield_structure` VALUES ('775', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10978 INSERT INTO `marc_subfield_structure` VALUES ('775', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10979 INSERT INTO `marc_subfield_structure` VALUES ('775', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10980 INSERT INTO `marc_subfield_structure` VALUES ('775', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10981 INSERT INTO `marc_subfield_structure` VALUES ('775', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10982 INSERT INTO `marc_subfield_structure` VALUES ('775', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10983 INSERT INTO `marc_subfield_structure` VALUES ('775', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10984 INSERT INTO `marc_subfield_structure` VALUES ('775', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10985 INSERT INTO `marc_subfield_structure` VALUES ('775', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10986 INSERT INTO `marc_subfield_structure` VALUES ('775', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10987 INSERT INTO `marc_subfield_structure` VALUES ('775', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10988 INSERT INTO `marc_subfield_structure` VALUES ('775', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10989 INSERT INTO `marc_subfield_structure` VALUES ('776', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10990 INSERT INTO `marc_subfield_structure` VALUES ('776', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10991 INSERT INTO `marc_subfield_structure` VALUES ('776', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10992 INSERT INTO `marc_subfield_structure` VALUES ('776', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10993 INSERT INTO `marc_subfield_structure` VALUES ('776', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10994 INSERT INTO `marc_subfield_structure` VALUES ('776', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10995 INSERT INTO `marc_subfield_structure` VALUES ('776', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10996 INSERT INTO `marc_subfield_structure` VALUES ('776', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10997 INSERT INTO `marc_subfield_structure` VALUES ('776', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10998 INSERT INTO `marc_subfield_structure` VALUES ('776', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
10999 INSERT INTO `marc_subfield_structure` VALUES ('776', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11000 INSERT INTO `marc_subfield_structure` VALUES ('776', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11001 INSERT INTO `marc_subfield_structure` VALUES ('776', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11002 INSERT INTO `marc_subfield_structure` VALUES ('776', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11003 INSERT INTO `marc_subfield_structure` VALUES ('776', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11004 INSERT INTO `marc_subfield_structure` VALUES ('776', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11005 INSERT INTO `marc_subfield_structure` VALUES ('776', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11006 INSERT INTO `marc_subfield_structure` VALUES ('776', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11007 INSERT INTO `marc_subfield_structure` VALUES ('776', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11008 INSERT INTO `marc_subfield_structure` VALUES ('776', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11009 INSERT INTO `marc_subfield_structure` VALUES ('776', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11010 INSERT INTO `marc_subfield_structure` VALUES ('776', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11011 INSERT INTO `marc_subfield_structure` VALUES ('776', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11012 INSERT INTO `marc_subfield_structure` VALUES ('777', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11013 INSERT INTO `marc_subfield_structure` VALUES ('777', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11014 INSERT INTO `marc_subfield_structure` VALUES ('777', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11015 INSERT INTO `marc_subfield_structure` VALUES ('777', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11016 INSERT INTO `marc_subfield_structure` VALUES ('777', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11017 INSERT INTO `marc_subfield_structure` VALUES ('777', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11018 INSERT INTO `marc_subfield_structure` VALUES ('777', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11019 INSERT INTO `marc_subfield_structure` VALUES ('777', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11020 INSERT INTO `marc_subfield_structure` VALUES ('777', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11021 INSERT INTO `marc_subfield_structure` VALUES ('777', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11022 INSERT INTO `marc_subfield_structure` VALUES ('777', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11023 INSERT INTO `marc_subfield_structure` VALUES ('777', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11024 INSERT INTO `marc_subfield_structure` VALUES ('777', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11025 INSERT INTO `marc_subfield_structure` VALUES ('777', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11026 INSERT INTO `marc_subfield_structure` VALUES ('777', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11027 INSERT INTO `marc_subfield_structure` VALUES ('777', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11028 INSERT INTO `marc_subfield_structure` VALUES ('777', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11029 INSERT INTO `marc_subfield_structure` VALUES ('777', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11030 INSERT INTO `marc_subfield_structure` VALUES ('777', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11031 INSERT INTO `marc_subfield_structure` VALUES ('777', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11032 INSERT INTO `marc_subfield_structure` VALUES ('780', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11033 INSERT INTO `marc_subfield_structure` VALUES ('780', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11034 INSERT INTO `marc_subfield_structure` VALUES ('780', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11035 INSERT INTO `marc_subfield_structure` VALUES ('780', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11036 INSERT INTO `marc_subfield_structure` VALUES ('780', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11037 INSERT INTO `marc_subfield_structure` VALUES ('780', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11038 INSERT INTO `marc_subfield_structure` VALUES ('780', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11039 INSERT INTO `marc_subfield_structure` VALUES ('780', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11040 INSERT INTO `marc_subfield_structure` VALUES ('780', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11041 INSERT INTO `marc_subfield_structure` VALUES ('780', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11042 INSERT INTO `marc_subfield_structure` VALUES ('780', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11043 INSERT INTO `marc_subfield_structure` VALUES ('780', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11044 INSERT INTO `marc_subfield_structure` VALUES ('780', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11045 INSERT INTO `marc_subfield_structure` VALUES ('780', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11046 INSERT INTO `marc_subfield_structure` VALUES ('780', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11047 INSERT INTO `marc_subfield_structure` VALUES ('780', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11048 INSERT INTO `marc_subfield_structure` VALUES ('780', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11049 INSERT INTO `marc_subfield_structure` VALUES ('780', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11050 INSERT INTO `marc_subfield_structure` VALUES ('780', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11051 INSERT INTO `marc_subfield_structure` VALUES ('780', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11052 INSERT INTO `marc_subfield_structure` VALUES ('780', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11053 INSERT INTO `marc_subfield_structure` VALUES ('780', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11054 INSERT INTO `marc_subfield_structure` VALUES ('780', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11055 INSERT INTO `marc_subfield_structure` VALUES ('785', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11056 INSERT INTO `marc_subfield_structure` VALUES ('785', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11057 INSERT INTO `marc_subfield_structure` VALUES ('785', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11058 INSERT INTO `marc_subfield_structure` VALUES ('785', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11059 INSERT INTO `marc_subfield_structure` VALUES ('785', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11060 INSERT INTO `marc_subfield_structure` VALUES ('785', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11061 INSERT INTO `marc_subfield_structure` VALUES ('785', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11062 INSERT INTO `marc_subfield_structure` VALUES ('785', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11063 INSERT INTO `marc_subfield_structure` VALUES ('785', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11064 INSERT INTO `marc_subfield_structure` VALUES ('785', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11065 INSERT INTO `marc_subfield_structure` VALUES ('785', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11066 INSERT INTO `marc_subfield_structure` VALUES ('785', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11067 INSERT INTO `marc_subfield_structure` VALUES ('785', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11068 INSERT INTO `marc_subfield_structure` VALUES ('785', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11069 INSERT INTO `marc_subfield_structure` VALUES ('785', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11070 INSERT INTO `marc_subfield_structure` VALUES ('785', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11071 INSERT INTO `marc_subfield_structure` VALUES ('785', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11072 INSERT INTO `marc_subfield_structure` VALUES ('785', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11073 INSERT INTO `marc_subfield_structure` VALUES ('785', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11074 INSERT INTO `marc_subfield_structure` VALUES ('785', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11075 INSERT INTO `marc_subfield_structure` VALUES ('785', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11076 INSERT INTO `marc_subfield_structure` VALUES ('785', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11077 INSERT INTO `marc_subfield_structure` VALUES ('785', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11078 INSERT INTO `marc_subfield_structure` VALUES ('786', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11079 INSERT INTO `marc_subfield_structure` VALUES ('786', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11080 INSERT INTO `marc_subfield_structure` VALUES ('786', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11081 INSERT INTO `marc_subfield_structure` VALUES ('786', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11082 INSERT INTO `marc_subfield_structure` VALUES ('786', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11083 INSERT INTO `marc_subfield_structure` VALUES ('786', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11084 INSERT INTO `marc_subfield_structure` VALUES ('786', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11085 INSERT INTO `marc_subfield_structure` VALUES ('786', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11086 INSERT INTO `marc_subfield_structure` VALUES ('786', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11087 INSERT INTO `marc_subfield_structure` VALUES ('786', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11088 INSERT INTO `marc_subfield_structure` VALUES ('786', 'j', 'Period of content', 'Period of content', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11089 INSERT INTO `marc_subfield_structure` VALUES ('786', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11090 INSERT INTO `marc_subfield_structure` VALUES ('786', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11091 INSERT INTO `marc_subfield_structure` VALUES ('786', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11092 INSERT INTO `marc_subfield_structure` VALUES ('786', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11093 INSERT INTO `marc_subfield_structure` VALUES ('786', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11094 INSERT INTO `marc_subfield_structure` VALUES ('786', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11095 INSERT INTO `marc_subfield_structure` VALUES ('786', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11096 INSERT INTO `marc_subfield_structure` VALUES ('786', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11097 INSERT INTO `marc_subfield_structure` VALUES ('786', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11098 INSERT INTO `marc_subfield_structure` VALUES ('786', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11099 INSERT INTO `marc_subfield_structure` VALUES ('786', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11100 INSERT INTO `marc_subfield_structure` VALUES ('786', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11101 INSERT INTO `marc_subfield_structure` VALUES ('786', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11102 INSERT INTO `marc_subfield_structure` VALUES ('787', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11103 INSERT INTO `marc_subfield_structure` VALUES ('787', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11104 INSERT INTO `marc_subfield_structure` VALUES ('787', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11105 INSERT INTO `marc_subfield_structure` VALUES ('787', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11106 INSERT INTO `marc_subfield_structure` VALUES ('787', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11107 INSERT INTO `marc_subfield_structure` VALUES ('787', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11108 INSERT INTO `marc_subfield_structure` VALUES ('787', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11109 INSERT INTO `marc_subfield_structure` VALUES ('787', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11110 INSERT INTO `marc_subfield_structure` VALUES ('787', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11111 INSERT INTO `marc_subfield_structure` VALUES ('787', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11112 INSERT INTO `marc_subfield_structure` VALUES ('787', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11113 INSERT INTO `marc_subfield_structure` VALUES ('787', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11114 INSERT INTO `marc_subfield_structure` VALUES ('787', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11115 INSERT INTO `marc_subfield_structure` VALUES ('787', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11116 INSERT INTO `marc_subfield_structure` VALUES ('787', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11117 INSERT INTO `marc_subfield_structure` VALUES ('787', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11118 INSERT INTO `marc_subfield_structure` VALUES ('787', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11119 INSERT INTO `marc_subfield_structure` VALUES ('787', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11120 INSERT INTO `marc_subfield_structure` VALUES ('787', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11121 INSERT INTO `marc_subfield_structure` VALUES ('787', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11122 INSERT INTO `marc_subfield_structure` VALUES ('787', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11123 INSERT INTO `marc_subfield_structure` VALUES ('787', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11124 INSERT INTO `marc_subfield_structure` VALUES ('787', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11125 INSERT INTO `marc_subfield_structure` VALUES ('789', '%', '%', '%', 0, 0, '', 7, '', '', '', 0, -6, 'CF', '', '');
11126 INSERT INTO `marc_subfield_structure` VALUES ('789', '2', '2', '2', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11127 INSERT INTO `marc_subfield_structure` VALUES ('789', '3', '3', '3', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11128 INSERT INTO `marc_subfield_structure` VALUES ('789', '4', '4', '4', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11129 INSERT INTO `marc_subfield_structure` VALUES ('789', '5', '5', '5', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11130 INSERT INTO `marc_subfield_structure` VALUES ('789', '6', '6', '6', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11131 INSERT INTO `marc_subfield_structure` VALUES ('789', '7', '7', '7', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11132 INSERT INTO `marc_subfield_structure` VALUES ('789', '8', '8', '8', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11133 INSERT INTO `marc_subfield_structure` VALUES ('789', '9', '9', '9', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11134 INSERT INTO `marc_subfield_structure` VALUES ('789', 'a', 'a', 'a', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11135 INSERT INTO `marc_subfield_structure` VALUES ('789', 'b', 'b', 'b', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11136 INSERT INTO `marc_subfield_structure` VALUES ('789', 'c', 'c', 'c', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11137 INSERT INTO `marc_subfield_structure` VALUES ('789', 'd', 'd', 'd', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11138 INSERT INTO `marc_subfield_structure` VALUES ('789', 'e', 'e', 'e', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11139 INSERT INTO `marc_subfield_structure` VALUES ('789', 'f', 'f', 'f', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11140 INSERT INTO `marc_subfield_structure` VALUES ('789', 'g', 'g', 'g', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11141 INSERT INTO `marc_subfield_structure` VALUES ('789', 'h', 'h', 'h', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11142 INSERT INTO `marc_subfield_structure` VALUES ('789', 'i', 'i', 'i', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11143 INSERT INTO `marc_subfield_structure` VALUES ('789', 'j', 'j', 'j', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11144 INSERT INTO `marc_subfield_structure` VALUES ('789', 'k', 'k', 'k', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11145 INSERT INTO `marc_subfield_structure` VALUES ('789', 'l', 'l', 'l', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11146 INSERT INTO `marc_subfield_structure` VALUES ('789', 'm', 'm', 'm', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11147 INSERT INTO `marc_subfield_structure` VALUES ('789', 'n', 'n', 'n', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11148 INSERT INTO `marc_subfield_structure` VALUES ('789', 'o', 'o', 'o', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11149 INSERT INTO `marc_subfield_structure` VALUES ('789', 'p', 'p', 'p', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11150 INSERT INTO `marc_subfield_structure` VALUES ('789', 'q', 'q', 'q', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11151 INSERT INTO `marc_subfield_structure` VALUES ('789', 'r', 'r', 'r', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11152 INSERT INTO `marc_subfield_structure` VALUES ('789', 's', 's', 's', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11153 INSERT INTO `marc_subfield_structure` VALUES ('789', 't', 't', 't', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11154 INSERT INTO `marc_subfield_structure` VALUES ('789', 'u', 'u', 'u', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11155 INSERT INTO `marc_subfield_structure` VALUES ('789', 'v', 'v', 'v', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11156 INSERT INTO `marc_subfield_structure` VALUES ('789', 'w', 'w', 'w', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11157 INSERT INTO `marc_subfield_structure` VALUES ('789', 'x', 'x', 'x', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11158 INSERT INTO `marc_subfield_structure` VALUES ('789', 'y', 'y', 'y', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11159 INSERT INTO `marc_subfield_structure` VALUES ('789', 'z', 'z', 'z', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11160 INSERT INTO `marc_subfield_structure` VALUES ('796', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'CF', '', '');
11161 INSERT INTO `marc_subfield_structure` VALUES ('796', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11162 INSERT INTO `marc_subfield_structure` VALUES ('796', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11163 INSERT INTO `marc_subfield_structure` VALUES ('796', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11164 INSERT INTO `marc_subfield_structure` VALUES ('796', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11165 INSERT INTO `marc_subfield_structure` VALUES ('796', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11166 INSERT INTO `marc_subfield_structure` VALUES ('796', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'CF', '', '');
11167 INSERT INTO `marc_subfield_structure` VALUES ('796', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11168 INSERT INTO `marc_subfield_structure` VALUES ('796', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11169 INSERT INTO `marc_subfield_structure` VALUES ('796', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11170 INSERT INTO `marc_subfield_structure` VALUES ('796', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11171 INSERT INTO `marc_subfield_structure` VALUES ('796', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11172 INSERT INTO `marc_subfield_structure` VALUES ('796', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11173 INSERT INTO `marc_subfield_structure` VALUES ('796', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11174 INSERT INTO `marc_subfield_structure` VALUES ('796', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11175 INSERT INTO `marc_subfield_structure` VALUES ('796', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11176 INSERT INTO `marc_subfield_structure` VALUES ('796', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11177 INSERT INTO `marc_subfield_structure` VALUES ('796', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11178 INSERT INTO `marc_subfield_structure` VALUES ('796', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11179 INSERT INTO `marc_subfield_structure` VALUES ('796', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11180 INSERT INTO `marc_subfield_structure` VALUES ('796', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11181 INSERT INTO `marc_subfield_structure` VALUES ('796', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11182 INSERT INTO `marc_subfield_structure` VALUES ('796', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11183 INSERT INTO `marc_subfield_structure` VALUES ('796', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11184 INSERT INTO `marc_subfield_structure` VALUES ('796', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11185 INSERT INTO `marc_subfield_structure` VALUES ('796', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11186 INSERT INTO `marc_subfield_structure` VALUES ('796', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11187 INSERT INTO `marc_subfield_structure` VALUES ('796', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11188 INSERT INTO `marc_subfield_structure` VALUES ('797', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'CF', '', '');
11189 INSERT INTO `marc_subfield_structure` VALUES ('797', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11190 INSERT INTO `marc_subfield_structure` VALUES ('797', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11191 INSERT INTO `marc_subfield_structure` VALUES ('797', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11192 INSERT INTO `marc_subfield_structure` VALUES ('797', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11193 INSERT INTO `marc_subfield_structure` VALUES ('797', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11194 INSERT INTO `marc_subfield_structure` VALUES ('797', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'CF', '', '');
11195 INSERT INTO `marc_subfield_structure` VALUES ('797', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11196 INSERT INTO `marc_subfield_structure` VALUES ('797', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11197 INSERT INTO `marc_subfield_structure` VALUES ('797', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11198 INSERT INTO `marc_subfield_structure` VALUES ('797', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11199 INSERT INTO `marc_subfield_structure` VALUES ('797', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11200 INSERT INTO `marc_subfield_structure` VALUES ('797', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11201 INSERT INTO `marc_subfield_structure` VALUES ('797', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11202 INSERT INTO `marc_subfield_structure` VALUES ('797', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11203 INSERT INTO `marc_subfield_structure` VALUES ('797', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11204 INSERT INTO `marc_subfield_structure` VALUES ('797', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11205 INSERT INTO `marc_subfield_structure` VALUES ('797', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11206 INSERT INTO `marc_subfield_structure` VALUES ('797', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11207 INSERT INTO `marc_subfield_structure` VALUES ('797', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11208 INSERT INTO `marc_subfield_structure` VALUES ('797', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11209 INSERT INTO `marc_subfield_structure` VALUES ('797', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11210 INSERT INTO `marc_subfield_structure` VALUES ('797', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11211 INSERT INTO `marc_subfield_structure` VALUES ('797', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11212 INSERT INTO `marc_subfield_structure` VALUES ('797', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11213 INSERT INTO `marc_subfield_structure` VALUES ('797', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11214 INSERT INTO `marc_subfield_structure` VALUES ('798', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'CF', '', '');
11215 INSERT INTO `marc_subfield_structure` VALUES ('798', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11216 INSERT INTO `marc_subfield_structure` VALUES ('798', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11217 INSERT INTO `marc_subfield_structure` VALUES ('798', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11218 INSERT INTO `marc_subfield_structure` VALUES ('798', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11219 INSERT INTO `marc_subfield_structure` VALUES ('798', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11220 INSERT INTO `marc_subfield_structure` VALUES ('798', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'CF', '', '');
11221 INSERT INTO `marc_subfield_structure` VALUES ('798', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11222 INSERT INTO `marc_subfield_structure` VALUES ('798', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11223 INSERT INTO `marc_subfield_structure` VALUES ('798', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11224 INSERT INTO `marc_subfield_structure` VALUES ('798', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11225 INSERT INTO `marc_subfield_structure` VALUES ('798', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11226 INSERT INTO `marc_subfield_structure` VALUES ('798', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11227 INSERT INTO `marc_subfield_structure` VALUES ('798', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11228 INSERT INTO `marc_subfield_structure` VALUES ('798', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11229 INSERT INTO `marc_subfield_structure` VALUES ('798', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11230 INSERT INTO `marc_subfield_structure` VALUES ('798', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11231 INSERT INTO `marc_subfield_structure` VALUES ('798', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11232 INSERT INTO `marc_subfield_structure` VALUES ('798', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11233 INSERT INTO `marc_subfield_structure` VALUES ('798', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11234 INSERT INTO `marc_subfield_structure` VALUES ('798', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11235 INSERT INTO `marc_subfield_structure` VALUES ('798', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11236 INSERT INTO `marc_subfield_structure` VALUES ('798', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11237 INSERT INTO `marc_subfield_structure` VALUES ('798', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'CF', '', '');
11238 INSERT INTO `marc_subfield_structure` VALUES ('799', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'CF', '', '');
11239 INSERT INTO `marc_subfield_structure` VALUES ('799', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11240 INSERT INTO `marc_subfield_structure` VALUES ('799', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11241 INSERT INTO `marc_subfield_structure` VALUES ('799', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11242 INSERT INTO `marc_subfield_structure` VALUES ('799', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11243 INSERT INTO `marc_subfield_structure` VALUES ('799', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'CF', '', '');
11244 INSERT INTO `marc_subfield_structure` VALUES ('799', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11245 INSERT INTO `marc_subfield_structure` VALUES ('799', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11246 INSERT INTO `marc_subfield_structure` VALUES ('799', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11247 INSERT INTO `marc_subfield_structure` VALUES ('799', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11248 INSERT INTO `marc_subfield_structure` VALUES ('799', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11249 INSERT INTO `marc_subfield_structure` VALUES ('799', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11250 INSERT INTO `marc_subfield_structure` VALUES ('799', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11251 INSERT INTO `marc_subfield_structure` VALUES ('799', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11252 INSERT INTO `marc_subfield_structure` VALUES ('799', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11253 INSERT INTO `marc_subfield_structure` VALUES ('799', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11254 INSERT INTO `marc_subfield_structure` VALUES ('799', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11255 INSERT INTO `marc_subfield_structure` VALUES ('799', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11256 INSERT INTO `marc_subfield_structure` VALUES ('799', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11257 INSERT INTO `marc_subfield_structure` VALUES ('799', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11258 INSERT INTO `marc_subfield_structure` VALUES ('799', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'CF', '', '');
11259 INSERT INTO `marc_subfield_structure` VALUES ('800', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11260 INSERT INTO `marc_subfield_structure` VALUES ('800', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11261 INSERT INTO `marc_subfield_structure` VALUES ('800', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11262 INSERT INTO `marc_subfield_structure` VALUES ('800', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'CF', '', '');
11263 INSERT INTO `marc_subfield_structure` VALUES ('800', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11264 INSERT INTO `marc_subfield_structure` VALUES ('800', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11265 INSERT INTO `marc_subfield_structure` VALUES ('800', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11266 INSERT INTO `marc_subfield_structure` VALUES ('800', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11267 INSERT INTO `marc_subfield_structure` VALUES ('800', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11268 INSERT INTO `marc_subfield_structure` VALUES ('800', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11269 INSERT INTO `marc_subfield_structure` VALUES ('800', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11270 INSERT INTO `marc_subfield_structure` VALUES ('800', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11271 INSERT INTO `marc_subfield_structure` VALUES ('800', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11272 INSERT INTO `marc_subfield_structure` VALUES ('800', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11273 INSERT INTO `marc_subfield_structure` VALUES ('800', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11274 INSERT INTO `marc_subfield_structure` VALUES ('800', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11275 INSERT INTO `marc_subfield_structure` VALUES ('800', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11276 INSERT INTO `marc_subfield_structure` VALUES ('800', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11277 INSERT INTO `marc_subfield_structure` VALUES ('800', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11278 INSERT INTO `marc_subfield_structure` VALUES ('800', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11279 INSERT INTO `marc_subfield_structure` VALUES ('800', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11280 INSERT INTO `marc_subfield_structure` VALUES ('800', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11281 INSERT INTO `marc_subfield_structure` VALUES ('800', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11282 INSERT INTO `marc_subfield_structure` VALUES ('800', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11283 INSERT INTO `marc_subfield_structure` VALUES ('800', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11284 INSERT INTO `marc_subfield_structure` VALUES ('810', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11285 INSERT INTO `marc_subfield_structure` VALUES ('810', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11286 INSERT INTO `marc_subfield_structure` VALUES ('810', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11287 INSERT INTO `marc_subfield_structure` VALUES ('810', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'CF', '', '');
11288 INSERT INTO `marc_subfield_structure` VALUES ('810', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11289 INSERT INTO `marc_subfield_structure` VALUES ('810', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11290 INSERT INTO `marc_subfield_structure` VALUES ('810', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11291 INSERT INTO `marc_subfield_structure` VALUES ('810', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11292 INSERT INTO `marc_subfield_structure` VALUES ('810', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11293 INSERT INTO `marc_subfield_structure` VALUES ('810', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11294 INSERT INTO `marc_subfield_structure` VALUES ('810', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11295 INSERT INTO `marc_subfield_structure` VALUES ('810', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11296 INSERT INTO `marc_subfield_structure` VALUES ('810', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11297 INSERT INTO `marc_subfield_structure` VALUES ('810', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11298 INSERT INTO `marc_subfield_structure` VALUES ('810', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11299 INSERT INTO `marc_subfield_structure` VALUES ('810', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11300 INSERT INTO `marc_subfield_structure` VALUES ('810', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11301 INSERT INTO `marc_subfield_structure` VALUES ('810', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11302 INSERT INTO `marc_subfield_structure` VALUES ('810', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11303 INSERT INTO `marc_subfield_structure` VALUES ('810', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11304 INSERT INTO `marc_subfield_structure` VALUES ('810', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11305 INSERT INTO `marc_subfield_structure` VALUES ('810', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11306 INSERT INTO `marc_subfield_structure` VALUES ('810', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11307 INSERT INTO `marc_subfield_structure` VALUES ('811', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11308 INSERT INTO `marc_subfield_structure` VALUES ('811', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11309 INSERT INTO `marc_subfield_structure` VALUES ('811', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11310 INSERT INTO `marc_subfield_structure` VALUES ('811', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'CF', '', '');
11311 INSERT INTO `marc_subfield_structure` VALUES ('811', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11312 INSERT INTO `marc_subfield_structure` VALUES ('811', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11313 INSERT INTO `marc_subfield_structure` VALUES ('811', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11314 INSERT INTO `marc_subfield_structure` VALUES ('811', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11315 INSERT INTO `marc_subfield_structure` VALUES ('811', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11316 INSERT INTO `marc_subfield_structure` VALUES ('811', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11317 INSERT INTO `marc_subfield_structure` VALUES ('811', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11318 INSERT INTO `marc_subfield_structure` VALUES ('811', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11319 INSERT INTO `marc_subfield_structure` VALUES ('811', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11320 INSERT INTO `marc_subfield_structure` VALUES ('811', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11321 INSERT INTO `marc_subfield_structure` VALUES ('811', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11322 INSERT INTO `marc_subfield_structure` VALUES ('811', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11323 INSERT INTO `marc_subfield_structure` VALUES ('811', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11324 INSERT INTO `marc_subfield_structure` VALUES ('811', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11325 INSERT INTO `marc_subfield_structure` VALUES ('811', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11326 INSERT INTO `marc_subfield_structure` VALUES ('811', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11327 INSERT INTO `marc_subfield_structure` VALUES ('811', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11328 INSERT INTO `marc_subfield_structure` VALUES ('830', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11329 INSERT INTO `marc_subfield_structure` VALUES ('830', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11330 INSERT INTO `marc_subfield_structure` VALUES ('830', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'CF', '', '');
11331 INSERT INTO `marc_subfield_structure` VALUES ('830', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11332 INSERT INTO `marc_subfield_structure` VALUES ('830', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11333 INSERT INTO `marc_subfield_structure` VALUES ('830', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11334 INSERT INTO `marc_subfield_structure` VALUES ('830', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11335 INSERT INTO `marc_subfield_structure` VALUES ('830', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11336 INSERT INTO `marc_subfield_structure` VALUES ('830', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11337 INSERT INTO `marc_subfield_structure` VALUES ('830', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11338 INSERT INTO `marc_subfield_structure` VALUES ('830', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11339 INSERT INTO `marc_subfield_structure` VALUES ('830', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11340 INSERT INTO `marc_subfield_structure` VALUES ('830', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11341 INSERT INTO `marc_subfield_structure` VALUES ('830', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11342 INSERT INTO `marc_subfield_structure` VALUES ('830', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11343 INSERT INTO `marc_subfield_structure` VALUES ('830', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11344 INSERT INTO `marc_subfield_structure` VALUES ('830', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11345 INSERT INTO `marc_subfield_structure` VALUES ('830', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11346 INSERT INTO `marc_subfield_structure` VALUES ('840', 'a', 'Title', 'Title', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11347 INSERT INTO `marc_subfield_structure` VALUES ('840', 'h', 'Medium', 'Medium', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11348 INSERT INTO `marc_subfield_structure` VALUES ('840', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11349 INSERT INTO `marc_subfield_structure` VALUES ('841', 'a', 'Type of record', 'Type of record', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11350 INSERT INTO `marc_subfield_structure` VALUES ('841', 'b', 'Fixed-length data elements', 'Fixed-length data elements', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11351 INSERT INTO `marc_subfield_structure` VALUES ('841', 'e', 'Encoding level', 'Encoding level', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11352 INSERT INTO `marc_subfield_structure` VALUES ('842', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11353 INSERT INTO `marc_subfield_structure` VALUES ('842', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11354 INSERT INTO `marc_subfield_structure` VALUES ('842', 'a', 'Textual physical form designator', 'Textual physical form designator', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11355 INSERT INTO `marc_subfield_structure` VALUES ('843', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11356 INSERT INTO `marc_subfield_structure` VALUES ('843', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11357 INSERT INTO `marc_subfield_structure` VALUES ('843', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11358 INSERT INTO `marc_subfield_structure` VALUES ('843', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11359 INSERT INTO `marc_subfield_structure` VALUES ('843', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11360 INSERT INTO `marc_subfield_structure` VALUES ('843', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11361 INSERT INTO `marc_subfield_structure` VALUES ('843', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11362 INSERT INTO `marc_subfield_structure` VALUES ('843', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11363 INSERT INTO `marc_subfield_structure` VALUES ('843', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11364 INSERT INTO `marc_subfield_structure` VALUES ('843', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11365 INSERT INTO `marc_subfield_structure` VALUES ('843', 'm', 'Dates of publication and/or sequential designation of issues reproduced', 'Dates of publication and/or sequential designation of issues reproduced', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11366 INSERT INTO `marc_subfield_structure` VALUES ('843', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11367 INSERT INTO `marc_subfield_structure` VALUES ('844', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11368 INSERT INTO `marc_subfield_structure` VALUES ('844', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11369 INSERT INTO `marc_subfield_structure` VALUES ('844', 'a', 'Name of unit', 'Name of unit', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11370 INSERT INTO `marc_subfield_structure` VALUES ('845', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11371 INSERT INTO `marc_subfield_structure` VALUES ('845', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11372 INSERT INTO `marc_subfield_structure` VALUES ('845', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11373 INSERT INTO `marc_subfield_structure` VALUES ('845', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11374 INSERT INTO `marc_subfield_structure` VALUES ('845', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11375 INSERT INTO `marc_subfield_structure` VALUES ('845', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11376 INSERT INTO `marc_subfield_structure` VALUES ('845', 'c', 'Authorization', 'Authorization', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11377 INSERT INTO `marc_subfield_structure` VALUES ('845', 'd', 'Authorized users', 'Authorized users', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11378 INSERT INTO `marc_subfield_structure` VALUES ('850', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11379 INSERT INTO `marc_subfield_structure` VALUES ('850', 'a', 'Holding institution', 'Holding institution', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11380 INSERT INTO `marc_subfield_structure` VALUES ('850', 'b', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11381 INSERT INTO `marc_subfield_structure` VALUES ('850', 'd', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11382 INSERT INTO `marc_subfield_structure` VALUES ('850', 'e', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11383 INSERT INTO `marc_subfield_structure` VALUES ('851', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11384 INSERT INTO `marc_subfield_structure` VALUES ('851', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11385 INSERT INTO `marc_subfield_structure` VALUES ('851', 'a', 'Name (custodian or owner)', 'Name (custodian or owner)', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11386 INSERT INTO `marc_subfield_structure` VALUES ('851', 'b', 'Institutional division', 'Institutional division', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11387 INSERT INTO `marc_subfield_structure` VALUES ('851', 'c', 'Street address', 'Street address', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11388 INSERT INTO `marc_subfield_structure` VALUES ('851', 'd', 'Country', 'Country', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11389 INSERT INTO `marc_subfield_structure` VALUES ('851', 'e', 'Location of units', 'Location of units', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11390 INSERT INTO `marc_subfield_structure` VALUES ('851', 'f', 'Item number', 'Item number', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11391 INSERT INTO `marc_subfield_structure` VALUES ('851', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'CF', '', '');
11392 INSERT INTO `marc_subfield_structure` VALUES ('852', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11393 INSERT INTO `marc_subfield_structure` VALUES ('852', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11394 INSERT INTO `marc_subfield_structure` VALUES ('852', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11395 INSERT INTO `marc_subfield_structure` VALUES ('852', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11396 INSERT INTO `marc_subfield_structure` VALUES ('852', 'a', 'Location', 'Location', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11397 INSERT INTO `marc_subfield_structure` VALUES ('852', 'b', 'Sublocation or collection', 'Sublocation or collection', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11398 INSERT INTO `marc_subfield_structure` VALUES ('852', 'c', 'Shelving location', 'Shelving location', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11399 INSERT INTO `marc_subfield_structure` VALUES ('852', 'e', 'Address', 'Address', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11400 INSERT INTO `marc_subfield_structure` VALUES ('852', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11401 INSERT INTO `marc_subfield_structure` VALUES ('852', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11402 INSERT INTO `marc_subfield_structure` VALUES ('852', 'h', 'Classification part', 'Classification part', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11403 INSERT INTO `marc_subfield_structure` VALUES ('852', 'i', 'Item part', 'Item part', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11404 INSERT INTO `marc_subfield_structure` VALUES ('852', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11405 INSERT INTO `marc_subfield_structure` VALUES ('852', 'k', 'Call number prefix', 'Call number prefix', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11406 INSERT INTO `marc_subfield_structure` VALUES ('852', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11407 INSERT INTO `marc_subfield_structure` VALUES ('852', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11408 INSERT INTO `marc_subfield_structure` VALUES ('852', 'n', 'Country code', 'Country code', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11409 INSERT INTO `marc_subfield_structure` VALUES ('852', 'p', 'Piece designation', 'Piece designation', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11410 INSERT INTO `marc_subfield_structure` VALUES ('852', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11411 INSERT INTO `marc_subfield_structure` VALUES ('852', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11412 INSERT INTO `marc_subfield_structure` VALUES ('852', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11413 INSERT INTO `marc_subfield_structure` VALUES ('852', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11414 INSERT INTO `marc_subfield_structure` VALUES ('852', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11415 INSERT INTO `marc_subfield_structure` VALUES ('853', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11416 INSERT INTO `marc_subfield_structure` VALUES ('853', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11417 INSERT INTO `marc_subfield_structure` VALUES ('853', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11418 INSERT INTO `marc_subfield_structure` VALUES ('853', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11419 INSERT INTO `marc_subfield_structure` VALUES ('853', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11420 INSERT INTO `marc_subfield_structure` VALUES ('853', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11421 INSERT INTO `marc_subfield_structure` VALUES ('853', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11422 INSERT INTO `marc_subfield_structure` VALUES ('853', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11423 INSERT INTO `marc_subfield_structure` VALUES ('853', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11424 INSERT INTO `marc_subfield_structure` VALUES ('853', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11425 INSERT INTO `marc_subfield_structure` VALUES ('853', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11426 INSERT INTO `marc_subfield_structure` VALUES ('853', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11427 INSERT INTO `marc_subfield_structure` VALUES ('853', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11428 INSERT INTO `marc_subfield_structure` VALUES ('853', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11429 INSERT INTO `marc_subfield_structure` VALUES ('853', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11430 INSERT INTO `marc_subfield_structure` VALUES ('853', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11431 INSERT INTO `marc_subfield_structure` VALUES ('853', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11432 INSERT INTO `marc_subfield_structure` VALUES ('853', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11433 INSERT INTO `marc_subfield_structure` VALUES ('853', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11434 INSERT INTO `marc_subfield_structure` VALUES ('853', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11435 INSERT INTO `marc_subfield_structure` VALUES ('853', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11436 INSERT INTO `marc_subfield_structure` VALUES ('853', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11437 INSERT INTO `marc_subfield_structure` VALUES ('853', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11438 INSERT INTO `marc_subfield_structure` VALUES ('853', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11439 INSERT INTO `marc_subfield_structure` VALUES ('853', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11440 INSERT INTO `marc_subfield_structure` VALUES ('854', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11441 INSERT INTO `marc_subfield_structure` VALUES ('854', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11442 INSERT INTO `marc_subfield_structure` VALUES ('854', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11443 INSERT INTO `marc_subfield_structure` VALUES ('854', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11444 INSERT INTO `marc_subfield_structure` VALUES ('854', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11445 INSERT INTO `marc_subfield_structure` VALUES ('854', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11446 INSERT INTO `marc_subfield_structure` VALUES ('854', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11447 INSERT INTO `marc_subfield_structure` VALUES ('854', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11448 INSERT INTO `marc_subfield_structure` VALUES ('854', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11449 INSERT INTO `marc_subfield_structure` VALUES ('854', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11450 INSERT INTO `marc_subfield_structure` VALUES ('854', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11451 INSERT INTO `marc_subfield_structure` VALUES ('854', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11452 INSERT INTO `marc_subfield_structure` VALUES ('854', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11453 INSERT INTO `marc_subfield_structure` VALUES ('854', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11454 INSERT INTO `marc_subfield_structure` VALUES ('854', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11455 INSERT INTO `marc_subfield_structure` VALUES ('854', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11456 INSERT INTO `marc_subfield_structure` VALUES ('854', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11457 INSERT INTO `marc_subfield_structure` VALUES ('854', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11458 INSERT INTO `marc_subfield_structure` VALUES ('854', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11459 INSERT INTO `marc_subfield_structure` VALUES ('854', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11460 INSERT INTO `marc_subfield_structure` VALUES ('854', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11461 INSERT INTO `marc_subfield_structure` VALUES ('854', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11462 INSERT INTO `marc_subfield_structure` VALUES ('854', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11463 INSERT INTO `marc_subfield_structure` VALUES ('854', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11464 INSERT INTO `marc_subfield_structure` VALUES ('854', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11465 INSERT INTO `marc_subfield_structure` VALUES ('855', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11466 INSERT INTO `marc_subfield_structure` VALUES ('855', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11467 INSERT INTO `marc_subfield_structure` VALUES ('855', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11468 INSERT INTO `marc_subfield_structure` VALUES ('855', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11469 INSERT INTO `marc_subfield_structure` VALUES ('855', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11470 INSERT INTO `marc_subfield_structure` VALUES ('855', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11471 INSERT INTO `marc_subfield_structure` VALUES ('855', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11472 INSERT INTO `marc_subfield_structure` VALUES ('855', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11473 INSERT INTO `marc_subfield_structure` VALUES ('855', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11474 INSERT INTO `marc_subfield_structure` VALUES ('855', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11475 INSERT INTO `marc_subfield_structure` VALUES ('855', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11476 INSERT INTO `marc_subfield_structure` VALUES ('855', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11477 INSERT INTO `marc_subfield_structure` VALUES ('855', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11478 INSERT INTO `marc_subfield_structure` VALUES ('855', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11479 INSERT INTO `marc_subfield_structure` VALUES ('855', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11480 INSERT INTO `marc_subfield_structure` VALUES ('855', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11481 INSERT INTO `marc_subfield_structure` VALUES ('855', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11482 INSERT INTO `marc_subfield_structure` VALUES ('855', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11483 INSERT INTO `marc_subfield_structure` VALUES ('855', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11484 INSERT INTO `marc_subfield_structure` VALUES ('855', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11485 INSERT INTO `marc_subfield_structure` VALUES ('855', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11486 INSERT INTO `marc_subfield_structure` VALUES ('855', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11487 INSERT INTO `marc_subfield_structure` VALUES ('855', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11488 INSERT INTO `marc_subfield_structure` VALUES ('855', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11489 INSERT INTO `marc_subfield_structure` VALUES ('855', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11490 INSERT INTO `marc_subfield_structure` VALUES ('856', '2', 'Access method', 'Access method', 0, 0, '', 8, '', '', '', 0, -6, 'CF', '', '');
11491 INSERT INTO `marc_subfield_structure` VALUES ('856', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', 0, -6, 'CF', '', '');
11492 INSERT INTO `marc_subfield_structure` VALUES ('856', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', 0, -6, 'CF', '', '');
11493 INSERT INTO `marc_subfield_structure` VALUES ('856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', 0, -6, 'CF', '', '');
11494 INSERT INTO `marc_subfield_structure` VALUES ('856', 'a', 'Host name', 'Host name', 1, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11495 INSERT INTO `marc_subfield_structure` VALUES ('856', 'b', 'Access number', 'Access number', 1, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11496 INSERT INTO `marc_subfield_structure` VALUES ('856', 'c', 'Compression information', 'Compression information', 1, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11497 INSERT INTO `marc_subfield_structure` VALUES ('856', 'd', 'Path', 'Path', 1, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11498 INSERT INTO `marc_subfield_structure` VALUES ('856', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11499 INSERT INTO `marc_subfield_structure` VALUES ('856', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11500 INSERT INTO `marc_subfield_structure` VALUES ('856', 'i', 'Instruction', 'Instruction', 1, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11501 INSERT INTO `marc_subfield_structure` VALUES ('856', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11502 INSERT INTO `marc_subfield_structure` VALUES ('856', 'k', 'Password', 'Password', 0, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11503 INSERT INTO `marc_subfield_structure` VALUES ('856', 'l', 'Logon', 'Logon', 0, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11504 INSERT INTO `marc_subfield_structure` VALUES ('856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11505 INSERT INTO `marc_subfield_structure` VALUES ('856', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11506 INSERT INTO `marc_subfield_structure` VALUES ('856', 'o', 'Operating system', 'Operating system', 0, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11507 INSERT INTO `marc_subfield_structure` VALUES ('856', 'p', 'Port', 'Port', 0, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11508 INSERT INTO `marc_subfield_structure` VALUES ('856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11509 INSERT INTO `marc_subfield_structure` VALUES ('856', 'r', 'Settings', 'Settings', 0, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11510 INSERT INTO `marc_subfield_structure` VALUES ('856', 's', 'File size', 'File size', 1, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11511 INSERT INTO `marc_subfield_structure` VALUES ('856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11512 INSERT INTO `marc_subfield_structure` VALUES ('856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 'biblioitems.url', 8, '', '', '', 1, -1, 'CF', '', '');
11513 INSERT INTO `marc_subfield_structure` VALUES ('856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11514 INSERT INTO `marc_subfield_structure` VALUES ('856', 'w', 'Record control number', 'Record control number', 1, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11515 INSERT INTO `marc_subfield_structure` VALUES ('856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 1, 'CF', '', '');
11516 INSERT INTO `marc_subfield_structure` VALUES ('856', 'y', 'Link text', 'Link text', 1, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11517 INSERT INTO `marc_subfield_structure` VALUES ('856', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, -1, 'CF', '', '');
11518 INSERT INTO `marc_subfield_structure` VALUES ('859', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'CF', '', '');
11519 INSERT INTO `marc_subfield_structure` VALUES ('859', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'CF', '', '');
11520 INSERT INTO `marc_subfield_structure` VALUES ('859', 'd', 'TDC (RLIN)', 'TDC (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'CF', '', '');
11521 INSERT INTO `marc_subfield_structure` VALUES ('859', 'l', 'LIB (RLIN)', 'LIB (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'CF', '', '');
11522 INSERT INTO `marc_subfield_structure` VALUES ('859', 'p', 'PRI (RLIN)', 'PRI (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'CF', '', '');
11523 INSERT INTO `marc_subfield_structure` VALUES ('859', 'r', 'REG (RLIN)', 'REG (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'CF', '', '');
11524 INSERT INTO `marc_subfield_structure` VALUES ('859', 'v', 'VER (RLIN)', 'VER (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'CF', '', '');
11525 INSERT INTO `marc_subfield_structure` VALUES ('859', 'x', 'LDEL (RLIN)', 'LDEL (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'CF', '', '');
11526 INSERT INTO `marc_subfield_structure` VALUES ('866', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11527 INSERT INTO `marc_subfield_structure` VALUES ('866', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11528 INSERT INTO `marc_subfield_structure` VALUES ('866', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'CF', '', '');
11529 INSERT INTO `marc_subfield_structure` VALUES ('866', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'CF', '', '');
11530 INSERT INTO `marc_subfield_structure` VALUES ('866', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'CF', '', '');
11531 INSERT INTO `marc_subfield_structure` VALUES ('867', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11532 INSERT INTO `marc_subfield_structure` VALUES ('867', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11533 INSERT INTO `marc_subfield_structure` VALUES ('867', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'CF', '', '');
11534 INSERT INTO `marc_subfield_structure` VALUES ('867', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'CF', '', '');
11535 INSERT INTO `marc_subfield_structure` VALUES ('867', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'CF', '', '');
11536 INSERT INTO `marc_subfield_structure` VALUES ('868', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11537 INSERT INTO `marc_subfield_structure` VALUES ('868', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11538 INSERT INTO `marc_subfield_structure` VALUES ('868', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'CF', '', '');
11539 INSERT INTO `marc_subfield_structure` VALUES ('868', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'CF', '', '');
11540 INSERT INTO `marc_subfield_structure` VALUES ('868', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'CF', '', '');
11541 INSERT INTO `marc_subfield_structure` VALUES ('870', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11542 INSERT INTO `marc_subfield_structure` VALUES ('870', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11543 INSERT INTO `marc_subfield_structure` VALUES ('870', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11544 INSERT INTO `marc_subfield_structure` VALUES ('870', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11545 INSERT INTO `marc_subfield_structure` VALUES ('870', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11546 INSERT INTO `marc_subfield_structure` VALUES ('870', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11547 INSERT INTO `marc_subfield_structure` VALUES ('870', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11548 INSERT INTO `marc_subfield_structure` VALUES ('870', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11549 INSERT INTO `marc_subfield_structure` VALUES ('870', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11550 INSERT INTO `marc_subfield_structure` VALUES ('870', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11551 INSERT INTO `marc_subfield_structure` VALUES ('870', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11552 INSERT INTO `marc_subfield_structure` VALUES ('870', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11553 INSERT INTO `marc_subfield_structure` VALUES ('870', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11554 INSERT INTO `marc_subfield_structure` VALUES ('870', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11555 INSERT INTO `marc_subfield_structure` VALUES ('870', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11556 INSERT INTO `marc_subfield_structure` VALUES ('870', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11557 INSERT INTO `marc_subfield_structure` VALUES ('870', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11558 INSERT INTO `marc_subfield_structure` VALUES ('871', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11559 INSERT INTO `marc_subfield_structure` VALUES ('871', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11560 INSERT INTO `marc_subfield_structure` VALUES ('871', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11561 INSERT INTO `marc_subfield_structure` VALUES ('871', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11562 INSERT INTO `marc_subfield_structure` VALUES ('871', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11563 INSERT INTO `marc_subfield_structure` VALUES ('871', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11564 INSERT INTO `marc_subfield_structure` VALUES ('871', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11565 INSERT INTO `marc_subfield_structure` VALUES ('871', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11566 INSERT INTO `marc_subfield_structure` VALUES ('871', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11567 INSERT INTO `marc_subfield_structure` VALUES ('871', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11568 INSERT INTO `marc_subfield_structure` VALUES ('871', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11569 INSERT INTO `marc_subfield_structure` VALUES ('871', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11570 INSERT INTO `marc_subfield_structure` VALUES ('871', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11571 INSERT INTO `marc_subfield_structure` VALUES ('871', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11572 INSERT INTO `marc_subfield_structure` VALUES ('871', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11573 INSERT INTO `marc_subfield_structure` VALUES ('871', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11574 INSERT INTO `marc_subfield_structure` VALUES ('872', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11575 INSERT INTO `marc_subfield_structure` VALUES ('872', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11576 INSERT INTO `marc_subfield_structure` VALUES ('872', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11577 INSERT INTO `marc_subfield_structure` VALUES ('872', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11578 INSERT INTO `marc_subfield_structure` VALUES ('872', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11579 INSERT INTO `marc_subfield_structure` VALUES ('872', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11580 INSERT INTO `marc_subfield_structure` VALUES ('872', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11581 INSERT INTO `marc_subfield_structure` VALUES ('872', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11582 INSERT INTO `marc_subfield_structure` VALUES ('872', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11583 INSERT INTO `marc_subfield_structure` VALUES ('872', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11584 INSERT INTO `marc_subfield_structure` VALUES ('872', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11585 INSERT INTO `marc_subfield_structure` VALUES ('872', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11586 INSERT INTO `marc_subfield_structure` VALUES ('872', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11587 INSERT INTO `marc_subfield_structure` VALUES ('872', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11588 INSERT INTO `marc_subfield_structure` VALUES ('872', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11589 INSERT INTO `marc_subfield_structure` VALUES ('872', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11590 INSERT INTO `marc_subfield_structure` VALUES ('872', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11591 INSERT INTO `marc_subfield_structure` VALUES ('873', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11592 INSERT INTO `marc_subfield_structure` VALUES ('873', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11593 INSERT INTO `marc_subfield_structure` VALUES ('873', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11594 INSERT INTO `marc_subfield_structure` VALUES ('873', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11595 INSERT INTO `marc_subfield_structure` VALUES ('873', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11596 INSERT INTO `marc_subfield_structure` VALUES ('873', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11597 INSERT INTO `marc_subfield_structure` VALUES ('873', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11598 INSERT INTO `marc_subfield_structure` VALUES ('873', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11599 INSERT INTO `marc_subfield_structure` VALUES ('873', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11600 INSERT INTO `marc_subfield_structure` VALUES ('873', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11601 INSERT INTO `marc_subfield_structure` VALUES ('873', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11602 INSERT INTO `marc_subfield_structure` VALUES ('873', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11603 INSERT INTO `marc_subfield_structure` VALUES ('873', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11604 INSERT INTO `marc_subfield_structure` VALUES ('873', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11605 INSERT INTO `marc_subfield_structure` VALUES ('873', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11606 INSERT INTO `marc_subfield_structure` VALUES ('873', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11607 INSERT INTO `marc_subfield_structure` VALUES ('876', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11608 INSERT INTO `marc_subfield_structure` VALUES ('876', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11609 INSERT INTO `marc_subfield_structure` VALUES ('876', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11610 INSERT INTO `marc_subfield_structure` VALUES ('876', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11611 INSERT INTO `marc_subfield_structure` VALUES ('876', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11612 INSERT INTO `marc_subfield_structure` VALUES ('876', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11613 INSERT INTO `marc_subfield_structure` VALUES ('876', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11614 INSERT INTO `marc_subfield_structure` VALUES ('876', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11615 INSERT INTO `marc_subfield_structure` VALUES ('876', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11616 INSERT INTO `marc_subfield_structure` VALUES ('876', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11617 INSERT INTO `marc_subfield_structure` VALUES ('876', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11618 INSERT INTO `marc_subfield_structure` VALUES ('876', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11619 INSERT INTO `marc_subfield_structure` VALUES ('876', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11620 INSERT INTO `marc_subfield_structure` VALUES ('876', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11621 INSERT INTO `marc_subfield_structure` VALUES ('876', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11622 INSERT INTO `marc_subfield_structure` VALUES ('876', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11623 INSERT INTO `marc_subfield_structure` VALUES ('877', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11624 INSERT INTO `marc_subfield_structure` VALUES ('877', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11625 INSERT INTO `marc_subfield_structure` VALUES ('877', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11626 INSERT INTO `marc_subfield_structure` VALUES ('877', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11627 INSERT INTO `marc_subfield_structure` VALUES ('877', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11628 INSERT INTO `marc_subfield_structure` VALUES ('877', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11629 INSERT INTO `marc_subfield_structure` VALUES ('877', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11630 INSERT INTO `marc_subfield_structure` VALUES ('877', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11631 INSERT INTO `marc_subfield_structure` VALUES ('877', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11632 INSERT INTO `marc_subfield_structure` VALUES ('877', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11633 INSERT INTO `marc_subfield_structure` VALUES ('877', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11634 INSERT INTO `marc_subfield_structure` VALUES ('877', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11635 INSERT INTO `marc_subfield_structure` VALUES ('877', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11636 INSERT INTO `marc_subfield_structure` VALUES ('877', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11637 INSERT INTO `marc_subfield_structure` VALUES ('877', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11638 INSERT INTO `marc_subfield_structure` VALUES ('877', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11639 INSERT INTO `marc_subfield_structure` VALUES ('878', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11640 INSERT INTO `marc_subfield_structure` VALUES ('878', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11641 INSERT INTO `marc_subfield_structure` VALUES ('878', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11642 INSERT INTO `marc_subfield_structure` VALUES ('878', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11643 INSERT INTO `marc_subfield_structure` VALUES ('878', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11644 INSERT INTO `marc_subfield_structure` VALUES ('878', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11645 INSERT INTO `marc_subfield_structure` VALUES ('878', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11646 INSERT INTO `marc_subfield_structure` VALUES ('878', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11647 INSERT INTO `marc_subfield_structure` VALUES ('878', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11648 INSERT INTO `marc_subfield_structure` VALUES ('878', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11649 INSERT INTO `marc_subfield_structure` VALUES ('878', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11650 INSERT INTO `marc_subfield_structure` VALUES ('878', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11651 INSERT INTO `marc_subfield_structure` VALUES ('878', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11652 INSERT INTO `marc_subfield_structure` VALUES ('878', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11653 INSERT INTO `marc_subfield_structure` VALUES ('878', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11654 INSERT INTO `marc_subfield_structure` VALUES ('878', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11655 INSERT INTO `marc_subfield_structure` VALUES ('880', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11656 INSERT INTO `marc_subfield_structure` VALUES ('880', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11657 INSERT INTO `marc_subfield_structure` VALUES ('880', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11658 INSERT INTO `marc_subfield_structure` VALUES ('880', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11659 INSERT INTO `marc_subfield_structure` VALUES ('880', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11660 INSERT INTO `marc_subfield_structure` VALUES ('880', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11661 INSERT INTO `marc_subfield_structure` VALUES ('880', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11662 INSERT INTO `marc_subfield_structure` VALUES ('880', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11663 INSERT INTO `marc_subfield_structure` VALUES ('880', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11664 INSERT INTO `marc_subfield_structure` VALUES ('880', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11665 INSERT INTO `marc_subfield_structure` VALUES ('880', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11666 INSERT INTO `marc_subfield_structure` VALUES ('880', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11667 INSERT INTO `marc_subfield_structure` VALUES ('880', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11668 INSERT INTO `marc_subfield_structure` VALUES ('880', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11669 INSERT INTO `marc_subfield_structure` VALUES ('880', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11670 INSERT INTO `marc_subfield_structure` VALUES ('880', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11671 INSERT INTO `marc_subfield_structure` VALUES ('880', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11672 INSERT INTO `marc_subfield_structure` VALUES ('880', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11673 INSERT INTO `marc_subfield_structure` VALUES ('880', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11674 INSERT INTO `marc_subfield_structure` VALUES ('880', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11675 INSERT INTO `marc_subfield_structure` VALUES ('880', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11676 INSERT INTO `marc_subfield_structure` VALUES ('880', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11677 INSERT INTO `marc_subfield_structure` VALUES ('880', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11678 INSERT INTO `marc_subfield_structure` VALUES ('880', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11679 INSERT INTO `marc_subfield_structure` VALUES ('880', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11680 INSERT INTO `marc_subfield_structure` VALUES ('880', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11681 INSERT INTO `marc_subfield_structure` VALUES ('880', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11682 INSERT INTO `marc_subfield_structure` VALUES ('880', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11683 INSERT INTO `marc_subfield_structure` VALUES ('880', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11684 INSERT INTO `marc_subfield_structure` VALUES ('880', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11685 INSERT INTO `marc_subfield_structure` VALUES ('880', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11686 INSERT INTO `marc_subfield_structure` VALUES ('880', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11687 INSERT INTO `marc_subfield_structure` VALUES ('880', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11688 INSERT INTO `marc_subfield_structure` VALUES ('880', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11689 INSERT INTO `marc_subfield_structure` VALUES ('886', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11690 INSERT INTO `marc_subfield_structure` VALUES ('886', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11691 INSERT INTO `marc_subfield_structure` VALUES ('886', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11692 INSERT INTO `marc_subfield_structure` VALUES ('886', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11693 INSERT INTO `marc_subfield_structure` VALUES ('886', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11694 INSERT INTO `marc_subfield_structure` VALUES ('886', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11695 INSERT INTO `marc_subfield_structure` VALUES ('886', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11696 INSERT INTO `marc_subfield_structure` VALUES ('886', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11697 INSERT INTO `marc_subfield_structure` VALUES ('886', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11698 INSERT INTO `marc_subfield_structure` VALUES ('886', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11699 INSERT INTO `marc_subfield_structure` VALUES ('886', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11700 INSERT INTO `marc_subfield_structure` VALUES ('886', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11701 INSERT INTO `marc_subfield_structure` VALUES ('886', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11702 INSERT INTO `marc_subfield_structure` VALUES ('886', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11703 INSERT INTO `marc_subfield_structure` VALUES ('886', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11704 INSERT INTO `marc_subfield_structure` VALUES ('886', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11705 INSERT INTO `marc_subfield_structure` VALUES ('886', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11706 INSERT INTO `marc_subfield_structure` VALUES ('886', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11707 INSERT INTO `marc_subfield_structure` VALUES ('886', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11708 INSERT INTO `marc_subfield_structure` VALUES ('886', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11709 INSERT INTO `marc_subfield_structure` VALUES ('886', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11710 INSERT INTO `marc_subfield_structure` VALUES ('886', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11711 INSERT INTO `marc_subfield_structure` VALUES ('886', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11712 INSERT INTO `marc_subfield_structure` VALUES ('886', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11713 INSERT INTO `marc_subfield_structure` VALUES ('886', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11714 INSERT INTO `marc_subfield_structure` VALUES ('886', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11715 INSERT INTO `marc_subfield_structure` VALUES ('886', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11716 INSERT INTO `marc_subfield_structure` VALUES ('886', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11717 INSERT INTO `marc_subfield_structure` VALUES ('886', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11718 INSERT INTO `marc_subfield_structure` VALUES ('886', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11719 INSERT INTO `marc_subfield_structure` VALUES ('886', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11720 INSERT INTO `marc_subfield_structure` VALUES ('886', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11721 INSERT INTO `marc_subfield_structure` VALUES ('886', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11722 INSERT INTO `marc_subfield_structure` VALUES ('886', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11723 INSERT INTO `marc_subfield_structure` VALUES ('886', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11724 INSERT INTO `marc_subfield_structure` VALUES ('886', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11725 INSERT INTO `marc_subfield_structure` VALUES ('887', '2', 'Source of data', 'Source of data', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11726 INSERT INTO `marc_subfield_structure` VALUES ('887', 'a', 'Content of non-MARC field', 'Content of non-MARC field', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11727 INSERT INTO `marc_subfield_structure` VALUES ('896', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'CF', '', '');
11728 INSERT INTO `marc_subfield_structure` VALUES ('896', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11729 INSERT INTO `marc_subfield_structure` VALUES ('896', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11730 INSERT INTO `marc_subfield_structure` VALUES ('896', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11731 INSERT INTO `marc_subfield_structure` VALUES ('896', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'CF', '', '');
11732 INSERT INTO `marc_subfield_structure` VALUES ('896', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11733 INSERT INTO `marc_subfield_structure` VALUES ('896', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11734 INSERT INTO `marc_subfield_structure` VALUES ('896', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11735 INSERT INTO `marc_subfield_structure` VALUES ('896', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11736 INSERT INTO `marc_subfield_structure` VALUES ('896', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11737 INSERT INTO `marc_subfield_structure` VALUES ('896', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11738 INSERT INTO `marc_subfield_structure` VALUES ('896', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11739 INSERT INTO `marc_subfield_structure` VALUES ('896', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11740 INSERT INTO `marc_subfield_structure` VALUES ('896', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11741 INSERT INTO `marc_subfield_structure` VALUES ('896', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11742 INSERT INTO `marc_subfield_structure` VALUES ('896', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11743 INSERT INTO `marc_subfield_structure` VALUES ('896', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11744 INSERT INTO `marc_subfield_structure` VALUES ('896', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11745 INSERT INTO `marc_subfield_structure` VALUES ('896', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11746 INSERT INTO `marc_subfield_structure` VALUES ('896', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11747 INSERT INTO `marc_subfield_structure` VALUES ('896', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11748 INSERT INTO `marc_subfield_structure` VALUES ('896', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11749 INSERT INTO `marc_subfield_structure` VALUES ('896', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11750 INSERT INTO `marc_subfield_structure` VALUES ('896', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11751 INSERT INTO `marc_subfield_structure` VALUES ('896', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11752 INSERT INTO `marc_subfield_structure` VALUES ('896', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11753 INSERT INTO `marc_subfield_structure` VALUES ('897', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'CF', '', '');
11754 INSERT INTO `marc_subfield_structure` VALUES ('897', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11755 INSERT INTO `marc_subfield_structure` VALUES ('897', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11756 INSERT INTO `marc_subfield_structure` VALUES ('897', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11757 INSERT INTO `marc_subfield_structure` VALUES ('897', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'CF', '', '');
11758 INSERT INTO `marc_subfield_structure` VALUES ('897', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11759 INSERT INTO `marc_subfield_structure` VALUES ('897', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11760 INSERT INTO `marc_subfield_structure` VALUES ('897', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11761 INSERT INTO `marc_subfield_structure` VALUES ('897', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11762 INSERT INTO `marc_subfield_structure` VALUES ('897', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11763 INSERT INTO `marc_subfield_structure` VALUES ('897', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11764 INSERT INTO `marc_subfield_structure` VALUES ('897', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11765 INSERT INTO `marc_subfield_structure` VALUES ('897', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11766 INSERT INTO `marc_subfield_structure` VALUES ('897', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11767 INSERT INTO `marc_subfield_structure` VALUES ('897', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11768 INSERT INTO `marc_subfield_structure` VALUES ('897', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11769 INSERT INTO `marc_subfield_structure` VALUES ('897', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11770 INSERT INTO `marc_subfield_structure` VALUES ('897', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11771 INSERT INTO `marc_subfield_structure` VALUES ('897', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11772 INSERT INTO `marc_subfield_structure` VALUES ('897', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11773 INSERT INTO `marc_subfield_structure` VALUES ('897', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11774 INSERT INTO `marc_subfield_structure` VALUES ('897', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11775 INSERT INTO `marc_subfield_structure` VALUES ('897', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11776 INSERT INTO `marc_subfield_structure` VALUES ('897', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11777 INSERT INTO `marc_subfield_structure` VALUES ('898', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'CF', '', '');
11778 INSERT INTO `marc_subfield_structure` VALUES ('898', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11779 INSERT INTO `marc_subfield_structure` VALUES ('898', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11780 INSERT INTO `marc_subfield_structure` VALUES ('898', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11781 INSERT INTO `marc_subfield_structure` VALUES ('898', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'CF', '', '');
11782 INSERT INTO `marc_subfield_structure` VALUES ('898', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11783 INSERT INTO `marc_subfield_structure` VALUES ('898', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11784 INSERT INTO `marc_subfield_structure` VALUES ('898', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11785 INSERT INTO `marc_subfield_structure` VALUES ('898', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11786 INSERT INTO `marc_subfield_structure` VALUES ('898', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11787 INSERT INTO `marc_subfield_structure` VALUES ('898', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11788 INSERT INTO `marc_subfield_structure` VALUES ('898', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11789 INSERT INTO `marc_subfield_structure` VALUES ('898', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11790 INSERT INTO `marc_subfield_structure` VALUES ('898', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11791 INSERT INTO `marc_subfield_structure` VALUES ('898', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11792 INSERT INTO `marc_subfield_structure` VALUES ('898', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11793 INSERT INTO `marc_subfield_structure` VALUES ('898', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11794 INSERT INTO `marc_subfield_structure` VALUES ('898', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11795 INSERT INTO `marc_subfield_structure` VALUES ('898', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11796 INSERT INTO `marc_subfield_structure` VALUES ('898', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11797 INSERT INTO `marc_subfield_structure` VALUES ('898', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11798 INSERT INTO `marc_subfield_structure` VALUES ('898', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
11799 INSERT INTO `marc_subfield_structure` VALUES ('899', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'CF', '', '');
11800 INSERT INTO `marc_subfield_structure` VALUES ('899', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11801 INSERT INTO `marc_subfield_structure` VALUES ('899', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11802 INSERT INTO `marc_subfield_structure` VALUES ('899', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'CF', '', '');
11803 INSERT INTO `marc_subfield_structure` VALUES ('899', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11804 INSERT INTO `marc_subfield_structure` VALUES ('899', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11805 INSERT INTO `marc_subfield_structure` VALUES ('899', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11806 INSERT INTO `marc_subfield_structure` VALUES ('899', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11807 INSERT INTO `marc_subfield_structure` VALUES ('899', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11808 INSERT INTO `marc_subfield_structure` VALUES ('899', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11809 INSERT INTO `marc_subfield_structure` VALUES ('899', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11810 INSERT INTO `marc_subfield_structure` VALUES ('899', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11811 INSERT INTO `marc_subfield_structure` VALUES ('899', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11812 INSERT INTO `marc_subfield_structure` VALUES ('899', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11813 INSERT INTO `marc_subfield_structure` VALUES ('899', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11814 INSERT INTO `marc_subfield_structure` VALUES ('899', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11815 INSERT INTO `marc_subfield_structure` VALUES ('899', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11816 INSERT INTO `marc_subfield_structure` VALUES ('899', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11817 INSERT INTO `marc_subfield_structure` VALUES ('899', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, 5, 'CF', '', '');
11818 INSERT INTO `marc_subfield_structure` VALUES ('89e', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11819 INSERT INTO `marc_subfield_structure` VALUES ('89e', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11820 INSERT INTO `marc_subfield_structure` VALUES ('89e', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11821 INSERT INTO `marc_subfield_structure` VALUES ('89e', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11822 INSERT INTO `marc_subfield_structure` VALUES ('89e', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11823 INSERT INTO `marc_subfield_structure` VALUES ('89e', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11824 INSERT INTO `marc_subfield_structure` VALUES ('89e', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11825 INSERT INTO `marc_subfield_structure` VALUES ('89e', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11826 INSERT INTO `marc_subfield_structure` VALUES ('89e', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11827 INSERT INTO `marc_subfield_structure` VALUES ('89e', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11828 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11829 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11830 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11831 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11832 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11833 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11834 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11835 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11836 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11837 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11838 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11839 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11840 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11841 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11842 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11843 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11844 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11845 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11846 INSERT INTO `marc_subfield_structure` VALUES ('89e', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11847 INSERT INTO `marc_subfield_structure` VALUES ('89e', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11848 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11849 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11850 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11851 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11852 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11853 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'CF', '', '');
11854 INSERT INTO `marc_subfield_structure` VALUES ('900', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
11855 INSERT INTO `marc_subfield_structure` VALUES ('900', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
11856 INSERT INTO `marc_subfield_structure` VALUES ('900', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
11857 INSERT INTO `marc_subfield_structure` VALUES ('900', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
11858 INSERT INTO `marc_subfield_structure` VALUES ('900', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
11859 INSERT INTO `marc_subfield_structure` VALUES ('900', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
11860 INSERT INTO `marc_subfield_structure` VALUES ('900', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
11861 INSERT INTO `marc_subfield_structure` VALUES ('900', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
11862 INSERT INTO `marc_subfield_structure` VALUES ('900', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
11863 INSERT INTO `marc_subfield_structure` VALUES ('900', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
11864 INSERT INTO `marc_subfield_structure` VALUES ('900', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
11865 INSERT INTO `marc_subfield_structure` VALUES ('900', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
11866 INSERT INTO `marc_subfield_structure` VALUES ('900', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
11867 INSERT INTO `marc_subfield_structure` VALUES ('900', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
11868 INSERT INTO `marc_subfield_structure` VALUES ('900', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
11869 INSERT INTO `marc_subfield_structure` VALUES ('900', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
11870 INSERT INTO `marc_subfield_structure` VALUES ('900', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
11871 INSERT INTO `marc_subfield_structure` VALUES ('900', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
11872 INSERT INTO `marc_subfield_structure` VALUES ('901', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11873 INSERT INTO `marc_subfield_structure` VALUES ('901', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11874 INSERT INTO `marc_subfield_structure` VALUES ('901', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11875 INSERT INTO `marc_subfield_structure` VALUES ('901', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11876 INSERT INTO `marc_subfield_structure` VALUES ('901', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11877 INSERT INTO `marc_subfield_structure` VALUES ('901', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11878 INSERT INTO `marc_subfield_structure` VALUES ('901', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11879 INSERT INTO `marc_subfield_structure` VALUES ('901', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11880 INSERT INTO `marc_subfield_structure` VALUES ('901', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11881 INSERT INTO `marc_subfield_structure` VALUES ('901', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11882 INSERT INTO `marc_subfield_structure` VALUES ('901', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11883 INSERT INTO `marc_subfield_structure` VALUES ('901', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11884 INSERT INTO `marc_subfield_structure` VALUES ('901', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11885 INSERT INTO `marc_subfield_structure` VALUES ('901', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11886 INSERT INTO `marc_subfield_structure` VALUES ('901', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11887 INSERT INTO `marc_subfield_structure` VALUES ('901', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11888 INSERT INTO `marc_subfield_structure` VALUES ('901', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11889 INSERT INTO `marc_subfield_structure` VALUES ('901', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11890 INSERT INTO `marc_subfield_structure` VALUES ('901', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11891 INSERT INTO `marc_subfield_structure` VALUES ('901', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11892 INSERT INTO `marc_subfield_structure` VALUES ('901', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11893 INSERT INTO `marc_subfield_structure` VALUES ('901', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11894 INSERT INTO `marc_subfield_structure` VALUES ('901', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11895 INSERT INTO `marc_subfield_structure` VALUES ('901', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11896 INSERT INTO `marc_subfield_structure` VALUES ('901', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11897 INSERT INTO `marc_subfield_structure` VALUES ('901', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11898 INSERT INTO `marc_subfield_structure` VALUES ('901', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11899 INSERT INTO `marc_subfield_structure` VALUES ('901', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11900 INSERT INTO `marc_subfield_structure` VALUES ('901', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11901 INSERT INTO `marc_subfield_structure` VALUES ('901', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11902 INSERT INTO `marc_subfield_structure` VALUES ('901', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11903 INSERT INTO `marc_subfield_structure` VALUES ('901', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11904 INSERT INTO `marc_subfield_structure` VALUES ('901', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11905 INSERT INTO `marc_subfield_structure` VALUES ('901', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11906 INSERT INTO `marc_subfield_structure` VALUES ('901', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11907 INSERT INTO `marc_subfield_structure` VALUES ('901', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11908 INSERT INTO `marc_subfield_structure` VALUES ('902', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11909 INSERT INTO `marc_subfield_structure` VALUES ('902', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11910 INSERT INTO `marc_subfield_structure` VALUES ('902', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11911 INSERT INTO `marc_subfield_structure` VALUES ('902', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11912 INSERT INTO `marc_subfield_structure` VALUES ('902', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11913 INSERT INTO `marc_subfield_structure` VALUES ('902', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11914 INSERT INTO `marc_subfield_structure` VALUES ('902', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11915 INSERT INTO `marc_subfield_structure` VALUES ('902', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11916 INSERT INTO `marc_subfield_structure` VALUES ('902', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11917 INSERT INTO `marc_subfield_structure` VALUES ('902', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11918 INSERT INTO `marc_subfield_structure` VALUES ('902', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11919 INSERT INTO `marc_subfield_structure` VALUES ('902', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11920 INSERT INTO `marc_subfield_structure` VALUES ('902', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11921 INSERT INTO `marc_subfield_structure` VALUES ('902', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11922 INSERT INTO `marc_subfield_structure` VALUES ('902', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11923 INSERT INTO `marc_subfield_structure` VALUES ('902', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11924 INSERT INTO `marc_subfield_structure` VALUES ('902', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11925 INSERT INTO `marc_subfield_structure` VALUES ('902', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11926 INSERT INTO `marc_subfield_structure` VALUES ('902', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11927 INSERT INTO `marc_subfield_structure` VALUES ('902', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11928 INSERT INTO `marc_subfield_structure` VALUES ('902', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11929 INSERT INTO `marc_subfield_structure` VALUES ('902', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11930 INSERT INTO `marc_subfield_structure` VALUES ('902', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11931 INSERT INTO `marc_subfield_structure` VALUES ('902', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11932 INSERT INTO `marc_subfield_structure` VALUES ('902', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11933 INSERT INTO `marc_subfield_structure` VALUES ('902', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11934 INSERT INTO `marc_subfield_structure` VALUES ('902', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11935 INSERT INTO `marc_subfield_structure` VALUES ('902', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11936 INSERT INTO `marc_subfield_structure` VALUES ('902', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11937 INSERT INTO `marc_subfield_structure` VALUES ('902', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11938 INSERT INTO `marc_subfield_structure` VALUES ('902', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11939 INSERT INTO `marc_subfield_structure` VALUES ('902', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11940 INSERT INTO `marc_subfield_structure` VALUES ('902', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11941 INSERT INTO `marc_subfield_structure` VALUES ('902', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11942 INSERT INTO `marc_subfield_structure` VALUES ('902', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11943 INSERT INTO `marc_subfield_structure` VALUES ('902', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11944 INSERT INTO `marc_subfield_structure` VALUES ('903', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11945 INSERT INTO `marc_subfield_structure` VALUES ('903', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11946 INSERT INTO `marc_subfield_structure` VALUES ('903', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11947 INSERT INTO `marc_subfield_structure` VALUES ('903', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11948 INSERT INTO `marc_subfield_structure` VALUES ('903', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11949 INSERT INTO `marc_subfield_structure` VALUES ('903', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11950 INSERT INTO `marc_subfield_structure` VALUES ('903', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11951 INSERT INTO `marc_subfield_structure` VALUES ('903', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11952 INSERT INTO `marc_subfield_structure` VALUES ('903', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11953 INSERT INTO `marc_subfield_structure` VALUES ('903', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11954 INSERT INTO `marc_subfield_structure` VALUES ('903', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11955 INSERT INTO `marc_subfield_structure` VALUES ('903', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11956 INSERT INTO `marc_subfield_structure` VALUES ('903', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11957 INSERT INTO `marc_subfield_structure` VALUES ('903', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11958 INSERT INTO `marc_subfield_structure` VALUES ('903', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11959 INSERT INTO `marc_subfield_structure` VALUES ('903', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11960 INSERT INTO `marc_subfield_structure` VALUES ('903', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11961 INSERT INTO `marc_subfield_structure` VALUES ('903', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11962 INSERT INTO `marc_subfield_structure` VALUES ('903', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11963 INSERT INTO `marc_subfield_structure` VALUES ('903', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11964 INSERT INTO `marc_subfield_structure` VALUES ('903', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11965 INSERT INTO `marc_subfield_structure` VALUES ('903', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11966 INSERT INTO `marc_subfield_structure` VALUES ('903', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11967 INSERT INTO `marc_subfield_structure` VALUES ('903', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11968 INSERT INTO `marc_subfield_structure` VALUES ('903', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11969 INSERT INTO `marc_subfield_structure` VALUES ('903', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11970 INSERT INTO `marc_subfield_structure` VALUES ('903', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11971 INSERT INTO `marc_subfield_structure` VALUES ('903', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11972 INSERT INTO `marc_subfield_structure` VALUES ('903', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11973 INSERT INTO `marc_subfield_structure` VALUES ('903', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11974 INSERT INTO `marc_subfield_structure` VALUES ('903', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11975 INSERT INTO `marc_subfield_structure` VALUES ('903', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11976 INSERT INTO `marc_subfield_structure` VALUES ('903', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11977 INSERT INTO `marc_subfield_structure` VALUES ('903', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11978 INSERT INTO `marc_subfield_structure` VALUES ('903', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11979 INSERT INTO `marc_subfield_structure` VALUES ('903', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11980 INSERT INTO `marc_subfield_structure` VALUES ('904', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11981 INSERT INTO `marc_subfield_structure` VALUES ('904', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11982 INSERT INTO `marc_subfield_structure` VALUES ('904', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11983 INSERT INTO `marc_subfield_structure` VALUES ('904', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11984 INSERT INTO `marc_subfield_structure` VALUES ('904', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11985 INSERT INTO `marc_subfield_structure` VALUES ('904', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11986 INSERT INTO `marc_subfield_structure` VALUES ('904', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11987 INSERT INTO `marc_subfield_structure` VALUES ('904', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11988 INSERT INTO `marc_subfield_structure` VALUES ('904', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11989 INSERT INTO `marc_subfield_structure` VALUES ('904', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11990 INSERT INTO `marc_subfield_structure` VALUES ('904', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11991 INSERT INTO `marc_subfield_structure` VALUES ('904', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11992 INSERT INTO `marc_subfield_structure` VALUES ('904', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11993 INSERT INTO `marc_subfield_structure` VALUES ('904', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11994 INSERT INTO `marc_subfield_structure` VALUES ('904', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11995 INSERT INTO `marc_subfield_structure` VALUES ('904', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11996 INSERT INTO `marc_subfield_structure` VALUES ('904', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11997 INSERT INTO `marc_subfield_structure` VALUES ('904', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11998 INSERT INTO `marc_subfield_structure` VALUES ('904', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
11999 INSERT INTO `marc_subfield_structure` VALUES ('904', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12000 INSERT INTO `marc_subfield_structure` VALUES ('904', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12001 INSERT INTO `marc_subfield_structure` VALUES ('904', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12002 INSERT INTO `marc_subfield_structure` VALUES ('904', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12003 INSERT INTO `marc_subfield_structure` VALUES ('904', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12004 INSERT INTO `marc_subfield_structure` VALUES ('904', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12005 INSERT INTO `marc_subfield_structure` VALUES ('904', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12006 INSERT INTO `marc_subfield_structure` VALUES ('904', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12007 INSERT INTO `marc_subfield_structure` VALUES ('904', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12008 INSERT INTO `marc_subfield_structure` VALUES ('904', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12009 INSERT INTO `marc_subfield_structure` VALUES ('904', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12010 INSERT INTO `marc_subfield_structure` VALUES ('904', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12011 INSERT INTO `marc_subfield_structure` VALUES ('904', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12012 INSERT INTO `marc_subfield_structure` VALUES ('904', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12013 INSERT INTO `marc_subfield_structure` VALUES ('904', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12014 INSERT INTO `marc_subfield_structure` VALUES ('904', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12015 INSERT INTO `marc_subfield_structure` VALUES ('904', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12016 INSERT INTO `marc_subfield_structure` VALUES ('905', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12017 INSERT INTO `marc_subfield_structure` VALUES ('905', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12018 INSERT INTO `marc_subfield_structure` VALUES ('905', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12019 INSERT INTO `marc_subfield_structure` VALUES ('905', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12020 INSERT INTO `marc_subfield_structure` VALUES ('905', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12021 INSERT INTO `marc_subfield_structure` VALUES ('905', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12022 INSERT INTO `marc_subfield_structure` VALUES ('905', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12023 INSERT INTO `marc_subfield_structure` VALUES ('905', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12024 INSERT INTO `marc_subfield_structure` VALUES ('905', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12025 INSERT INTO `marc_subfield_structure` VALUES ('905', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12026 INSERT INTO `marc_subfield_structure` VALUES ('905', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12027 INSERT INTO `marc_subfield_structure` VALUES ('905', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12028 INSERT INTO `marc_subfield_structure` VALUES ('905', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12029 INSERT INTO `marc_subfield_structure` VALUES ('905', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12030 INSERT INTO `marc_subfield_structure` VALUES ('905', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12031 INSERT INTO `marc_subfield_structure` VALUES ('905', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12032 INSERT INTO `marc_subfield_structure` VALUES ('905', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12033 INSERT INTO `marc_subfield_structure` VALUES ('905', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12034 INSERT INTO `marc_subfield_structure` VALUES ('905', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12035 INSERT INTO `marc_subfield_structure` VALUES ('905', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12036 INSERT INTO `marc_subfield_structure` VALUES ('905', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12037 INSERT INTO `marc_subfield_structure` VALUES ('905', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12038 INSERT INTO `marc_subfield_structure` VALUES ('905', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12039 INSERT INTO `marc_subfield_structure` VALUES ('905', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12040 INSERT INTO `marc_subfield_structure` VALUES ('905', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12041 INSERT INTO `marc_subfield_structure` VALUES ('905', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12042 INSERT INTO `marc_subfield_structure` VALUES ('905', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12043 INSERT INTO `marc_subfield_structure` VALUES ('905', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12044 INSERT INTO `marc_subfield_structure` VALUES ('905', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12045 INSERT INTO `marc_subfield_structure` VALUES ('905', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12046 INSERT INTO `marc_subfield_structure` VALUES ('905', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12047 INSERT INTO `marc_subfield_structure` VALUES ('905', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12048 INSERT INTO `marc_subfield_structure` VALUES ('905', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12049 INSERT INTO `marc_subfield_structure` VALUES ('905', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12050 INSERT INTO `marc_subfield_structure` VALUES ('905', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12051 INSERT INTO `marc_subfield_structure` VALUES ('905', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12052 INSERT INTO `marc_subfield_structure` VALUES ('906', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12053 INSERT INTO `marc_subfield_structure` VALUES ('906', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12054 INSERT INTO `marc_subfield_structure` VALUES ('906', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12055 INSERT INTO `marc_subfield_structure` VALUES ('906', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12056 INSERT INTO `marc_subfield_structure` VALUES ('906', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12057 INSERT INTO `marc_subfield_structure` VALUES ('906', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12058 INSERT INTO `marc_subfield_structure` VALUES ('906', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12059 INSERT INTO `marc_subfield_structure` VALUES ('906', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12060 INSERT INTO `marc_subfield_structure` VALUES ('906', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12061 INSERT INTO `marc_subfield_structure` VALUES ('906', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12062 INSERT INTO `marc_subfield_structure` VALUES ('906', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12063 INSERT INTO `marc_subfield_structure` VALUES ('906', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12064 INSERT INTO `marc_subfield_structure` VALUES ('906', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12065 INSERT INTO `marc_subfield_structure` VALUES ('906', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12066 INSERT INTO `marc_subfield_structure` VALUES ('906', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12067 INSERT INTO `marc_subfield_structure` VALUES ('906', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12068 INSERT INTO `marc_subfield_structure` VALUES ('906', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12069 INSERT INTO `marc_subfield_structure` VALUES ('906', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12070 INSERT INTO `marc_subfield_structure` VALUES ('906', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12071 INSERT INTO `marc_subfield_structure` VALUES ('906', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12072 INSERT INTO `marc_subfield_structure` VALUES ('906', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12073 INSERT INTO `marc_subfield_structure` VALUES ('906', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12074 INSERT INTO `marc_subfield_structure` VALUES ('906', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12075 INSERT INTO `marc_subfield_structure` VALUES ('906', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12076 INSERT INTO `marc_subfield_structure` VALUES ('906', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12077 INSERT INTO `marc_subfield_structure` VALUES ('906', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12078 INSERT INTO `marc_subfield_structure` VALUES ('906', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12079 INSERT INTO `marc_subfield_structure` VALUES ('906', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12080 INSERT INTO `marc_subfield_structure` VALUES ('906', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12081 INSERT INTO `marc_subfield_structure` VALUES ('906', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12082 INSERT INTO `marc_subfield_structure` VALUES ('906', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12083 INSERT INTO `marc_subfield_structure` VALUES ('906', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12084 INSERT INTO `marc_subfield_structure` VALUES ('906', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12085 INSERT INTO `marc_subfield_structure` VALUES ('906', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12086 INSERT INTO `marc_subfield_structure` VALUES ('906', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12087 INSERT INTO `marc_subfield_structure` VALUES ('906', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12088 INSERT INTO `marc_subfield_structure` VALUES ('907', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12089 INSERT INTO `marc_subfield_structure` VALUES ('907', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12090 INSERT INTO `marc_subfield_structure` VALUES ('907', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12091 INSERT INTO `marc_subfield_structure` VALUES ('907', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12092 INSERT INTO `marc_subfield_structure` VALUES ('907', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12093 INSERT INTO `marc_subfield_structure` VALUES ('907', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12094 INSERT INTO `marc_subfield_structure` VALUES ('907', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12095 INSERT INTO `marc_subfield_structure` VALUES ('907', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12096 INSERT INTO `marc_subfield_structure` VALUES ('907', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12097 INSERT INTO `marc_subfield_structure` VALUES ('907', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12098 INSERT INTO `marc_subfield_structure` VALUES ('907', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12099 INSERT INTO `marc_subfield_structure` VALUES ('907', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12100 INSERT INTO `marc_subfield_structure` VALUES ('907', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12101 INSERT INTO `marc_subfield_structure` VALUES ('907', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12102 INSERT INTO `marc_subfield_structure` VALUES ('907', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12103 INSERT INTO `marc_subfield_structure` VALUES ('907', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12104 INSERT INTO `marc_subfield_structure` VALUES ('907', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12105 INSERT INTO `marc_subfield_structure` VALUES ('907', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12106 INSERT INTO `marc_subfield_structure` VALUES ('907', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12107 INSERT INTO `marc_subfield_structure` VALUES ('907', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12108 INSERT INTO `marc_subfield_structure` VALUES ('907', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12109 INSERT INTO `marc_subfield_structure` VALUES ('907', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12110 INSERT INTO `marc_subfield_structure` VALUES ('907', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12111 INSERT INTO `marc_subfield_structure` VALUES ('907', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12112 INSERT INTO `marc_subfield_structure` VALUES ('907', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12113 INSERT INTO `marc_subfield_structure` VALUES ('907', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12114 INSERT INTO `marc_subfield_structure` VALUES ('907', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12115 INSERT INTO `marc_subfield_structure` VALUES ('907', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12116 INSERT INTO `marc_subfield_structure` VALUES ('907', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12117 INSERT INTO `marc_subfield_structure` VALUES ('907', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12118 INSERT INTO `marc_subfield_structure` VALUES ('907', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12119 INSERT INTO `marc_subfield_structure` VALUES ('907', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12120 INSERT INTO `marc_subfield_structure` VALUES ('907', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12121 INSERT INTO `marc_subfield_structure` VALUES ('907', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12122 INSERT INTO `marc_subfield_structure` VALUES ('907', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12123 INSERT INTO `marc_subfield_structure` VALUES ('907', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12124 INSERT INTO `marc_subfield_structure` VALUES ('908', 'a', 'Put command parameter', 'Put command parameter', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12125 INSERT INTO `marc_subfield_structure` VALUES ('910', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12126 INSERT INTO `marc_subfield_structure` VALUES ('910', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12127 INSERT INTO `marc_subfield_structure` VALUES ('910', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12128 INSERT INTO `marc_subfield_structure` VALUES ('910', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12129 INSERT INTO `marc_subfield_structure` VALUES ('910', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12130 INSERT INTO `marc_subfield_structure` VALUES ('910', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12131 INSERT INTO `marc_subfield_structure` VALUES ('910', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12132 INSERT INTO `marc_subfield_structure` VALUES ('910', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12133 INSERT INTO `marc_subfield_structure` VALUES ('910', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12134 INSERT INTO `marc_subfield_structure` VALUES ('910', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12135 INSERT INTO `marc_subfield_structure` VALUES ('910', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12136 INSERT INTO `marc_subfield_structure` VALUES ('910', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12137 INSERT INTO `marc_subfield_structure` VALUES ('910', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12138 INSERT INTO `marc_subfield_structure` VALUES ('910', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12139 INSERT INTO `marc_subfield_structure` VALUES ('910', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12140 INSERT INTO `marc_subfield_structure` VALUES ('910', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12141 INSERT INTO `marc_subfield_structure` VALUES ('91o', 'a', 'User-option data', 'User-option data', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12142 INSERT INTO `marc_subfield_structure` VALUES ('91r', 'a', 'RLG standards note', 'RLG standards note', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12143 INSERT INTO `marc_subfield_structure` VALUES ('911', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12144 INSERT INTO `marc_subfield_structure` VALUES ('911', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12145 INSERT INTO `marc_subfield_structure` VALUES ('911', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12146 INSERT INTO `marc_subfield_structure` VALUES ('911', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12147 INSERT INTO `marc_subfield_structure` VALUES ('911', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12148 INSERT INTO `marc_subfield_structure` VALUES ('911', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12149 INSERT INTO `marc_subfield_structure` VALUES ('911', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12150 INSERT INTO `marc_subfield_structure` VALUES ('911', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12151 INSERT INTO `marc_subfield_structure` VALUES ('911', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12152 INSERT INTO `marc_subfield_structure` VALUES ('911', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12153 INSERT INTO `marc_subfield_structure` VALUES ('911', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12154 INSERT INTO `marc_subfield_structure` VALUES ('911', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12155 INSERT INTO `marc_subfield_structure` VALUES ('911', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12156 INSERT INTO `marc_subfield_structure` VALUES ('911', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12157 INSERT INTO `marc_subfield_structure` VALUES ('911', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12158 INSERT INTO `marc_subfield_structure` VALUES ('911', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12159 INSERT INTO `marc_subfield_structure` VALUES ('911', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12160 INSERT INTO `marc_subfield_structure` VALUES ('930', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12161 INSERT INTO `marc_subfield_structure` VALUES ('930', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12162 INSERT INTO `marc_subfield_structure` VALUES ('930', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12163 INSERT INTO `marc_subfield_structure` VALUES ('930', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12164 INSERT INTO `marc_subfield_structure` VALUES ('930', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12165 INSERT INTO `marc_subfield_structure` VALUES ('930', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12166 INSERT INTO `marc_subfield_structure` VALUES ('930', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12167 INSERT INTO `marc_subfield_structure` VALUES ('930', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12168 INSERT INTO `marc_subfield_structure` VALUES ('930', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12169 INSERT INTO `marc_subfield_structure` VALUES ('930', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12170 INSERT INTO `marc_subfield_structure` VALUES ('930', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12171 INSERT INTO `marc_subfield_structure` VALUES ('930', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12172 INSERT INTO `marc_subfield_structure` VALUES ('930', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12173 INSERT INTO `marc_subfield_structure` VALUES ('930', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12174 INSERT INTO `marc_subfield_structure` VALUES ('930', 's', 'Version', 'Version', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12175 INSERT INTO `marc_subfield_structure` VALUES ('930', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12176 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'a', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'CF', '', '');
12177 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'b', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'CF', '', '');
12178 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'c', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'CF', '', '');
12179 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'd', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'CF', '', '');
12180 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'e', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'CF', '', '');
12181 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'f', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'CF', '', '');
12182 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'g', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'CF', '', '');
12183 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'h', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'CF', '', '');
12184 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'i', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'CF', '', '');
12185 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'k', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'CF', '', '');
12186 INSERT INTO `marc_subfield_structure` VALUES ('936', 'a', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12187 INSERT INTO `marc_subfield_structure` VALUES ('940', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12188 INSERT INTO `marc_subfield_structure` VALUES ('940', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12189 INSERT INTO `marc_subfield_structure` VALUES ('940', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', 1, -6, 'CF', '', '');
12190 INSERT INTO `marc_subfield_structure` VALUES ('940', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12191 INSERT INTO `marc_subfield_structure` VALUES ('940', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12192 INSERT INTO `marc_subfield_structure` VALUES ('940', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12193 INSERT INTO `marc_subfield_structure` VALUES ('940', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12194 INSERT INTO `marc_subfield_structure` VALUES ('940', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12195 INSERT INTO `marc_subfield_structure` VALUES ('940', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12196 INSERT INTO `marc_subfield_structure` VALUES ('940', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12197 INSERT INTO `marc_subfield_structure` VALUES ('940', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12198 INSERT INTO `marc_subfield_structure` VALUES ('940', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12199 INSERT INTO `marc_subfield_structure` VALUES ('940', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12200 INSERT INTO `marc_subfield_structure` VALUES ('940', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12201 INSERT INTO `marc_subfield_structure` VALUES ('940', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12202 INSERT INTO `marc_subfield_structure` VALUES ('941', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12203 INSERT INTO `marc_subfield_structure` VALUES ('941', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'CF', '', '');
12204 INSERT INTO `marc_subfield_structure` VALUES ('943', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12205 INSERT INTO `marc_subfield_structure` VALUES ('943', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12206 INSERT INTO `marc_subfield_structure` VALUES ('943', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 9, '', '', '', 1, 5, 'CF', '', '130');
12207 INSERT INTO `marc_subfield_structure` VALUES ('943', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12208 INSERT INTO `marc_subfield_structure` VALUES ('943', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12209 INSERT INTO `marc_subfield_structure` VALUES ('943', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12210 INSERT INTO `marc_subfield_structure` VALUES ('943', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12211 INSERT INTO `marc_subfield_structure` VALUES ('943', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12212 INSERT INTO `marc_subfield_structure` VALUES ('943', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12213 INSERT INTO `marc_subfield_structure` VALUES ('943', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12214 INSERT INTO `marc_subfield_structure` VALUES ('943', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12215 INSERT INTO `marc_subfield_structure` VALUES ('943', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12216 INSERT INTO `marc_subfield_structure` VALUES ('943', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12217 INSERT INTO `marc_subfield_structure` VALUES ('943', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12218 INSERT INTO `marc_subfield_structure` VALUES ('943', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12219 INSERT INTO `marc_subfield_structure` VALUES ('945', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12220 INSERT INTO `marc_subfield_structure` VALUES ('945', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12221 INSERT INTO `marc_subfield_structure` VALUES ('945', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12222 INSERT INTO `marc_subfield_structure` VALUES ('945', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12223 INSERT INTO `marc_subfield_structure` VALUES ('945', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12224 INSERT INTO `marc_subfield_structure` VALUES ('945', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12225 INSERT INTO `marc_subfield_structure` VALUES ('945', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12226 INSERT INTO `marc_subfield_structure` VALUES ('945', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12227 INSERT INTO `marc_subfield_structure` VALUES ('945', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12228 INSERT INTO `marc_subfield_structure` VALUES ('945', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12229 INSERT INTO `marc_subfield_structure` VALUES ('945', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12230 INSERT INTO `marc_subfield_structure` VALUES ('945', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12231 INSERT INTO `marc_subfield_structure` VALUES ('945', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12232 INSERT INTO `marc_subfield_structure` VALUES ('945', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12233 INSERT INTO `marc_subfield_structure` VALUES ('945', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12234 INSERT INTO `marc_subfield_structure` VALUES ('945', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12235 INSERT INTO `marc_subfield_structure` VALUES ('945', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12236 INSERT INTO `marc_subfield_structure` VALUES ('945', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12237 INSERT INTO `marc_subfield_structure` VALUES ('945', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12238 INSERT INTO `marc_subfield_structure` VALUES ('945', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12239 INSERT INTO `marc_subfield_structure` VALUES ('945', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12240 INSERT INTO `marc_subfield_structure` VALUES ('945', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12241 INSERT INTO `marc_subfield_structure` VALUES ('945', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12242 INSERT INTO `marc_subfield_structure` VALUES ('945', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12243 INSERT INTO `marc_subfield_structure` VALUES ('945', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12244 INSERT INTO `marc_subfield_structure` VALUES ('945', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12245 INSERT INTO `marc_subfield_structure` VALUES ('945', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12246 INSERT INTO `marc_subfield_structure` VALUES ('945', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12247 INSERT INTO `marc_subfield_structure` VALUES ('945', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12248 INSERT INTO `marc_subfield_structure` VALUES ('945', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12249 INSERT INTO `marc_subfield_structure` VALUES ('945', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12250 INSERT INTO `marc_subfield_structure` VALUES ('945', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12251 INSERT INTO `marc_subfield_structure` VALUES ('945', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12252 INSERT INTO `marc_subfield_structure` VALUES ('945', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12253 INSERT INTO `marc_subfield_structure` VALUES ('945', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12254 INSERT INTO `marc_subfield_structure` VALUES ('945', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12255 INSERT INTO `marc_subfield_structure` VALUES ('94c', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12256 INSERT INTO `marc_subfield_structure` VALUES ('94c', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12257 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'a', 'Title', 'Title', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12258 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12259 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12260 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12261 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12262 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12263 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12264 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12265 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'k', 'Form', 'Form', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12266 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12267 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12268 INSERT INTO `marc_subfield_structure` VALUES ('94c', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12269 INSERT INTO `marc_subfield_structure` VALUES ('946', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12270 INSERT INTO `marc_subfield_structure` VALUES ('946', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12271 INSERT INTO `marc_subfield_structure` VALUES ('946', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12272 INSERT INTO `marc_subfield_structure` VALUES ('946', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12273 INSERT INTO `marc_subfield_structure` VALUES ('946', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12274 INSERT INTO `marc_subfield_structure` VALUES ('946', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12275 INSERT INTO `marc_subfield_structure` VALUES ('946', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12276 INSERT INTO `marc_subfield_structure` VALUES ('946', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12277 INSERT INTO `marc_subfield_structure` VALUES ('946', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12278 INSERT INTO `marc_subfield_structure` VALUES ('946', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12279 INSERT INTO `marc_subfield_structure` VALUES ('946', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12280 INSERT INTO `marc_subfield_structure` VALUES ('946', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12281 INSERT INTO `marc_subfield_structure` VALUES ('946', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12282 INSERT INTO `marc_subfield_structure` VALUES ('946', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12283 INSERT INTO `marc_subfield_structure` VALUES ('946', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12284 INSERT INTO `marc_subfield_structure` VALUES ('946', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12285 INSERT INTO `marc_subfield_structure` VALUES ('946', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12286 INSERT INTO `marc_subfield_structure` VALUES ('946', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12287 INSERT INTO `marc_subfield_structure` VALUES ('946', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12288 INSERT INTO `marc_subfield_structure` VALUES ('946', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12289 INSERT INTO `marc_subfield_structure` VALUES ('946', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12290 INSERT INTO `marc_subfield_structure` VALUES ('946', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12291 INSERT INTO `marc_subfield_structure` VALUES ('946', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12292 INSERT INTO `marc_subfield_structure` VALUES ('946', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12293 INSERT INTO `marc_subfield_structure` VALUES ('946', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12294 INSERT INTO `marc_subfield_structure` VALUES ('946', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12295 INSERT INTO `marc_subfield_structure` VALUES ('946', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12296 INSERT INTO `marc_subfield_structure` VALUES ('946', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12297 INSERT INTO `marc_subfield_structure` VALUES ('946', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12298 INSERT INTO `marc_subfield_structure` VALUES ('946', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12299 INSERT INTO `marc_subfield_structure` VALUES ('946', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12300 INSERT INTO `marc_subfield_structure` VALUES ('946', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12301 INSERT INTO `marc_subfield_structure` VALUES ('946', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12302 INSERT INTO `marc_subfield_structure` VALUES ('946', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12303 INSERT INTO `marc_subfield_structure` VALUES ('946', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12304 INSERT INTO `marc_subfield_structure` VALUES ('946', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12305 INSERT INTO `marc_subfield_structure` VALUES ('947', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12306 INSERT INTO `marc_subfield_structure` VALUES ('947', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12307 INSERT INTO `marc_subfield_structure` VALUES ('947', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12308 INSERT INTO `marc_subfield_structure` VALUES ('947', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12309 INSERT INTO `marc_subfield_structure` VALUES ('947', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12310 INSERT INTO `marc_subfield_structure` VALUES ('947', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12311 INSERT INTO `marc_subfield_structure` VALUES ('947', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12312 INSERT INTO `marc_subfield_structure` VALUES ('947', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12313 INSERT INTO `marc_subfield_structure` VALUES ('947', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12314 INSERT INTO `marc_subfield_structure` VALUES ('947', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12315 INSERT INTO `marc_subfield_structure` VALUES ('947', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12316 INSERT INTO `marc_subfield_structure` VALUES ('947', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12317 INSERT INTO `marc_subfield_structure` VALUES ('947', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12318 INSERT INTO `marc_subfield_structure` VALUES ('947', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12319 INSERT INTO `marc_subfield_structure` VALUES ('947', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12320 INSERT INTO `marc_subfield_structure` VALUES ('947', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12321 INSERT INTO `marc_subfield_structure` VALUES ('947', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12322 INSERT INTO `marc_subfield_structure` VALUES ('947', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12323 INSERT INTO `marc_subfield_structure` VALUES ('947', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12324 INSERT INTO `marc_subfield_structure` VALUES ('947', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12325 INSERT INTO `marc_subfield_structure` VALUES ('947', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12326 INSERT INTO `marc_subfield_structure` VALUES ('947', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12327 INSERT INTO `marc_subfield_structure` VALUES ('947', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12328 INSERT INTO `marc_subfield_structure` VALUES ('947', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12329 INSERT INTO `marc_subfield_structure` VALUES ('947', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12330 INSERT INTO `marc_subfield_structure` VALUES ('947', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12331 INSERT INTO `marc_subfield_structure` VALUES ('947', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12332 INSERT INTO `marc_subfield_structure` VALUES ('947', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12333 INSERT INTO `marc_subfield_structure` VALUES ('947', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12334 INSERT INTO `marc_subfield_structure` VALUES ('947', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12335 INSERT INTO `marc_subfield_structure` VALUES ('947', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12336 INSERT INTO `marc_subfield_structure` VALUES ('947', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12337 INSERT INTO `marc_subfield_structure` VALUES ('947', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12338 INSERT INTO `marc_subfield_structure` VALUES ('947', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12339 INSERT INTO `marc_subfield_structure` VALUES ('947', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12340 INSERT INTO `marc_subfield_structure` VALUES ('947', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12341 INSERT INTO `marc_subfield_structure` VALUES ('948', '0', '0 (OCLC)', '0 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12342 INSERT INTO `marc_subfield_structure` VALUES ('948', '1', '1 (OCLC)', '1 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12343 INSERT INTO `marc_subfield_structure` VALUES ('948', '2', '2 (OCLC)', '2 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12344 INSERT INTO `marc_subfield_structure` VALUES ('948', '3', '3 (OCLC)', '3 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12345 INSERT INTO `marc_subfield_structure` VALUES ('948', '4', '4 (OCLC)', '4 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12346 INSERT INTO `marc_subfield_structure` VALUES ('948', '5', '5 (OCLC)', '5 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12347 INSERT INTO `marc_subfield_structure` VALUES ('948', '6', '6 (OCLC)', '6 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12348 INSERT INTO `marc_subfield_structure` VALUES ('948', '7', '7 (OCLC)', '7 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12349 INSERT INTO `marc_subfield_structure` VALUES ('948', '8', '8 (OCLC)', '8 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12350 INSERT INTO `marc_subfield_structure` VALUES ('948', '9', '9 (OCLC)', '9 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12351 INSERT INTO `marc_subfield_structure` VALUES ('948', 'a', 'Series part designator, SPT (RLIN)', 'Series part designator, SPT (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12352 INSERT INTO `marc_subfield_structure` VALUES ('948', 'b', 'b (OCLC)', 'b (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12353 INSERT INTO `marc_subfield_structure` VALUES ('948', 'c', 'c (OCLC)', 'c (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12354 INSERT INTO `marc_subfield_structure` VALUES ('948', 'd', 'd (OCLC)', 'd (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12355 INSERT INTO `marc_subfield_structure` VALUES ('948', 'e', 'e (OCLC)', 'e (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12356 INSERT INTO `marc_subfield_structure` VALUES ('948', 'f', 'f (OCLC)', 'f (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12357 INSERT INTO `marc_subfield_structure` VALUES ('948', 'g', 'g (OCLC)', 'g (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12358 INSERT INTO `marc_subfield_structure` VALUES ('948', 'h', 'h (OCLC)', 'h (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12359 INSERT INTO `marc_subfield_structure` VALUES ('948', 'i', 'i (OCLC)', 'i (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12360 INSERT INTO `marc_subfield_structure` VALUES ('948', 'j', 'j (OCLC)', 'j (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12361 INSERT INTO `marc_subfield_structure` VALUES ('948', 'k', 'k (OCLC)', 'k (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12362 INSERT INTO `marc_subfield_structure` VALUES ('948', 'l', 'l (OCLC)', 'l (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12363 INSERT INTO `marc_subfield_structure` VALUES ('948', 'm', 'm (OCLC)', 'm (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12364 INSERT INTO `marc_subfield_structure` VALUES ('948', 'n', 'n (OCLC)', 'n (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12365 INSERT INTO `marc_subfield_structure` VALUES ('948', 'o', 'o (OCLC)', 'o (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12366 INSERT INTO `marc_subfield_structure` VALUES ('948', 'p', 'p (OCLC)', 'p (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12367 INSERT INTO `marc_subfield_structure` VALUES ('948', 'q', 'q (OCLC)', 'q (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12368 INSERT INTO `marc_subfield_structure` VALUES ('948', 'r', 'r (OCLC)', 'r (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12369 INSERT INTO `marc_subfield_structure` VALUES ('948', 's', 's (OCLC)', 's (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12370 INSERT INTO `marc_subfield_structure` VALUES ('948', 't', 't (OCLC)', 't (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12371 INSERT INTO `marc_subfield_structure` VALUES ('948', 'u', 'u (OCLC)', 'u (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12372 INSERT INTO `marc_subfield_structure` VALUES ('948', 'v', 'v (OCLC)', 'v (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12373 INSERT INTO `marc_subfield_structure` VALUES ('948', 'w', 'w (OCLC)', 'w (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12374 INSERT INTO `marc_subfield_structure` VALUES ('948', 'x', 'x (OCLC)', 'x (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12375 INSERT INTO `marc_subfield_structure` VALUES ('948', 'y', 'y (OCLC)', 'y (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12376 INSERT INTO `marc_subfield_structure` VALUES ('948', 'z', 'z (OCLC)', 'z (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12377 INSERT INTO `marc_subfield_structure` VALUES ('949', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12378 INSERT INTO `marc_subfield_structure` VALUES ('949', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12379 INSERT INTO `marc_subfield_structure` VALUES ('949', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12380 INSERT INTO `marc_subfield_structure` VALUES ('949', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12381 INSERT INTO `marc_subfield_structure` VALUES ('949', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12382 INSERT INTO `marc_subfield_structure` VALUES ('949', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12383 INSERT INTO `marc_subfield_structure` VALUES ('949', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12384 INSERT INTO `marc_subfield_structure` VALUES ('949', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12385 INSERT INTO `marc_subfield_structure` VALUES ('949', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12386 INSERT INTO `marc_subfield_structure` VALUES ('949', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12387 INSERT INTO `marc_subfield_structure` VALUES ('949', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12388 INSERT INTO `marc_subfield_structure` VALUES ('949', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12389 INSERT INTO `marc_subfield_structure` VALUES ('949', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12390 INSERT INTO `marc_subfield_structure` VALUES ('949', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12391 INSERT INTO `marc_subfield_structure` VALUES ('949', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12392 INSERT INTO `marc_subfield_structure` VALUES ('949', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12393 INSERT INTO `marc_subfield_structure` VALUES ('949', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12394 INSERT INTO `marc_subfield_structure` VALUES ('949', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12395 INSERT INTO `marc_subfield_structure` VALUES ('949', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12396 INSERT INTO `marc_subfield_structure` VALUES ('949', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12397 INSERT INTO `marc_subfield_structure` VALUES ('949', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12398 INSERT INTO `marc_subfield_structure` VALUES ('949', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12399 INSERT INTO `marc_subfield_structure` VALUES ('949', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12400 INSERT INTO `marc_subfield_structure` VALUES ('949', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12401 INSERT INTO `marc_subfield_structure` VALUES ('949', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12402 INSERT INTO `marc_subfield_structure` VALUES ('949', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12403 INSERT INTO `marc_subfield_structure` VALUES ('949', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12404 INSERT INTO `marc_subfield_structure` VALUES ('949', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12405 INSERT INTO `marc_subfield_structure` VALUES ('949', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12406 INSERT INTO `marc_subfield_structure` VALUES ('949', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12407 INSERT INTO `marc_subfield_structure` VALUES ('949', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12408 INSERT INTO `marc_subfield_structure` VALUES ('949', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12409 INSERT INTO `marc_subfield_structure` VALUES ('949', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12410 INSERT INTO `marc_subfield_structure` VALUES ('949', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12411 INSERT INTO `marc_subfield_structure` VALUES ('949', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12412 INSERT INTO `marc_subfield_structure` VALUES ('949', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12413 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'a', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12414 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'b', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12415 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'c', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12416 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'd', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12417 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'e', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12418 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'a', 'ATC', 'ATC', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12419 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'b', 'SNR', 'SNR', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12420 INSERT INTO `marc_subfield_structure` VALUES ('950', 'a', 'Classification number, LCAL (RLIN)', 'Classification number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12421 INSERT INTO `marc_subfield_structure` VALUES ('950', 'b', 'Book number/undivided call number, LCAL (RLIN)', 'Book number/undivided call number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12422 INSERT INTO `marc_subfield_structure` VALUES ('950', 'd', 'Additional free-text stamp above the call number, LCAL (RLIN)', 'Additional free-text stamp above the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12423 INSERT INTO `marc_subfield_structure` VALUES ('950', 'e', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12424 INSERT INTO `marc_subfield_structure` VALUES ('950', 'f', 'Location-level footnote, LFNT (RLIN)', 'Location-level footnote, LFNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12425 INSERT INTO `marc_subfield_structure` VALUES ('950', 'h', 'Location-level output transaction history, LHST (RLIN)', 'Location-level output transaction history, LHST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12426 INSERT INTO `marc_subfield_structure` VALUES ('950', 'i', 'Location-level extra card request, LEXT (RLIN)', 'Location-level extra card request, LEXT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12427 INSERT INTO `marc_subfield_structure` VALUES ('950', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12428 INSERT INTO `marc_subfield_structure` VALUES ('950', 'n', 'Location-level additional note, LANT (RLIN)', 'Location-level additional note, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12429 INSERT INTO `marc_subfield_structure` VALUES ('950', 'p', 'Location-level pathfinder, LPTH (RLIN)', 'Location-level pathfinder, LPTH (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12430 INSERT INTO `marc_subfield_structure` VALUES ('950', 't', 'Location-level field suppression, LFSP (RLIN)', 'Location-level field suppression, LFSP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12431 INSERT INTO `marc_subfield_structure` VALUES ('950', 'u', 'Non-printing notes, LANT (RLIN)', 'Non-printing notes, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12432 INSERT INTO `marc_subfield_structure` VALUES ('950', 'v', 'Volumes, LVOL (RLIN)', 'Volumes, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12433 INSERT INTO `marc_subfield_structure` VALUES ('950', 'w', 'Subscription status code, LANT (RLIN)', 'Subscription status code, LANT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12434 INSERT INTO `marc_subfield_structure` VALUES ('950', 'y', 'Date, LVOL (RLIN)', 'Date, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12435 INSERT INTO `marc_subfield_structure` VALUES ('950', 'z', 'Retention, LVOL (RLIN)', 'Retention, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12436 INSERT INTO `marc_subfield_structure` VALUES ('951', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
12437 INSERT INTO `marc_subfield_structure` VALUES ('951', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
12438 INSERT INTO `marc_subfield_structure` VALUES ('951', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
12439 INSERT INTO `marc_subfield_structure` VALUES ('951', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
12440 INSERT INTO `marc_subfield_structure` VALUES ('951', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
12441 INSERT INTO `marc_subfield_structure` VALUES ('951', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
12442 INSERT INTO `marc_subfield_structure` VALUES ('951', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
12443 INSERT INTO `marc_subfield_structure` VALUES ('951', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
12444 INSERT INTO `marc_subfield_structure` VALUES ('951', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
12445 INSERT INTO `marc_subfield_structure` VALUES ('951', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'CF', '', '');
12446 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'a', 'Record ID (RLIN)', 'Record ID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12447 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'b', 'Institution name (RLIN)', 'Institution name (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12448 INSERT INTO `marc_subfield_structure` VALUES ('95r', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'CF', '', '');
12449 INSERT INTO `marc_subfield_structure` VALUES ('95r', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'CF', '', '');
12450 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'a', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'CF', '', '');
12451 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'b', 'State, province, territory', 'State, province, territory', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'CF', '', '');
12452 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'c', 'County, region, islands area', 'County, region, islands area', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'CF', '', '');
12453 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'd', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'CF', '', '');
12454 INSERT INTO `marc_subfield_structure` VALUES ('955', 'a', 'Classification number, CCAL (RLIN)', 'Classification number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12455 INSERT INTO `marc_subfield_structure` VALUES ('955', 'b', 'Book number/undivided call number, CCAL (RLIN)', 'Book number/undivided call number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12456 INSERT INTO `marc_subfield_structure` VALUES ('955', 'c', 'Copy information and material description, CCAL + MDES (RLIN)', 'Copy information and material description, CCAL + MDES (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12457 INSERT INTO `marc_subfield_structure` VALUES ('955', 'h', 'Copy status--for earlier dates, CST (RLIN)', 'Copy status--for earlier dates, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12458 INSERT INTO `marc_subfield_structure` VALUES ('955', 'i', 'Copy status, CST (RLIN)', 'Copy status, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12459 INSERT INTO `marc_subfield_structure` VALUES ('955', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12460 INSERT INTO `marc_subfield_structure` VALUES ('955', 'q', 'Aquisitions control number, HNT (RLIN)', 'Aquisitions control number, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12461 INSERT INTO `marc_subfield_structure` VALUES ('955', 'r', 'Circulation control number, HNT (RLIN)', 'Circulation control number, HNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12462 INSERT INTO `marc_subfield_structure` VALUES ('955', 's', 'Shelflist note, HNT (RLIN)', 'Shelflist note, HNT (RLIN)', 1, 0, '', 9, '', '', '', 1, 5, 'CF', '', '');
12463 INSERT INTO `marc_subfield_structure` VALUES ('955', 'u', 'Non-printing notes, HNT (RLIN)', 'Non-printing notes, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12464 INSERT INTO `marc_subfield_structure` VALUES ('956', '2', 'Access method', 'Access method', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12465 INSERT INTO `marc_subfield_structure` VALUES ('956', '3', 'Materials specified', 'Materials specified', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12466 INSERT INTO `marc_subfield_structure` VALUES ('956', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12467 INSERT INTO `marc_subfield_structure` VALUES ('956', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12468 INSERT INTO `marc_subfield_structure` VALUES ('956', 'a', 'Host name', 'Host name', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12469 INSERT INTO `marc_subfield_structure` VALUES ('956', 'b', 'Access number', 'Access number', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12470 INSERT INTO `marc_subfield_structure` VALUES ('956', 'c', 'Compression information', 'Compression information', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12471 INSERT INTO `marc_subfield_structure` VALUES ('956', 'd', 'Path', 'Path', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12472 INSERT INTO `marc_subfield_structure` VALUES ('956', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12473 INSERT INTO `marc_subfield_structure` VALUES ('956', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12474 INSERT INTO `marc_subfield_structure` VALUES ('956', 'i', 'Instruction', 'Instruction', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12475 INSERT INTO `marc_subfield_structure` VALUES ('956', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12476 INSERT INTO `marc_subfield_structure` VALUES ('956', 'k', 'Password', 'Password', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12477 INSERT INTO `marc_subfield_structure` VALUES ('956', 'l', 'Logon', 'Logon', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12478 INSERT INTO `marc_subfield_structure` VALUES ('956', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12479 INSERT INTO `marc_subfield_structure` VALUES ('956', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12480 INSERT INTO `marc_subfield_structure` VALUES ('956', 'o', 'Operating system', 'Operating system', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12481 INSERT INTO `marc_subfield_structure` VALUES ('956', 'p', 'Port', 'Port', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12482 INSERT INTO `marc_subfield_structure` VALUES ('956', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12483 INSERT INTO `marc_subfield_structure` VALUES ('956', 'r', 'Settings', 'Settings', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12484 INSERT INTO `marc_subfield_structure` VALUES ('956', 's', 'File size', 'File size', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12485 INSERT INTO `marc_subfield_structure` VALUES ('956', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12486 INSERT INTO `marc_subfield_structure` VALUES ('956', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -6, 'CF', '', '');
12487 INSERT INTO `marc_subfield_structure` VALUES ('956', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12488 INSERT INTO `marc_subfield_structure` VALUES ('956', 'w', 'Record control number', 'Record control number', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12489 INSERT INTO `marc_subfield_structure` VALUES ('956', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', 0, 6, 'CF', '', '');
12490 INSERT INTO `marc_subfield_structure` VALUES ('956', 'y', 'Link text', 'Link text', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12491 INSERT INTO `marc_subfield_structure` VALUES ('956', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12492 INSERT INTO `marc_subfield_structure` VALUES ('960', '3', 'Materials specified, MATL', 'Materials specified, MATL', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12493 INSERT INTO `marc_subfield_structure` VALUES ('960', 'a', 'Physical location, PLOC (RLIN)', 'Physical location, PLOC (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12494 INSERT INTO `marc_subfield_structure` VALUES ('967', 'a', 'GNR (RLIN)', 'GNR (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12495 INSERT INTO `marc_subfield_structure` VALUES ('967', 'c', 'PSI (RLIN)', 'PSI (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12496 INSERT INTO `marc_subfield_structure` VALUES ('980', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12497 INSERT INTO `marc_subfield_structure` VALUES ('980', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12498 INSERT INTO `marc_subfield_structure` VALUES ('980', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12499 INSERT INTO `marc_subfield_structure` VALUES ('980', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12500 INSERT INTO `marc_subfield_structure` VALUES ('980', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12501 INSERT INTO `marc_subfield_structure` VALUES ('980', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12502 INSERT INTO `marc_subfield_structure` VALUES ('980', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12503 INSERT INTO `marc_subfield_structure` VALUES ('980', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12504 INSERT INTO `marc_subfield_structure` VALUES ('980', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12505 INSERT INTO `marc_subfield_structure` VALUES ('980', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12506 INSERT INTO `marc_subfield_structure` VALUES ('980', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12507 INSERT INTO `marc_subfield_structure` VALUES ('980', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12508 INSERT INTO `marc_subfield_structure` VALUES ('980', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12509 INSERT INTO `marc_subfield_structure` VALUES ('980', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12510 INSERT INTO `marc_subfield_structure` VALUES ('980', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12511 INSERT INTO `marc_subfield_structure` VALUES ('980', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12512 INSERT INTO `marc_subfield_structure` VALUES ('980', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12513 INSERT INTO `marc_subfield_structure` VALUES ('980', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12514 INSERT INTO `marc_subfield_structure` VALUES ('980', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12515 INSERT INTO `marc_subfield_structure` VALUES ('980', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12516 INSERT INTO `marc_subfield_structure` VALUES ('980', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12517 INSERT INTO `marc_subfield_structure` VALUES ('980', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12518 INSERT INTO `marc_subfield_structure` VALUES ('980', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12519 INSERT INTO `marc_subfield_structure` VALUES ('980', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12520 INSERT INTO `marc_subfield_structure` VALUES ('981', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12521 INSERT INTO `marc_subfield_structure` VALUES ('981', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12522 INSERT INTO `marc_subfield_structure` VALUES ('981', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12523 INSERT INTO `marc_subfield_structure` VALUES ('981', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12524 INSERT INTO `marc_subfield_structure` VALUES ('981', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12525 INSERT INTO `marc_subfield_structure` VALUES ('981', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12526 INSERT INTO `marc_subfield_structure` VALUES ('981', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12527 INSERT INTO `marc_subfield_structure` VALUES ('981', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12528 INSERT INTO `marc_subfield_structure` VALUES ('981', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12529 INSERT INTO `marc_subfield_structure` VALUES ('981', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12530 INSERT INTO `marc_subfield_structure` VALUES ('981', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12531 INSERT INTO `marc_subfield_structure` VALUES ('981', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12532 INSERT INTO `marc_subfield_structure` VALUES ('981', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12533 INSERT INTO `marc_subfield_structure` VALUES ('981', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12534 INSERT INTO `marc_subfield_structure` VALUES ('981', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12535 INSERT INTO `marc_subfield_structure` VALUES ('981', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12536 INSERT INTO `marc_subfield_structure` VALUES ('981', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12537 INSERT INTO `marc_subfield_structure` VALUES ('981', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12538 INSERT INTO `marc_subfield_structure` VALUES ('981', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12539 INSERT INTO `marc_subfield_structure` VALUES ('981', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12540 INSERT INTO `marc_subfield_structure` VALUES ('981', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12541 INSERT INTO `marc_subfield_structure` VALUES ('981', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12542 INSERT INTO `marc_subfield_structure` VALUES ('982', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12543 INSERT INTO `marc_subfield_structure` VALUES ('982', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12544 INSERT INTO `marc_subfield_structure` VALUES ('982', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12545 INSERT INTO `marc_subfield_structure` VALUES ('982', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12546 INSERT INTO `marc_subfield_structure` VALUES ('982', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12547 INSERT INTO `marc_subfield_structure` VALUES ('982', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12548 INSERT INTO `marc_subfield_structure` VALUES ('982', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12549 INSERT INTO `marc_subfield_structure` VALUES ('982', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12550 INSERT INTO `marc_subfield_structure` VALUES ('982', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12551 INSERT INTO `marc_subfield_structure` VALUES ('982', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12552 INSERT INTO `marc_subfield_structure` VALUES ('982', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12553 INSERT INTO `marc_subfield_structure` VALUES ('982', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12554 INSERT INTO `marc_subfield_structure` VALUES ('982', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12555 INSERT INTO `marc_subfield_structure` VALUES ('982', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12556 INSERT INTO `marc_subfield_structure` VALUES ('982', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12557 INSERT INTO `marc_subfield_structure` VALUES ('982', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12558 INSERT INTO `marc_subfield_structure` VALUES ('982', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12559 INSERT INTO `marc_subfield_structure` VALUES ('982', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12560 INSERT INTO `marc_subfield_structure` VALUES ('982', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12561 INSERT INTO `marc_subfield_structure` VALUES ('982', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'CF', '', '');
12562 INSERT INTO `marc_subfield_structure` VALUES ('983', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12563 INSERT INTO `marc_subfield_structure` VALUES ('983', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12564 INSERT INTO `marc_subfield_structure` VALUES ('983', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12565 INSERT INTO `marc_subfield_structure` VALUES ('983', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12566 INSERT INTO `marc_subfield_structure` VALUES ('983', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12567 INSERT INTO `marc_subfield_structure` VALUES ('983', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12568 INSERT INTO `marc_subfield_structure` VALUES ('983', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12569 INSERT INTO `marc_subfield_structure` VALUES ('983', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12570 INSERT INTO `marc_subfield_structure` VALUES ('983', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12571 INSERT INTO `marc_subfield_structure` VALUES ('983', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12572 INSERT INTO `marc_subfield_structure` VALUES ('983', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12573 INSERT INTO `marc_subfield_structure` VALUES ('983', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12574 INSERT INTO `marc_subfield_structure` VALUES ('983', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12575 INSERT INTO `marc_subfield_structure` VALUES ('983', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12576 INSERT INTO `marc_subfield_structure` VALUES ('983', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12577 INSERT INTO `marc_subfield_structure` VALUES ('983', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12578 INSERT INTO `marc_subfield_structure` VALUES ('983', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12579 INSERT INTO `marc_subfield_structure` VALUES ('984', 'a', 'Holding library identification number', 'Holding library identification number', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12580 INSERT INTO `marc_subfield_structure` VALUES ('984', 'b', 'Physical description codes', 'Physical description codes', 1, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12581 INSERT INTO `marc_subfield_structure` VALUES ('984', 'c', 'Call number', 'Call number', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12582 INSERT INTO `marc_subfield_structure` VALUES ('984', 'd', 'Volume or other numbering', 'Volume or other numbering', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12583 INSERT INTO `marc_subfield_structure` VALUES ('984', 'e', 'Dates', 'Dates', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12584 INSERT INTO `marc_subfield_structure` VALUES ('984', 'f', 'Completeness note', 'Completeness note', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12585 INSERT INTO `marc_subfield_structure` VALUES ('984', 'g', 'Referral note', 'Referral note', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12586 INSERT INTO `marc_subfield_structure` VALUES ('984', 'h', 'Retention note', 'Retention note', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12587 INSERT INTO `marc_subfield_structure` VALUES ('987', 'a', 'Romanization/conversion identifier', 'Romanization/conversion identifier', 0, 0, '', 9, '', '', '', NULL, -6, 'CF', '', '');
12588 INSERT INTO `marc_subfield_structure` VALUES ('987', 'b', 'Agency that converted, created or reviewed', 'Agency that converted, created or reviewed', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12589 INSERT INTO `marc_subfield_structure` VALUES ('987', 'c', 'Date of conversion or review', 'Date of conversion or review', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12590 INSERT INTO `marc_subfield_structure` VALUES ('987', 'd', 'Status code', 'Status code ', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12591 INSERT INTO `marc_subfield_structure` VALUES ('987', 'e', 'Version of conversion program used', 'Version of conversion program used', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12592 INSERT INTO `marc_subfield_structure` VALUES ('987', 'f', 'Note', 'Note', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12593 INSERT INTO `marc_subfield_structure` VALUES ('990', 'a', 'Link information for 9XX fields', 'Link information for 9XX fields', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12594 INSERT INTO `marc_subfield_structure` VALUES ('990', 'b', 'Link information for field corresponding to 9XX field', 'Link information for field corresponding to 9XX field', 1, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12595 INSERT INTO `marc_subfield_structure` VALUES ('995', 'a', 'Origine du document, texte libre', 'Origine du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12596 INSERT INTO `marc_subfield_structure` VALUES ('995', 'b', 'Origine du document, donn&eacute;e cod&eacute;e', '', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12597 INSERT INTO `marc_subfield_structure` VALUES ('995', 'c', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12598 INSERT INTO `marc_subfield_structure` VALUES ('995', 'd', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12599 INSERT INTO `marc_subfield_structure` VALUES ('995', 'e', 'Genre d&eacute;taill&eacute;', 'Genre d&eacute;taill&eacute;', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12600 INSERT INTO `marc_subfield_structure` VALUES ('995', 'f', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12601 INSERT INTO `marc_subfield_structure` VALUES ('995', 'g', 'Code &agrave; barres, pr&eacute;fixe', 'Code &agrave; barres, pr&eacute;fixe', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12602 INSERT INTO `marc_subfield_structure` VALUES ('995', 'h', 'Code &agrave; barres, incr&eacute;mentation', 'Code &agrave; barres, incr&eacute;mentation', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12603 INSERT INTO `marc_subfield_structure` VALUES ('995', 'i', 'Code &agrave; barres, suffixe', 'Code &agrave; barres, suffixe', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12604 INSERT INTO `marc_subfield_structure` VALUES ('995', 'j', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12605 INSERT INTO `marc_subfield_structure` VALUES ('995', 'k', 'Cote', 'Cote', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12606 INSERT INTO `marc_subfield_structure` VALUES ('995', 'l', 'Volumaison', 'Volumaison', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12607 INSERT INTO `marc_subfield_structure` VALUES ('995', 'm', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12608 INSERT INTO `marc_subfield_structure` VALUES ('995', 'n', 'Date de restitution pr&eacute;vue', 'Date de restitution pr&eacute;vue', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12609 INSERT INTO `marc_subfield_structure` VALUES ('995', 'o', 'Cat&eacute;gorie de circulation', 'Cat&eacute;gorie de circulation', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12610 INSERT INTO `marc_subfield_structure` VALUES ('995', 'p', 'P&eacute;riodique', 'P&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12611 INSERT INTO `marc_subfield_structure` VALUES ('995', 'q', 'Public vis&eacute; (selon l\'&acirc;ge)', 'Public vis&eacute; (selon l\'&acirc;ge)', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12612 INSERT INTO `marc_subfield_structure` VALUES ('995', 'r', 'Type de document et support mat&eacute;riel', 'Type de document et support mat&eacute;riel', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12613 INSERT INTO `marc_subfield_structure` VALUES ('995', 's', 'Él&eacute;ment de tri', 'Él&eacute;ment de tri', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12614 INSERT INTO `marc_subfield_structure` VALUES ('995', 't', 'Genre', 'Genre', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12615 INSERT INTO `marc_subfield_structure` VALUES ('995', 'u', 'Note sur l\'exemplaire', 'Note sur l\'exemplaire', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12616 INSERT INTO `marc_subfield_structure` VALUES ('995', 'v', 'Note sur le num&eacute;ro de p&eacute;riodique', 'Note sur le num&eacute;ro de p&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12617 INSERT INTO `marc_subfield_structure` VALUES ('995', 'w', 'Établissement cible du document, texte libre', 'Établissement cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12618 INSERT INTO `marc_subfield_structure` VALUES ('995', 'x', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12619 INSERT INTO `marc_subfield_structure` VALUES ('995', 'y', 'Ensemble cible du document , texte libre', 'Ensemble cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12620 INSERT INTO `marc_subfield_structure` VALUES ('995', 'z', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'CF', '', '');
12621 INSERT INTO `marc_subfield_structure` VALUES ('998', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12622 INSERT INTO `marc_subfield_structure` VALUES ('998', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12623 INSERT INTO `marc_subfield_structure` VALUES ('998', 'd', 'First date, FD (RLIN)', 'First Date, FD (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'CF', '', '');
12624 INSERT INTO `marc_subfield_structure` VALUES ('998', 'i', 'RINS (RLIN)', 'RINS (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12625 INSERT INTO `marc_subfield_structure` VALUES ('998', 'l', 'LI (RLIN)', 'LI (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12626 INSERT INTO `marc_subfield_structure` VALUES ('998', 'n', 'NUC (RLIN)', 'NUC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12627 INSERT INTO `marc_subfield_structure` VALUES ('998', 'p', 'PROC (RLIN)', 'PROC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12628 INSERT INTO `marc_subfield_structure` VALUES ('998', 's', 'CC (RLIN)', 'CC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12629 INSERT INTO `marc_subfield_structure` VALUES ('998', 't', 'RTYP (RLIN)', 'RTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12630 INSERT INTO `marc_subfield_structure` VALUES ('998', 'w', 'PLINK (RLIN)', 'PLINK (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12631 INSERT INTO `marc_subfield_structure` VALUES ('999', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
12632 INSERT INTO `marc_subfield_structure` VALUES ('999', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'CF', '', '');
12633 INSERT INTO `marc_subfield_structure` VALUES ('999', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
12634 INSERT INTO `marc_subfield_structure` VALUES ('999', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
12635 INSERT INTO `marc_subfield_structure` VALUES ('999', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
12636 INSERT INTO `marc_subfield_structure` VALUES ('999', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
12637 INSERT INTO `marc_subfield_structure` VALUES ('999', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
12638 INSERT INTO `marc_subfield_structure` VALUES ('999', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
12639 INSERT INTO `marc_subfield_structure` VALUES ('999', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
12640 INSERT INTO `marc_subfield_structure` VALUES ('999', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
12641 INSERT INTO `marc_subfield_structure` VALUES ('999', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
12642 INSERT INTO `marc_subfield_structure` VALUES ('999', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
12643 INSERT INTO `marc_subfield_structure` VALUES ('999', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'CF', '', '');
12644 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'a', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12645 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'd', 'UAD (RLIN)', 'UAD (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12646 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'f', 'FPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12647 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'h', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12648 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'i', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12649 INSERT INTO `marc_subfield_structure` VALUES ('u01', 's', 'UST (RLIN)', 'UST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12650 INSERT INTO `marc_subfield_structure` VALUES ('u01', 't', 'UTYP (RLIN)', 'UTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12651 INSERT INTO `marc_subfield_structure` VALUES ('u02', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12652 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12653 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'b', 'Additional codes following the standard number', 'Additional codes following the standard number', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12654 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12655 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12656 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'n', 'LSI', 'LSI', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12657 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'o', 'SID', 'SID', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12658 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'p', 'DP', 'DP', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12659 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'r', 'RUSH', 'RUSH', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12660 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'a', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12661 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'b', 'SID', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12662 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'c', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12663 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'd', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12664 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'e', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12665 INSERT INTO `marc_subfield_structure` VALUES ('u10', 's', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12666 INSERT INTO `marc_subfield_structure` VALUES ('u11', 'a', 'Department report request, DRR (DRRH for earlier occurrences)', 'DRR (DRRH for earlier occurrences)', 1, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12667 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'a', 'SUPN', 'SUPN', 1, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12668 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'b', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12669 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'c', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12670 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'd', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12671 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'e', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12672 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'x', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12673 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'a', 'SHIP', 'SHIP', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12674 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'b', 'BILL', 'BILL', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12675 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'c', 'DAC', 'DAC', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12676 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'n', 'LSAC', 'LSAC', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12677 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'a', 'SICO', 'SICO', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12678 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'b', 'SICO', 'SICO', 1, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12679 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'c', 'SCAT', 'SCAT', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12680 INSERT INTO `marc_subfield_structure` VALUES ('u25', 'a', 'Supplier report(s), SRPT', 'Supplier report(s), SRPT', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12681 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'a', 'NCC [OBSOLETE]', 'NCC [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12682 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'i', 'ICI', 'ICI', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12683 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'm', 'MCI', 'MCI', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12684 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'a', 'NCC', 'NCC', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12685 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'b', 'NCS', 'NCS', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12686 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'a', 'ICL', 'ICL', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12687 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'd', 'ICAD', 'ICAD', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12688 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'a', 'EPCL', 'EPCL', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12689 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'r', 'ERI', 'ERI', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12690 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'd', 'EPDT [OBSOLETE]', 'EPDT [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12691 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'f', 'EFRQ', 'EFRQ', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12692 INSERT INTO `marc_subfield_structure` VALUES ('u40', 's', 'EPST', 'EPST', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12693 INSERT INTO `marc_subfield_structure` VALUES ('u40', 't', 'ETYP', 'ETYP', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12694 INSERT INTO `marc_subfield_structure` VALUES ('u50', 'a', 'Acquisitions notes, AQNT', 'Acquisitions notes, AQNT', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12695 INSERT INTO `marc_subfield_structure` VALUES ('u51', 'a', 'Selection notes, SLNT', 'Selection notes, SLNT', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12696 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'a', 'INT', 'INT', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12697 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'b', 'INT', 'NT', 1, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12698 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'a', 'CLNT', 'CLNT', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12699 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'b', 'CLNT', 'CLNT', 1, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12700 INSERT INTO `marc_subfield_structure` VALUES ('u54', 'a', 'Notes to serials department, SRNT', 'Notes to serials department, SRNT', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12701 INSERT INTO `marc_subfield_structure` VALUES ('u55', 'a', 'Cataloging notes, CTNT', 'Cataloging notes, CTNT', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12702 INSERT INTO `marc_subfield_structure` VALUES ('u5f', 'a', 'Accounting notes, ACNT', 'Accounting notes, ACNT', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12703 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'a', 'QTY', 'QTY', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12704 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'b', 'MAT', 'MAT', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12705 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'l', 'MLOC', 'MLOC', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12706 INSERT INTO `marc_subfield_structure` VALUES ('u71', 'a', 'Fund account, FUND', 'Fund account, FUND', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12707 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'a', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12708 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'c', 'CIRC', 'CIRC', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12709 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'h', 'IPST', 'IPST', 1, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12710 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'i', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12711 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'l', 'SLOC', 'SLOC', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12712 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'a', 'LPRI', 'LPRI', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12713 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'b', 'CURR', 'CURR', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12714 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'k', 'CVRT [OBSOLETE]', 'CVRT [OBSOLETE]', 1, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12715 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'p', 'LPD', 'LPD', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12716 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'r', 'EDRT', 'EDRT', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12717 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'h', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12718 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'i', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12719 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'a', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12720 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'b', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12721 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'c', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12722 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'd', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12723 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'e', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12724 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'f', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12725 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'g', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12726 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'h', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12727 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'n', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'CF', '', '');
12728
12729
12730 -- *******************************************************
12731
12732
12733
12734 -- ************************************************************
12735 -- SIMPLE SOUND RECORDINGS KOHA RECORD AND HOLDINGS MANAGEMENT 
12736 -- FIELDS/SUBFIELDS.                                           
12737 -- ************************************************************
12738
12739 -- These ought to be adjusted for different less conflicting and more 
12740 -- rationally chosen fields and subfields but I had left that for last. 
12741
12742 -- ADJUST ME
12743 -- Use values from your dump of marc_tag_structure and marc_subfield_structure 
12744 -- to provide support for your Koha database.
12745
12746
12747 -- ******************************************************
12748
12749
12750 -- Current Record ID Field/Subfields 
12751
12752
12753 INSERT INTO `marc_tag_structure` VALUES ('090', 'SYSTEM CONTROL NUMBERS (KOHA)', 'SYSTEM CONTROL NUMBERS (KOHA)', 1, 0, '', 'SR');
12754
12755 INSERT INTO `marc_subfield_structure` VALUES ('090', 'a', 'Item type [OBSOLETE]', 'Item type [OBSOLETE]', 0, 0, NULL, -1, NULL, NULL, '', NULL, -5, 'SR', '', '');
12756 INSERT INTO `marc_subfield_structure` VALUES ('090', 'b', 'Koha Dewey Subclass [OBSOLETE]', 'Koha Dewey Subclass [OBSOLETE]', 0, 0, NULL, 0, NULL, NULL, '', NULL, -5, 'SR', '', '');
12757 INSERT INTO `marc_subfield_structure` VALUES ('090', 'c', 'Koha biblionumber', 'Koha biblionumber', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, -5, 'SR', '', '');
12758 INSERT INTO `marc_subfield_structure` VALUES ('090', 'd', 'Koha biblioitemnumber', 'Koha biblioitemnumber', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, -5, 'SR', '', '');
12759
12760
12761 -- ******************************************************
12762
12763
12764 -- Current primary biblioitems Field/Subfields 
12765
12766
12767 INSERT INTO `marc_tag_structure` VALUES ('942', 'ADDED ENTRY ELEMENTS (KOHA)', 'ADDED ENTRY ELEMENTS (KOHA)', 0, 0, '', 'SR');
12768
12769 INSERT INTO `marc_subfield_structure` VALUES ('942', 'a', 'Institution code [OBSOLETE]', 'Institution code [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -5, 'SR', '', '');
12770 INSERT INTO `marc_subfield_structure` VALUES ('942', 'c', 'Item type', 'Item type', 0, 1, 'biblioitems.itemtype', 9, 'itemtypes', '', '', NULL, 0, 'SR', '', '');
12771 INSERT INTO `marc_subfield_structure` VALUES ('942', 'j', 'Location (call number prefix code)', 'Location (call number prefix code)', 0, 0, 'biblioitems.classification', 9, '', '', '', NULL, -6, 'SR', '', '');
12772 INSERT INTO `marc_subfield_structure` VALUES ('942', 'k', 'Classification base (DDC to decimal or LCC letter class padded after single letter classes with trailing 0', 'Classification base', 0, 0, 'biblioitems.dewey', 9, '', '', '', NULL, -6, 'SR', '', '');
12773 INSERT INTO `marc_subfield_structure` VALUES ('942', 'l', 'Classification subclass (DDC after decimal or LCC number after letters', 'Classification subclass', 0, 0, 'biblioitems.subclass', 9, '', '', '', NULL, -6, 'SR', '', '');
12774
12775
12776 -- ******************************************************
12777
12778
12779 -- Recommended items Field/Subfields 
12780
12781
12782 -- INSERT INTO `marc_tag_structure` VALUES ('95k', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', '');
12783
12784 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '0', 'Item status (withdrawn) (similar to 876-8 $j)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'SR', '', '');
12785 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '1', 'Item status (lost) (similar to 876-8 $j)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'SR', '', '');
12786 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '2', 'Source of classification or shelving scheme (similar to 852 $2)', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12787 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '3', 'Materials specified (similar to 852, 876-8 $3)', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'SR', '', '');
12788 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '4', 'Use restrictions (similar to 506 $a, 876-8 $h)', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'SR', '', '');
12789 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '6', 'Linkage (similar to 852, 876-8 $6)', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'SR', '', '');
12790 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '8', 'Sequence number (similar to 852, 876-8 $8)', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12791 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '9', 'Koha itemnumber (autogenerated similar to 852, 876-8 $3 $8 $t combined)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, 'SR', '', '');
12792 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'a', 'Location (homebranch) (similar to 852 $a)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, '', '', '');
12793 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'b', 'Sublocation or collection (holdingbranch) (similar to 852 $b)', 'Sublocation or collection (holdingbranch)', 1, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'SR', '', '');
12794 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'c', 'Shelving location (similar to 852 $c, 876-8 $l)', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'SR', '', '');
12795 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'd', 'Date acquired (similar to 541, 876-8 $d)', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, 'SR', '', '');
12796 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'e', 'Source of acquisition (similar to 541 $a, 876-8 $e)', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'SR', '', '');
12797 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'f', 'Coded location qualifier (similar to 852 $f)', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12798 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'g', 'Non-coded location qualifier (similar to 852 $g)', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12799 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'h', 'Classification part (similar to 852 $h)', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12800 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'i', 'Item part (similar to 852 $i)', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12801 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'j', 'Shelving control number (similar to 852 $j)', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12802 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'k', 'Call number prefix (similar to 852 $k)', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12803 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'l', 'Shelving form of title (similar to 852 $l)', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12804 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'm', 'Call number suffix (similar to 852 $m)', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12805 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'n', 'Country code (similar to 852 $n)', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12806 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'o', 'Call number (similar to 852 $k $h $i $m combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'SR', '', '');
12807 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'p', 'Piece designation (barcode) (similar to 852, 876-8 $p)', 'Piece designation (barcode)', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, 'SR', '', '');
12808 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'q', 'Piece physical condition (similar to 562 $a, 852 $q)', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12809 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'r', 'Invalid or canceled piece designation (canceled barcode) (similar to 876-8 $r)', 'Invalid or canceled piece designation (canceled barcode)', 1, 0, '', 10, '', '', '', NULL, -1, 'SR', '', '');
12810 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 's', 'Copyright article-fee code (similar to 018 $a, 852 $s)', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12811 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 't', 'Copy number (similar to 852, 876-8 $t)', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12812 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'u', 'Cost, normal purchase price (similar to 541 $h, 876-8 $c)', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'SR', '', '');
12813 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'v', 'Cost, replacement price (similar to 365 $b, 876-8 $c)', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'SR', '', '');
12814 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'w', 'Price effective from (similar to 365 $f)', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'SR', '', '');
12815 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'x', 'Nonpublic note (similar to 852, 876-8 $x)', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'SR', '', '');
12816 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'y', 'Use restrictions (not for loan) (similar to 506 $a, 876-8 $h)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'SR', '', '');
12817 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'z', 'Public note (similar to 852, 876-8 $z)', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'SR', '', '');
12818
12819
12820
12821 -- Current items Field/Subfields 
12822
12823
12824 INSERT INTO `marc_tag_structure` VALUES ('952', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', 'SR');
12825
12826 INSERT INTO `marc_subfield_structure` VALUES ('952', '0', 'Item status (withdrawn)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'SR', '', '');
12827 INSERT INTO `marc_subfield_structure` VALUES ('952', '1', 'Item status (lost)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'SR', '', '');
12828 INSERT INTO `marc_subfield_structure` VALUES ('952', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12829 INSERT INTO `marc_subfield_structure` VALUES ('952', '3', 'Materials specified', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'SR', '', '');
12830 INSERT INTO `marc_subfield_structure` VALUES ('952', '4', 'Use restrictions', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'SR', '', '');
12831 INSERT INTO `marc_subfield_structure` VALUES ('952', '6', 'Linkage', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'SR', '', '');
12832 INSERT INTO `marc_subfield_structure` VALUES ('952', '8', 'Sequence number', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12833 INSERT INTO `marc_subfield_structure` VALUES ('952', '9', 'Cost, normal purchase price', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'SR', '', '');
12834 INSERT INTO `marc_subfield_structure` VALUES ('952', 'a', 'Canceled barcode', 'Canceled barcode', 1, 0, '', 10, '', '', '', NULL, -1, 'SR', '', '');
12835 INSERT INTO `marc_subfield_structure` VALUES ('952', 'b', 'Location (homebranch)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, 'SR', '', '');
12836 INSERT INTO `marc_subfield_structure` VALUES ('952', 'c', 'Shelving location', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'SR', '', '');
12837 INSERT INTO `marc_subfield_structure` VALUES ('952', 'd', 'Sublocation or collection (holdingbranch)', 'Sublocation or collection (holdingbranch)', 0, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'SR', '''952b''', '');
12838 INSERT INTO `marc_subfield_structure` VALUES ('952', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'SR', '', '');
12839 INSERT INTO `marc_subfield_structure` VALUES ('952', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12840 INSERT INTO `marc_subfield_structure` VALUES ('952', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12841 INSERT INTO `marc_subfield_structure` VALUES ('952', 'h', 'Classification part', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12842 INSERT INTO `marc_subfield_structure` VALUES ('952', 'i', 'Item part', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12843 INSERT INTO `marc_subfield_structure` VALUES ('952', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12844 INSERT INTO `marc_subfield_structure` VALUES ('952', 'k', 'Call number (combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'SR', '', '');
12845 INSERT INTO `marc_subfield_structure` VALUES ('952', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12846 INSERT INTO `marc_subfield_structure` VALUES ('952', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12847 INSERT INTO `marc_subfield_structure` VALUES ('952', 'n', 'Country code', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12848 INSERT INTO `marc_subfield_structure` VALUES ('952', 'o', 'Call number prefix', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12849 INSERT INTO `marc_subfield_structure` VALUES ('952', 'p', 'Barcode', 'Barcode', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, 'SR', '', '');
12850 INSERT INTO `marc_subfield_structure` VALUES ('952', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12851 INSERT INTO `marc_subfield_structure` VALUES ('952', 'r', 'Cost, replacement price', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'SR', '', '');
12852 INSERT INTO `marc_subfield_structure` VALUES ('952', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12853 INSERT INTO `marc_subfield_structure` VALUES ('952', 't', 'Copy number', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'SR', '', '');
12854 INSERT INTO `marc_subfield_structure` VALUES ('952', 'u', 'Koha itemnumber (autogenerated)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, 'SR', '', '');
12855 INSERT INTO `marc_subfield_structure` VALUES ('952', 'v', 'Date acquired', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, 'SR', '', '');
12856 INSERT INTO `marc_subfield_structure` VALUES ('952', 'w', 'Price effective from', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'SR', '', '');
12857 INSERT INTO `marc_subfield_structure` VALUES ('952', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'SR', '', '');
12858 INSERT INTO `marc_subfield_structure` VALUES ('952', 'y', 'Use restrictions (not for loan)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'SR', '', '');
12859 INSERT INTO `marc_subfield_structure` VALUES ('952', 'z', 'Public note', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'SR', '', '');
12860
12861
12862 -- *******************************************************
12863
12864
12865
12866 -- *********************************************************************
12867 -- SIMPLE SOUND RECORDINGS MARC 21 FIELDS/SUBFIELDS AND COMMMONLY USED  
12868 -- EXTENSIONS.                                                          
12869 -- *********************************************************************
12870
12871
12872 -- A Few local use codes need specifying.  Several seealso, plugin, and 
12873 -- authority framework columns need improving.  $9 for authority record linking 
12874 -- needs to be added where not already provided by RLIN specifications. 
12875 -- Needs checking for errors but probably tolerable for use on a production. 
12876 -- A server can be upgraded easily from later versions of this file.
12877 --                                                                          
12878 -- In the absense of more column support for qualifying the relative 
12879 -- importance of subfields to the record editor, some modest modification of 
12880 -- the default framework is needed setting the not-useful non-Koha holdings 
12881 -- subfields to not managed in Koha.
12882
12883 -- MARC fields including letters as part of the field identifier are from RLIN
12884 -- and should be expected to remain along with RLIN $% subfields.  RLIN has 
12885 -- been using letters in fields because there are not enough local use number 
12886 -- fields which have not already been specified for very large union catalogue 
12887 -- networks such as RLIN itself.
12888
12889
12890 -- Fields ending in c, o, or r are temporary placeholders for information from
12891 -- a numeric value until a non-conflicting way to treat the content under the
12892 -- proper original numeric field is adopted.  090 for LC call numbers is much 
12893 -- too common and important so 999 is also provided as a temporary place 
12894 -- holder until all Koha code for finding control fields has been changed from 
12895 -- a numeric test of < 10 to a regular expression match of m/^00/ to prevent 
12896 -- mistaken matching of fields with letters such as 09o if they were control 
12897 -- fields.
12898
12899 INSERT INTO `marc_tag_structure` VALUES ('000', 'LEADER', 'LEADER', 0, 1, '', 'SR');
12900 INSERT INTO `marc_tag_structure` VALUES ('001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 0, '', 'SR');
12901 INSERT INTO `marc_tag_structure` VALUES ('003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 0, '', 'SR');
12902 INSERT INTO `marc_tag_structure` VALUES ('005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 0, '', 'SR');
12903 INSERT INTO `marc_tag_structure` VALUES ('006', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 1, 0, '', 'SR');
12904 INSERT INTO `marc_tag_structure` VALUES ('007', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 1, 0, '', 'SR');
12905 INSERT INTO `marc_tag_structure` VALUES ('008', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 0, 1, '', 'SR');
12906 INSERT INTO `marc_tag_structure` VALUES ('009', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 1, 0, '', 'SR');
12907 INSERT INTO `marc_tag_structure` VALUES ('010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, '', 'SR');
12908 INSERT INTO `marc_tag_structure` VALUES ('011', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 0, 0, '', 'SR');
12909 INSERT INTO `marc_tag_structure` VALUES ('013', 'PATENT CONTROL INFORMATION', 'PATENT CONTROL INFORMATION', 1, 0, '', 'SR');
12910 INSERT INTO `marc_tag_structure` VALUES ('015', 'NATIONAL BIBLIOGRAPHY NUMBER', 'NATIONAL BIBLIOGRAPHY NUMBER', 1, 0, '', 'SR');
12911 INSERT INTO `marc_tag_structure` VALUES ('016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, '', 'SR');
12912 INSERT INTO `marc_tag_structure` VALUES ('017', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 1, 0, '', 'SR');
12913 INSERT INTO `marc_tag_structure` VALUES ('018', 'COPYRIGHT ARTICLE-FEE CODE', 'COPYRIGHT ARTICLE-FEE CODE', 0, 0, '', 'SR');
12914 INSERT INTO `marc_tag_structure` VALUES ('01e', 'CODED FIELD ERROR (RLIN)', 'CODED FIELD ERROR (RLIN)', 1, 0, '', 'SR');
12915 INSERT INTO `marc_tag_structure` VALUES ('020', 'ISBN', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL, 'SR');
12916 INSERT INTO `marc_tag_structure` VALUES ('022', 'INTERNATIONAL STANDARD SERIAL NUMBER', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL, 'SR');
12917 INSERT INTO `marc_tag_structure` VALUES ('023', 'STANDARD FILM NUMBER (VM) [DELETED]', 'STANDARD FILM NUMBER (VM) [DELETED]', 1, 0, NULL, 'SR');
12918 INSERT INTO `marc_tag_structure` VALUES ('024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL, 'SR');
12919 INSERT INTO `marc_tag_structure` VALUES ('025', 'OVERSEAS ACQUISITION NUMBER', 'OVERSEAS ACQUISITION NUMBER', 1, 0, '', 'SR');
12920 INSERT INTO `marc_tag_structure` VALUES ('026', 'FINGERPRINT IDENTIFIER', 'FINGERPRINT IDENTIFIER', 1, 0, '', 'SR');
12921 INSERT INTO `marc_tag_structure` VALUES ('027', 'STANDARD TECHNICAL REPORT NUMBER', 'STANDARD TECHNICAL REPORT NUMBER', 1, 0, '', 'SR');
12922 INSERT INTO `marc_tag_structure` VALUES ('028', 'IDENTIFICATION NUMBER--PUBLISHER NUMBER', 'PUBLISHER NUMBER', 1, 0, NULL, 'SR');
12923 INSERT INTO `marc_tag_structure` VALUES ('029', 'OTHER SYSTEM CONTROL NUMBER (OCLC)', ' (OCLC)', 1, 0, '', 'SR');
12924 INSERT INTO `marc_tag_structure` VALUES ('030', 'CODEN DESIGNATION', 'CODEN DESIGNATION', 1, 0, '', 'SR');
12925 INSERT INTO `marc_tag_structure` VALUES ('031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, '', 'SR');
12926 INSERT INTO `marc_tag_structure` VALUES ('032', 'POSTAL REGISTRATION NUMBER', 'POSTAL REGISTRATION NUMBER', 1, 0, '', 'SR');
12927 INSERT INTO `marc_tag_structure` VALUES ('033', 'DATE/TIME AND PLACE OF AN EVENT', 'DATE/TIME AND PLACE OF AN EVENT', 1, 0, '', 'SR');
12928 INSERT INTO `marc_tag_structure` VALUES ('034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, '', 'SR');
12929 INSERT INTO `marc_tag_structure` VALUES ('035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL, 'SR');
12930 INSERT INTO `marc_tag_structure` VALUES ('036', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 0, 0, '', 'SR');
12931 INSERT INTO `marc_tag_structure` VALUES ('037', 'PUBLICATION, DISTRIBUTION DETAILS--SOURCE OF ACQUISITION', 'SOURCE OF ACQUISITION', 1, 0, NULL, 'SR');
12932 INSERT INTO `marc_tag_structure` VALUES ('038', 'RECORD CONTENT LICENSOR', 'RECORD CONTENT LICENSOR', 0, 0, '', 'SR');
12933 INSERT INTO `marc_tag_structure` VALUES ('039', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 0, 0, '', 'SR');
12934 INSERT INTO `marc_tag_structure` VALUES ('040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 0, NULL, 'SR');
12935 INSERT INTO `marc_tag_structure` VALUES ('041', 'LANGUAGE CODE', 'LANGUAGE CODE', 1, 0, '', 'SR');
12936 INSERT INTO `marc_tag_structure` VALUES ('042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, '', 'SR');
12937 INSERT INTO `marc_tag_structure` VALUES ('043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL, 'SR');
12938 INSERT INTO `marc_tag_structure` VALUES ('044', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 0, 0, '', 'SR');
12939 INSERT INTO `marc_tag_structure` VALUES ('045', 'TIME PERIOD OF CONTENT', 'TIME PERIOD OF CONTENT', 0, 0, '', 'SR');
12940 INSERT INTO `marc_tag_structure` VALUES ('046', 'SPECIAL CODED DATES', 'SPECIAL CODED DATES', 1, 0, '', 'SR');
12941 INSERT INTO `marc_tag_structure` VALUES ('047', 'FORM OF MUSICAL COMPOSITION CODE', 'FORM OF MUSICAL COMPOSITION CODE', 0, 0, '', 'SR');
12942 INSERT INTO `marc_tag_structure` VALUES ('048', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 1, 0, '', 'SR');
12943 INSERT INTO `marc_tag_structure` VALUES ('049', 'LOCAL HOLDINGS (OCLC)', 'LOCAL HOLDINGS (OCLC)', 0, 0, '', 'SR');
12944 INSERT INTO `marc_tag_structure` VALUES ('050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL, 'SR');
12945 INSERT INTO `marc_tag_structure` VALUES ('051', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 1, 0, NULL, 'SR');
12946 INSERT INTO `marc_tag_structure` VALUES ('052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL, 'SR');
12947 INSERT INTO `marc_tag_structure` VALUES ('055', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 1, 0, NULL, 'SR');
12948 INSERT INTO `marc_tag_structure` VALUES ('060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL, 'SR');
12949 INSERT INTO `marc_tag_structure` VALUES ('061', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 1, 0, NULL, 'SR');
12950 INSERT INTO `marc_tag_structure` VALUES ('066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL, 'SR');
12951 INSERT INTO `marc_tag_structure` VALUES ('070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL, 'SR');
12952 INSERT INTO `marc_tag_structure` VALUES ('071', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 1, 0, NULL, 'SR');
12953 INSERT INTO `marc_tag_structure` VALUES ('072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL, 'SR');
12954 INSERT INTO `marc_tag_structure` VALUES ('074', 'GPO ITEM NUMBER', 'GPO ITEM NUMBER', 1, 0, NULL, 'SR');
12955 INSERT INTO `marc_tag_structure` VALUES ('080', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'SR');
12956 INSERT INTO `marc_tag_structure` VALUES ('082', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'SR');
12957 INSERT INTO `marc_tag_structure` VALUES ('084', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL, 'SR');
12958 INSERT INTO `marc_tag_structure` VALUES ('086', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL, 'SR');
12959 INSERT INTO `marc_tag_structure` VALUES ('087', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 1, 0, NULL, 'SR');
12960 INSERT INTO `marc_tag_structure` VALUES ('088', 'REPORT NUMBER', 'REPORT NUMBER', 1, 0, NULL, 'SR');
12961 INSERT INTO `marc_tag_structure` VALUES ('09o', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'SR');
12962 INSERT INTO `marc_tag_structure` VALUES ('091', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 0, 0, '', 'SR');
12963 INSERT INTO `marc_tag_structure` VALUES ('092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, '', 'SR');
12964 INSERT INTO `marc_tag_structure` VALUES ('096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, '', 'SR');
12965 INSERT INTO `marc_tag_structure` VALUES ('098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, '', 'SR');
12966 INSERT INTO `marc_tag_structure` VALUES ('099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, '', 'SR');
12967 INSERT INTO `marc_tag_structure` VALUES ('100', 'MAIN ENTRY--COMPOSER/MAIN PERFORMER/PERSONAL NAME', 'MAIN ENTRY--PERSONAL NAME', 0, 0, NULL, 'SR');
12968 INSERT INTO `marc_tag_structure` VALUES ('110', 'MAIN ENTRY--PERFORMING GROUP/CORPORATE NAME', 'MAIN ENTRY--CORPORATE NAME', 0, 0, NULL, 'SR');
12969 INSERT INTO `marc_tag_structure` VALUES ('111', 'MAIN ENTRY--MEETING NAME', 'MAIN ENTRY--MEETING NAME', 0, 0, NULL, 'SR');
12970 INSERT INTO `marc_tag_structure` VALUES ('130', 'MAIN ENTRY--UNIFORM TITLE', 'MAIN ENTRY--UNIFORM TITLE', 0, 0, NULL, 'SR');
12971 INSERT INTO `marc_tag_structure` VALUES ('210', 'ABBREVIATED TITLE', 'ABBREVIATED TITLE', 1, 0, NULL, 'SR');
12972 INSERT INTO `marc_tag_structure` VALUES ('211', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 1, 0, NULL, 'SR');
12973 INSERT INTO `marc_tag_structure` VALUES ('212', 'VARIANT ACCESS TITLE [OBSOLETE]', 'VARIANT ACCESS TITLE [OBSOLETE]', 1, 0, NULL, 'SR');
12974 INSERT INTO `marc_tag_structure` VALUES ('214', 'AUGMENTED TITLE [OBSOLETE]', 'AUGMENTED TITLE [OBSOLETE]', 1, 0, NULL, 'SR');
12975 INSERT INTO `marc_tag_structure` VALUES ('222', 'KEY TITLE', 'KEY TITLE', 1, 0, NULL, 'SR');
12976 INSERT INTO `marc_tag_structure` VALUES ('240', 'UNIFORM TITLE', 'UNIFORM TITLE', 0, 0, 'Unititle', 'SR');
12977 INSERT INTO `marc_tag_structure` VALUES ('241', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 0, 0, '', 'SR');
12978 INSERT INTO `marc_tag_structure` VALUES ('242', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 1, 0, NULL, 'SR');
12979 INSERT INTO `marc_tag_structure` VALUES ('243', 'COLLECTIVE UNIFORM TITLE', 'COLLECTIVE UNIFORM TITLE', 0, 0, '', 'SR');
12980 INSERT INTO `marc_tag_structure` VALUES ('245', 'TITLE', 'TITLE STATEMENT', 0, 1, '', 'SR');
12981 INSERT INTO `marc_tag_structure` VALUES ('246', 'VARYING FORM OF TITLE', 'VARYING FORM OF TITLE', 1, 0, NULL, 'SR');
12982 INSERT INTO `marc_tag_structure` VALUES ('247', 'FORMER TITLE', 'FORMER TITLE', 1, 0, NULL, 'SR');
12983 INSERT INTO `marc_tag_structure` VALUES ('250', 'EDITION STATEMENT', 'EDITION STATEMENT', 0, 0, NULL, 'SR');
12984 INSERT INTO `marc_tag_structure` VALUES ('254', 'MUSICAL PRESENTATION STATEMENT', 'MUSICAL PRESENTATION STATEMENT', 0, 0, NULL, 'SR');
12985 INSERT INTO `marc_tag_structure` VALUES ('255', 'CARTOGRAPHIC MATHEMATICAL DATA', 'CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL, 'SR');
12986 INSERT INTO `marc_tag_structure` VALUES ('256', 'COMPUTER FILE CHARACTERISTICS', 'COMPUTER FILE CHARACTERISTICS', 0, 0, NULL, 'SR');
12987 INSERT INTO `marc_tag_structure` VALUES ('257', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 0, 0, NULL, 'SR');
12988 INSERT INTO `marc_tag_structure` VALUES ('258', 'PHILATELIC ISSUE DATE', 'PHILATELIC ISSUE DATE', 1, 0, NULL, 'SR');
12989 INSERT INTO `marc_tag_structure` VALUES ('260', 'PUBLISHER/RECORD LABEL--PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 'PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 1, 0, NULL, 'SR');
12990 INSERT INTO `marc_tag_structure` VALUES ('261', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, NULL, 'SR');
12991 INSERT INTO `marc_tag_structure` VALUES ('262', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 0, 0, NULL, 'SR');
12992 INSERT INTO `marc_tag_structure` VALUES ('263', 'PROJECTED PUBLICATION DATE', 'PROJECTED PUBLICATION DATE', 0, 0, NULL, 'SR');
12993 INSERT INTO `marc_tag_structure` VALUES ('265', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 0, 0, NULL, 'SR');
12994 INSERT INTO `marc_tag_structure` VALUES ('270', 'PUBLICATION, DISTRIBUTION DETAILS--ADDRESS', 'ADDRESS', 1, 0, NULL, 'SR');
12995 INSERT INTO `marc_tag_structure` VALUES ('300', 'PHYSICAL DESCRIPTION', 'PHYSICAL DESCRIPTION', 1, 1, NULL, 'SR');
12996 INSERT INTO `marc_tag_structure` VALUES ('301', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 0, 0, NULL, 'SR');
12997 INSERT INTO `marc_tag_structure` VALUES ('302', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 0, 0, NULL, 'SR');
12998 INSERT INTO `marc_tag_structure` VALUES ('303', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'SR');
12999 INSERT INTO `marc_tag_structure` VALUES ('304', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'SR');
13000 INSERT INTO `marc_tag_structure` VALUES ('305', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 0, 0, NULL, 'SR');
13001 INSERT INTO `marc_tag_structure` VALUES ('306', 'RUN TIME', 'PLAYING TIME', 0, 0, NULL, 'SR');
13002 INSERT INTO `marc_tag_structure` VALUES ('307', 'HOURS, ETC.', 'HOURS, ETC.', 1, 0, NULL, 'SR');
13003 INSERT INTO `marc_tag_structure` VALUES ('308', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 1, 0, NULL, 'SR');
13004 INSERT INTO `marc_tag_structure` VALUES ('310', 'CURRENT PUBLICATION FREQUENCY', 'CURRENT PUBLICATION FREQUENCY', 0, 0, NULL, 'SR');
13005 INSERT INTO `marc_tag_structure` VALUES ('315', 'FREQUENCY (CF MP) [OBSOLETE]', 'FREQUENCY (CF MP) [OBSOLETE]', 0, 0, NULL, 'SR');
13006 INSERT INTO `marc_tag_structure` VALUES ('321', 'FORMER PUBLICATION FREQUENCY', 'FORMER PUBLICATION FREQUENCY', 1, 0, NULL, 'SR');
13007 INSERT INTO `marc_tag_structure` VALUES ('340', 'PHYSICAL MEDIUM', 'PHYSICAL MEDIUM', 1, 0, NULL, 'SR');
13008 INSERT INTO `marc_tag_structure` VALUES ('342', 'GEOSPATIAL REFERENCE DATA', 'GEOSPATIAL REFERENCE DATA', 1, 0, NULL, 'SR');
13009 INSERT INTO `marc_tag_structure` VALUES ('343', 'PLANAR COORDINATE DATA', 'PLANAR COORDINATE DATA', 1, 0, NULL, 'SR');
13010 INSERT INTO `marc_tag_structure` VALUES ('350', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 1, 0, NULL, 'SR');
13011 INSERT INTO `marc_tag_structure` VALUES ('351', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 1, 0, NULL, 'SR');
13012 INSERT INTO `marc_tag_structure` VALUES ('352', 'DIGITAL GRAPHIC REPRESENTATION', 'DIGITAL GRAPHIC REPRESENTATION', 1, 0, NULL, 'SR');
13013 INSERT INTO `marc_tag_structure` VALUES ('355', 'SECURITY CLASSIFICATION CONTROL', 'SECURITY CLASSIFICATION CONTROL', 1, 0, NULL, 'SR');
13014 INSERT INTO `marc_tag_structure` VALUES ('357', 'ORIGINATOR DISSEMINATION CONTROL', 'ORIGINATOR DISSEMINATION CONTROL', 0, 0, NULL, 'SR');
13015 INSERT INTO `marc_tag_structure` VALUES ('359', 'RENTAL PRICE (VM) [OBSOLETE]', 'RENTAL PRICE (VM) [OBSOLETE]', 0, 0, NULL, 'SR');
13016 INSERT INTO `marc_tag_structure` VALUES ('362', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 1, 0, NULL, 'SR');
13017 INSERT INTO `marc_tag_structure` VALUES ('365', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE PRICE', 'TRADE PRICE', 1, 0, NULL, 'SR');
13018 INSERT INTO `marc_tag_structure` VALUES ('366', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE AVAILABILITY INFORMATION', 'TRADE AVAILABILITY INFORMATION', 1, 0, NULL, 'SR');
13019 INSERT INTO `marc_tag_structure` VALUES ('400', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'SR');
13020 INSERT INTO `marc_tag_structure` VALUES ('410', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'SR');
13021 INSERT INTO `marc_tag_structure` VALUES ('411', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'SR');
13022 INSERT INTO `marc_tag_structure` VALUES ('440', 'SERIES--TITLE', 'SERIES STATEMENT/ADDED ENTRY--TITLE', 1, 0, NULL, 'SR');
13023 INSERT INTO `marc_tag_structure` VALUES ('490', 'SERIES STATEMENT', 'SERIES STATEMENT', 1, 0, '', 'SR');
13024 INSERT INTO `marc_tag_structure` VALUES ('500', 'GENERAL NOTE', 'GENERAL NOTE', 1, 0, NULL, 'SR');
13025 INSERT INTO `marc_tag_structure` VALUES ('501', 'WITH NOTE', 'WITH NOTE', 1, 0, NULL, 'SR');
13026 INSERT INTO `marc_tag_structure` VALUES ('502', 'DISSERTATION NOTE', 'DISSERTATION NOTE', 1, 0, NULL, 'SR');
13027 INSERT INTO `marc_tag_structure` VALUES ('503', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 1, 0, NULL, 'SR');
13028 INSERT INTO `marc_tag_structure` VALUES ('504', 'BIBLIOGRAPHY, ETC. NOTE', 'BIBLIOGRAPHY, ETC. NOTE', 1, 0, NULL, 'SR');
13029 INSERT INTO `marc_tag_structure` VALUES ('505', 'FORMATTED CONTENTS NOTE', 'FORMATTED CONTENTS NOTE', 1, 0, NULL, 'SR');
13030 INSERT INTO `marc_tag_structure` VALUES ('506', 'RESTRICTIONS ON ACCESS NOTE', 'RESTRICTIONS ON ACCESS NOTE', 1, 0, NULL, 'SR');
13031 INSERT INTO `marc_tag_structure` VALUES ('507', 'SCALE NOTE FOR GRAPHIC MATERIAL', 'SCALE NOTE FOR GRAPHIC MATERIAL', 0, 0, NULL, 'SR');
13032 INSERT INTO `marc_tag_structure` VALUES ('508', 'CREATION/PRODUCTION CREDITS NOTE', 'CREATION/PRODUCTION CREDITS NOTE', 1, 0, NULL, 'SR');
13033 INSERT INTO `marc_tag_structure` VALUES ('509', 'INFORMAL NOTES (RLIN)', 'INFORMAL NOTES (RLIN)', 0, 0, NULL, 'SR');
13034 INSERT INTO `marc_tag_structure` VALUES ('510', 'CITATION/REFERENCES NOTE', 'CITATION/REFERENCES NOTE', 1, 0, NULL, 'SR');
13035 INSERT INTO `marc_tag_structure` VALUES ('511', 'PARTICIPANT OR PERFORMER NOTE', 'PARTICIPANT OR PERFORMER NOTE', 1, 0, NULL, 'SR');
13036 INSERT INTO `marc_tag_structure` VALUES ('512', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'SR');
13037 INSERT INTO `marc_tag_structure` VALUES ('513', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 1, 0, NULL, 'SR');
13038 INSERT INTO `marc_tag_structure` VALUES ('514', 'DATA QUALITY NOTE', 'DATA QUALITY NOTE', 0, 0, NULL, 'SR');
13039 INSERT INTO `marc_tag_structure` VALUES ('515', 'NUMBERING PECULIARITIES NOTE', 'NUMBERING PECULIARITIES NOTE', 1, 0, NULL, 'SR');
13040 INSERT INTO `marc_tag_structure` VALUES ('516', 'TYPE OF COMPUTER FILE OR DATA NOTE', 'TYPE OF COMPUTER FILE OR DATA NOTE', 1, 0, NULL, 'SR');
13041 INSERT INTO `marc_tag_structure` VALUES ('517', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 0, 0, NULL, 'SR');
13042 INSERT INTO `marc_tag_structure` VALUES ('518', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 1, 0, NULL, 'SR');
13043 INSERT INTO `marc_tag_structure` VALUES ('520', 'SUMMARY, ETC.', 'SUMMARY, ETC.', 1, 0, NULL, 'SR');
13044 INSERT INTO `marc_tag_structure` VALUES ('521', 'GRADE LEVEL/TARGET AUDIENCE NOTE', 'TARGET AUDIENCE NOTE', 1, 0, NULL, 'SR');
13045 INSERT INTO `marc_tag_structure` VALUES ('522', 'GEOGRAPHIC DETAILS/GEOGRAPHIC COVERAGE NOTE', 'GEOGRAPHIC COVERAGE NOTE', 1, 0, NULL, 'SR');
13046 INSERT INTO `marc_tag_structure` VALUES ('523', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'SR');
13047 INSERT INTO `marc_tag_structure` VALUES ('524', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'SR');
13048 INSERT INTO `marc_tag_structure` VALUES ('525', 'SUPPLEMENT NOTE', 'SUPPLEMENT NOTE', 0, 0, NULL, 'SR');
13049 INSERT INTO `marc_tag_structure` VALUES ('526', 'STUDY PROGRAM INFORMATION NOTE', 'STUDY PROGRAM INFORMATION NOTE', 0, 0, NULL, 'SR');
13050 INSERT INTO `marc_tag_structure` VALUES ('527', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 1, 0, NULL, 'SR');
13051 INSERT INTO `marc_tag_structure` VALUES ('530', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 1, 0, NULL, 'SR');
13052 INSERT INTO `marc_tag_structure` VALUES ('533', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'SR');
13053 INSERT INTO `marc_tag_structure` VALUES ('534', 'ORIGINAL VERSION NOTE', 'ORIGINAL VERSION NOTE', 1, 0, NULL, 'SR');
13054 INSERT INTO `marc_tag_structure` VALUES ('535', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 1, 0, NULL, 'SR');
13055 INSERT INTO `marc_tag_structure` VALUES ('536', 'FUNDING INFORMATION NOTE', 'FUNDING INFORMATION NOTE', 1, 0, NULL, 'SR');
13056 INSERT INTO `marc_tag_structure` VALUES ('537', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'SR');
13057 INSERT INTO `marc_tag_structure` VALUES ('538', 'SYSTEM DETAILS NOTE', 'SYSTEM DETAILS NOTE', 1, 0, NULL, 'SR');
13058 INSERT INTO `marc_tag_structure` VALUES ('540', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'SR');
13059 INSERT INTO `marc_tag_structure` VALUES ('541', 'ACQUISITION INFO--IMMEDIATE SOURCE OF ACQUISITION NOTE', 'IMMEDIATE SOURCE OF ACQUISITION NOTE', 1, 0, NULL, 'SR');
13060 INSERT INTO `marc_tag_structure` VALUES ('543', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 1, 0, NULL, 'SR');
13061 INSERT INTO `marc_tag_structure` VALUES ('544', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 1, 0, NULL, 'SR');
13062 INSERT INTO `marc_tag_structure` VALUES ('546', 'LANGUAGE/TRANSLATION INFO', 'LANGUAGE NOTE', 1, 0, NULL, 'SR');
13063 INSERT INTO `marc_tag_structure` VALUES ('547', 'FORMER TITLE COMPLEXITY NOTE', 'FORMER TITLE COMPLEXITY NOTE', 1, 0, NULL, 'SR');
13064 INSERT INTO `marc_tag_structure` VALUES ('550', 'ISSUING BODY NOTE', 'ISSUING BODY NOTE', 1, 0, NULL, 'SR');
13065 INSERT INTO `marc_tag_structure` VALUES ('552', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 1, 0, NULL, 'SR');
13066 INSERT INTO `marc_tag_structure` VALUES ('555', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 1, 0, NULL, 'SR');
13067 INSERT INTO `marc_tag_structure` VALUES ('556', 'INFORMATION ABOUT DOCUMENTATION NOTE', 'INFORMATION ABOUT DOCUMENTATION NOTE', 1, 0, NULL, 'SR');
13068 INSERT INTO `marc_tag_structure` VALUES ('561', 'OWNERSHIP AND CUSTODIAL HISTORY', 'OWNERSHIP AND CUSTODIAL HISTORY', 1, 0, NULL, 'SR');
13069 INSERT INTO `marc_tag_structure` VALUES ('562', 'COPY AND VERSION IDENTIFICATION NOTE', 'COPY AND VERSION IDENTIFICATION NOTE', 1, 0, NULL, 'SR');
13070 INSERT INTO `marc_tag_structure` VALUES ('563', 'BINDING INFORMATION', 'BINDING INFORMATION', 1, 0, NULL, 'SR');
13071 INSERT INTO `marc_tag_structure` VALUES ('565', 'CASE FILE CHARACTERISTICS NOTE', 'CASE FILE CHARACTERISTICS NOTE', 1, 0, NULL, 'SR');
13072 INSERT INTO `marc_tag_structure` VALUES ('567', 'METHODOLOGY NOTE', 'METHODOLOGY NOTE', 1, 0, NULL, 'SR');
13073 INSERT INTO `marc_tag_structure` VALUES ('570', 'EDITOR NOTE (SE) [OBSOLETE]', 'EDITOR NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'SR');
13074 INSERT INTO `marc_tag_structure` VALUES ('580', 'LINKING ENTRY COMPLEXITY NOTE', 'LINKING ENTRY COMPLEXITY NOTE', 1, 0, NULL, 'SR');
13075 INSERT INTO `marc_tag_structure` VALUES ('581', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'SR');
13076 INSERT INTO `marc_tag_structure` VALUES ('582', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 1, 0, NULL, 'SR');
13077 INSERT INTO `marc_tag_structure` VALUES ('583', 'ACQUISITION INFO--ACTION NOTE', 'ACTION NOTE', 1, 0, NULL, 'SR');
13078 INSERT INTO `marc_tag_structure` VALUES ('584', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 1, 0, NULL, 'SR');
13079 INSERT INTO `marc_tag_structure` VALUES ('585', 'EXHIBITIONS NOTE', 'EXHIBITIONS NOTE', 1, 0, NULL, 'SR');
13080 INSERT INTO `marc_tag_structure` VALUES ('586', 'AWARDS', 'AWARDS NOTE', 1, 0, NULL, 'SR');
13081 INSERT INTO `marc_tag_structure` VALUES ('590', 'LOCAL NOTE (RLIN)', 'LOCAL NOTE (RLIN)', 1, 0, NULL, 'SR');
13082 INSERT INTO `marc_tag_structure` VALUES ('600', 'SUBJECT--PERSONAL NAME', 'SUBJECT ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'SR');
13083 INSERT INTO `marc_tag_structure` VALUES ('610', 'SUBJECT--CORPORATE NAME', 'SUBJECT ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'SR');
13084 INSERT INTO `marc_tag_structure` VALUES ('611', 'SUBJECT--MEETING NAME', 'SUBJECT ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'SR');
13085 INSERT INTO `marc_tag_structure` VALUES ('630', 'SUBJECT--UNIFORM TITLE', 'SUBJECT ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'SR');
13086 INSERT INTO `marc_tag_structure` VALUES ('648', 'SUBJECT--CHRONOLOGICAL TERM', 'SUBJECT ADDED ENTRY--CHRONOLOGICAL TERM', 1, 0, NULL, 'SR');
13087 INSERT INTO `marc_tag_structure` VALUES ('650', 'SUBJECT--TOPIC', 'SUBJECT ADDED ENTRY--TOPICAL TERM', 1, 0, NULL, 'SR');
13088 INSERT INTO `marc_tag_structure` VALUES ('651', 'SUBJECT--GEOGRAPHIC NAME', 'SUBJECT ADDED ENTRY--GEOGRAPHIC NAME', 1, 0, NULL, 'SR');
13089 INSERT INTO `marc_tag_structure` VALUES ('652', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 1, 0, NULL, 'SR');
13090 INSERT INTO `marc_tag_structure` VALUES ('653', 'SUBJECT--UNCONTROLLED', 'INDEX TERM--UNCONTROLLED', 1, 0, NULL, 'SR');
13091 INSERT INTO `marc_tag_structure` VALUES ('654', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 1, 0, NULL, 'SR');
13092 INSERT INTO `marc_tag_structure` VALUES ('655', 'SUBJECT--GENRE/FORM', 'INDEX TERM--GENRE/FORM', 1, 0, NULL, 'SR');
13093 INSERT INTO `marc_tag_structure` VALUES ('656', 'SUBJECT--OCCUPATION', 'INDEX TERM--OCCUPATION', 1, 0, NULL, 'SR');
13094 INSERT INTO `marc_tag_structure` VALUES ('657', 'SUBJECT--FUNCTION', 'INDEX TERM--FUNCTION', 1, 0, NULL, 'SR');
13095 INSERT INTO `marc_tag_structure` VALUES ('658', 'SUBJECT--CURRICULUM OBJECTIVE', 'INDEX TERM--CURRICULUM OBJECTIVE', 1, 0, NULL, 'SR');
13096 INSERT INTO `marc_tag_structure` VALUES ('662', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'SR');
13097 INSERT INTO `marc_tag_structure` VALUES ('690', 'LOCAL SUBJECT--TOPICAL TERM (OCLC, RLIN)', 'LOCAL SUBJECT ADDED ENTRY--TOPICAL TERM (OCLC, RLIN)', 1, 0, '', 'SR');
13098 INSERT INTO `marc_tag_structure` VALUES ('691', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 1, 0, '', 'SR');
13099 INSERT INTO `marc_tag_structure` VALUES ('696', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'SR');
13100 INSERT INTO `marc_tag_structure` VALUES ('697', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'SR');
13101 INSERT INTO `marc_tag_structure` VALUES ('698', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'SR');
13102 INSERT INTO `marc_tag_structure` VALUES ('699', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'SR');
13103 INSERT INTO `marc_tag_structure` VALUES ('700', 'ADDED ENTRY--PERSONAL NAME', 'ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'SR');
13104 INSERT INTO `marc_tag_structure` VALUES ('705', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'SR');
13105 INSERT INTO `marc_tag_structure` VALUES ('710', 'ADDED ENTRY--CORPORATE NAME', 'ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'SR');
13106 INSERT INTO `marc_tag_structure` VALUES ('711', 'ADDED ENTRY--MEETING NAME', 'ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'SR');
13107 INSERT INTO `marc_tag_structure` VALUES ('715', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'SR');
13108 INSERT INTO `marc_tag_structure` VALUES ('720', 'ADDED ENTRY--PERFORMER/UNCONTROLLED NAME', 'ADDED ENTRY--UNCONTROLLED NAME', 1, 0, NULL, 'SR');
13109 INSERT INTO `marc_tag_structure` VALUES ('730', 'ADDED ENTRY--UNIFORM TITLE', 'ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'SR');
13110 INSERT INTO `marc_tag_structure` VALUES ('740', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 1, 0, NULL, 'SR');
13111 INSERT INTO `marc_tag_structure` VALUES ('752', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'SR');
13112 INSERT INTO `marc_tag_structure` VALUES ('753', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 1, 0, NULL, 'SR');
13113 INSERT INTO `marc_tag_structure` VALUES ('754', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 1, 0, NULL, 'SR');
13114 INSERT INTO `marc_tag_structure` VALUES ('755', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 1, 0, NULL, 'SR');
13115 INSERT INTO `marc_tag_structure` VALUES ('760', 'MAIN SERIES ENTRY', 'MAIN SERIES ENTRY', 1, 0, NULL, 'SR');
13116 INSERT INTO `marc_tag_structure` VALUES ('762', 'SUBSERIES ENTRY', 'SUBSERIES ENTRY', 1, 0, NULL, 'SR');
13117 INSERT INTO `marc_tag_structure` VALUES ('765', 'ORIGINAL LANGUAGE ENTRY', 'ORIGINAL LANGUAGE ENTRY', 1, 0, NULL, 'SR');
13118 INSERT INTO `marc_tag_structure` VALUES ('767', 'TRANSLATION ENTRY', 'TRANSLATION ENTRY', 1, 0, NULL, 'SR');
13119 INSERT INTO `marc_tag_structure` VALUES ('770', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 1, 0, NULL, 'SR');
13120 INSERT INTO `marc_tag_structure` VALUES ('772', 'SUPPLEMENT PARENT ENTRY', 'SUPPLEMENT PARENT ENTRY', 1, 0, NULL, 'SR');
13121 INSERT INTO `marc_tag_structure` VALUES ('773', 'HOST ITEM ENTRY', 'HOST ITEM ENTRY', 1, 0, NULL, 'SR');
13122 INSERT INTO `marc_tag_structure` VALUES ('774', 'CONSTITUENT UNIT ENTRY', 'CONSTITUENT UNIT ENTRY', 1, 0, NULL, 'SR');
13123 INSERT INTO `marc_tag_structure` VALUES ('775', 'OTHER EDITION ENTRY', 'OTHER EDITION ENTRY', 1, 0, NULL, 'SR');
13124 INSERT INTO `marc_tag_structure` VALUES ('776', 'ADDITIONAL PHYSICAL FORM ENTRY', 'ADDITIONAL PHYSICAL FORM ENTRY', 1, 0, NULL, 'SR');
13125 INSERT INTO `marc_tag_structure` VALUES ('777', 'ISSUED WITH ENTRY', 'ISSUED WITH ENTRY', 1, 0, NULL, 'SR');
13126 INSERT INTO `marc_tag_structure` VALUES ('780', 'PRECEDING ENTRY', 'PRECEDING ENTRY', 1, 0, NULL, 'SR');
13127 INSERT INTO `marc_tag_structure` VALUES ('785', 'SUCCEEDING ENTRY', 'SUCCEEDING ENTRY', 1, 0, NULL, 'SR');
13128 INSERT INTO `marc_tag_structure` VALUES ('786', 'DATA SOURCE ENTRY', 'DATA SOURCE ENTRY', 1, 0, NULL, 'SR');
13129 INSERT INTO `marc_tag_structure` VALUES ('787', 'NONSPECIFIC RELATIONSHIP ENTRY', 'NONSPECIFIC RELATIONSHIP ENTRY', 1, 0, NULL, 'SR');
13130 INSERT INTO `marc_tag_structure` VALUES ('789', 'COMPONENT ITEM ENTRY (RLIN)', 'COMPONENT ITEM ENTRY (RLIN)', 1, 0, '', 'SR');
13131 INSERT INTO `marc_tag_structure` VALUES ('796', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'SR');
13132 INSERT INTO `marc_tag_structure` VALUES ('797', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'SR');
13133 INSERT INTO `marc_tag_structure` VALUES ('798', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'SR');
13134 INSERT INTO `marc_tag_structure` VALUES ('799', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'SR');
13135 INSERT INTO `marc_tag_structure` VALUES ('800', 'SERIES ADDED ENTRY--PERSONAL NAME', 'SERIES ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'SR');
13136 INSERT INTO `marc_tag_structure` VALUES ('810', 'SERIES ADDED ENTRY--CORPORATE NAME', 'SERIES ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'SR');
13137 INSERT INTO `marc_tag_structure` VALUES ('811', 'SERIES ADDED ENTRY--MEETING NAME', 'SERIES ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'SR');
13138 INSERT INTO `marc_tag_structure` VALUES ('830', 'SERIES ADDED ENTRY--UNIFORM TITLE', 'SERIES ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'SR');
13139 INSERT INTO `marc_tag_structure` VALUES ('840', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 1, 0, NULL, 'SR');
13140 INSERT INTO `marc_tag_structure` VALUES ('841', 'HOLDINGS CODED DATA VALUES', 'HOLDINGS CODED DATA VALUES', 0, 0, NULL, 'SR');
13141 INSERT INTO `marc_tag_structure` VALUES ('842', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 0, 0, NULL, 'SR');
13142 INSERT INTO `marc_tag_structure` VALUES ('843', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'SR');
13143 INSERT INTO `marc_tag_structure` VALUES ('844', 'NAME OF UNIT', 'NAME OF UNIT', 0, 0, NULL, 'SR');
13144 INSERT INTO `marc_tag_structure` VALUES ('845', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'SR');
13145 INSERT INTO `marc_tag_structure` VALUES ('850', 'HOLDING INSTITUTION', 'HOLDING INSTITUTION', 1, 0, NULL, 'SR');
13146 INSERT INTO `marc_tag_structure` VALUES ('851', 'LOCATION [OBSOLETE]', 'LOCATION [OBSOLETE]', 1, 0, NULL, 'SR');
13147 INSERT INTO `marc_tag_structure` VALUES ('852', 'LOCATION/CALL NUMBER', 'LOCATION/CALL NUMBER', 1, 0, NULL, 'SR');
13148 INSERT INTO `marc_tag_structure` VALUES ('853', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'SR');
13149 INSERT INTO `marc_tag_structure` VALUES ('854', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'SR');
13150 INSERT INTO `marc_tag_structure` VALUES ('855', 'CAPTIONS AND PATTERN--INDEXES', 'CAPTIONS AND PATTERN--INDEXES', 1, 0, NULL, 'SR');
13151 INSERT INTO `marc_tag_structure` VALUES ('856', 'URL/ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL, 'SR');
13152 INSERT INTO `marc_tag_structure` VALUES ('859', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'SR');
13153 INSERT INTO `marc_tag_structure` VALUES ('863', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'SR');
13154 INSERT INTO `marc_tag_structure` VALUES ('864', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'SR');
13155 INSERT INTO `marc_tag_structure` VALUES ('865', 'ENUMERATION AND CHRONOLOGY--INDEXES', 'ENUMERATION AND CHRONOLOGY--INDEXES', 1, 0, NULL, 'SR');
13156 INSERT INTO `marc_tag_structure` VALUES ('866', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'SR');
13157 INSERT INTO `marc_tag_structure` VALUES ('867', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'SR');
13158 INSERT INTO `marc_tag_structure` VALUES ('868', 'TEXTUAL HOLDINGS--INDEXES', 'TEXTUAL HOLDINGS--INDEXES', 1, 0, NULL, 'SR');
13159 INSERT INTO `marc_tag_structure` VALUES ('870', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 1, 0, NULL, 'SR');
13160 INSERT INTO `marc_tag_structure` VALUES ('871', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 1, 0, NULL, 'SR');
13161 INSERT INTO `marc_tag_structure` VALUES ('872', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 1, 0, NULL, 'SR');
13162 INSERT INTO `marc_tag_structure` VALUES ('873', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 1, 0, NULL, 'SR');
13163 INSERT INTO `marc_tag_structure` VALUES ('876', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'SR');
13164 INSERT INTO `marc_tag_structure` VALUES ('877', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'SR');
13165 INSERT INTO `marc_tag_structure` VALUES ('878', 'ITEM INFORMATION--INDEXES', 'ITEM INFORMATION--INDEXES', 1, 0, NULL, 'SR');
13166 INSERT INTO `marc_tag_structure` VALUES ('880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL, 'SR');
13167 INSERT INTO `marc_tag_structure` VALUES ('886', 'FOREIGN MARC INFORMATION FIELD', 'FOREIGN MARC INFORMATION FIELD', 1, 0, NULL, 'SR');
13168 INSERT INTO `marc_tag_structure` VALUES ('887', 'NON-MARC INFORMATION FIELD', 'NON-MARC INFORMATION FIELD', 1, 0, NULL, 'SR');
13169 INSERT INTO `marc_tag_structure` VALUES ('896', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'SR');
13170 INSERT INTO `marc_tag_structure` VALUES ('897', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'SR');
13171 INSERT INTO `marc_tag_structure` VALUES ('898', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'SR');
13172 INSERT INTO `marc_tag_structure` VALUES ('899', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'SR');
13173 INSERT INTO `marc_tag_structure` VALUES ('89e', 'ERRONEOUS FIELD, ERR (RLIN)', 'ERRONEOUS FIELD, ERR (RLIN)', 1, 0, '', 'SR');
13174 INSERT INTO `marc_tag_structure` VALUES ('900', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 1, 0, '', 'SR');
13175 INSERT INTO `marc_tag_structure` VALUES ('901', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 1, 0, '', 'SR');
13176 INSERT INTO `marc_tag_structure` VALUES ('902', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 1, 0, '', 'SR');
13177 INSERT INTO `marc_tag_structure` VALUES ('903', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 1, 0, '', 'SR');
13178 INSERT INTO `marc_tag_structure` VALUES ('904', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 1, 0, '', 'SR');
13179 INSERT INTO `marc_tag_structure` VALUES ('905', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 1, 0, '', 'SR');
13180 INSERT INTO `marc_tag_structure` VALUES ('906', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 1, 0, '', 'SR');
13181 INSERT INTO `marc_tag_structure` VALUES ('907', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 1, 0, '', 'SR');
13182 INSERT INTO `marc_tag_structure` VALUES ('908', 'PUT COMMAND PARAMETER (RLIN)', 'PUT COMMAND PARAMETER (RLIN)', 0, 0, '', 'SR');
13183 INSERT INTO `marc_tag_structure` VALUES ('910', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 1, 0, '', 'SR');
13184 INSERT INTO `marc_tag_structure` VALUES ('91o', 'USER-OPTION DATA (COLC)', 'USER-OPTION DATA (OCLC)', 0, 0, '', 'SR');
13185 INSERT INTO `marc_tag_structure` VALUES ('91r', 'RLG STANDARDS NOTE (RLIN)', 'RLG STANDARDS NOTE (RLIN)', 1, 0, '', 'SR');
13186 INSERT INTO `marc_tag_structure` VALUES ('911', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 1, 0, '', 'SR');
13187 INSERT INTO `marc_tag_structure` VALUES ('930', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 1, 0, '', 'SR');
13188 INSERT INTO `marc_tag_structure` VALUES ('93r', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 1, 0, '', 'SR');
13189 INSERT INTO `marc_tag_structure` VALUES ('936', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 0, 0, '', 'SR');
13190 INSERT INTO `marc_tag_structure` VALUES ('940', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'SR');
13191 INSERT INTO `marc_tag_structure` VALUES ('941', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'SR');
13192 INSERT INTO `marc_tag_structure` VALUES ('943', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'SR');
13193 INSERT INTO `marc_tag_structure` VALUES ('945', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'SR');
13194 INSERT INTO `marc_tag_structure` VALUES ('94c', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'SR');
13195 INSERT INTO `marc_tag_structure` VALUES ('946', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'SR');
13196 INSERT INTO `marc_tag_structure` VALUES ('947', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'SR');
13197 INSERT INTO `marc_tag_structure` VALUES ('948', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 1, 0, '', 'SR');
13198 INSERT INTO `marc_tag_structure` VALUES ('949', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'SR');
13199 INSERT INTO `marc_tag_structure` VALUES ('94a', 'ANALYSIS TREATMENT NOTE (RLIN)', 'ANALYSIS TREATMENT NOTE (RLIN)', 1, 0, '', 'SR');
13200 INSERT INTO `marc_tag_structure` VALUES ('94b', 'TREATMENT CODES (RLIN)', 'TREATMENT CODES (RLIN)', 1, 0, '', 'SR');
13201 INSERT INTO `marc_tag_structure` VALUES ('950', 'LOCAL HOLDINGS (RLIN)', 'LOCAL HOLDINGS (RLIN)', 1, 0, '', 'SR');
13202 INSERT INTO `marc_tag_structure` VALUES ('951', 'EQUIVALENCE OR CROSS-REFERENCE--GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'SR');
13203 INSERT INTO `marc_tag_structure` VALUES ('95c', 'EQUIVALENCE OR CROSS-REFERENCE--HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'SR');
13204 INSERT INTO `marc_tag_structure` VALUES ('95r', 'CLUSTER MEMBER (RLIN)', 'CLUSTER MEMBER (RLIN)', 1, 0, '', 'SR');
13205 INSERT INTO `marc_tag_structure` VALUES ('955', 'COPY-LEVEL INFORMATION (RLIN)', 'COPY-LEVEL INFORMATION (RLIN)', 1, 0, '', 'SR');
13206 INSERT INTO `marc_tag_structure` VALUES ('956', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 1, 0, '', 'SR');
13207 INSERT INTO `marc_tag_structure` VALUES ('960', 'PHYSICAL LOCATION (RLIN)', 'PHYSICAL LOCATION (RLIN)', 1, 0, '', 'SR');
13208 INSERT INTO `marc_tag_structure` VALUES ('967', 'ADDITIONAL ESTC CODES (RLIN)', 'ADDITIONAL ESTC CODES (RLIN)', 1, 0, '', 'SR');
13209 INSERT INTO `marc_tag_structure` VALUES ('980', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'SR');
13210 INSERT INTO `marc_tag_structure` VALUES ('981', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'SR');
13211 INSERT INTO `marc_tag_structure` VALUES ('982', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'SR');
13212 INSERT INTO `marc_tag_structure` VALUES ('983', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--TITLE/UNIFORM TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE--SERIES STATEMENT-TITLE/UNIFORM TITLE [LOCAL, CANADA]', 1, 0, '', 'SR');
13213 INSERT INTO `marc_tag_structure` VALUES ('984', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 1, 0, '', 'SR');
13214 INSERT INTO `marc_tag_structure` VALUES ('987', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 1, 0, '', 'SR');
13215 INSERT INTO `marc_tag_structure` VALUES ('990', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 1, 0, '', 'SR');
13216 INSERT INTO `marc_tag_structure` VALUES ('995', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 1, 0, '', 'SR');
13217 INSERT INTO `marc_tag_structure` VALUES ('998', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'SR');
13218 INSERT INTO `marc_tag_structure` VALUES ('999', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'SR');
13219 INSERT INTO `marc_tag_structure` VALUES ('b99', 'PRIVATE LOCAL INFORMATION (RLIN)', 'PRIVATE LOCAL INFORMATION (RLIN)', 1, 0, '', 'SR');
13220 INSERT INTO `marc_tag_structure` VALUES ('u01', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 0, 0, '', 'SR');
13221 INSERT INTO `marc_tag_structure` VALUES ('u02', 'STANDARD NUMBER (RLIN)', 'STANDARD NUMBER (RLIN)', 0, 0, '', 'SR');
13222 INSERT INTO `marc_tag_structure` VALUES ('u08', 'CODED INFORMATION (RLIN)', 'CODED INFORMATION (RLIN)', 0, 0, '', 'SR');
13223 INSERT INTO `marc_tag_structure` VALUES ('u10', 'REQUESTER IDENTIFICATION (RLIN)', 'REQUESTER IDENTIFICATION (RLIN)', 1, 0, '', 'SR');
13224 INSERT INTO `marc_tag_structure` VALUES ('u11', 'DEPARTMENT REPORT REQUEST (RLIN)', 'DEPARTMENT REPORT REQUEST (RLIN)', 1, 0, '', 'SR');
13225 INSERT INTO `marc_tag_structure` VALUES ('u20', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 0, 0, '', 'SR');
13226 INSERT INTO `marc_tag_structure` VALUES ('u21', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 0, 0, '', 'SR');
13227 INSERT INTO `marc_tag_structure` VALUES ('u22', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 0, 0, '', 'SR');
13228 INSERT INTO `marc_tag_structure` VALUES ('u25', 'SUPPLIER REPORT(S) (RLIN)', 'SUPPLIER REPORT(S) (RLIN)', 0, 0, '', 'SR');
13229 INSERT INTO `marc_tag_structure` VALUES ('u30', 'INTERVALS (RLIN)', 'INTERVALS (RLIN)', 0, 0, '', 'SR');
13230 INSERT INTO `marc_tag_structure` VALUES ('u31', 'CLAIM COUNTS (RLIN)', 'CLAIM COUNTS (RLIN)', 0, 0, '', 'SR');
13231 INSERT INTO `marc_tag_structure` VALUES ('u33', 'INVOICE CLAIM (RLIN)', 'INVOICE CLAIM (RLIN)', 0, 0, '', 'SR');
13232 INSERT INTO `marc_tag_structure` VALUES ('u34', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 0, 0, '', 'SR');
13233 INSERT INTO `marc_tag_structure` VALUES ('u40', 'EXTENDED PROCUREMENT CODES (RLIN)', 'EXTENDED PROCUREMENT CODES (RLIN)', 0, 0, '', 'SR');
13234 INSERT INTO `marc_tag_structure` VALUES ('u50', 'ACQUISITIONS NOTES (RLIN)', 'ACQUISITIONS NOTES (RLIN)', 0, 0, '', 'SR');
13235 INSERT INTO `marc_tag_structure` VALUES ('u51', 'SELECTION NOTES (RLIN)', 'SELECTION NOTES (RLIN)', 0, 0, '', 'SR');
13236 INSERT INTO `marc_tag_structure` VALUES ('u52', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 0, 0, '', 'SR');
13237 INSERT INTO `marc_tag_structure` VALUES ('u53', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 0, 0, '', 'SR');
13238 INSERT INTO `marc_tag_structure` VALUES ('u54', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 0, 0, '', 'SR');
13239 INSERT INTO `marc_tag_structure` VALUES ('u55', 'CATALOGING NOTES (RLIN)', 'CATALOGING NOTES (RLIN)', 0, 0, '', 'SR');
13240 INSERT INTO `marc_tag_structure` VALUES ('u5f', 'ACCOUNTING NOTES (RLIN)', 'ACCOUNTING NOTES (RLIN)', 0, 0, '', 'SR');
13241 INSERT INTO `marc_tag_structure` VALUES ('u70', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 0, 0, '', 'SR');
13242 INSERT INTO `marc_tag_structure` VALUES ('u71', 'FUND ACCOUNT (RLIN)', 'FUND ACCOUNT (RLIN)', 0, 0, '', 'SR');
13243 INSERT INTO `marc_tag_structure` VALUES ('u75', 'ITEM DETAILS (RLIN)', 'ITEM DETAILS (RLIN)', 1, 0, '', 'SR');
13244 INSERT INTO `marc_tag_structure` VALUES ('u7f', 'PRICE INFORMATION (RLIN)', 'PRICE INFORMATION (RLIN)', 1, 0, '', 'SR');
13245 INSERT INTO `marc_tag_structure` VALUES ('u90', 'TAPE OUTPUT, TAPE (RLIN)', 'TAPE OUTPUT, TAPE (RLIN)', 0, 0, '', 'SR');
13246 INSERT INTO `marc_tag_structure` VALUES ('ufi', 'FISCAL INFORMATION, FI (RLIN)', 'FISCAL INFORMATION, FI (RLIN)', 1, 0, '', 'SR');
13247
13248
13249
13250 INSERT INTO `marc_subfield_structure` VALUES ('000', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_leader.pl', 0, 0, 'SR', '', '');
13251 INSERT INTO `marc_subfield_structure` VALUES ('001', '@', 'control field', 'control field', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13252 INSERT INTO `marc_subfield_structure` VALUES ('003', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_003.pl', 0, -6, 'SR', '', '');
13253 INSERT INTO `marc_subfield_structure` VALUES ('005', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_005.pl', 0, -1, 'SR', '', '');
13254 INSERT INTO `marc_subfield_structure` VALUES ('006', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_006.pl', 0, -1, 'SR', '', '');
13255 INSERT INTO `marc_subfield_structure` VALUES ('007', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_007.pl', 0, 0, 'SR', '', '');
13256 INSERT INTO `marc_subfield_structure` VALUES ('008', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_field_008.pl', 0, 0, 'SR', '', '');
13257 INSERT INTO `marc_subfield_structure` VALUES ('009', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13258 INSERT INTO `marc_subfield_structure` VALUES ('010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', NULL, 0, -6, 'SR', '', '');
13259 INSERT INTO `marc_subfield_structure` VALUES ('010', 'a', 'LC control number', 'LC control number', 0, 0, 'biblioitems.lccn', 0, '', '', '', 0, -6, 'SR', '', '');
13260 INSERT INTO `marc_subfield_structure` VALUES ('010', 'b', 'NUCMC control number', 'NUCMC control number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13261 INSERT INTO `marc_subfield_structure` VALUES ('010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13262 INSERT INTO `marc_subfield_structure` VALUES ('011', 'a', 'LC control number', 'LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13263 INSERT INTO `marc_subfield_structure` VALUES ('013', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'SR', '', '');
13264 INSERT INTO `marc_subfield_structure` VALUES ('013', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13265 INSERT INTO `marc_subfield_structure` VALUES ('013', 'a', 'Number', 'Number', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13266 INSERT INTO `marc_subfield_structure` VALUES ('013', 'b', 'Country', 'Country', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13267 INSERT INTO `marc_subfield_structure` VALUES ('013', 'c', 'Type of number', 'Type of number', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13268 INSERT INTO `marc_subfield_structure` VALUES ('013', 'd', 'Date', 'Date', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13269 INSERT INTO `marc_subfield_structure` VALUES ('013', 'e', 'Status', 'Status', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13270 INSERT INTO `marc_subfield_structure` VALUES ('013', 'f', 'Party to document', 'Party to document', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13271 INSERT INTO `marc_subfield_structure` VALUES ('015', '2', 'Source', 'Source', 0, 0, '', 0, '', '', NULL, 0, -6, 'SR', '', '');
13272 INSERT INTO `marc_subfield_structure` VALUES ('015', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13273 INSERT INTO `marc_subfield_structure` VALUES ('015', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13274 INSERT INTO `marc_subfield_structure` VALUES ('015', 'a', 'National bibliography number', 'National bibliography number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13275 INSERT INTO `marc_subfield_structure` VALUES ('016', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13276 INSERT INTO `marc_subfield_structure` VALUES ('016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13277 INSERT INTO `marc_subfield_structure` VALUES ('016', 'a', 'Record control number', 'Record control number', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13278 INSERT INTO `marc_subfield_structure` VALUES ('016', 'z', 'Canceled or invalid record control number', 'Canceled or invalid record control number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13279 INSERT INTO `marc_subfield_structure` VALUES ('017', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13280 INSERT INTO `marc_subfield_structure` VALUES ('017', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13281 INSERT INTO `marc_subfield_structure` VALUES ('017', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13282 INSERT INTO `marc_subfield_structure` VALUES ('017', 'a', 'Copyright or legal deposit number', 'Copyright or legal deposit number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13283 INSERT INTO `marc_subfield_structure` VALUES ('017', 'b', 'Assigning agency', 'Assigning agency', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13284 INSERT INTO `marc_subfield_structure` VALUES ('017', 'd', 'Date', 'Date', 0, 0, '', 0, '', '', NULL, 0, -6, 'SR', '', '');
13285 INSERT INTO `marc_subfield_structure` VALUES ('017', 'i', 'Display text', 'Display text', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13286 INSERT INTO `marc_subfield_structure` VALUES ('018', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13287 INSERT INTO `marc_subfield_structure` VALUES ('018', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13288 INSERT INTO `marc_subfield_structure` VALUES ('018', 'a', 'Copyright article-fee code', 'Copyright article-fee code', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13289 INSERT INTO `marc_subfield_structure` VALUES ('01e', 'a', 'Coded field error', 'Coded field error', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13290 INSERT INTO `marc_subfield_structure` VALUES ('020', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13291 INSERT INTO `marc_subfield_structure` VALUES ('020', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13292 INSERT INTO `marc_subfield_structure` VALUES ('020', 'a', 'International Standard Book Number', 'International Standard Book Number', 0, 0, 'biblioitems.isbn', 0, '', '', '', 0, -1, 'SR', '', '');
13293 INSERT INTO `marc_subfield_structure` VALUES ('020', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13294 INSERT INTO `marc_subfield_structure` VALUES ('020', 'z', 'Cancelled/invalid ISBN', 'Cancelled/invalid ISBN', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13295 INSERT INTO `marc_subfield_structure` VALUES ('022', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13296 INSERT INTO `marc_subfield_structure` VALUES ('022', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13297 INSERT INTO `marc_subfield_structure` VALUES ('022', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13298 INSERT INTO `marc_subfield_structure` VALUES ('022', 'a', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, 'biblioitems.issn', 0, '', '', '', 0, -6, 'SR', '', '');
13299 INSERT INTO `marc_subfield_structure` VALUES ('022', 'y', 'Incorrect ISSN', 'Incorrect ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13300 INSERT INTO `marc_subfield_structure` VALUES ('022', 'z', 'Canceled ISSN', 'Canceled ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13301 INSERT INTO `marc_subfield_structure` VALUES ('023', 'a', 'Standard film number', 'Standard film number', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13302 INSERT INTO `marc_subfield_structure` VALUES ('024', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 0, '', '', '', 0, -1, 'SR', '', '');
13303 INSERT INTO `marc_subfield_structure` VALUES ('024', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13304 INSERT INTO `marc_subfield_structure` VALUES ('024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13305 INSERT INTO `marc_subfield_structure` VALUES ('024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'SR', '', '');
13306 INSERT INTO `marc_subfield_structure` VALUES ('024', 'b', 'Additional codes following the standard number [OBSOLETE]', 'Additional codes following the standard number [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13307 INSERT INTO `marc_subfield_structure` VALUES ('024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -1, 'SR', '', '');
13308 INSERT INTO `marc_subfield_structure` VALUES ('024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'SR', '', '');
13309 INSERT INTO `marc_subfield_structure` VALUES ('024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13310 INSERT INTO `marc_subfield_structure` VALUES ('025', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13311 INSERT INTO `marc_subfield_structure` VALUES ('025', 'a', 'Overseas acquisition number', 'Overseas acquisition number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13312 INSERT INTO `marc_subfield_structure` VALUES ('026', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13313 INSERT INTO `marc_subfield_structure` VALUES ('026', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13314 INSERT INTO `marc_subfield_structure` VALUES ('026', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13315 INSERT INTO `marc_subfield_structure` VALUES ('026', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13316 INSERT INTO `marc_subfield_structure` VALUES ('026', 'a', 'First and second groups of characters', 'First and second groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13317 INSERT INTO `marc_subfield_structure` VALUES ('026', 'b', 'Third and fourth groups of characters', 'Third and fourth groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13318 INSERT INTO `marc_subfield_structure` VALUES ('026', 'c', 'Date', 'Date', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13319 INSERT INTO `marc_subfield_structure` VALUES ('026', 'd', 'Number of volume or part', 'Number of volume or part', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13320 INSERT INTO `marc_subfield_structure` VALUES ('026', 'e', 'unparsed fingerprint', 'unparsed fingerprint', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13321 INSERT INTO `marc_subfield_structure` VALUES ('027', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13322 INSERT INTO `marc_subfield_structure` VALUES ('027', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13323 INSERT INTO `marc_subfield_structure` VALUES ('027', 'a', 'Standard technical report number', 'Standard technical report number', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13324 INSERT INTO `marc_subfield_structure` VALUES ('027', 'z', 'Canceled/invalid number', 'Canceled/invalid number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13325 INSERT INTO `marc_subfield_structure` VALUES ('028', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13326 INSERT INTO `marc_subfield_structure` VALUES ('028', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13327 INSERT INTO `marc_subfield_structure` VALUES ('028', 'a', 'Publisher number', 'Publisher number', 0, 0, '', 0, '', '', '', 0, 0, 'SR', '', '');
13328 INSERT INTO `marc_subfield_structure` VALUES ('028', 'b', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, 0, 'SR', '', '');
13329 INSERT INTO `marc_subfield_structure` VALUES ('030', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13330 INSERT INTO `marc_subfield_structure` VALUES ('030', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13331 INSERT INTO `marc_subfield_structure` VALUES ('030', 'a', 'CODEN', 'CODEN', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13332 INSERT INTO `marc_subfield_structure` VALUES ('030', 'z', 'Canceled/invalid CODEN', 'Canceled/invalid CODEN', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13333 INSERT INTO `marc_subfield_structure` VALUES ('031', '2', 'System code', 'System code', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13334 INSERT INTO `marc_subfield_structure` VALUES ('031', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13335 INSERT INTO `marc_subfield_structure` VALUES ('031', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13336 INSERT INTO `marc_subfield_structure` VALUES ('031', 'a', 'Number of work', 'Number of work', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13337 INSERT INTO `marc_subfield_structure` VALUES ('031', 'b', 'Number of movement', 'Number of movement', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13338 INSERT INTO `marc_subfield_structure` VALUES ('031', 'c', 'Number of excerpt', 'Number of excerpt', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13339 INSERT INTO `marc_subfield_structure` VALUES ('031', 'd', 'Caption or heading', 'Caption or heading', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13340 INSERT INTO `marc_subfield_structure` VALUES ('031', 'e', 'Role', 'Role', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13341 INSERT INTO `marc_subfield_structure` VALUES ('031', 'g', 'Clef', 'Clef', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13342 INSERT INTO `marc_subfield_structure` VALUES ('031', 'm', 'Voice/instrument', 'Voice/instrument', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13343 INSERT INTO `marc_subfield_structure` VALUES ('031', 'n', 'Key signature', 'Key signature', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13344 INSERT INTO `marc_subfield_structure` VALUES ('031', 'o', 'Time signature', 'Time signature', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13345 INSERT INTO `marc_subfield_structure` VALUES ('031', 'p', 'Musical notation', 'Musical notation', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13346 INSERT INTO `marc_subfield_structure` VALUES ('031', 'q', 'General note', 'General note', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13347 INSERT INTO `marc_subfield_structure` VALUES ('031', 'r', 'Key or mode', 'Key or mode', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13348 INSERT INTO `marc_subfield_structure` VALUES ('031', 's', 'Coded validity note', 'Coded validity note', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13349 INSERT INTO `marc_subfield_structure` VALUES ('031', 't', 'Text incipit', 'Text incipit', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13350 INSERT INTO `marc_subfield_structure` VALUES ('031', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 0, '', '', '', 1, -6, 'SR', '', '');
13351 INSERT INTO `marc_subfield_structure` VALUES ('031', 'y', 'Link text', 'Link text', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13352 INSERT INTO `marc_subfield_structure` VALUES ('031', 'z', 'Public note', 'Public note', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13353 INSERT INTO `marc_subfield_structure` VALUES ('032', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'SR', '', '');
13354 INSERT INTO `marc_subfield_structure` VALUES ('032', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13355 INSERT INTO `marc_subfield_structure` VALUES ('032', 'a', 'Postal registration number', 'Postal registration number', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13356 INSERT INTO `marc_subfield_structure` VALUES ('032', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13357 INSERT INTO `marc_subfield_structure` VALUES ('033', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13358 INSERT INTO `marc_subfield_structure` VALUES ('033', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13359 INSERT INTO `marc_subfield_structure` VALUES ('033', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13360 INSERT INTO `marc_subfield_structure` VALUES ('033', 'a', 'Formatted date/time', 'Formatted date/time', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13361 INSERT INTO `marc_subfield_structure` VALUES ('033', 'b', 'Geographic classification area code', 'Geographic classification area code', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13362 INSERT INTO `marc_subfield_structure` VALUES ('033', 'c', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13363 INSERT INTO `marc_subfield_structure` VALUES ('034', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13364 INSERT INTO `marc_subfield_structure` VALUES ('034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13365 INSERT INTO `marc_subfield_structure` VALUES ('034', 'a', 'Category of scale', 'Category of scale', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13366 INSERT INTO `marc_subfield_structure` VALUES ('034', 'b', 'Constant ratio linear horizontal scale', 'Constant ratio linear horizontal scale', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13367 INSERT INTO `marc_subfield_structure` VALUES ('034', 'c', 'Constant ratio linear vertical scale', 'Constant ratio linear vertical scale', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13368 INSERT INTO `marc_subfield_structure` VALUES ('034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13369 INSERT INTO `marc_subfield_structure` VALUES ('034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13370 INSERT INTO `marc_subfield_structure` VALUES ('034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13371 INSERT INTO `marc_subfield_structure` VALUES ('034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13372 INSERT INTO `marc_subfield_structure` VALUES ('034', 'h', 'Angular scale', 'Angular scale', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13373 INSERT INTO `marc_subfield_structure` VALUES ('034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13374 INSERT INTO `marc_subfield_structure` VALUES ('034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13375 INSERT INTO `marc_subfield_structure` VALUES ('034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13376 INSERT INTO `marc_subfield_structure` VALUES ('034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13377 INSERT INTO `marc_subfield_structure` VALUES ('034', 'p', 'Equinox', 'Equinox', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13378 INSERT INTO `marc_subfield_structure` VALUES ('034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13379 INSERT INTO `marc_subfield_structure` VALUES ('034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13380 INSERT INTO `marc_subfield_structure` VALUES ('035', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13381 INSERT INTO `marc_subfield_structure` VALUES ('035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13382 INSERT INTO `marc_subfield_structure` VALUES ('035', 'a', 'System control number', 'System control number', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13383 INSERT INTO `marc_subfield_structure` VALUES ('035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13384 INSERT INTO `marc_subfield_structure` VALUES ('036', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13385 INSERT INTO `marc_subfield_structure` VALUES ('036', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13386 INSERT INTO `marc_subfield_structure` VALUES ('036', 'a', 'Original study number', 'Original study number', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13387 INSERT INTO `marc_subfield_structure` VALUES ('036', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13388 INSERT INTO `marc_subfield_structure` VALUES ('037', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
13389 INSERT INTO `marc_subfield_structure` VALUES ('037', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13390 INSERT INTO `marc_subfield_structure` VALUES ('037', 'a', 'Stock number', 'Stock number', 0, 0, '', 9, '', '', '', 0, -1, 'SR', '', '');
13391 INSERT INTO `marc_subfield_structure` VALUES ('037', 'b', 'Source of stock number/acquisition', 'Source of stock number/acquisition', 0, 0, '', 0, '', '', '', 0, -1, 'SR', '', '');
13392 INSERT INTO `marc_subfield_structure` VALUES ('037', 'c', 'Terms of availability', 'Terms of availability', 1, 0, '', 9, '', '', '', 0, -1, 'SR', '', '');
13393 INSERT INTO `marc_subfield_structure` VALUES ('037', 'f', 'Form of issue', 'Form of issue', 1, 0, '', 9, '', '', '', 0, -1, 'SR', '', '');
13394 INSERT INTO `marc_subfield_structure` VALUES ('037', 'g', 'Additional format characteristics', 'Additional format characteristics', 1, 0, '', 9, '', '', '', 0, -1, 'SR', '', '');
13395 INSERT INTO `marc_subfield_structure` VALUES ('037', 'n', 'Note', 'Note', 1, 0, '', 9, '', '', '', 0, -1, 'SR', '', '');
13396 INSERT INTO `marc_subfield_structure` VALUES ('038', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13397 INSERT INTO `marc_subfield_structure` VALUES ('038', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13398 INSERT INTO `marc_subfield_structure` VALUES ('038', 'a', 'Record content licensor', 'Record content licensor', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13399 INSERT INTO `marc_subfield_structure` VALUES ('039', 'a', 'Level of rules in bibliographic description', 'Level of rules in bibliographic description', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13400 INSERT INTO `marc_subfield_structure` VALUES ('039', 'b', 'Level of effort used to assign nonsubject heading access points', 'Level of effort used to assign nonsubject heading access points', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13401 INSERT INTO `marc_subfield_structure` VALUES ('039', 'c', 'Level of effort used to assign subject headings', 'Level of effort used to assign subject headings', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13402 INSERT INTO `marc_subfield_structure` VALUES ('039', 'd', 'Level of effort used to assign classification', 'Level of effort used to assign classification', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13403 INSERT INTO `marc_subfield_structure` VALUES ('039', 'e', 'Number of fixed field character positions coded', 'Number of fixed field character positions coded', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13404 INSERT INTO `marc_subfield_structure` VALUES ('040', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13405 INSERT INTO `marc_subfield_structure` VALUES ('040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13406 INSERT INTO `marc_subfield_structure` VALUES ('040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 0, '', 0, '', '', '', 0, -1, 'SR', '', '');
13407 INSERT INTO `marc_subfield_structure` VALUES ('040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13408 INSERT INTO `marc_subfield_structure` VALUES ('040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, '', 0, '', '', '', 0, -1, 'SR', '', '');
13409 INSERT INTO `marc_subfield_structure` VALUES ('040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, '', 0, '', '', '', 0, -1, 'SR', '', '');
13410 INSERT INTO `marc_subfield_structure` VALUES ('040', 'e', 'Description conventions', 'Description conventions', 0, 0, '', 0, '', '', '', 0, -1, 'SR', '', '');
13411 INSERT INTO `marc_subfield_structure` VALUES ('041', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13412 INSERT INTO `marc_subfield_structure` VALUES ('041', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13413 INSERT INTO `marc_subfield_structure` VALUES ('041', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13414 INSERT INTO `marc_subfield_structure` VALUES ('041', 'a', 'Language code of text/sound track or separate title', 'Language code of text/sound track or separate title', 1, 0, '', 0, '', '', '', 0, -1, 'SR', '', '');
13415 INSERT INTO `marc_subfield_structure` VALUES ('041', 'b', 'Language code of summary or abstract/overprinted title or subtitle', 'Language code of summary or abstract/overprinted title or subtitle', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13416 INSERT INTO `marc_subfield_structure` VALUES ('041', 'c', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13417 INSERT INTO `marc_subfield_structure` VALUES ('041', 'd', 'Language code of sung or spoken text', 'Language code of sung or spoken text', 1, 0, '', 0, '', '', '', 0, -1, 'SR', '', '');
13418 INSERT INTO `marc_subfield_structure` VALUES ('041', 'e', 'Language code of librettos', 'Language code of librettos', 1, 0, '', 0, '', '', '', 0, -1, 'SR', '', '');
13419 INSERT INTO `marc_subfield_structure` VALUES ('041', 'f', 'Language code of table of contents', 'Language code of table of contents', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13420 INSERT INTO `marc_subfield_structure` VALUES ('041', 'g', 'Language code of accompanying material other than librettos', 'Language code of accompanying material other than librettos', 1, 0, '', 0, '', '', '', 0, -1, 'SR', '', '');
13421 INSERT INTO `marc_subfield_structure` VALUES ('041', 'h', 'Language code of original and/or intermediate translations of text', 'Language code of original and/or intermediate translations of text', 1, 0, '', 0, '', '', '', 0, -1, 'SR', '', '');
13422 INSERT INTO `marc_subfield_structure` VALUES ('042', 'a', 'Authentication code', 'Authentication code', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13423 INSERT INTO `marc_subfield_structure` VALUES ('043', '2', 'Source of local code', 'Source of local code', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13424 INSERT INTO `marc_subfield_structure` VALUES ('043', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13425 INSERT INTO `marc_subfield_structure` VALUES ('043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13426 INSERT INTO `marc_subfield_structure` VALUES ('043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13427 INSERT INTO `marc_subfield_structure` VALUES ('043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13428 INSERT INTO `marc_subfield_structure` VALUES ('043', 'c', 'ISO code', 'ISO code', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13429 INSERT INTO `marc_subfield_structure` VALUES ('044', '2', 'Source of local subentity code', 'Source of local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13430 INSERT INTO `marc_subfield_structure` VALUES ('044', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13431 INSERT INTO `marc_subfield_structure` VALUES ('044', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13432 INSERT INTO `marc_subfield_structure` VALUES ('044', 'a', 'MARC country code', 'MARC country code', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13433 INSERT INTO `marc_subfield_structure` VALUES ('044', 'b', 'Local subentity code', 'Local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13434 INSERT INTO `marc_subfield_structure` VALUES ('044', 'c', 'ISO country code', 'ISO country code', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13435 INSERT INTO `marc_subfield_structure` VALUES ('045', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13436 INSERT INTO `marc_subfield_structure` VALUES ('045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13437 INSERT INTO `marc_subfield_structure` VALUES ('045', 'a', 'Time period code', 'Time period code', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13438 INSERT INTO `marc_subfield_structure` VALUES ('045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13439 INSERT INTO `marc_subfield_structure` VALUES ('045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13440 INSERT INTO `marc_subfield_structure` VALUES ('046', '2', 'Source of date', 'Source of date', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13441 INSERT INTO `marc_subfield_structure` VALUES ('046', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13442 INSERT INTO `marc_subfield_structure` VALUES ('046', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13443 INSERT INTO `marc_subfield_structure` VALUES ('046', 'a', 'Type of date code', 'Type of date code', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13444 INSERT INTO `marc_subfield_structure` VALUES ('046', 'b', 'Date 1 (B.C. date)', 'Date 1 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13445 INSERT INTO `marc_subfield_structure` VALUES ('046', 'c', 'Date 1 (C.E. date)', 'Date 1 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13446 INSERT INTO `marc_subfield_structure` VALUES ('046', 'd', 'Date 2 (B.C. date)', 'Date 2 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13447 INSERT INTO `marc_subfield_structure` VALUES ('046', 'e', 'Date 2 (C.E. date)', 'Date 2 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13448 INSERT INTO `marc_subfield_structure` VALUES ('046', 'j', 'Date resource modified', 'Date resource modified', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13449 INSERT INTO `marc_subfield_structure` VALUES ('046', 'k', 'Beginning or single date created', 'Beginning or single date created', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13450 INSERT INTO `marc_subfield_structure` VALUES ('046', 'l', 'Ending date created', 'Ending date created', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13451 INSERT INTO `marc_subfield_structure` VALUES ('046', 'm', 'Beginning of date valid', 'Beginning of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13452 INSERT INTO `marc_subfield_structure` VALUES ('046', 'n', 'End of date valid', 'End of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13453 INSERT INTO `marc_subfield_structure` VALUES ('047', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13454 INSERT INTO `marc_subfield_structure` VALUES ('047', 'a', 'Form of musical composition code', 'Form of musical composition code', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13455 INSERT INTO `marc_subfield_structure` VALUES ('048', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13456 INSERT INTO `marc_subfield_structure` VALUES ('048', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13457 INSERT INTO `marc_subfield_structure` VALUES ('048', 'a', 'Performer or ensemble', 'Performer or ensemble', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13458 INSERT INTO `marc_subfield_structure` VALUES ('048', 'b', 'Soloist', 'Soloist', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13459 INSERT INTO `marc_subfield_structure` VALUES ('049', 'a', 'Holding library', 'Holding library', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13460 INSERT INTO `marc_subfield_structure` VALUES ('049', 'c', 'Copy statement', 'Copy statement', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13461 INSERT INTO `marc_subfield_structure` VALUES ('049', 'd', 'Definition of bibliographic subdivisions', 'Definition of bibliographic subdivisions', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13462 INSERT INTO `marc_subfield_structure` VALUES ('049', 'l', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13463 INSERT INTO `marc_subfield_structure` VALUES ('049', 'm', 'Missing elements', 'Missing elements', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13464 INSERT INTO `marc_subfield_structure` VALUES ('049', 'n', 'Notes about holdings', 'Notes about holdings', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13465 INSERT INTO `marc_subfield_structure` VALUES ('049', 'o', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13466 INSERT INTO `marc_subfield_structure` VALUES ('049', 'p', 'Secondary bibliographic subdivision', 'Secondary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13467 INSERT INTO `marc_subfield_structure` VALUES ('049', 'q', 'Third bibliographic subdivision', 'Third bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13468 INSERT INTO `marc_subfield_structure` VALUES ('049', 'r', 'Fourth bibliographic subdivision', 'Fourth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13469 INSERT INTO `marc_subfield_structure` VALUES ('049', 's', 'Fifth bibliographic subdivision', 'Fifth bibliographic subdivision', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13470 INSERT INTO `marc_subfield_structure` VALUES ('049', 't', 'Sixth bibliographic subdivision', 'Sixth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13471 INSERT INTO `marc_subfield_structure` VALUES ('049', 'u', 'Seventh bibliographic subdivision', 'Seventh bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13472 INSERT INTO `marc_subfield_structure` VALUES ('049', 'v', 'Primary bibliographic subdivision', 'Primary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13473 INSERT INTO `marc_subfield_structure` VALUES ('049', 'y', 'Inclusive dates of publication or coverage', 'Inclusive dates of publication or coverage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13474 INSERT INTO `marc_subfield_structure` VALUES ('050', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13475 INSERT INTO `marc_subfield_structure` VALUES ('050', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13476 INSERT INTO `marc_subfield_structure` VALUES ('050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13477 INSERT INTO `marc_subfield_structure` VALUES ('050', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, 0, 'SR', '', '');
13478 INSERT INTO `marc_subfield_structure` VALUES ('050', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, 0, 'SR', '', '');
13479 INSERT INTO `marc_subfield_structure` VALUES ('050', 'd', 'Supplementary class number (MU) [OBSOLETE]', 'Supplementary class number (MU) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13480 INSERT INTO `marc_subfield_structure` VALUES ('051', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13481 INSERT INTO `marc_subfield_structure` VALUES ('051', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13482 INSERT INTO `marc_subfield_structure` VALUES ('051', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13483 INSERT INTO `marc_subfield_structure` VALUES ('051', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13484 INSERT INTO `marc_subfield_structure` VALUES ('052', '2', 'Code Source', 'Code Source', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13485 INSERT INTO `marc_subfield_structure` VALUES ('052', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13486 INSERT INTO `marc_subfield_structure` VALUES ('052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13487 INSERT INTO `marc_subfield_structure` VALUES ('052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13488 INSERT INTO `marc_subfield_structure` VALUES ('052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13489 INSERT INTO `marc_subfield_structure` VALUES ('052', 'c', 'Subject (MP) [OBSOLETE]', 'Subject (MP) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13490 INSERT INTO `marc_subfield_structure` VALUES ('052', 'd', 'Populated place name', 'Populated place name', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13491 INSERT INTO `marc_subfield_structure` VALUES ('055', '2', 'Source of call/class number', 'Source of call/class number', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13492 INSERT INTO `marc_subfield_structure` VALUES ('055', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13493 INSERT INTO `marc_subfield_structure` VALUES ('055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13494 INSERT INTO `marc_subfield_structure` VALUES ('055', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13495 INSERT INTO `marc_subfield_structure` VALUES ('055', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13496 INSERT INTO `marc_subfield_structure` VALUES ('060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13497 INSERT INTO `marc_subfield_structure` VALUES ('060', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13498 INSERT INTO `marc_subfield_structure` VALUES ('060', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13499 INSERT INTO `marc_subfield_structure` VALUES ('061', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13500 INSERT INTO `marc_subfield_structure` VALUES ('061', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13501 INSERT INTO `marc_subfield_structure` VALUES ('061', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13502 INSERT INTO `marc_subfield_structure` VALUES ('061', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13503 INSERT INTO `marc_subfield_structure` VALUES ('066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13504 INSERT INTO `marc_subfield_structure` VALUES ('066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13505 INSERT INTO `marc_subfield_structure` VALUES ('066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13506 INSERT INTO `marc_subfield_structure` VALUES ('070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13507 INSERT INTO `marc_subfield_structure` VALUES ('070', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13508 INSERT INTO `marc_subfield_structure` VALUES ('070', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13509 INSERT INTO `marc_subfield_structure` VALUES ('071', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13510 INSERT INTO `marc_subfield_structure` VALUES ('071', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13511 INSERT INTO `marc_subfield_structure` VALUES ('071', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13512 INSERT INTO `marc_subfield_structure` VALUES ('071', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13513 INSERT INTO `marc_subfield_structure` VALUES ('072', '2', 'Source', 'Source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13514 INSERT INTO `marc_subfield_structure` VALUES ('072', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13515 INSERT INTO `marc_subfield_structure` VALUES ('072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13516 INSERT INTO `marc_subfield_structure` VALUES ('072', 'a', 'Subject category code', 'Subject category code', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13517 INSERT INTO `marc_subfield_structure` VALUES ('072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13518 INSERT INTO `marc_subfield_structure` VALUES ('074', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13519 INSERT INTO `marc_subfield_structure` VALUES ('074', 'a', 'GPO item number', 'GPO item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'SR', '', '');
13520 INSERT INTO `marc_subfield_structure` VALUES ('074', 'z', 'Canceled/invalid GPO item number', 'Canceled/invalid GPO item number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13521 INSERT INTO `marc_subfield_structure` VALUES ('080', '2', 'Edition identifier', 'Edition identifier', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13522 INSERT INTO `marc_subfield_structure` VALUES ('080', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13523 INSERT INTO `marc_subfield_structure` VALUES ('080', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13524 INSERT INTO `marc_subfield_structure` VALUES ('080', 'a', 'Universal Decimal Classification number', 'Universal Decimal Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13525 INSERT INTO `marc_subfield_structure` VALUES ('080', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13526 INSERT INTO `marc_subfield_structure` VALUES ('080', 'x', 'Common auxiliary subdivision', 'Common auxiliary subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13527 INSERT INTO `marc_subfield_structure` VALUES ('082', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, 0, 'SR', '', '');
13528 INSERT INTO `marc_subfield_structure` VALUES ('082', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', NULL, -6, 'SR', '', '');
13529 INSERT INTO `marc_subfield_structure` VALUES ('082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', NULL, -6, 'SR', '', '');
13530 INSERT INTO `marc_subfield_structure` VALUES ('082', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, 0, 'SR', '', '');
13531 INSERT INTO `marc_subfield_structure` VALUES ('082', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, 0, 'SR', '', '');
13532 INSERT INTO `marc_subfield_structure` VALUES ('084', '2', 'Source of number', 'Source of number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13533 INSERT INTO `marc_subfield_structure` VALUES ('084', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13534 INSERT INTO `marc_subfield_structure` VALUES ('084', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13535 INSERT INTO `marc_subfield_structure` VALUES ('084', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13536 INSERT INTO `marc_subfield_structure` VALUES ('084', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13537 INSERT INTO `marc_subfield_structure` VALUES ('086', '2', 'Number source', 'Number source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'SR', '', '');
13538 INSERT INTO `marc_subfield_structure` VALUES ('086', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13539 INSERT INTO `marc_subfield_structure` VALUES ('086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13540 INSERT INTO `marc_subfield_structure` VALUES ('086', 'a', 'Classification number', 'Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'SR', '', '');
13541 INSERT INTO `marc_subfield_structure` VALUES ('086', 'z', 'Canceled/invalid classification number', 'Canceled/invalid classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13542 INSERT INTO `marc_subfield_structure` VALUES ('087', 'a', 'Report number [OBSOLETE, CAN/MARC]', 'Report number [OBSOLETE, CAN/MARC]', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13543 INSERT INTO `marc_subfield_structure` VALUES ('087', 'z', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13544 INSERT INTO `marc_subfield_structure` VALUES ('088', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13545 INSERT INTO `marc_subfield_structure` VALUES ('088', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13546 INSERT INTO `marc_subfield_structure` VALUES ('088', 'a', 'Report number', 'Report number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13547 INSERT INTO `marc_subfield_structure` VALUES ('088', 'z', 'Canceled/invalid report number', 'Canceled/invalid report number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SR', '', '');
13548 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13549 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13550 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
13551 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
13552 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
13553 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
13554 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
13555 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
13556 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
13557 INSERT INTO `marc_subfield_structure` VALUES ('09o', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
13558 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
13559 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
13560 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
13561 INSERT INTO `marc_subfield_structure` VALUES ('091', 'a', 'Microfilm shelf location', 'Microfilm shelf location', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13562 INSERT INTO `marc_subfield_structure` VALUES ('092', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, -6, 'SR', '', '');
13563 INSERT INTO `marc_subfield_structure` VALUES ('092', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'SR', '', '');
13564 INSERT INTO `marc_subfield_structure` VALUES ('092', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'SR', '', '');
13565 INSERT INTO `marc_subfield_structure` VALUES ('092', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13566 INSERT INTO `marc_subfield_structure` VALUES ('092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13567 INSERT INTO `marc_subfield_structure` VALUES ('096', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'SR', '', '');
13568 INSERT INTO `marc_subfield_structure` VALUES ('096', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'SR', '', '');
13569 INSERT INTO `marc_subfield_structure` VALUES ('096', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13570 INSERT INTO `marc_subfield_structure` VALUES ('096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13571 INSERT INTO `marc_subfield_structure` VALUES ('098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, '', 0, '', '', '', NULL, -6, 'SR', '', '');
13572 INSERT INTO `marc_subfield_structure` VALUES ('098', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13573 INSERT INTO `marc_subfield_structure` VALUES ('098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13574 INSERT INTO `marc_subfield_structure` VALUES ('099', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, -6, 'SR', '', '');
13575 INSERT INTO `marc_subfield_structure` VALUES ('099', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13576 INSERT INTO `marc_subfield_structure` VALUES ('099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
13577 INSERT INTO `marc_subfield_structure` VALUES ('100', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', 0, -6, 'SR', '', '');
13578 INSERT INTO `marc_subfield_structure` VALUES ('100', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', 0, -6, 'SR', '', '');
13579 INSERT INTO `marc_subfield_structure` VALUES ('100', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', 0, -6, 'SR', '', '');
13580 INSERT INTO `marc_subfield_structure` VALUES ('100', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
13581 INSERT INTO `marc_subfield_structure` VALUES ('100', 'a', 'Personal name', 'Personal name', 0, 0, 'biblio.author', 1, '', '', '', 0, -1, 'SR', '''100b'',''100c'',''100q'',''100d'',''100e'',''110a'',''110b'',''110c'',''110d'',''110e'',''700a'',''700b'',''700c'',''700q'',''700d'',''700e'',''710a'',''710b'',''710c'',''710d'',''710e'',''720a'',''720e'',''900a''', '');
13582 INSERT INTO `marc_subfield_structure` VALUES ('100', 'b', 'Numeration', 'Numeration', 0, 0, '', 1, '', '', '', 0, -1, 'SR', '', '');
13583 INSERT INTO `marc_subfield_structure` VALUES ('100', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 1, '', '', '', 0, -1, 'SR', '', '');
13584 INSERT INTO `marc_subfield_structure` VALUES ('100', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 1, '', '', '', 0, -1, 'SR', '', '');
13585 INSERT INTO `marc_subfield_structure` VALUES ('100', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', 0, -1, 'SR', '', '');
13586 INSERT INTO `marc_subfield_structure` VALUES ('100', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', 0, -6, 'SR', '', '');
13587 INSERT INTO `marc_subfield_structure` VALUES ('100', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', 0, -6, 'SR', '', '');
13588 INSERT INTO `marc_subfield_structure` VALUES ('100', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 1, '', '', '', 0, -6, 'SR', '', '');
13589 INSERT INTO `marc_subfield_structure` VALUES ('100', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', 0, -6, 'SR', '', '');
13590 INSERT INTO `marc_subfield_structure` VALUES ('100', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', 0, -6, 'SR', '', '');
13591 INSERT INTO `marc_subfield_structure` VALUES ('100', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'SR', '', '');
13592 INSERT INTO `marc_subfield_structure` VALUES ('100', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'SR', '', '');
13593 INSERT INTO `marc_subfield_structure` VALUES ('100', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 1, '', '', '', 0, -1, 'SR', '', '');
13594 INSERT INTO `marc_subfield_structure` VALUES ('100', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', 0, -6, 'SR', '', '');
13595 INSERT INTO `marc_subfield_structure` VALUES ('100', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', 0, -6, 'SR', '', '');
13596 INSERT INTO `marc_subfield_structure` VALUES ('110', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', NULL, -6, 'SR', '', '');
13597 INSERT INTO `marc_subfield_structure` VALUES ('110', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', NULL, -6, 'SR', '', '');
13598 INSERT INTO `marc_subfield_structure` VALUES ('110', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', NULL, -6, 'SR', '', '');
13599 INSERT INTO `marc_subfield_structure` VALUES ('110', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
13600 INSERT INTO `marc_subfield_structure` VALUES ('110', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 1, '', '', '', NULL, -1, 'SR', '', '');
13601 INSERT INTO `marc_subfield_structure` VALUES ('110', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 1, '', '', '', NULL, -1, 'SR', '', '');
13602 INSERT INTO `marc_subfield_structure` VALUES ('110', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 1, '', '', '', NULL, -1, 'SR', '', '');
13603 INSERT INTO `marc_subfield_structure` VALUES ('110', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 1, '', '', '', NULL, -1, 'SR', '', '');
13604 INSERT INTO `marc_subfield_structure` VALUES ('110', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', NULL, -1, 'SR', '', '');
13605 INSERT INTO `marc_subfield_structure` VALUES ('110', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'SR', '', '');
13606 INSERT INTO `marc_subfield_structure` VALUES ('110', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', NULL, -6, 'SR', '', '');
13607 INSERT INTO `marc_subfield_structure` VALUES ('110', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', NULL, -6, 'SR', '', '');
13608 INSERT INTO `marc_subfield_structure` VALUES ('110', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'SR', '', '');
13609 INSERT INTO `marc_subfield_structure` VALUES ('110', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 1, '', '', '', NULL, -6, 'SR', '', '');
13610 INSERT INTO `marc_subfield_structure` VALUES ('110', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', NULL, -6, 'SR', '', '');
13611 INSERT INTO `marc_subfield_structure` VALUES ('110', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'SR', '', '');
13612 INSERT INTO `marc_subfield_structure` VALUES ('110', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', NULL, -6, 'SR', '', '');
13613 INSERT INTO `marc_subfield_structure` VALUES ('111', '4', 'Relator code', 'Relator code', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13614 INSERT INTO `marc_subfield_structure` VALUES ('111', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13615 INSERT INTO `marc_subfield_structure` VALUES ('111', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13616 INSERT INTO `marc_subfield_structure` VALUES ('111', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
13617 INSERT INTO `marc_subfield_structure` VALUES ('111', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'SR', '', '');
13618 INSERT INTO `marc_subfield_structure` VALUES ('111', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13619 INSERT INTO `marc_subfield_structure` VALUES ('111', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'SR', '', '');
13620 INSERT INTO `marc_subfield_structure` VALUES ('111', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'SR', '', '');
13621 INSERT INTO `marc_subfield_structure` VALUES ('111', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'SR', '', '');
13622 INSERT INTO `marc_subfield_structure` VALUES ('111', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13623 INSERT INTO `marc_subfield_structure` VALUES ('111', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13624 INSERT INTO `marc_subfield_structure` VALUES ('111', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13625 INSERT INTO `marc_subfield_structure` VALUES ('111', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13626 INSERT INTO `marc_subfield_structure` VALUES ('111', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13627 INSERT INTO `marc_subfield_structure` VALUES ('111', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13628 INSERT INTO `marc_subfield_structure` VALUES ('111', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13629 INSERT INTO `marc_subfield_structure` VALUES ('111', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13630 INSERT INTO `marc_subfield_structure` VALUES ('111', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13631 INSERT INTO `marc_subfield_structure` VALUES ('130', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13632 INSERT INTO `marc_subfield_structure` VALUES ('130', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13633 INSERT INTO `marc_subfield_structure` VALUES ('130', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
13634 INSERT INTO `marc_subfield_structure` VALUES ('130', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13635 INSERT INTO `marc_subfield_structure` VALUES ('130', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13636 INSERT INTO `marc_subfield_structure` VALUES ('130', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13637 INSERT INTO `marc_subfield_structure` VALUES ('130', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13638 INSERT INTO `marc_subfield_structure` VALUES ('130', 'h', 'Medium', 'Medium', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13639 INSERT INTO `marc_subfield_structure` VALUES ('130', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13640 INSERT INTO `marc_subfield_structure` VALUES ('130', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13641 INSERT INTO `marc_subfield_structure` VALUES ('130', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13642 INSERT INTO `marc_subfield_structure` VALUES ('130', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13643 INSERT INTO `marc_subfield_structure` VALUES ('130', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13644 INSERT INTO `marc_subfield_structure` VALUES ('130', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13645 INSERT INTO `marc_subfield_structure` VALUES ('130', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13646 INSERT INTO `marc_subfield_structure` VALUES ('130', 's', 'Version', 'Version', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13647 INSERT INTO `marc_subfield_structure` VALUES ('130', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SR', '', '');
13648 INSERT INTO `marc_subfield_structure` VALUES ('210', '2', 'Source', 'Source', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13649 INSERT INTO `marc_subfield_structure` VALUES ('210', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13650 INSERT INTO `marc_subfield_structure` VALUES ('210', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13651 INSERT INTO `marc_subfield_structure` VALUES ('210', 'a', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13652 INSERT INTO `marc_subfield_structure` VALUES ('210', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13653 INSERT INTO `marc_subfield_structure` VALUES ('211', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13654 INSERT INTO `marc_subfield_structure` VALUES ('211', 'a', 'Acronym or shortened title', 'Acronym or shortened title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13655 INSERT INTO `marc_subfield_structure` VALUES ('212', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13656 INSERT INTO `marc_subfield_structure` VALUES ('212', 'a', 'Variant access title', 'Variant access title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13657 INSERT INTO `marc_subfield_structure` VALUES ('214', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13658 INSERT INTO `marc_subfield_structure` VALUES ('214', 'a', 'Augmented title', 'Augmented title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13659 INSERT INTO `marc_subfield_structure` VALUES ('222', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13660 INSERT INTO `marc_subfield_structure` VALUES ('222', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13661 INSERT INTO `marc_subfield_structure` VALUES ('222', 'a', 'Key title', 'Key title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13662 INSERT INTO `marc_subfield_structure` VALUES ('222', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13663 INSERT INTO `marc_subfield_structure` VALUES ('240', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13664 INSERT INTO `marc_subfield_structure` VALUES ('240', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13665 INSERT INTO `marc_subfield_structure` VALUES ('240', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
13666 INSERT INTO `marc_subfield_structure` VALUES ('240', 'a', 'Uniform title', 'Uniform title', 0, 0, 'biblio.unititle', 2, '', '', '', 1, -1, 'SR', '', '');
13667 INSERT INTO `marc_subfield_structure` VALUES ('240', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13668 INSERT INTO `marc_subfield_structure` VALUES ('240', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13669 INSERT INTO `marc_subfield_structure` VALUES ('240', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13670 INSERT INTO `marc_subfield_structure` VALUES ('240', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'SR', '', '');
13671 INSERT INTO `marc_subfield_structure` VALUES ('240', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13672 INSERT INTO `marc_subfield_structure` VALUES ('240', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'SR', '', '');
13673 INSERT INTO `marc_subfield_structure` VALUES ('240', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13674 INSERT INTO `marc_subfield_structure` VALUES ('240', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13675 INSERT INTO `marc_subfield_structure` VALUES ('240', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13676 INSERT INTO `marc_subfield_structure` VALUES ('240', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13677 INSERT INTO `marc_subfield_structure` VALUES ('240', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -1, 'SR', '', '');
13678 INSERT INTO `marc_subfield_structure` VALUES ('240', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'SR', '', '');
13679 INSERT INTO `marc_subfield_structure` VALUES ('241', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13680 INSERT INTO `marc_subfield_structure` VALUES ('241', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13681 INSERT INTO `marc_subfield_structure` VALUES ('242', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13682 INSERT INTO `marc_subfield_structure` VALUES ('242', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13683 INSERT INTO `marc_subfield_structure` VALUES ('242', 'a', 'Title', 'Title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13684 INSERT INTO `marc_subfield_structure` VALUES ('242', 'b', 'Remainder of title', 'Remainder of title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13685 INSERT INTO `marc_subfield_structure` VALUES ('242', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13686 INSERT INTO `marc_subfield_structure` VALUES ('242', 'd', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13687 INSERT INTO `marc_subfield_structure` VALUES ('242', 'e', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13688 INSERT INTO `marc_subfield_structure` VALUES ('242', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13689 INSERT INTO `marc_subfield_structure` VALUES ('242', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13690 INSERT INTO `marc_subfield_structure` VALUES ('242', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13691 INSERT INTO `marc_subfield_structure` VALUES ('242', 'y', 'Language code of translated title', 'Language code of translated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SR', '', '');
13692 INSERT INTO `marc_subfield_structure` VALUES ('243', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13693 INSERT INTO `marc_subfield_structure` VALUES ('243', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13694 INSERT INTO `marc_subfield_structure` VALUES ('243', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
13695 INSERT INTO `marc_subfield_structure` VALUES ('243', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 2, '', '', '', 1, -1, 'SR', '', '');
13696 INSERT INTO `marc_subfield_structure` VALUES ('243', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13697 INSERT INTO `marc_subfield_structure` VALUES ('243', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13698 INSERT INTO `marc_subfield_structure` VALUES ('243', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13699 INSERT INTO `marc_subfield_structure` VALUES ('243', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'SR', '', '');
13700 INSERT INTO `marc_subfield_structure` VALUES ('243', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13701 INSERT INTO `marc_subfield_structure` VALUES ('243', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'SR', '', '');
13702 INSERT INTO `marc_subfield_structure` VALUES ('243', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13703 INSERT INTO `marc_subfield_structure` VALUES ('243', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13704 INSERT INTO `marc_subfield_structure` VALUES ('243', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13705 INSERT INTO `marc_subfield_structure` VALUES ('243', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'SR', '', '');
13706 INSERT INTO `marc_subfield_structure` VALUES ('243', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -1, 'SR', '', '');
13707 INSERT INTO `marc_subfield_structure` VALUES ('243', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'SR', '', '');
13708 INSERT INTO `marc_subfield_structure` VALUES ('245', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13709 INSERT INTO `marc_subfield_structure` VALUES ('245', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13710 INSERT INTO `marc_subfield_structure` VALUES ('245', 'a', 'Title', 'Title', 0, 1, 'biblio.title', 2, '', '', '', NULL, 0, 'SR', '''245b'',''245f'',''245g'',''245k'',''245n'',''245p'',''245s'',''245h'',''246i'',''246a'',''246b'',''246f'',''246g'',''246n'',''246p'',''246h'',''242a'',''242b'',''242n'',''242p'',''242h''', '');
13711 INSERT INTO `marc_subfield_structure` VALUES ('245', 'b', 'Remainder of title', 'Remainder of title', 0, 0, 'bibliosubtitle.subtitle', 2, '', '', '', NULL, 0, 'SR', '', '');
13712 INSERT INTO `marc_subfield_structure` VALUES ('245', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 2, '', '', '', NULL, 0, 'SR', '', '');
13713 INSERT INTO `marc_subfield_structure` VALUES ('245', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series: (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13714 INSERT INTO `marc_subfield_structure` VALUES ('245', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13715 INSERT INTO `marc_subfield_structure` VALUES ('245', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13716 INSERT INTO `marc_subfield_structure` VALUES ('245', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13717 INSERT INTO `marc_subfield_structure` VALUES ('245', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, 0, 'SR', '', '');
13718 INSERT INTO `marc_subfield_structure` VALUES ('245', 'k', 'Form', 'Form', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13719 INSERT INTO `marc_subfield_structure` VALUES ('245', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13720 INSERT INTO `marc_subfield_structure` VALUES ('245', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13721 INSERT INTO `marc_subfield_structure` VALUES ('245', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13722 INSERT INTO `marc_subfield_structure` VALUES ('246', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13723 INSERT INTO `marc_subfield_structure` VALUES ('246', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13724 INSERT INTO `marc_subfield_structure` VALUES ('246', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13725 INSERT INTO `marc_subfield_structure` VALUES ('246', 'a', 'Title proper/short title', 'Title proper/short title', 0, 0, '', 2, '', '', '', NULL, -1, 'SR', '', '');
13726 INSERT INTO `marc_subfield_structure` VALUES ('246', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -1, 'SR', '', '');
13727 INSERT INTO `marc_subfield_structure` VALUES ('246', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13728 INSERT INTO `marc_subfield_structure` VALUES ('246', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13729 INSERT INTO `marc_subfield_structure` VALUES ('246', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13730 INSERT INTO `marc_subfield_structure` VALUES ('246', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13731 INSERT INTO `marc_subfield_structure` VALUES ('246', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, 0, 'SR', '', '');
13732 INSERT INTO `marc_subfield_structure` VALUES ('246', 'i', 'Display text', 'Display text', 0, 0, '', 2, '', '', '', NULL, -1, 'SR', '', '');
13733 INSERT INTO `marc_subfield_structure` VALUES ('246', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13734 INSERT INTO `marc_subfield_structure` VALUES ('246', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13735 INSERT INTO `marc_subfield_structure` VALUES ('247', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13736 INSERT INTO `marc_subfield_structure` VALUES ('247', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13737 INSERT INTO `marc_subfield_structure` VALUES ('247', 'a', 'Title', 'Title', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13738 INSERT INTO `marc_subfield_structure` VALUES ('247', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13739 INSERT INTO `marc_subfield_structure` VALUES ('247', 'd', 'Designation of section (SE) [OBSOLETE]', 'Designation of section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13740 INSERT INTO `marc_subfield_structure` VALUES ('247', 'e', 'Name of part/section (SE) [OBSOLETE]', 'Name of part/section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13741 INSERT INTO `marc_subfield_structure` VALUES ('247', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13742 INSERT INTO `marc_subfield_structure` VALUES ('247', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13743 INSERT INTO `marc_subfield_structure` VALUES ('247', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13744 INSERT INTO `marc_subfield_structure` VALUES ('247', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13745 INSERT INTO `marc_subfield_structure` VALUES ('247', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13746 INSERT INTO `marc_subfield_structure` VALUES ('247', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13747 INSERT INTO `marc_subfield_structure` VALUES ('250', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13748 INSERT INTO `marc_subfield_structure` VALUES ('250', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13749 INSERT INTO `marc_subfield_structure` VALUES ('250', 'a', 'Edition statement', 'Edition statement', 0, 0, '', 2, '', '', '', NULL, -1, 'SR', '', '');
13750 INSERT INTO `marc_subfield_structure` VALUES ('250', 'b', 'Remainder of edition statement', 'Remainder of edition statement', 0, 0, '', 2, '', '', '', NULL, -1, 'SR', '', '');
13751 INSERT INTO `marc_subfield_structure` VALUES ('254', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13752 INSERT INTO `marc_subfield_structure` VALUES ('254', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13753 INSERT INTO `marc_subfield_structure` VALUES ('254', 'a', 'Musical presentation statement', 'Musical presentation statement', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13754 INSERT INTO `marc_subfield_structure` VALUES ('255', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13755 INSERT INTO `marc_subfield_structure` VALUES ('255', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13756 INSERT INTO `marc_subfield_structure` VALUES ('255', 'a', 'Statement of scale', 'Statement of scale', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13757 INSERT INTO `marc_subfield_structure` VALUES ('255', 'b', 'Statement of projection', 'Statement of projection', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13758 INSERT INTO `marc_subfield_structure` VALUES ('255', 'c', 'Statement of coordinates', 'Statement of coordinates', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13759 INSERT INTO `marc_subfield_structure` VALUES ('255', 'd', 'Statement of zone', 'Statement of zone', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13760 INSERT INTO `marc_subfield_structure` VALUES ('255', 'e', 'Statement of equinox', 'Statement of equinox', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13761 INSERT INTO `marc_subfield_structure` VALUES ('255', 'f', 'Outer G-ring coordinate pairs', 'Outer G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13762 INSERT INTO `marc_subfield_structure` VALUES ('255', 'g', 'Exclusion G-ring coordinate pairs', 'Exclusion G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13763 INSERT INTO `marc_subfield_structure` VALUES ('256', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13764 INSERT INTO `marc_subfield_structure` VALUES ('256', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13765 INSERT INTO `marc_subfield_structure` VALUES ('256', 'a', 'Computer file characteristics', 'Computer file characteristics', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13766 INSERT INTO `marc_subfield_structure` VALUES ('257', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13767 INSERT INTO `marc_subfield_structure` VALUES ('257', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13768 INSERT INTO `marc_subfield_structure` VALUES ('257', 'a', 'Country of producing entity', 'Country of producing entity', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13769 INSERT INTO `marc_subfield_structure` VALUES ('258', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13770 INSERT INTO `marc_subfield_structure` VALUES ('258', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13771 INSERT INTO `marc_subfield_structure` VALUES ('258', 'a', 'Issuing jurisdiction', 'Issuing jurisdiction', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13772 INSERT INTO `marc_subfield_structure` VALUES ('258', 'b', 'Denomination', 'Denomination', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13773 INSERT INTO `marc_subfield_structure` VALUES ('260', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13774 INSERT INTO `marc_subfield_structure` VALUES ('260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13775 INSERT INTO `marc_subfield_structure` VALUES ('260', 'a', 'Place of publication, distribution, etc', 'Place of publication, distribution, etc', 1, 0, 'biblioitems.place', 2, '', '', '', NULL, 0, 'SR', '', '');
13776 INSERT INTO `marc_subfield_structure` VALUES ('260', 'b', 'Name of publisher, distributor, etc', 'Name of publisher, distributor, etc', 1, 0, 'biblioitems.publishercode', 2, '', '', '', NULL, 0, 'SR', '', '');
13777 INSERT INTO `marc_subfield_structure` VALUES ('260', 'c', 'Date of copyright, publication, distribution, release, etc', 'Date of publication, distribution, etc', 1, 0, 'biblio.copyrightdate', 2, '', '', '', NULL, 0, 'SR', '', '');
13778 INSERT INTO `marc_subfield_structure` VALUES ('260', 'd', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13779 INSERT INTO `marc_subfield_structure` VALUES ('260', 'e', 'Place of manufacture', 'Place of manufacture', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13780 INSERT INTO `marc_subfield_structure` VALUES ('260', 'f', 'Manufacturer', 'Manufacturer', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13781 INSERT INTO `marc_subfield_structure` VALUES ('260', 'g', 'Date of manufacture', 'Date of manufacture', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13782 INSERT INTO `marc_subfield_structure` VALUES ('260', 'k', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13783 INSERT INTO `marc_subfield_structure` VALUES ('260', 'l', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13784 INSERT INTO `marc_subfield_structure` VALUES ('261', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13785 INSERT INTO `marc_subfield_structure` VALUES ('261', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13786 INSERT INTO `marc_subfield_structure` VALUES ('261', 'a', 'Producing company', 'Producing company', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13787 INSERT INTO `marc_subfield_structure` VALUES ('261', 'b', 'Releasing company (primary distributor)', 'Releasing company (primary distributor)', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13788 INSERT INTO `marc_subfield_structure` VALUES ('261', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13789 INSERT INTO `marc_subfield_structure` VALUES ('261', 'd', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13790 INSERT INTO `marc_subfield_structure` VALUES ('261', 'e', 'Contractual producer', 'Contractual producer', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13791 INSERT INTO `marc_subfield_structure` VALUES ('261', 'f', 'Place of production, release, etc.', 'Place of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13792 INSERT INTO `marc_subfield_structure` VALUES ('262', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13793 INSERT INTO `marc_subfield_structure` VALUES ('262', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13794 INSERT INTO `marc_subfield_structure` VALUES ('262', 'a', 'Place of production, release, etc.', 'Place of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13795 INSERT INTO `marc_subfield_structure` VALUES ('262', 'b', 'Publisher or trade name', 'Publisher or trade name', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13796 INSERT INTO `marc_subfield_structure` VALUES ('262', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13797 INSERT INTO `marc_subfield_structure` VALUES ('262', 'k', 'Serial identification', 'Serial identification', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13798 INSERT INTO `marc_subfield_structure` VALUES ('262', 'l', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13799 INSERT INTO `marc_subfield_structure` VALUES ('263', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13800 INSERT INTO `marc_subfield_structure` VALUES ('263', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13801 INSERT INTO `marc_subfield_structure` VALUES ('263', 'a', 'Projected publication date', 'Projected publication date', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13802 INSERT INTO `marc_subfield_structure` VALUES ('265', '6', 'Linkage [OBSOLETE]', 'Linkage [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13803 INSERT INTO `marc_subfield_structure` VALUES ('265', 'a', 'Source for acquisition/subscription address [OBSOLETE]', 'Source for acquisition/subscription address [OBSOLETE]', 1, 0, '', 2, '', '', '', NULL, -6, 'SR', '', '');
13804 INSERT INTO `marc_subfield_structure` VALUES ('270', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
13805 INSERT INTO `marc_subfield_structure` VALUES ('270', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
13806 INSERT INTO `marc_subfield_structure` VALUES ('270', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
13807 INSERT INTO `marc_subfield_structure` VALUES ('270', 'a', 'Address', 'Address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SR', '', '');
13808 INSERT INTO `marc_subfield_structure` VALUES ('270', 'b', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SR', '', '');
13809 INSERT INTO `marc_subfield_structure` VALUES ('270', 'c', 'State or province', 'State or province', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
13810 INSERT INTO `marc_subfield_structure` VALUES ('270', 'd', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SR', '', '');
13811 INSERT INTO `marc_subfield_structure` VALUES ('270', 'e', 'Postal code', 'Postal code', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SR', '', '');
13812 INSERT INTO `marc_subfield_structure` VALUES ('270', 'f', 'Terms preceding attention name', 'Terms preceding attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SR', '', '');
13813 INSERT INTO `marc_subfield_structure` VALUES ('270', 'g', 'Attention name', 'Attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SR', '', '');
13814 INSERT INTO `marc_subfield_structure` VALUES ('270', 'h', 'Attention position', 'Attention position', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SR', '', '');
13815 INSERT INTO `marc_subfield_structure` VALUES ('270', 'i', 'Type of address', 'Type of address', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SR', '', '');
13816 INSERT INTO `marc_subfield_structure` VALUES ('270', 'j', 'Specialized telephone number', 'Specialized telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SR', '', '');
13817 INSERT INTO `marc_subfield_structure` VALUES ('270', 'k', 'Telephone number', 'Telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SR', '', '');
13818 INSERT INTO `marc_subfield_structure` VALUES ('270', 'l', 'Fax number', 'Fax number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SR', '', '');
13819 INSERT INTO `marc_subfield_structure` VALUES ('270', 'm', 'Electronic mail address', 'Electronic mail address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SR', '', '');
13820 INSERT INTO `marc_subfield_structure` VALUES ('270', 'n', 'TDD or TTY number', 'TDD or TTY number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SR', '', '');
13821 INSERT INTO `marc_subfield_structure` VALUES ('270', 'p', 'Contact person', 'Contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SR', '', '');
13822 INSERT INTO `marc_subfield_structure` VALUES ('270', 'q', 'Title of contact person', 'Title of contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SR', '', '');
13823 INSERT INTO `marc_subfield_structure` VALUES ('270', 'r', 'Hours', 'Hours', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SR', '', '');
13824 INSERT INTO `marc_subfield_structure` VALUES ('270', 'z', 'Public note', 'Public note', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SR', '', '');
13825 INSERT INTO `marc_subfield_structure` VALUES ('300', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13826 INSERT INTO `marc_subfield_structure` VALUES ('300', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13827 INSERT INTO `marc_subfield_structure` VALUES ('300', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13828 INSERT INTO `marc_subfield_structure` VALUES ('300', 'a', 'Extent (number of discs/tapes followed by format)', 'Extent', 1, 1, 'biblioitems.pages', 3, '', '', '', NULL, 0, 'SR', '', '');
13829 INSERT INTO `marc_subfield_structure` VALUES ('300', 'b', 'Other physical details', 'Other physical details', 0, 0, 'biblioitems.illus', 3, '', '', '', 0, 0, 'SR', '', '');
13830 INSERT INTO `marc_subfield_structure` VALUES ('300', 'c', 'Dimensions', 'Dimensions', 1, 0, 'biblioitems.size', 3, '', '', '', NULL, 0, 'SR', '', '');
13831 INSERT INTO `marc_subfield_structure` VALUES ('300', 'd', 'Accompanying material [OBSOLETE, CAN/MARC]', 'Accompanying material [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13832 INSERT INTO `marc_subfield_structure` VALUES ('300', 'e', 'Accompanying material', 'Accompanying material', 0, 0, '', 3, '', '', '', NULL, 0, 'SR', '', '');
13833 INSERT INTO `marc_subfield_structure` VALUES ('300', 'f', 'Type of unit', 'Type of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'SR', '', '');
13834 INSERT INTO `marc_subfield_structure` VALUES ('300', 'g', 'Size of unit', 'Size of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'SR', '', '');
13835 INSERT INTO `marc_subfield_structure` VALUES ('300', 'k', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13836 INSERT INTO `marc_subfield_structure` VALUES ('300', 'm', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13837 INSERT INTO `marc_subfield_structure` VALUES ('300', 'n', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13838 INSERT INTO `marc_subfield_structure` VALUES ('301', 'a', 'Extent of item', 'Extent of item', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13839 INSERT INTO `marc_subfield_structure` VALUES ('301', 'b', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13840 INSERT INTO `marc_subfield_structure` VALUES ('301', 'c', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', NULL, NULL, -6, 'SR', '', '');
13841 INSERT INTO `marc_subfield_structure` VALUES ('301', 'd', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13842 INSERT INTO `marc_subfield_structure` VALUES ('301', 'e', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13843 INSERT INTO `marc_subfield_structure` VALUES ('301', 'f', 'Speed', 'Speed', 0, 0, '', 3, '', '', NULL, NULL, -6, 'SR', '', '');
13844 INSERT INTO `marc_subfield_structure` VALUES ('302', 'a', 'Page count', 'Page count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'SR', '', '');
13845 INSERT INTO `marc_subfield_structure` VALUES ('303', 'a', 'Unit count', 'Unit count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'SR', '', '');
13846 INSERT INTO `marc_subfield_structure` VALUES ('304', 'a', 'Linear footage', 'Linear footage', 0, 0, '', 3, '', '', NULL, NULL, -6, 'SR', '', '');
13847 INSERT INTO `marc_subfield_structure` VALUES ('305', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13848 INSERT INTO `marc_subfield_structure` VALUES ('305', 'a', 'Extent', 'Extent', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13849 INSERT INTO `marc_subfield_structure` VALUES ('305', 'b', 'Other physical details', 'Other physical details', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13850 INSERT INTO `marc_subfield_structure` VALUES ('305', 'c', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', NULL, NULL, -6, 'SR', '', '');
13851 INSERT INTO `marc_subfield_structure` VALUES ('305', 'd', 'Microgroove or standard', 'Microgroove or standard', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13852 INSERT INTO `marc_subfield_structure` VALUES ('305', 'e', 'Stereophonic, monaural', 'Stereophonic, monaural', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13853 INSERT INTO `marc_subfield_structure` VALUES ('305', 'f', 'Number of tracks', 'Number of tracks', 0, 0, '', 3, '', '', NULL, NULL, -6, 'SR', '', '');
13854 INSERT INTO `marc_subfield_structure` VALUES ('305', 'm', 'Serial identification', 'Serial identification', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13855 INSERT INTO `marc_subfield_structure` VALUES ('305', 'n', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 3, '', '', NULL, NULL, -6, 'SR', '', '');
13856 INSERT INTO `marc_subfield_structure` VALUES ('306', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13857 INSERT INTO `marc_subfield_structure` VALUES ('306', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13858 INSERT INTO `marc_subfield_structure` VALUES ('306', 'a', 'Playing time', 'Playing time', 0, 0, '', 3, '', '', '', NULL, 0, 'SR', '', '');
13859 INSERT INTO `marc_subfield_structure` VALUES ('307', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13860 INSERT INTO `marc_subfield_structure` VALUES ('307', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13861 INSERT INTO `marc_subfield_structure` VALUES ('307', 'a', 'Hours', 'Hours', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13862 INSERT INTO `marc_subfield_structure` VALUES ('307', 'b', 'Additional information', 'Additional information', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13863 INSERT INTO `marc_subfield_structure` VALUES ('308', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13864 INSERT INTO `marc_subfield_structure` VALUES ('308', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13865 INSERT INTO `marc_subfield_structure` VALUES ('308', 'a', 'Number of reels', 'Number of reels', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13866 INSERT INTO `marc_subfield_structure` VALUES ('308', 'b', 'Footage', 'Footage', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13867 INSERT INTO `marc_subfield_structure` VALUES ('308', 'c', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13868 INSERT INTO `marc_subfield_structure` VALUES ('308', 'd', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13869 INSERT INTO `marc_subfield_structure` VALUES ('308', 'e', 'Width', 'Width', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13870 INSERT INTO `marc_subfield_structure` VALUES ('308', 'f', 'Presentation format', 'Presentation format', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13871 INSERT INTO `marc_subfield_structure` VALUES ('310', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13872 INSERT INTO `marc_subfield_structure` VALUES ('310', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13873 INSERT INTO `marc_subfield_structure` VALUES ('310', 'a', 'Current publication frequency', 'Current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13874 INSERT INTO `marc_subfield_structure` VALUES ('310', 'b', 'Date of current publication frequency', 'Date of current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13875 INSERT INTO `marc_subfield_structure` VALUES ('315', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13876 INSERT INTO `marc_subfield_structure` VALUES ('315', 'a', 'Frequency', 'Frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13877 INSERT INTO `marc_subfield_structure` VALUES ('315', 'b', 'Dates of frequency', 'Dates of frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13878 INSERT INTO `marc_subfield_structure` VALUES ('321', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13879 INSERT INTO `marc_subfield_structure` VALUES ('321', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13880 INSERT INTO `marc_subfield_structure` VALUES ('321', 'a', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13881 INSERT INTO `marc_subfield_structure` VALUES ('321', 'b', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13882 INSERT INTO `marc_subfield_structure` VALUES ('340', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13883 INSERT INTO `marc_subfield_structure` VALUES ('340', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13884 INSERT INTO `marc_subfield_structure` VALUES ('340', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13885 INSERT INTO `marc_subfield_structure` VALUES ('340', 'a', 'Material base and configuration', 'Material base and configuration', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13886 INSERT INTO `marc_subfield_structure` VALUES ('340', 'b', 'Dimensions', 'Dimensions', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13887 INSERT INTO `marc_subfield_structure` VALUES ('340', 'c', 'Materials applied to surface', 'Materials applied to surface', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13888 INSERT INTO `marc_subfield_structure` VALUES ('340', 'd', 'Information recording technique', 'Information recording technique', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13889 INSERT INTO `marc_subfield_structure` VALUES ('340', 'e', 'Support', 'Support', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13890 INSERT INTO `marc_subfield_structure` VALUES ('340', 'f', 'Production rate/ratio', 'Production rate/ratio', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13891 INSERT INTO `marc_subfield_structure` VALUES ('340', 'h', 'Location within medium', 'Location within medium', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13892 INSERT INTO `marc_subfield_structure` VALUES ('340', 'i', 'Technical specifications of medium', 'Technical specifications of medium', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13893 INSERT INTO `marc_subfield_structure` VALUES ('342', '2', 'Reference method used', 'Reference method used', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13894 INSERT INTO `marc_subfield_structure` VALUES ('342', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13895 INSERT INTO `marc_subfield_structure` VALUES ('342', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13896 INSERT INTO `marc_subfield_structure` VALUES ('342', 'a', 'Name', 'Name', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13897 INSERT INTO `marc_subfield_structure` VALUES ('342', 'b', 'Coordinate or distance units', 'Coordinate or distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13898 INSERT INTO `marc_subfield_structure` VALUES ('342', 'c', 'Latitude resolution', 'Latitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13899 INSERT INTO `marc_subfield_structure` VALUES ('342', 'd', 'Longitude resolution', 'Longitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13900 INSERT INTO `marc_subfield_structure` VALUES ('342', 'e', 'Standard parallel or oblique line latitude', 'Standard parallel or oblique line latitude', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13901 INSERT INTO `marc_subfield_structure` VALUES ('342', 'f', 'Oblique line longitude', 'Oblique line longitude', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13902 INSERT INTO `marc_subfield_structure` VALUES ('342', 'g', 'Longitude of central meridian or projection center', 'Longitude of central meridian or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13903 INSERT INTO `marc_subfield_structure` VALUES ('342', 'h', 'Latitude of projection origin or projection center', 'Latitude of projection origin or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13904 INSERT INTO `marc_subfield_structure` VALUES ('342', 'i', 'False easting', 'False easting', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13905 INSERT INTO `marc_subfield_structure` VALUES ('342', 'j', 'False northing', 'False northing', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13906 INSERT INTO `marc_subfield_structure` VALUES ('342', 'k', 'Scale factor', 'Scale factor', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13907 INSERT INTO `marc_subfield_structure` VALUES ('342', 'l', 'Height of perspective point above surface', 'Height of perspective point above surface', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13908 INSERT INTO `marc_subfield_structure` VALUES ('342', 'm', 'Azimuthal angle', 'Azimuthal angle', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13909 INSERT INTO `marc_subfield_structure` VALUES ('342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole', 'Azimuth measure point longitude or straight vertical longitude from pole', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13910 INSERT INTO `marc_subfield_structure` VALUES ('342', 'o', 'Landsat number and path number', 'Landsat number and path number', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13911 INSERT INTO `marc_subfield_structure` VALUES ('342', 'p', 'Zone identifier', 'Zone identifier', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13912 INSERT INTO `marc_subfield_structure` VALUES ('342', 'q', 'Ellipsoid name', 'Ellipsoid name', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13913 INSERT INTO `marc_subfield_structure` VALUES ('342', 'r', 'Semi-major axis', 'Semi-major axis', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13914 INSERT INTO `marc_subfield_structure` VALUES ('342', 's', 'Denominator of flattening ratio', 'Denominator of flattening ratio', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13915 INSERT INTO `marc_subfield_structure` VALUES ('342', 't', 'Vertical resolution', 'Vertical resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13916 INSERT INTO `marc_subfield_structure` VALUES ('342', 'u', 'Vertical encoding method', 'Vertical encoding method', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13917 INSERT INTO `marc_subfield_structure` VALUES ('342', 'v', 'Local planar, local, or other projection or grid description', 'Local planar, local, or other projection or grid description', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13918 INSERT INTO `marc_subfield_structure` VALUES ('342', 'w', 'Local planar or local georeference information', 'Local planar or local georeference information', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13919 INSERT INTO `marc_subfield_structure` VALUES ('343', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13920 INSERT INTO `marc_subfield_structure` VALUES ('343', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13921 INSERT INTO `marc_subfield_structure` VALUES ('343', 'a', 'Planar coordinate encoding method', 'Planar coordinate encoding method', 1, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13922 INSERT INTO `marc_subfield_structure` VALUES ('343', 'b', 'Planar distance units', 'Planar distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13923 INSERT INTO `marc_subfield_structure` VALUES ('343', 'c', 'Abscissa resolution', 'Abscissa resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13924 INSERT INTO `marc_subfield_structure` VALUES ('343', 'd', 'Ordinate resolution', 'Ordinate resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13925 INSERT INTO `marc_subfield_structure` VALUES ('343', 'e', 'Distance resolution', 'Distance resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13926 INSERT INTO `marc_subfield_structure` VALUES ('343', 'f', 'Bearing resolution', 'Bearing resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13927 INSERT INTO `marc_subfield_structure` VALUES ('343', 'g', 'Bearing unit', 'Bearing unit', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13928 INSERT INTO `marc_subfield_structure` VALUES ('343', 'h', 'Bearing reference direction', 'Bearing reference direction', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13929 INSERT INTO `marc_subfield_structure` VALUES ('343', 'i', 'Bearing reference meridian', 'Bearing reference meridian', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
13930 INSERT INTO `marc_subfield_structure` VALUES ('350', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13931 INSERT INTO `marc_subfield_structure` VALUES ('350', 'a', 'Price', 'Price', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13932 INSERT INTO `marc_subfield_structure` VALUES ('350', 'b', 'Form of issue', 'Form of issue', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13933 INSERT INTO `marc_subfield_structure` VALUES ('351', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13934 INSERT INTO `marc_subfield_structure` VALUES ('351', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13935 INSERT INTO `marc_subfield_structure` VALUES ('351', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13936 INSERT INTO `marc_subfield_structure` VALUES ('351', 'a', 'Organization', 'Organization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13937 INSERT INTO `marc_subfield_structure` VALUES ('351', 'b', 'Arrangement', 'Arrangement', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13938 INSERT INTO `marc_subfield_structure` VALUES ('351', 'c', 'Hierarchical level', 'Hierarchical level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13939 INSERT INTO `marc_subfield_structure` VALUES ('352', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13940 INSERT INTO `marc_subfield_structure` VALUES ('352', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13941 INSERT INTO `marc_subfield_structure` VALUES ('352', 'a', 'Direct reference method', 'Direct reference method', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13942 INSERT INTO `marc_subfield_structure` VALUES ('352', 'b', 'Object type', 'Object type', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13943 INSERT INTO `marc_subfield_structure` VALUES ('352', 'c', 'Object count', 'Object count', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13944 INSERT INTO `marc_subfield_structure` VALUES ('352', 'd', 'Row count', 'Row count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13945 INSERT INTO `marc_subfield_structure` VALUES ('352', 'e', 'Column count', 'Column count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13946 INSERT INTO `marc_subfield_structure` VALUES ('352', 'f', 'Vertical count', 'Vertical count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13947 INSERT INTO `marc_subfield_structure` VALUES ('352', 'g', 'VPF topology level', 'VPF topology level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13948 INSERT INTO `marc_subfield_structure` VALUES ('352', 'i', 'Indirect reference description', 'Indirect reference description', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13949 INSERT INTO `marc_subfield_structure` VALUES ('355', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13950 INSERT INTO `marc_subfield_structure` VALUES ('355', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13951 INSERT INTO `marc_subfield_structure` VALUES ('355', 'a', 'Security classification', 'Security classification', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13952 INSERT INTO `marc_subfield_structure` VALUES ('355', 'b', 'Handling instructions', 'Handling instructions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13953 INSERT INTO `marc_subfield_structure` VALUES ('355', 'c', 'External dissemination information', 'External dissemination information', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13954 INSERT INTO `marc_subfield_structure` VALUES ('355', 'd', 'Downgrading or declassification event', 'Downgrading or declassification event', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13955 INSERT INTO `marc_subfield_structure` VALUES ('355', 'e', 'Classification system', 'Classification system', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13956 INSERT INTO `marc_subfield_structure` VALUES ('355', 'f', 'Country of origin code', 'Country of origin code', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13957 INSERT INTO `marc_subfield_structure` VALUES ('355', 'g', 'Downgrading date', 'Downgrading date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13958 INSERT INTO `marc_subfield_structure` VALUES ('355', 'h', 'Declassification date', 'Declassification date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13959 INSERT INTO `marc_subfield_structure` VALUES ('355', 'j', 'Authorization', 'Authorization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13960 INSERT INTO `marc_subfield_structure` VALUES ('357', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13961 INSERT INTO `marc_subfield_structure` VALUES ('357', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13962 INSERT INTO `marc_subfield_structure` VALUES ('357', 'a', 'Originator control term', 'Originator control term', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13963 INSERT INTO `marc_subfield_structure` VALUES ('357', 'b', 'Originating agency', 'Originating agency', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13964 INSERT INTO `marc_subfield_structure` VALUES ('357', 'c', 'Authorized recipients of material', 'Authorized recipients of material', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13965 INSERT INTO `marc_subfield_structure` VALUES ('357', 'g', 'Other restrictions', 'Other restrictions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13966 INSERT INTO `marc_subfield_structure` VALUES ('359', 'a', 'Rental price', 'Rental price', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13967 INSERT INTO `marc_subfield_structure` VALUES ('362', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13968 INSERT INTO `marc_subfield_structure` VALUES ('362', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13969 INSERT INTO `marc_subfield_structure` VALUES ('362', 'a', 'Dates of publication and/or sequential designation', 'Dates of publication and/or sequential designation', 0, 0, 'biblioitems.volumedesc', 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13970 INSERT INTO `marc_subfield_structure` VALUES ('362', 'z', 'Source of information', 'Source of information', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SR', '', '');
13971 INSERT INTO `marc_subfield_structure` VALUES ('365', '2', 'Source of price type code', 'Source of price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13972 INSERT INTO `marc_subfield_structure` VALUES ('365', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
13973 INSERT INTO `marc_subfield_structure` VALUES ('365', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
13974 INSERT INTO `marc_subfield_structure` VALUES ('365', 'a', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13975 INSERT INTO `marc_subfield_structure` VALUES ('365', 'b', 'Price amount', 'Price amount', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13976 INSERT INTO `marc_subfield_structure` VALUES ('365', 'c', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13977 INSERT INTO `marc_subfield_structure` VALUES ('365', 'd', 'Unit of pricing', 'Unit of pricing', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13978 INSERT INTO `marc_subfield_structure` VALUES ('365', 'e', 'Price note', 'Price note', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13979 INSERT INTO `marc_subfield_structure` VALUES ('365', 'f', 'Price effective from', 'Price effective from', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13980 INSERT INTO `marc_subfield_structure` VALUES ('365', 'g', 'Price effective until', 'Price effective until', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13981 INSERT INTO `marc_subfield_structure` VALUES ('365', 'h', 'Tax rate 1', 'Tax rate 1', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13982 INSERT INTO `marc_subfield_structure` VALUES ('365', 'i', 'Tax rate 2', 'Tax rate 2', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13983 INSERT INTO `marc_subfield_structure` VALUES ('365', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13984 INSERT INTO `marc_subfield_structure` VALUES ('365', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13985 INSERT INTO `marc_subfield_structure` VALUES ('365', 'm', 'Identification of pricing entity', 'Identification of pricing entity', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13986 INSERT INTO `marc_subfield_structure` VALUES ('366', '2', 'Source of availability status code', 'Source of availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13987 INSERT INTO `marc_subfield_structure` VALUES ('366', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
13988 INSERT INTO `marc_subfield_structure` VALUES ('366', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
13989 INSERT INTO `marc_subfield_structure` VALUES ('366', 'a', 'Publishers\' compressed title identification', 'Publishers\' compressed title identification', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13990 INSERT INTO `marc_subfield_structure` VALUES ('366', 'b', 'Detailed date of publication', 'Detailed date of publication', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13991 INSERT INTO `marc_subfield_structure` VALUES ('366', 'c', 'Availability status code', 'Availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13992 INSERT INTO `marc_subfield_structure` VALUES ('366', 'd', 'Expected next availability date', 'Expected next availability date', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13993 INSERT INTO `marc_subfield_structure` VALUES ('366', 'e', 'Note', 'Note', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13994 INSERT INTO `marc_subfield_structure` VALUES ('366', 'f', 'Publishers\' discount category', 'Publishers\' discount category', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13995 INSERT INTO `marc_subfield_structure` VALUES ('366', 'g', 'Date made out of print', 'Date made out of print', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13996 INSERT INTO `marc_subfield_structure` VALUES ('366', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13997 INSERT INTO `marc_subfield_structure` VALUES ('366', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13998 INSERT INTO `marc_subfield_structure` VALUES ('366', 'm', 'Identification of agency', 'Identification of agency', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
13999 INSERT INTO `marc_subfield_structure` VALUES ('400', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', 0, -6, 'SR', '', '');
14000 INSERT INTO `marc_subfield_structure` VALUES ('400', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', 0, -6, 'SR', '', '');
14001 INSERT INTO `marc_subfield_structure` VALUES ('400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', 0, -6, 'SR', '', '');
14002 INSERT INTO `marc_subfield_structure` VALUES ('400', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
14003 INSERT INTO `marc_subfield_structure` VALUES ('400', 'a', 'Personal name', 'Personal name', 0, 0, '', 4, '', '', '', 0, -6, 'SR', '', '');
14004 INSERT INTO `marc_subfield_structure` VALUES ('400', 'b', 'Numeration', 'Numeration', 0, 0, '', 4, '', '', '', 0, -6, 'SR', '', '');
14005 INSERT INTO `marc_subfield_structure` VALUES ('400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 4, '', '', '', 0, -6, 'SR', '', '');
14006 INSERT INTO `marc_subfield_structure` VALUES ('400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 4, '', '', '', 0, -6, 'SR', '', '');
14007 INSERT INTO `marc_subfield_structure` VALUES ('400', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', 0, -6, 'SR', '', '');
14008 INSERT INTO `marc_subfield_structure` VALUES ('400', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', 0, -6, 'SR', '', '');
14009 INSERT INTO `marc_subfield_structure` VALUES ('400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', 0, -6, 'SR', '', '');
14010 INSERT INTO `marc_subfield_structure` VALUES ('400', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', 0, -6, 'SR', '', '');
14011 INSERT INTO `marc_subfield_structure` VALUES ('400', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', 0, -6, 'SR', '', '');
14012 INSERT INTO `marc_subfield_structure` VALUES ('400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'SR', '', '');
14013 INSERT INTO `marc_subfield_structure` VALUES ('400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'SR', '', '');
14014 INSERT INTO `marc_subfield_structure` VALUES ('400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 4, '', '', '', 0, -6, 'SR', '', '');
14015 INSERT INTO `marc_subfield_structure` VALUES ('400', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', 0, -6, 'SR', '', '');
14016 INSERT INTO `marc_subfield_structure` VALUES ('400', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', 0, -6, 'SR', '', '');
14017 INSERT INTO `marc_subfield_structure` VALUES ('400', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14018 INSERT INTO `marc_subfield_structure` VALUES ('400', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14019 INSERT INTO `marc_subfield_structure` VALUES ('410', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14020 INSERT INTO `marc_subfield_structure` VALUES ('410', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14021 INSERT INTO `marc_subfield_structure` VALUES ('410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14022 INSERT INTO `marc_subfield_structure` VALUES ('410', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'SR', '', '');
14023 INSERT INTO `marc_subfield_structure` VALUES ('410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14024 INSERT INTO `marc_subfield_structure` VALUES ('410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14025 INSERT INTO `marc_subfield_structure` VALUES ('410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14026 INSERT INTO `marc_subfield_structure` VALUES ('410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14027 INSERT INTO `marc_subfield_structure` VALUES ('410', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14028 INSERT INTO `marc_subfield_structure` VALUES ('410', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14029 INSERT INTO `marc_subfield_structure` VALUES ('410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14030 INSERT INTO `marc_subfield_structure` VALUES ('410', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14031 INSERT INTO `marc_subfield_structure` VALUES ('410', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14032 INSERT INTO `marc_subfield_structure` VALUES ('410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14033 INSERT INTO `marc_subfield_structure` VALUES ('410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14034 INSERT INTO `marc_subfield_structure` VALUES ('410', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14035 INSERT INTO `marc_subfield_structure` VALUES ('410', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14036 INSERT INTO `marc_subfield_structure` VALUES ('410', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14037 INSERT INTO `marc_subfield_structure` VALUES ('410', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14038 INSERT INTO `marc_subfield_structure` VALUES ('411', '4', 'Relator code', 'Relator code', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SR', '', '');
14039 INSERT INTO `marc_subfield_structure` VALUES ('411', '6', 'Linkage', 'Linkage', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SR', '', '');
14040 INSERT INTO `marc_subfield_structure` VALUES ('411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SR', '', '');
14041 INSERT INTO `marc_subfield_structure` VALUES ('411', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
14042 INSERT INTO `marc_subfield_structure` VALUES ('411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SR', '', '');
14043 INSERT INTO `marc_subfield_structure` VALUES ('411', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SR', '', '');
14044 INSERT INTO `marc_subfield_structure` VALUES ('411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SR', '', '');
14045 INSERT INTO `marc_subfield_structure` VALUES ('411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SR', '', '');
14046 INSERT INTO `marc_subfield_structure` VALUES ('411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SR', '', '');
14047 INSERT INTO `marc_subfield_structure` VALUES ('411', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SR', '', '');
14048 INSERT INTO `marc_subfield_structure` VALUES ('411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SR', '', '');
14049 INSERT INTO `marc_subfield_structure` VALUES ('411', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SR', '', '');
14050 INSERT INTO `marc_subfield_structure` VALUES ('411', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SR', '', '');
14051 INSERT INTO `marc_subfield_structure` VALUES ('411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SR', '', '');
14052 INSERT INTO `marc_subfield_structure` VALUES ('411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SR', '', '');
14053 INSERT INTO `marc_subfield_structure` VALUES ('411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SR', '', '');
14054 INSERT INTO `marc_subfield_structure` VALUES ('411', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SR', '', '');
14055 INSERT INTO `marc_subfield_structure` VALUES ('411', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SR', '', '');
14056 INSERT INTO `marc_subfield_structure` VALUES ('411', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14057 INSERT INTO `marc_subfield_structure` VALUES ('411', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14058 INSERT INTO `marc_subfield_structure` VALUES ('440', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14059 INSERT INTO `marc_subfield_structure` VALUES ('440', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14060 INSERT INTO `marc_subfield_structure` VALUES ('440', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
14061 INSERT INTO `marc_subfield_structure` VALUES ('440', 'a', 'Title', 'Title', 0, 0, 'biblio.seriestitle', 4, '', '', '', NULL, 0, 'SR', '', '');
14062 INSERT INTO `marc_subfield_structure` VALUES ('440', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 'biblioitems.number', 4, '', '', '', NULL, 0, 'SR', '', '');
14063 INSERT INTO `marc_subfield_structure` VALUES ('440', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, 0, 'SR', '', '');
14064 INSERT INTO `marc_subfield_structure` VALUES ('440', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, 'biblioitems.volume', 4, '', '', '', NULL, 0, 'SR', '', '');
14065 INSERT INTO `marc_subfield_structure` VALUES ('440', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, 0, 'SR', '', '');
14066 INSERT INTO `marc_subfield_structure` VALUES ('490', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14067 INSERT INTO `marc_subfield_structure` VALUES ('490', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', NULL, NULL, -6, 'SR', '', '');
14068 INSERT INTO `marc_subfield_structure` VALUES ('490', 'a', 'Series statement', 'Series statement', 1, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14069 INSERT INTO `marc_subfield_structure` VALUES ('490', 'l', 'Library of Congress call number', 'Library of Congress call number', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14070 INSERT INTO `marc_subfield_structure` VALUES ('490', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 1, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14071 INSERT INTO `marc_subfield_structure` VALUES ('490', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'SR', '', '');
14072 INSERT INTO `marc_subfield_structure` VALUES ('500', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14073 INSERT INTO `marc_subfield_structure` VALUES ('500', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14074 INSERT INTO `marc_subfield_structure` VALUES ('500', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14075 INSERT INTO `marc_subfield_structure` VALUES ('500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14076 INSERT INTO `marc_subfield_structure` VALUES ('500', 'a', 'General note', 'General note', 0, 0, 'biblio.notes', 5, '', '', '', NULL, -1, 'SR', '', '');
14077 INSERT INTO `marc_subfield_structure` VALUES ('500', 'l', 'Library of Congress call number (SE) [OBSOLETE]', 'Library of Congress call number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14078 INSERT INTO `marc_subfield_structure` VALUES ('500', 'n', 'n (RLIN) [OBSOLETE]', 'n (RLIN) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14079 INSERT INTO `marc_subfield_structure` VALUES ('500', 'x', 'International Standard Serial Number (SE) [OBSOLETE]', 'International Standard Serial Number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14080 INSERT INTO `marc_subfield_structure` VALUES ('500', 'z', 'Source of note information (AM SE) [OBSOLETE]', 'Source of note information (AM SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14081 INSERT INTO `marc_subfield_structure` VALUES ('501', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14082 INSERT INTO `marc_subfield_structure` VALUES ('501', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14083 INSERT INTO `marc_subfield_structure` VALUES ('501', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14084 INSERT INTO `marc_subfield_structure` VALUES ('501', 'a', 'With note', 'With note', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14085 INSERT INTO `marc_subfield_structure` VALUES ('502', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14086 INSERT INTO `marc_subfield_structure` VALUES ('502', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14087 INSERT INTO `marc_subfield_structure` VALUES ('502', 'a', 'Dissertation note', 'Dissertation note', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14088 INSERT INTO `marc_subfield_structure` VALUES ('503', '8', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14089 INSERT INTO `marc_subfield_structure` VALUES ('503', 'a', 'Bibliographic history note', 'Bibliographic history note', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14090 INSERT INTO `marc_subfield_structure` VALUES ('504', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14091 INSERT INTO `marc_subfield_structure` VALUES ('504', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14092 INSERT INTO `marc_subfield_structure` VALUES ('504', 'a', 'Bibliography, etc', 'Bibliography, etc', 0, 0, '', 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14093 INSERT INTO `marc_subfield_structure` VALUES ('504', 'b', 'Number of references', 'Number of references', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14094 INSERT INTO `marc_subfield_structure` VALUES ('505', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14095 INSERT INTO `marc_subfield_structure` VALUES ('505', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14096 INSERT INTO `marc_subfield_structure` VALUES ('505', 'a', 'Formatted contents note', 'Formatted contents note', 0, 0, '', 5, '', '', '', NULL, -1, 'SR', '', '');
14097 INSERT INTO `marc_subfield_structure` VALUES ('505', 'g', 'Miscellaneous information', 'Miscellaneous information', 1, 0, '', 5, '', '', '', NULL, -1, 'SR', '', '');
14098 INSERT INTO `marc_subfield_structure` VALUES ('505', 'r', 'Statement of responsibility', 'Statement of responsibility', 1, 0, '', 5, '', '', '', NULL, -1, 'SR', '', '');
14099 INSERT INTO `marc_subfield_structure` VALUES ('505', 't', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -1, 'SR', '', '');
14100 INSERT INTO `marc_subfield_structure` VALUES ('505', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'SR', '', '');
14101 INSERT INTO `marc_subfield_structure` VALUES ('506', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14102 INSERT INTO `marc_subfield_structure` VALUES ('506', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14103 INSERT INTO `marc_subfield_structure` VALUES ('506', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14104 INSERT INTO `marc_subfield_structure` VALUES ('506', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14105 INSERT INTO `marc_subfield_structure` VALUES ('506', 'a', 'Terms governing access', 'Terms governing access', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14106 INSERT INTO `marc_subfield_structure` VALUES ('506', 'b', 'Jurisdiction', 'Jurisdiction', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14107 INSERT INTO `marc_subfield_structure` VALUES ('506', 'c', 'Physical access provisions', 'Physical access provisions', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14108 INSERT INTO `marc_subfield_structure` VALUES ('506', 'd', 'Authorized users', 'Authorized users', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14109 INSERT INTO `marc_subfield_structure` VALUES ('506', 'e', 'Authorization', 'Authorization', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14110 INSERT INTO `marc_subfield_structure` VALUES ('506', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'SR', '', '');
14111 INSERT INTO `marc_subfield_structure` VALUES ('507', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14112 INSERT INTO `marc_subfield_structure` VALUES ('507', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14113 INSERT INTO `marc_subfield_structure` VALUES ('507', 'a', 'Representative fraction of scale note', 'Representative fraction of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14114 INSERT INTO `marc_subfield_structure` VALUES ('507', 'b', 'Remainder of scale note', 'Remainder of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14115 INSERT INTO `marc_subfield_structure` VALUES ('508', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14116 INSERT INTO `marc_subfield_structure` VALUES ('508', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14117 INSERT INTO `marc_subfield_structure` VALUES ('508', 'a', 'Creation/production credits note', 'Creation/production credits note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14118 INSERT INTO `marc_subfield_structure` VALUES ('509', 'a', 'Informal Notes', 'Informal Notes', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14119 INSERT INTO `marc_subfield_structure` VALUES ('510', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14120 INSERT INTO `marc_subfield_structure` VALUES ('510', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14121 INSERT INTO `marc_subfield_structure` VALUES ('510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14122 INSERT INTO `marc_subfield_structure` VALUES ('510', 'a', 'Name of source', 'Name of source', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14123 INSERT INTO `marc_subfield_structure` VALUES ('510', 'b', 'Coverage of source', 'Coverage of source', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14124 INSERT INTO `marc_subfield_structure` VALUES ('510', 'c', 'Location within source', 'Location within source', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14125 INSERT INTO `marc_subfield_structure` VALUES ('510', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14126 INSERT INTO `marc_subfield_structure` VALUES ('511', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14127 INSERT INTO `marc_subfield_structure` VALUES ('511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14128 INSERT INTO `marc_subfield_structure` VALUES ('511', 'a', 'Participant or performer note', 'Participant or performer note', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14129 INSERT INTO `marc_subfield_structure` VALUES ('512', '6', 'Linkage', 'Linkage', 0, 0, '', -1, '', '', '', NULL, -6, 'SR', '', '');
14130 INSERT INTO `marc_subfield_structure` VALUES ('512', 'a', 'Earlier or later volumes separately cataloged note', 'Earlier or later volumes separately cataloged note', 0, 0, '', -1, '', '', '', NULL, -6, 'SR', '', '');
14131 INSERT INTO `marc_subfield_structure` VALUES ('513', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14132 INSERT INTO `marc_subfield_structure` VALUES ('513', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14133 INSERT INTO `marc_subfield_structure` VALUES ('513', 'a', 'Type of report', 'Type of report', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14134 INSERT INTO `marc_subfield_structure` VALUES ('513', 'b', 'Period covered', 'Period covered', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14135 INSERT INTO `marc_subfield_structure` VALUES ('514', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14136 INSERT INTO `marc_subfield_structure` VALUES ('514', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14137 INSERT INTO `marc_subfield_structure` VALUES ('514', 'a', 'Attribute accuracy report', 'Attribute accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14138 INSERT INTO `marc_subfield_structure` VALUES ('514', 'b', 'Attribute accuracy value', 'Attribute accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14139 INSERT INTO `marc_subfield_structure` VALUES ('514', 'c', 'Attribute accuracy explanation', 'Attribute accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14140 INSERT INTO `marc_subfield_structure` VALUES ('514', 'd', 'Logical consistency report', 'Logical consistency report', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14141 INSERT INTO `marc_subfield_structure` VALUES ('514', 'e', 'Completeness report', 'Completeness report', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14142 INSERT INTO `marc_subfield_structure` VALUES ('514', 'f', 'Horizontal position accuracy report', 'Horizontal position accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14143 INSERT INTO `marc_subfield_structure` VALUES ('514', 'g', 'Horizontal position accuracy value', 'Horizontal position accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14144 INSERT INTO `marc_subfield_structure` VALUES ('514', 'h', 'Horizontal position accuracy explanation', 'Horizontal position accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14145 INSERT INTO `marc_subfield_structure` VALUES ('514', 'i', 'Vertical positional accuracy report', 'Vertical positional accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14146 INSERT INTO `marc_subfield_structure` VALUES ('514', 'j', 'Vertical positional accuracy value', 'Vertical positional accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14147 INSERT INTO `marc_subfield_structure` VALUES ('514', 'k', 'Vertical positional accuracy explanation', 'Vertical positional accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14148 INSERT INTO `marc_subfield_structure` VALUES ('514', 'm', 'Cloud cover', 'Cloud cover', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14149 INSERT INTO `marc_subfield_structure` VALUES ('514', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'SR', '', '');
14150 INSERT INTO `marc_subfield_structure` VALUES ('514', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14151 INSERT INTO `marc_subfield_structure` VALUES ('515', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14152 INSERT INTO `marc_subfield_structure` VALUES ('515', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14153 INSERT INTO `marc_subfield_structure` VALUES ('515', 'a', 'Numbering peculiarities note', 'Numbering peculiarities note', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14154 INSERT INTO `marc_subfield_structure` VALUES ('515', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, '', -1, '', '', '', NULL, -6, 'SR', '', '');
14155 INSERT INTO `marc_subfield_structure` VALUES ('516', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14156 INSERT INTO `marc_subfield_structure` VALUES ('516', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14157 INSERT INTO `marc_subfield_structure` VALUES ('516', 'a', 'Type of computer file or data note', 'Type of computer file or data note', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14158 INSERT INTO `marc_subfield_structure` VALUES ('517', 'a', 'Different formats', 'Different formats', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14159 INSERT INTO `marc_subfield_structure` VALUES ('517', 'b', 'Content descriptors', 'Content descriptors', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14160 INSERT INTO `marc_subfield_structure` VALUES ('517', 'c', 'Additional animation techniques', 'Additional animation techniques', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14161 INSERT INTO `marc_subfield_structure` VALUES ('518', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14162 INSERT INTO `marc_subfield_structure` VALUES ('518', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14163 INSERT INTO `marc_subfield_structure` VALUES ('518', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14164 INSERT INTO `marc_subfield_structure` VALUES ('518', 'a', 'Date/time and place of an event note', 'Date/time and place of an event note', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14165 INSERT INTO `marc_subfield_structure` VALUES ('520', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14166 INSERT INTO `marc_subfield_structure` VALUES ('520', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14167 INSERT INTO `marc_subfield_structure` VALUES ('520', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14168 INSERT INTO `marc_subfield_structure` VALUES ('520', 'a', 'Summary, etc', 'Summary, etc', 0, 0, 'biblio.abstract', 5, '', '', '', NULL, -1, 'SR', '', '');
14169 INSERT INTO `marc_subfield_structure` VALUES ('520', 'b', 'Expansion of summary note', 'Expansion of summary note', 0, 0, '', 5, '', '', '', NULL, -1, 'SR', '', '');
14170 INSERT INTO `marc_subfield_structure` VALUES ('520', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'SR', '', '');
14171 INSERT INTO `marc_subfield_structure` VALUES ('520', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14172 INSERT INTO `marc_subfield_structure` VALUES ('521', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14173 INSERT INTO `marc_subfield_structure` VALUES ('521', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14174 INSERT INTO `marc_subfield_structure` VALUES ('521', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14175 INSERT INTO `marc_subfield_structure` VALUES ('521', 'a', 'Target audience note', 'Target audience note', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'SR', '', '');
14176 INSERT INTO `marc_subfield_structure` VALUES ('521', 'b', 'Source', 'Source', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'SR', '', '');
14177 INSERT INTO `marc_subfield_structure` VALUES ('522', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14178 INSERT INTO `marc_subfield_structure` VALUES ('522', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14179 INSERT INTO `marc_subfield_structure` VALUES ('522', 'a', 'Geographic coverage note', 'Geographic coverage note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'SR', '', '');
14180 INSERT INTO `marc_subfield_structure` VALUES ('523', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14181 INSERT INTO `marc_subfield_structure` VALUES ('523', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14182 INSERT INTO `marc_subfield_structure` VALUES ('523', 'a', 'Time period of content note', 'Time period of content note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14183 INSERT INTO `marc_subfield_structure` VALUES ('524', '2', 'Source of schema used', 'Source of schema used', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14184 INSERT INTO `marc_subfield_structure` VALUES ('524', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14185 INSERT INTO `marc_subfield_structure` VALUES ('524', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14186 INSERT INTO `marc_subfield_structure` VALUES ('524', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14187 INSERT INTO `marc_subfield_structure` VALUES ('524', 'a', 'Preferred citation of described materials note', 'Preferred citation of described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14188 INSERT INTO `marc_subfield_structure` VALUES ('525', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14189 INSERT INTO `marc_subfield_structure` VALUES ('525', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14190 INSERT INTO `marc_subfield_structure` VALUES ('525', 'a', 'Supplement note', 'Supplement note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14191 INSERT INTO `marc_subfield_structure` VALUES ('525', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14192 INSERT INTO `marc_subfield_structure` VALUES ('526', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14193 INSERT INTO `marc_subfield_structure` VALUES ('526', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14194 INSERT INTO `marc_subfield_structure` VALUES ('526', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14195 INSERT INTO `marc_subfield_structure` VALUES ('526', 'a', 'Program name', 'Program name', 0, 0, '', 5, '', '', '', NULL, -1, 'SR', '', '');
14196 INSERT INTO `marc_subfield_structure` VALUES ('526', 'b', 'Interest level', 'Interest level', 0, 0, '', 5, '', '', '', NULL, -1, 'SR', '', '');
14197 INSERT INTO `marc_subfield_structure` VALUES ('526', 'c', 'Reading level', 'Reading level', 0, 0, '', 5, '', '', '', NULL, -1, 'SR', '', '');
14198 INSERT INTO `marc_subfield_structure` VALUES ('526', 'd', 'Title point value', 'Title point value', 0, 0, '', 5, '', '', '', NULL, -1, 'SR', '', '');
14199 INSERT INTO `marc_subfield_structure` VALUES ('526', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14200 INSERT INTO `marc_subfield_structure` VALUES ('526', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 5, '', '', '', NULL, 6, 'SR', '', '');
14201 INSERT INTO `marc_subfield_structure` VALUES ('526', 'z', 'Public note', 'Public note', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14202 INSERT INTO `marc_subfield_structure` VALUES ('527', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14203 INSERT INTO `marc_subfield_structure` VALUES ('527', 'a', 'Censorship note', 'Censorship note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14204 INSERT INTO `marc_subfield_structure` VALUES ('530', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14205 INSERT INTO `marc_subfield_structure` VALUES ('530', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14206 INSERT INTO `marc_subfield_structure` VALUES ('530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14207 INSERT INTO `marc_subfield_structure` VALUES ('530', 'a', 'Additional physical form available note', 'Additional physical form available note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14208 INSERT INTO `marc_subfield_structure` VALUES ('530', 'b', 'Availability source', 'Availability source', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14209 INSERT INTO `marc_subfield_structure` VALUES ('530', 'c', 'Availability conditions', 'Availability conditions', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14210 INSERT INTO `marc_subfield_structure` VALUES ('530', 'd', 'Order number', 'Order number', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14211 INSERT INTO `marc_subfield_structure` VALUES ('530', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'SR', '', '');
14212 INSERT INTO `marc_subfield_structure` VALUES ('530', 'z', 'Source of note information (AM CF VM SE) [OBSOLETE]', 'Source of note information (AM CF VM SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14213 INSERT INTO `marc_subfield_structure` VALUES ('533', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14214 INSERT INTO `marc_subfield_structure` VALUES ('533', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14215 INSERT INTO `marc_subfield_structure` VALUES ('533', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14216 INSERT INTO `marc_subfield_structure` VALUES ('533', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14217 INSERT INTO `marc_subfield_structure` VALUES ('533', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14218 INSERT INTO `marc_subfield_structure` VALUES ('533', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14219 INSERT INTO `marc_subfield_structure` VALUES ('533', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14220 INSERT INTO `marc_subfield_structure` VALUES ('533', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14221 INSERT INTO `marc_subfield_structure` VALUES ('533', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14222 INSERT INTO `marc_subfield_structure` VALUES ('533', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14223 INSERT INTO `marc_subfield_structure` VALUES ('533', 'm', 'Dates and/or sequential designation of issues reproduced', 'Dates and/or sequential designation of issues reproduced', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14224 INSERT INTO `marc_subfield_structure` VALUES ('533', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14225 INSERT INTO `marc_subfield_structure` VALUES ('534', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14226 INSERT INTO `marc_subfield_structure` VALUES ('534', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14227 INSERT INTO `marc_subfield_structure` VALUES ('534', 'a', 'Main entry of original', 'Main entry of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14228 INSERT INTO `marc_subfield_structure` VALUES ('534', 'b', 'Edition statement of original', 'Edition statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14229 INSERT INTO `marc_subfield_structure` VALUES ('534', 'c', 'Publication, distribution, etc', 'Publication, distribution, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14230 INSERT INTO `marc_subfield_structure` VALUES ('534', 'e', 'Physical description, etc', 'Physical description, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14231 INSERT INTO `marc_subfield_structure` VALUES ('534', 'f', 'Series statement of original', 'Series statement of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14232 INSERT INTO `marc_subfield_structure` VALUES ('534', 'k', 'Key title of original', 'Key title of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14233 INSERT INTO `marc_subfield_structure` VALUES ('534', 'l', 'Location of original', 'Location of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14234 INSERT INTO `marc_subfield_structure` VALUES ('534', 'm', 'Material specific details', 'Material specific details', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14235 INSERT INTO `marc_subfield_structure` VALUES ('534', 'n', 'Note about original', 'Note about original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14236 INSERT INTO `marc_subfield_structure` VALUES ('534', 'p', 'Introductory phrase', 'Introductory phrase', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14237 INSERT INTO `marc_subfield_structure` VALUES ('534', 't', 'Title statement of original', 'Title statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14238 INSERT INTO `marc_subfield_structure` VALUES ('534', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14239 INSERT INTO `marc_subfield_structure` VALUES ('534', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14240 INSERT INTO `marc_subfield_structure` VALUES ('535', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14241 INSERT INTO `marc_subfield_structure` VALUES ('535', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14242 INSERT INTO `marc_subfield_structure` VALUES ('535', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14243 INSERT INTO `marc_subfield_structure` VALUES ('535', 'a', 'Custodian', 'Custodian', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14244 INSERT INTO `marc_subfield_structure` VALUES ('535', 'b', 'Postal address', 'Postal address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14245 INSERT INTO `marc_subfield_structure` VALUES ('535', 'c', 'Country', 'Country', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14246 INSERT INTO `marc_subfield_structure` VALUES ('535', 'd', 'Telecommunications address', 'Telecommunications address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14247 INSERT INTO `marc_subfield_structure` VALUES ('535', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14248 INSERT INTO `marc_subfield_structure` VALUES ('536', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14249 INSERT INTO `marc_subfield_structure` VALUES ('536', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14250 INSERT INTO `marc_subfield_structure` VALUES ('536', 'a', 'Text of note', 'Text of note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14251 INSERT INTO `marc_subfield_structure` VALUES ('536', 'b', 'Contract number', 'Contract number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14252 INSERT INTO `marc_subfield_structure` VALUES ('536', 'c', 'Grant number', 'Grant number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14253 INSERT INTO `marc_subfield_structure` VALUES ('536', 'd', 'Undifferentiated number', 'Undifferentiated number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14254 INSERT INTO `marc_subfield_structure` VALUES ('536', 'e', 'Program element number', 'Program element number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14255 INSERT INTO `marc_subfield_structure` VALUES ('536', 'f', 'Project number', 'Project number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14256 INSERT INTO `marc_subfield_structure` VALUES ('536', 'g', 'Task number', 'Task number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14257 INSERT INTO `marc_subfield_structure` VALUES ('536', 'h', 'Work unit number', 'Work unit number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14258 INSERT INTO `marc_subfield_structure` VALUES ('537', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14259 INSERT INTO `marc_subfield_structure` VALUES ('537', 'a', 'Source of data note', 'Source of data note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14260 INSERT INTO `marc_subfield_structure` VALUES ('538', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14261 INSERT INTO `marc_subfield_structure` VALUES ('538', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14262 INSERT INTO `marc_subfield_structure` VALUES ('538', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14263 INSERT INTO `marc_subfield_structure` VALUES ('538', 'a', 'System details note', 'System details note', 0, 0, '', 5, '', '', '', NULL, -1, 'SR', '', '');
14264 INSERT INTO `marc_subfield_structure` VALUES ('538', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -1, 'SR', '', '');
14265 INSERT INTO `marc_subfield_structure` VALUES ('538', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'SR', '', '');
14266 INSERT INTO `marc_subfield_structure` VALUES ('540', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14267 INSERT INTO `marc_subfield_structure` VALUES ('540', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14268 INSERT INTO `marc_subfield_structure` VALUES ('540', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14269 INSERT INTO `marc_subfield_structure` VALUES ('540', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14270 INSERT INTO `marc_subfield_structure` VALUES ('540', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14271 INSERT INTO `marc_subfield_structure` VALUES ('540', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14272 INSERT INTO `marc_subfield_structure` VALUES ('540', 'c', 'Authorization', 'Authorization', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14273 INSERT INTO `marc_subfield_structure` VALUES ('540', 'd', 'Authorized users', 'Authorized users', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14274 INSERT INTO `marc_subfield_structure` VALUES ('540', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'SR', '', '');
14275 INSERT INTO `marc_subfield_structure` VALUES ('541', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
14276 INSERT INTO `marc_subfield_structure` VALUES ('541', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
14277 INSERT INTO `marc_subfield_structure` VALUES ('541', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
14278 INSERT INTO `marc_subfield_structure` VALUES ('541', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
14279 INSERT INTO `marc_subfield_structure` VALUES ('541', 'a', 'Source of acquisition', 'Source of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'SR', '', '');
14280 INSERT INTO `marc_subfield_structure` VALUES ('541', 'b', 'Address', 'Address', 0, 0, '', 9, '', '', '', NULL, 1, 'SR', '', '');
14281 INSERT INTO `marc_subfield_structure` VALUES ('541', 'c', 'Method of acquisition', 'Method of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'SR', '', '');
14282 INSERT INTO `marc_subfield_structure` VALUES ('541', 'd', 'Date of acquisition', 'Date of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'SR', '', '');
14283 INSERT INTO `marc_subfield_structure` VALUES ('541', 'e', 'Accession number', 'Accession number', 0, 0, '', 9, '', '', '', NULL, 1, 'SR', '', '');
14284 INSERT INTO `marc_subfield_structure` VALUES ('541', 'f', 'Owner', 'Owner', 0, 0, '', 9, '', '', '', NULL, 1, 'SR', '', '');
14285 INSERT INTO `marc_subfield_structure` VALUES ('541', 'h', 'Purchase price', 'Purchase price', 0, 0, '', 9, '', '', '', NULL, 1, 'SR', '', '');
14286 INSERT INTO `marc_subfield_structure` VALUES ('541', 'n', 'Extent', 'Extent', 0, 0, '', 9, '', '', '', NULL, 1, 'SR', '', '');
14287 INSERT INTO `marc_subfield_structure` VALUES ('541', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, 1, 'SR', '', '');
14288 INSERT INTO `marc_subfield_structure` VALUES ('543', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14289 INSERT INTO `marc_subfield_structure` VALUES ('543', 'a', 'Solicitation information note', 'Solicitation information note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14290 INSERT INTO `marc_subfield_structure` VALUES ('544', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14291 INSERT INTO `marc_subfield_structure` VALUES ('544', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14292 INSERT INTO `marc_subfield_structure` VALUES ('544', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14293 INSERT INTO `marc_subfield_structure` VALUES ('544', 'a', 'Custodian', 'Custodian', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14294 INSERT INTO `marc_subfield_structure` VALUES ('544', 'b', 'Address', 'Address', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14295 INSERT INTO `marc_subfield_structure` VALUES ('544', 'c', 'Country', 'Country', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14296 INSERT INTO `marc_subfield_structure` VALUES ('544', 'd', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14297 INSERT INTO `marc_subfield_structure` VALUES ('544', 'e', 'Provenance', 'Provenance', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14298 INSERT INTO `marc_subfield_structure` VALUES ('544', 'n', 'Note', 'Note', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14299 INSERT INTO `marc_subfield_structure` VALUES ('545', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14300 INSERT INTO `marc_subfield_structure` VALUES ('545', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14301 INSERT INTO `marc_subfield_structure` VALUES ('545', 'a', 'Biographical or historical note', 'Biographical or historical note', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14302 INSERT INTO `marc_subfield_structure` VALUES ('545', 'b', 'Expansion', 'Expansion', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14303 INSERT INTO `marc_subfield_structure` VALUES ('545', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'SR', '', '');
14304 INSERT INTO `marc_subfield_structure` VALUES ('546', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14305 INSERT INTO `marc_subfield_structure` VALUES ('546', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14306 INSERT INTO `marc_subfield_structure` VALUES ('546', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14307 INSERT INTO `marc_subfield_structure` VALUES ('546', 'a', 'Language note', 'Language note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'SR', '', '');
14308 INSERT INTO `marc_subfield_structure` VALUES ('546', 'b', 'Information code or alphabet', 'Information code or alphabet', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'SR', '', '');
14309 INSERT INTO `marc_subfield_structure` VALUES ('546', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14310 INSERT INTO `marc_subfield_structure` VALUES ('547', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14311 INSERT INTO `marc_subfield_structure` VALUES ('547', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14312 INSERT INTO `marc_subfield_structure` VALUES ('547', 'a', 'Former title complexity note', 'Former title complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14313 INSERT INTO `marc_subfield_structure` VALUES ('547', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14314 INSERT INTO `marc_subfield_structure` VALUES ('550', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14315 INSERT INTO `marc_subfield_structure` VALUES ('550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14316 INSERT INTO `marc_subfield_structure` VALUES ('550', 'a', 'Issuing body note', 'Issuing body note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14317 INSERT INTO `marc_subfield_structure` VALUES ('550', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14318 INSERT INTO `marc_subfield_structure` VALUES ('552', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14319 INSERT INTO `marc_subfield_structure` VALUES ('552', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14320 INSERT INTO `marc_subfield_structure` VALUES ('552', 'a', 'Entity type label', 'Entity type label', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14321 INSERT INTO `marc_subfield_structure` VALUES ('552', 'b', 'Entity type definition and source', 'Entity type definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14322 INSERT INTO `marc_subfield_structure` VALUES ('552', 'c', 'Attribute label', 'Attribute label', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14323 INSERT INTO `marc_subfield_structure` VALUES ('552', 'd', 'Attribute definition and source', 'Attribute definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14324 INSERT INTO `marc_subfield_structure` VALUES ('552', 'e', 'Enumerated domain value', 'Enumerated domain value', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14325 INSERT INTO `marc_subfield_structure` VALUES ('552', 'f', 'Enumerated domain value definition and source', 'Enumerated domain value definition and source', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14326 INSERT INTO `marc_subfield_structure` VALUES ('552', 'g', 'Range domain minimum and maximum', 'Range domain minimum and maximum', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14327 INSERT INTO `marc_subfield_structure` VALUES ('552', 'h', 'Codeset name and source', 'Codeset name and source', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14328 INSERT INTO `marc_subfield_structure` VALUES ('552', 'i', 'Unrepresentable domain', 'Unrepresentable domain', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14329 INSERT INTO `marc_subfield_structure` VALUES ('552', 'j', 'Attribute units of measurement and resolution', 'Attribute units of measurement and resolution', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14330 INSERT INTO `marc_subfield_structure` VALUES ('552', 'k', 'Beginning date and ending date of attribute values', 'Beginning date and ending date of attribute values', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14331 INSERT INTO `marc_subfield_structure` VALUES ('552', 'l', 'Attribute value accuracy', 'Attribute value accuracy', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14332 INSERT INTO `marc_subfield_structure` VALUES ('552', 'm', 'Attribute value accuracy explanation', 'Attribute value accuracy explanation', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14333 INSERT INTO `marc_subfield_structure` VALUES ('552', 'n', 'Attribute measurement frequency', 'Attribute measurement frequency', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14334 INSERT INTO `marc_subfield_structure` VALUES ('552', 'o', 'Entity and attribute overview', 'Entity and attribute overview', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14335 INSERT INTO `marc_subfield_structure` VALUES ('552', 'p', 'Entity and attribute detail citation', 'Entity and attribute detail citation', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14336 INSERT INTO `marc_subfield_structure` VALUES ('552', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'SR', '', '');
14337 INSERT INTO `marc_subfield_structure` VALUES ('552', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14338 INSERT INTO `marc_subfield_structure` VALUES ('555', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14339 INSERT INTO `marc_subfield_structure` VALUES ('555', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14340 INSERT INTO `marc_subfield_structure` VALUES ('555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14341 INSERT INTO `marc_subfield_structure` VALUES ('555', 'a', 'Cumulative index/finding aids note', 'Cumulative index/finding aids note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14342 INSERT INTO `marc_subfield_structure` VALUES ('555', 'b', 'Availability source', 'Availability source', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14343 INSERT INTO `marc_subfield_structure` VALUES ('555', 'c', 'Degree of control', 'Degree of control', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14344 INSERT INTO `marc_subfield_structure` VALUES ('555', 'd', 'Bibliographic reference', 'Bibliographic reference', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14345 INSERT INTO `marc_subfield_structure` VALUES ('555', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'SR', '', '');
14346 INSERT INTO `marc_subfield_structure` VALUES ('556', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14347 INSERT INTO `marc_subfield_structure` VALUES ('556', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14348 INSERT INTO `marc_subfield_structure` VALUES ('556', 'a', 'Information about documentation note', 'Information about documentation note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14349 INSERT INTO `marc_subfield_structure` VALUES ('556', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14350 INSERT INTO `marc_subfield_structure` VALUES ('561', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14351 INSERT INTO `marc_subfield_structure` VALUES ('561', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14352 INSERT INTO `marc_subfield_structure` VALUES ('561', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14353 INSERT INTO `marc_subfield_structure` VALUES ('561', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14354 INSERT INTO `marc_subfield_structure` VALUES ('561', 'a', 'History', 'History', 0, 0, '', 5, '', '', '', NULL, 6, 'SR', '', '');
14355 INSERT INTO `marc_subfield_structure` VALUES ('561', 'b', 'Time of collation [OBSOLETE]', 'Time of collation [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, 6, 'SR', '', '');
14356 INSERT INTO `marc_subfield_structure` VALUES ('562', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14357 INSERT INTO `marc_subfield_structure` VALUES ('562', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'SR', '', '');
14358 INSERT INTO `marc_subfield_structure` VALUES ('562', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14359 INSERT INTO `marc_subfield_structure` VALUES ('562', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14360 INSERT INTO `marc_subfield_structure` VALUES ('562', 'a', 'Identifying markings', 'Identifying markings', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14361 INSERT INTO `marc_subfield_structure` VALUES ('562', 'b', 'Copy identification', 'Copy identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14362 INSERT INTO `marc_subfield_structure` VALUES ('562', 'c', 'Version identification', 'Version identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14363 INSERT INTO `marc_subfield_structure` VALUES ('562', 'd', 'Presentation format', 'Presentation format', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14364 INSERT INTO `marc_subfield_structure` VALUES ('562', 'e', 'Number of copies', 'Number of copies', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14365 INSERT INTO `marc_subfield_structure` VALUES ('563', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14366 INSERT INTO `marc_subfield_structure` VALUES ('563', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'SR', '', '');
14367 INSERT INTO `marc_subfield_structure` VALUES ('563', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14368 INSERT INTO `marc_subfield_structure` VALUES ('563', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14369 INSERT INTO `marc_subfield_structure` VALUES ('563', 'a', 'Binding note', 'Binding note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14370 INSERT INTO `marc_subfield_structure` VALUES ('563', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'SR', '', '');
14371 INSERT INTO `marc_subfield_structure` VALUES ('565', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14372 INSERT INTO `marc_subfield_structure` VALUES ('565', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14373 INSERT INTO `marc_subfield_structure` VALUES ('565', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14374 INSERT INTO `marc_subfield_structure` VALUES ('565', 'a', 'Number of cases/variables', 'Number of cases/variables', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14375 INSERT INTO `marc_subfield_structure` VALUES ('565', 'b', 'Name of variable', 'Name of variable', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14376 INSERT INTO `marc_subfield_structure` VALUES ('565', 'c', 'Unit of analysis', 'Unit of analysis', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14377 INSERT INTO `marc_subfield_structure` VALUES ('565', 'd', 'Universe of data', 'Universe of data', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14378 INSERT INTO `marc_subfield_structure` VALUES ('565', 'e', 'Filing scheme or code', 'Filing scheme or code', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14379 INSERT INTO `marc_subfield_structure` VALUES ('567', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14380 INSERT INTO `marc_subfield_structure` VALUES ('567', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14381 INSERT INTO `marc_subfield_structure` VALUES ('567', 'a', 'Methodology note', 'Methodology note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14382 INSERT INTO `marc_subfield_structure` VALUES ('570', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14383 INSERT INTO `marc_subfield_structure` VALUES ('570', 'a', 'Editor note', 'Editor note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14384 INSERT INTO `marc_subfield_structure` VALUES ('570', 'z', 'Source of note information', 'Source of note information', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14385 INSERT INTO `marc_subfield_structure` VALUES ('580', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14386 INSERT INTO `marc_subfield_structure` VALUES ('580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14387 INSERT INTO `marc_subfield_structure` VALUES ('580', 'a', 'Linking entry complexity note', 'Linking entry complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14388 INSERT INTO `marc_subfield_structure` VALUES ('580', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14389 INSERT INTO `marc_subfield_structure` VALUES ('581', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14390 INSERT INTO `marc_subfield_structure` VALUES ('581', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14391 INSERT INTO `marc_subfield_structure` VALUES ('581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14392 INSERT INTO `marc_subfield_structure` VALUES ('581', 'a', 'Publications about described materials note', 'Publications about described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14393 INSERT INTO `marc_subfield_structure` VALUES ('581', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14394 INSERT INTO `marc_subfield_structure` VALUES ('582', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14395 INSERT INTO `marc_subfield_structure` VALUES ('582', 'a', 'Related computer files note', 'Related computer files note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14396 INSERT INTO `marc_subfield_structure` VALUES ('583', '2', 'Source of term', 'Source of term', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
14397 INSERT INTO `marc_subfield_structure` VALUES ('583', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
14398 INSERT INTO `marc_subfield_structure` VALUES ('583', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
14399 INSERT INTO `marc_subfield_structure` VALUES ('583', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
14400 INSERT INTO `marc_subfield_structure` VALUES ('583', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
14401 INSERT INTO `marc_subfield_structure` VALUES ('583', 'a', 'Action', 'Action', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
14402 INSERT INTO `marc_subfield_structure` VALUES ('583', 'b', 'Action identification', 'Action identification', 1, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
14403 INSERT INTO `marc_subfield_structure` VALUES ('583', 'c', 'Time/date of action', 'Time/date of action', 1, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
14404 INSERT INTO `marc_subfield_structure` VALUES ('583', 'd', 'Action interval', 'Action interval', 1, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
14405 INSERT INTO `marc_subfield_structure` VALUES ('583', 'e', 'Contingency for action', 'Contingency for action', 1, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
14406 INSERT INTO `marc_subfield_structure` VALUES ('583', 'f', 'Authorization', 'Authorization', 1, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
14407 INSERT INTO `marc_subfield_structure` VALUES ('583', 'h', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
14408 INSERT INTO `marc_subfield_structure` VALUES ('583', 'i', 'Method of action', 'Method of action', 1, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
14409 INSERT INTO `marc_subfield_structure` VALUES ('583', 'j', 'Site of action', 'Site of action', 1, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
14410 INSERT INTO `marc_subfield_structure` VALUES ('583', 'k', 'Action agent', 'Action agent', 1, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
14411 INSERT INTO `marc_subfield_structure` VALUES ('583', 'l', 'Status', 'Status', 1, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
14412 INSERT INTO `marc_subfield_structure` VALUES ('583', 'n', 'Extent', 'Extent', 1, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
14413 INSERT INTO `marc_subfield_structure` VALUES ('583', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
14414 INSERT INTO `marc_subfield_structure` VALUES ('583', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -1, 'SR', '', '');
14415 INSERT INTO `marc_subfield_structure` VALUES ('583', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', NULL, 4, 'SR', '', '');
14416 INSERT INTO `marc_subfield_structure` VALUES ('583', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', NULL, -1, 'SR', '', '');
14417 INSERT INTO `marc_subfield_structure` VALUES ('584', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14418 INSERT INTO `marc_subfield_structure` VALUES ('584', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14419 INSERT INTO `marc_subfield_structure` VALUES ('584', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14420 INSERT INTO `marc_subfield_structure` VALUES ('584', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14421 INSERT INTO `marc_subfield_structure` VALUES ('584', 'a', 'Accumulation', 'Accumulation', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14422 INSERT INTO `marc_subfield_structure` VALUES ('584', 'b', 'Frequency of use', 'Frequency of use', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14423 INSERT INTO `marc_subfield_structure` VALUES ('585', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14424 INSERT INTO `marc_subfield_structure` VALUES ('585', '5', 'Institution to which field applies', 'Institution to which field applies', 0, -6, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14425 INSERT INTO `marc_subfield_structure` VALUES ('585', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14426 INSERT INTO `marc_subfield_structure` VALUES ('585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14427 INSERT INTO `marc_subfield_structure` VALUES ('585', 'a', 'Exhibitions note', 'Exhibitions note', 0, 0, '', 5, '', '', '', NULL, -6, 'SR', '', '');
14428 INSERT INTO `marc_subfield_structure` VALUES ('586', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14429 INSERT INTO `marc_subfield_structure` VALUES ('586', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14430 INSERT INTO `marc_subfield_structure` VALUES ('586', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14431 INSERT INTO `marc_subfield_structure` VALUES ('586', 'a', 'Awards note', 'Awards note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'SR', '', '');
14432 INSERT INTO `marc_subfield_structure` VALUES ('590', '6', 'Linkage (RLIN)', 'Linkage (RLIN)', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14433 INSERT INTO `marc_subfield_structure` VALUES ('590', '8', 'Field link and sequence number (RLIN)', 'Field link and sequence number (RLIN)', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14434 INSERT INTO `marc_subfield_structure` VALUES ('590', 'a', 'Local note', 'Local note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14435 INSERT INTO `marc_subfield_structure` VALUES ('590', 'b', 'Provenance (VM) [OBSOLETE]', 'Provenance (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14436 INSERT INTO `marc_subfield_structure` VALUES ('590', 'c', 'Condition of individual reels (VM) [OBSOLETE]', 'Condition of individual reels (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14437 INSERT INTO `marc_subfield_structure` VALUES ('590', 'd', 'Origin of safety copy (VM) [OBSOLETE]', 'Origin of safety copy (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SR', '', '');
14438 INSERT INTO `marc_subfield_structure` VALUES ('600', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14439 INSERT INTO `marc_subfield_structure` VALUES ('600', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14440 INSERT INTO `marc_subfield_structure` VALUES ('600', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14441 INSERT INTO `marc_subfield_structure` VALUES ('600', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14442 INSERT INTO `marc_subfield_structure` VALUES ('600', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14443 INSERT INTO `marc_subfield_structure` VALUES ('600', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
14444 INSERT INTO `marc_subfield_structure` VALUES ('600', 'a', 'Personal name', 'Personal name', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14445 INSERT INTO `marc_subfield_structure` VALUES ('600', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14446 INSERT INTO `marc_subfield_structure` VALUES ('600', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14447 INSERT INTO `marc_subfield_structure` VALUES ('600', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14448 INSERT INTO `marc_subfield_structure` VALUES ('600', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14449 INSERT INTO `marc_subfield_structure` VALUES ('600', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14450 INSERT INTO `marc_subfield_structure` VALUES ('600', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14451 INSERT INTO `marc_subfield_structure` VALUES ('600', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14452 INSERT INTO `marc_subfield_structure` VALUES ('600', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14453 INSERT INTO `marc_subfield_structure` VALUES ('600', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14454 INSERT INTO `marc_subfield_structure` VALUES ('600', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14455 INSERT INTO `marc_subfield_structure` VALUES ('600', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14456 INSERT INTO `marc_subfield_structure` VALUES ('600', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14457 INSERT INTO `marc_subfield_structure` VALUES ('600', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14458 INSERT INTO `marc_subfield_structure` VALUES ('600', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14459 INSERT INTO `marc_subfield_structure` VALUES ('600', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14460 INSERT INTO `marc_subfield_structure` VALUES ('600', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14461 INSERT INTO `marc_subfield_structure` VALUES ('600', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14462 INSERT INTO `marc_subfield_structure` VALUES ('600', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14463 INSERT INTO `marc_subfield_structure` VALUES ('600', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14464 INSERT INTO `marc_subfield_structure` VALUES ('600', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14465 INSERT INTO `marc_subfield_structure` VALUES ('600', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14466 INSERT INTO `marc_subfield_structure` VALUES ('600', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14467 INSERT INTO `marc_subfield_structure` VALUES ('600', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14468 INSERT INTO `marc_subfield_structure` VALUES ('610', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14469 INSERT INTO `marc_subfield_structure` VALUES ('610', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14470 INSERT INTO `marc_subfield_structure` VALUES ('610', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14471 INSERT INTO `marc_subfield_structure` VALUES ('610', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14472 INSERT INTO `marc_subfield_structure` VALUES ('610', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14473 INSERT INTO `marc_subfield_structure` VALUES ('610', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
14474 INSERT INTO `marc_subfield_structure` VALUES ('610', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14475 INSERT INTO `marc_subfield_structure` VALUES ('610', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14476 INSERT INTO `marc_subfield_structure` VALUES ('610', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14477 INSERT INTO `marc_subfield_structure` VALUES ('610', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14478 INSERT INTO `marc_subfield_structure` VALUES ('610', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14479 INSERT INTO `marc_subfield_structure` VALUES ('610', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14480 INSERT INTO `marc_subfield_structure` VALUES ('610', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14481 INSERT INTO `marc_subfield_structure` VALUES ('610', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14482 INSERT INTO `marc_subfield_structure` VALUES ('610', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14483 INSERT INTO `marc_subfield_structure` VALUES ('610', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14484 INSERT INTO `marc_subfield_structure` VALUES ('610', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14485 INSERT INTO `marc_subfield_structure` VALUES ('610', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14486 INSERT INTO `marc_subfield_structure` VALUES ('610', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14487 INSERT INTO `marc_subfield_structure` VALUES ('610', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14488 INSERT INTO `marc_subfield_structure` VALUES ('610', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14489 INSERT INTO `marc_subfield_structure` VALUES ('610', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14490 INSERT INTO `marc_subfield_structure` VALUES ('610', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14491 INSERT INTO `marc_subfield_structure` VALUES ('610', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14492 INSERT INTO `marc_subfield_structure` VALUES ('610', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14493 INSERT INTO `marc_subfield_structure` VALUES ('610', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14494 INSERT INTO `marc_subfield_structure` VALUES ('610', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14495 INSERT INTO `marc_subfield_structure` VALUES ('610', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14496 INSERT INTO `marc_subfield_structure` VALUES ('611', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14497 INSERT INTO `marc_subfield_structure` VALUES ('611', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14498 INSERT INTO `marc_subfield_structure` VALUES ('611', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14499 INSERT INTO `marc_subfield_structure` VALUES ('611', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14500 INSERT INTO `marc_subfield_structure` VALUES ('611', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14501 INSERT INTO `marc_subfield_structure` VALUES ('611', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
14502 INSERT INTO `marc_subfield_structure` VALUES ('611', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14503 INSERT INTO `marc_subfield_structure` VALUES ('611', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'SR', '', '');
14504 INSERT INTO `marc_subfield_structure` VALUES ('611', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14505 INSERT INTO `marc_subfield_structure` VALUES ('611', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14506 INSERT INTO `marc_subfield_structure` VALUES ('611', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14507 INSERT INTO `marc_subfield_structure` VALUES ('611', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14508 INSERT INTO `marc_subfield_structure` VALUES ('611', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14509 INSERT INTO `marc_subfield_structure` VALUES ('611', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14510 INSERT INTO `marc_subfield_structure` VALUES ('611', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14511 INSERT INTO `marc_subfield_structure` VALUES ('611', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14512 INSERT INTO `marc_subfield_structure` VALUES ('611', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14513 INSERT INTO `marc_subfield_structure` VALUES ('611', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14514 INSERT INTO `marc_subfield_structure` VALUES ('611', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14515 INSERT INTO `marc_subfield_structure` VALUES ('611', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14516 INSERT INTO `marc_subfield_structure` VALUES ('611', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14517 INSERT INTO `marc_subfield_structure` VALUES ('611', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14518 INSERT INTO `marc_subfield_structure` VALUES ('611', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14519 INSERT INTO `marc_subfield_structure` VALUES ('611', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14520 INSERT INTO `marc_subfield_structure` VALUES ('611', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14521 INSERT INTO `marc_subfield_structure` VALUES ('611', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14522 INSERT INTO `marc_subfield_structure` VALUES ('630', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14523 INSERT INTO `marc_subfield_structure` VALUES ('630', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14524 INSERT INTO `marc_subfield_structure` VALUES ('630', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14525 INSERT INTO `marc_subfield_structure` VALUES ('630', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14526 INSERT INTO `marc_subfield_structure` VALUES ('630', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14527 INSERT INTO `marc_subfield_structure` VALUES ('630', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
14528 INSERT INTO `marc_subfield_structure` VALUES ('630', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14529 INSERT INTO `marc_subfield_structure` VALUES ('630', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14530 INSERT INTO `marc_subfield_structure` VALUES ('630', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14531 INSERT INTO `marc_subfield_structure` VALUES ('630', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14532 INSERT INTO `marc_subfield_structure` VALUES ('630', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14533 INSERT INTO `marc_subfield_structure` VALUES ('630', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14534 INSERT INTO `marc_subfield_structure` VALUES ('630', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14535 INSERT INTO `marc_subfield_structure` VALUES ('630', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14536 INSERT INTO `marc_subfield_structure` VALUES ('630', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14537 INSERT INTO `marc_subfield_structure` VALUES ('630', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14538 INSERT INTO `marc_subfield_structure` VALUES ('630', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14539 INSERT INTO `marc_subfield_structure` VALUES ('630', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14540 INSERT INTO `marc_subfield_structure` VALUES ('630', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14541 INSERT INTO `marc_subfield_structure` VALUES ('630', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14542 INSERT INTO `marc_subfield_structure` VALUES ('630', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14543 INSERT INTO `marc_subfield_structure` VALUES ('630', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14544 INSERT INTO `marc_subfield_structure` VALUES ('630', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14545 INSERT INTO `marc_subfield_structure` VALUES ('630', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14546 INSERT INTO `marc_subfield_structure` VALUES ('630', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14547 INSERT INTO `marc_subfield_structure` VALUES ('648', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14548 INSERT INTO `marc_subfield_structure` VALUES ('648', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14549 INSERT INTO `marc_subfield_structure` VALUES ('648', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14550 INSERT INTO `marc_subfield_structure` VALUES ('648', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14551 INSERT INTO `marc_subfield_structure` VALUES ('648', 'a', 'Chronological term', 'Chronological term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14552 INSERT INTO `marc_subfield_structure` VALUES ('648', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14553 INSERT INTO `marc_subfield_structure` VALUES ('648', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14554 INSERT INTO `marc_subfield_structure` VALUES ('648', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14555 INSERT INTO `marc_subfield_structure` VALUES ('648', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14556 INSERT INTO `marc_subfield_structure` VALUES ('650', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, 0, 'SR', '', '');
14557 INSERT INTO `marc_subfield_structure` VALUES ('650', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'SR', '', '');
14558 INSERT INTO `marc_subfield_structure` VALUES ('650', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14559 INSERT INTO `marc_subfield_structure` VALUES ('650', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'SR', '', '');
14560 INSERT INTO `marc_subfield_structure` VALUES ('650', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'SR', '', '');
14561 INSERT INTO `marc_subfield_structure` VALUES ('650', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
14562 INSERT INTO `marc_subfield_structure` VALUES ('650', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 'bibliosubject.subject', 6, '', '', '', 0, 0, 'SR', '''6003'',''600a'',''600b'',''600c'',''600d'',''600e'',''600f'',''600g'',''600h'',''600k'',''600l'',''600m'',''600n'',''600o'',''600p'',''600r'',''600s'',''600t'',''600u'',''600x'',''600z'',''600y'',''600v'',''6103'',''610a'',''610b'',''610c'',''610d'',''610e'',''610f'',''610g'',''610h'',''610k'',''610l'',''610m'',''610n'',''610o'',''610p'',''610r'',''610s'',''610t'',''610u'',''610x'',''610z'',''610y'',''610v'',''6113'',''611a'',''611b'',''611c'',''611d'',''611e'',''611f'',''611g'',''611h'',''611k'',''611l'',''611m'',''611n'',''611o'',''611p'',''611r'',''611s'',''611t'',''611u'',''611x'',''611z'',''611y'',''611v'',''630a'',''630b'',''630c'',''630d'',''630e'',''630f'',''630g'',''630h'',''630k'',''630l'',''630m'',''630n'',''630o'',''630p'',''630r'',''630s'',''630t'',''630x'',''630z'',''630y'',''630v'',''6483'',''648a'',''648x'',''648z'',''648y'',''648v'',''6503'',''650b'',''650c'',''650d'',''650e'',''650x'',''650z'',''650y'',''650v'',''6513'',''651a'',''651b'',''651c'',''651d'',''651e'',''651x'',''651z'',''651y'',''651v'',''653a'',''6543'',''654a'',''654b'',''654x'',''654z'',''654y'',''654v'',''6553'',''655a'',''655b'',''655x'',''655z'',''655y'',''655v'',''6563'',''656a'',''656k'',''656x'',''656z'',''656y'',''656v'',''6573'',''657a'',''657x'',''657z'',''657y'',''657v'',''658a'',''658b'',''658c'',''658d'',''658v''', '');
14563 INSERT INTO `marc_subfield_structure` VALUES ('650', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'SR', '', '');
14564 INSERT INTO `marc_subfield_structure` VALUES ('650', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'SR', '', '');
14565 INSERT INTO `marc_subfield_structure` VALUES ('650', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -1, 'SR', '', '');
14566 INSERT INTO `marc_subfield_structure` VALUES ('650', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -1, 'SR', '', '');
14567 INSERT INTO `marc_subfield_structure` VALUES ('650', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'SR', '', '');
14568 INSERT INTO `marc_subfield_structure` VALUES ('650', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'SR', '', '');
14569 INSERT INTO `marc_subfield_structure` VALUES ('650', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'SR', '', '');
14570 INSERT INTO `marc_subfield_structure` VALUES ('650', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'SR', '', '');
14571 INSERT INTO `marc_subfield_structure` VALUES ('651', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14572 INSERT INTO `marc_subfield_structure` VALUES ('651', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14573 INSERT INTO `marc_subfield_structure` VALUES ('651', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14574 INSERT INTO `marc_subfield_structure` VALUES ('651', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14575 INSERT INTO `marc_subfield_structure` VALUES ('651', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14576 INSERT INTO `marc_subfield_structure` VALUES ('651', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
14577 INSERT INTO `marc_subfield_structure` VALUES ('651', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14578 INSERT INTO `marc_subfield_structure` VALUES ('651', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14579 INSERT INTO `marc_subfield_structure` VALUES ('651', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14580 INSERT INTO `marc_subfield_structure` VALUES ('651', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14581 INSERT INTO `marc_subfield_structure` VALUES ('651', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14582 INSERT INTO `marc_subfield_structure` VALUES ('651', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14583 INSERT INTO `marc_subfield_structure` VALUES ('651', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14584 INSERT INTO `marc_subfield_structure` VALUES ('652', 'a', 'Geographic name of place element', 'Geographic name of place element', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14585 INSERT INTO `marc_subfield_structure` VALUES ('652', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14586 INSERT INTO `marc_subfield_structure` VALUES ('652', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14587 INSERT INTO `marc_subfield_structure` VALUES ('652', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14588 INSERT INTO `marc_subfield_structure` VALUES ('653', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14589 INSERT INTO `marc_subfield_structure` VALUES ('653', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14590 INSERT INTO `marc_subfield_structure` VALUES ('653', 'a', 'Uncontrolled term', 'Uncontrolled term', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SR', '', '');
14591 INSERT INTO `marc_subfield_structure` VALUES ('654', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14592 INSERT INTO `marc_subfield_structure` VALUES ('654', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14593 INSERT INTO `marc_subfield_structure` VALUES ('654', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14594 INSERT INTO `marc_subfield_structure` VALUES ('654', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14595 INSERT INTO `marc_subfield_structure` VALUES ('654', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14596 INSERT INTO `marc_subfield_structure` VALUES ('654', 'a', 'Focus term', 'Focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14597 INSERT INTO `marc_subfield_structure` VALUES ('654', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14598 INSERT INTO `marc_subfield_structure` VALUES ('654', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14599 INSERT INTO `marc_subfield_structure` VALUES ('654', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14600 INSERT INTO `marc_subfield_structure` VALUES ('654', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14601 INSERT INTO `marc_subfield_structure` VALUES ('654', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14602 INSERT INTO `marc_subfield_structure` VALUES ('654', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14603 INSERT INTO `marc_subfield_structure` VALUES ('654', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14604 INSERT INTO `marc_subfield_structure` VALUES ('655', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14605 INSERT INTO `marc_subfield_structure` VALUES ('655', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14606 INSERT INTO `marc_subfield_structure` VALUES ('655', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14607 INSERT INTO `marc_subfield_structure` VALUES ('655', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14608 INSERT INTO `marc_subfield_structure` VALUES ('655', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14609 INSERT INTO `marc_subfield_structure` VALUES ('655', 'a', 'Genre/form data or focus term', 'Genre/form data or focus term', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14610 INSERT INTO `marc_subfield_structure` VALUES ('655', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14611 INSERT INTO `marc_subfield_structure` VALUES ('655', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14612 INSERT INTO `marc_subfield_structure` VALUES ('655', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14613 INSERT INTO `marc_subfield_structure` VALUES ('655', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14614 INSERT INTO `marc_subfield_structure` VALUES ('655', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14615 INSERT INTO `marc_subfield_structure` VALUES ('655', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14616 INSERT INTO `marc_subfield_structure` VALUES ('656', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14617 INSERT INTO `marc_subfield_structure` VALUES ('656', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14618 INSERT INTO `marc_subfield_structure` VALUES ('656', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14619 INSERT INTO `marc_subfield_structure` VALUES ('656', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14620 INSERT INTO `marc_subfield_structure` VALUES ('656', 'a', 'Occupation', 'Occupation', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14621 INSERT INTO `marc_subfield_structure` VALUES ('656', 'k', 'Form', 'Form', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14622 INSERT INTO `marc_subfield_structure` VALUES ('656', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14623 INSERT INTO `marc_subfield_structure` VALUES ('656', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14624 INSERT INTO `marc_subfield_structure` VALUES ('656', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14625 INSERT INTO `marc_subfield_structure` VALUES ('656', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14626 INSERT INTO `marc_subfield_structure` VALUES ('657', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14627 INSERT INTO `marc_subfield_structure` VALUES ('657', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14628 INSERT INTO `marc_subfield_structure` VALUES ('657', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14629 INSERT INTO `marc_subfield_structure` VALUES ('657', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14630 INSERT INTO `marc_subfield_structure` VALUES ('657', 'a', 'Function', 'Function', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14631 INSERT INTO `marc_subfield_structure` VALUES ('657', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14632 INSERT INTO `marc_subfield_structure` VALUES ('657', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14633 INSERT INTO `marc_subfield_structure` VALUES ('657', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14634 INSERT INTO `marc_subfield_structure` VALUES ('657', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14635 INSERT INTO `marc_subfield_structure` VALUES ('658', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14636 INSERT INTO `marc_subfield_structure` VALUES ('658', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14637 INSERT INTO `marc_subfield_structure` VALUES ('658', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14638 INSERT INTO `marc_subfield_structure` VALUES ('658', 'a', 'Main curriculum objective', 'Main curriculum objective', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14639 INSERT INTO `marc_subfield_structure` VALUES ('658', 'b', 'Subordinate curriculum objective', 'Subordinate curriculum objective', 1, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14640 INSERT INTO `marc_subfield_structure` VALUES ('658', 'c', 'Curriculum code', 'Curriculum code', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14641 INSERT INTO `marc_subfield_structure` VALUES ('658', 'd', 'Correlation factor', 'Correlation factor', 0, 0, '', 6, '', '', '', NULL, -1, 'SR', '', '');
14642 INSERT INTO `marc_subfield_structure` VALUES ('662', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14643 INSERT INTO `marc_subfield_structure` VALUES ('662', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14644 INSERT INTO `marc_subfield_structure` VALUES ('662', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14645 INSERT INTO `marc_subfield_structure` VALUES ('662', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14646 INSERT INTO `marc_subfield_structure` VALUES ('662', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14647 INSERT INTO `marc_subfield_structure` VALUES ('662', 'a', 'Country or larger entity', 'Country or larger entity', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14648 INSERT INTO `marc_subfield_structure` VALUES ('662', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14649 INSERT INTO `marc_subfield_structure` VALUES ('662', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14650 INSERT INTO `marc_subfield_structure` VALUES ('662', 'd', 'City', 'City', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14651 INSERT INTO `marc_subfield_structure` VALUES ('662', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14652 INSERT INTO `marc_subfield_structure` VALUES ('662', 'f', 'City subsection', 'City subsection', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14653 INSERT INTO `marc_subfield_structure` VALUES ('662', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14654 INSERT INTO `marc_subfield_structure` VALUES ('662', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14655 INSERT INTO `marc_subfield_structure` VALUES ('690', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'SR', '', '');
14656 INSERT INTO `marc_subfield_structure` VALUES ('690', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, -6, 'SR', '', '');
14657 INSERT INTO `marc_subfield_structure` VALUES ('690', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'SR', '', '');
14658 INSERT INTO `marc_subfield_structure` VALUES ('690', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'SR', '', '');
14659 INSERT INTO `marc_subfield_structure` VALUES ('690', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'SR', '', '');
14660 INSERT INTO `marc_subfield_structure` VALUES ('690', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
14661 INSERT INTO `marc_subfield_structure` VALUES ('690', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'SR', '', '');
14662 INSERT INTO `marc_subfield_structure` VALUES ('690', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'SR', '', '');
14663 INSERT INTO `marc_subfield_structure` VALUES ('690', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'SR', '', '');
14664 INSERT INTO `marc_subfield_structure` VALUES ('690', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -6, 'SR', '', '');
14665 INSERT INTO `marc_subfield_structure` VALUES ('690', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -6, 'SR', '', '');
14666 INSERT INTO `marc_subfield_structure` VALUES ('690', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'SR', '', '');
14667 INSERT INTO `marc_subfield_structure` VALUES ('690', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'SR', '', '');
14668 INSERT INTO `marc_subfield_structure` VALUES ('690', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'SR', '', '');
14669 INSERT INTO `marc_subfield_structure` VALUES ('690', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'SR', '', '');
14670 INSERT INTO `marc_subfield_structure` VALUES ('691', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'SR', '', '');
14671 INSERT INTO `marc_subfield_structure` VALUES ('691', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14672 INSERT INTO `marc_subfield_structure` VALUES ('691', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14673 INSERT INTO `marc_subfield_structure` VALUES ('691', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14674 INSERT INTO `marc_subfield_structure` VALUES ('691', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14675 INSERT INTO `marc_subfield_structure` VALUES ('691', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
14676 INSERT INTO `marc_subfield_structure` VALUES ('691', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14677 INSERT INTO `marc_subfield_structure` VALUES ('691', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14678 INSERT INTO `marc_subfield_structure` VALUES ('691', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14679 INSERT INTO `marc_subfield_structure` VALUES ('691', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14680 INSERT INTO `marc_subfield_structure` VALUES ('691', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14681 INSERT INTO `marc_subfield_structure` VALUES ('691', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14682 INSERT INTO `marc_subfield_structure` VALUES ('696', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'SR', '', '');
14683 INSERT INTO `marc_subfield_structure` VALUES ('696', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14684 INSERT INTO `marc_subfield_structure` VALUES ('696', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14685 INSERT INTO `marc_subfield_structure` VALUES ('696', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14686 INSERT INTO `marc_subfield_structure` VALUES ('696', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14687 INSERT INTO `marc_subfield_structure` VALUES ('696', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14688 INSERT INTO `marc_subfield_structure` VALUES ('696', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
14689 INSERT INTO `marc_subfield_structure` VALUES ('696', 'a', 'Personal name', 'Personal name', 0, 0, '', 3, '', '', '', NULL, -6, 'SR', '', '');
14690 INSERT INTO `marc_subfield_structure` VALUES ('696', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14691 INSERT INTO `marc_subfield_structure` VALUES ('696', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14692 INSERT INTO `marc_subfield_structure` VALUES ('696', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14693 INSERT INTO `marc_subfield_structure` VALUES ('696', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14694 INSERT INTO `marc_subfield_structure` VALUES ('696', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14695 INSERT INTO `marc_subfield_structure` VALUES ('696', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14696 INSERT INTO `marc_subfield_structure` VALUES ('696', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14697 INSERT INTO `marc_subfield_structure` VALUES ('696', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14698 INSERT INTO `marc_subfield_structure` VALUES ('696', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14699 INSERT INTO `marc_subfield_structure` VALUES ('696', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14700 INSERT INTO `marc_subfield_structure` VALUES ('696', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14701 INSERT INTO `marc_subfield_structure` VALUES ('696', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14702 INSERT INTO `marc_subfield_structure` VALUES ('696', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14703 INSERT INTO `marc_subfield_structure` VALUES ('696', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14704 INSERT INTO `marc_subfield_structure` VALUES ('696', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14705 INSERT INTO `marc_subfield_structure` VALUES ('696', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14706 INSERT INTO `marc_subfield_structure` VALUES ('696', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14707 INSERT INTO `marc_subfield_structure` VALUES ('696', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14708 INSERT INTO `marc_subfield_structure` VALUES ('696', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14709 INSERT INTO `marc_subfield_structure` VALUES ('696', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14710 INSERT INTO `marc_subfield_structure` VALUES ('696', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14711 INSERT INTO `marc_subfield_structure` VALUES ('696', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14712 INSERT INTO `marc_subfield_structure` VALUES ('696', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14713 INSERT INTO `marc_subfield_structure` VALUES ('697', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'SR', '', '');
14714 INSERT INTO `marc_subfield_structure` VALUES ('697', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14715 INSERT INTO `marc_subfield_structure` VALUES ('697', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14716 INSERT INTO `marc_subfield_structure` VALUES ('697', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14717 INSERT INTO `marc_subfield_structure` VALUES ('697', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14718 INSERT INTO `marc_subfield_structure` VALUES ('697', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14719 INSERT INTO `marc_subfield_structure` VALUES ('697', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
14720 INSERT INTO `marc_subfield_structure` VALUES ('697', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14721 INSERT INTO `marc_subfield_structure` VALUES ('697', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14722 INSERT INTO `marc_subfield_structure` VALUES ('697', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14723 INSERT INTO `marc_subfield_structure` VALUES ('697', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14724 INSERT INTO `marc_subfield_structure` VALUES ('697', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14725 INSERT INTO `marc_subfield_structure` VALUES ('697', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14726 INSERT INTO `marc_subfield_structure` VALUES ('697', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14727 INSERT INTO `marc_subfield_structure` VALUES ('697', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14728 INSERT INTO `marc_subfield_structure` VALUES ('697', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14729 INSERT INTO `marc_subfield_structure` VALUES ('697', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14730 INSERT INTO `marc_subfield_structure` VALUES ('697', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14731 INSERT INTO `marc_subfield_structure` VALUES ('697', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14732 INSERT INTO `marc_subfield_structure` VALUES ('697', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14733 INSERT INTO `marc_subfield_structure` VALUES ('697', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14734 INSERT INTO `marc_subfield_structure` VALUES ('697', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14735 INSERT INTO `marc_subfield_structure` VALUES ('697', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14736 INSERT INTO `marc_subfield_structure` VALUES ('697', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14737 INSERT INTO `marc_subfield_structure` VALUES ('697', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14738 INSERT INTO `marc_subfield_structure` VALUES ('697', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14739 INSERT INTO `marc_subfield_structure` VALUES ('697', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14740 INSERT INTO `marc_subfield_structure` VALUES ('697', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14741 INSERT INTO `marc_subfield_structure` VALUES ('697', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
14742 INSERT INTO `marc_subfield_structure` VALUES ('698', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'SR', '', '');
14743 INSERT INTO `marc_subfield_structure` VALUES ('698', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14744 INSERT INTO `marc_subfield_structure` VALUES ('698', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14745 INSERT INTO `marc_subfield_structure` VALUES ('698', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14746 INSERT INTO `marc_subfield_structure` VALUES ('698', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14747 INSERT INTO `marc_subfield_structure` VALUES ('698', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14748 INSERT INTO `marc_subfield_structure` VALUES ('698', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
14749 INSERT INTO `marc_subfield_structure` VALUES ('698', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14750 INSERT INTO `marc_subfield_structure` VALUES ('698', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'SR', '', '');
14751 INSERT INTO `marc_subfield_structure` VALUES ('698', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14752 INSERT INTO `marc_subfield_structure` VALUES ('698', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14753 INSERT INTO `marc_subfield_structure` VALUES ('698', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14754 INSERT INTO `marc_subfield_structure` VALUES ('698', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14755 INSERT INTO `marc_subfield_structure` VALUES ('698', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14756 INSERT INTO `marc_subfield_structure` VALUES ('698', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14757 INSERT INTO `marc_subfield_structure` VALUES ('698', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14758 INSERT INTO `marc_subfield_structure` VALUES ('698', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14759 INSERT INTO `marc_subfield_structure` VALUES ('698', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14760 INSERT INTO `marc_subfield_structure` VALUES ('698', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14761 INSERT INTO `marc_subfield_structure` VALUES ('698', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14762 INSERT INTO `marc_subfield_structure` VALUES ('698', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14763 INSERT INTO `marc_subfield_structure` VALUES ('698', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14764 INSERT INTO `marc_subfield_structure` VALUES ('698', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14765 INSERT INTO `marc_subfield_structure` VALUES ('698', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14766 INSERT INTO `marc_subfield_structure` VALUES ('698', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14767 INSERT INTO `marc_subfield_structure` VALUES ('698', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14768 INSERT INTO `marc_subfield_structure` VALUES ('698', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14769 INSERT INTO `marc_subfield_structure` VALUES ('699', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'SR', '', '');
14770 INSERT INTO `marc_subfield_structure` VALUES ('699', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14771 INSERT INTO `marc_subfield_structure` VALUES ('699', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14772 INSERT INTO `marc_subfield_structure` VALUES ('699', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14773 INSERT INTO `marc_subfield_structure` VALUES ('699', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14774 INSERT INTO `marc_subfield_structure` VALUES ('699', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SR', '', '');
14775 INSERT INTO `marc_subfield_structure` VALUES ('699', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14776 INSERT INTO `marc_subfield_structure` VALUES ('699', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14777 INSERT INTO `marc_subfield_structure` VALUES ('699', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14778 INSERT INTO `marc_subfield_structure` VALUES ('699', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14779 INSERT INTO `marc_subfield_structure` VALUES ('699', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14780 INSERT INTO `marc_subfield_structure` VALUES ('699', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14781 INSERT INTO `marc_subfield_structure` VALUES ('699', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14782 INSERT INTO `marc_subfield_structure` VALUES ('699', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14783 INSERT INTO `marc_subfield_structure` VALUES ('699', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14784 INSERT INTO `marc_subfield_structure` VALUES ('699', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14785 INSERT INTO `marc_subfield_structure` VALUES ('699', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14786 INSERT INTO `marc_subfield_structure` VALUES ('699', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14787 INSERT INTO `marc_subfield_structure` VALUES ('699', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14788 INSERT INTO `marc_subfield_structure` VALUES ('699', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14789 INSERT INTO `marc_subfield_structure` VALUES ('699', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14790 INSERT INTO `marc_subfield_structure` VALUES ('699', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14791 INSERT INTO `marc_subfield_structure` VALUES ('699', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SR', '', '');
14792 INSERT INTO `marc_subfield_structure` VALUES ('700', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14793 INSERT INTO `marc_subfield_structure` VALUES ('700', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14794 INSERT INTO `marc_subfield_structure` VALUES ('700', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14795 INSERT INTO `marc_subfield_structure` VALUES ('700', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14796 INSERT INTO `marc_subfield_structure` VALUES ('700', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14797 INSERT INTO `marc_subfield_structure` VALUES ('700', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SR', '', '');
14798 INSERT INTO `marc_subfield_structure` VALUES ('700', 'a', 'Personal name', 'Personal name', 0, 0, 'additionalauthors.author', 7, '', '', '', NULL, -1, 'SR', '', '');
14799 INSERT INTO `marc_subfield_structure` VALUES ('700', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -1, 'SR', '', '');
14800 INSERT INTO `marc_subfield_structure` VALUES ('700', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -1, 'SR', '', '');
14801 INSERT INTO `marc_subfield_structure` VALUES ('700', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -1, 'SR', '', '');
14802 INSERT INTO `marc_subfield_structure` VALUES ('700', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'SR', '', '');
14803 INSERT INTO `marc_subfield_structure` VALUES ('700', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14804 INSERT INTO `marc_subfield_structure` VALUES ('700', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14805 INSERT INTO `marc_subfield_structure` VALUES ('700', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14806 INSERT INTO `marc_subfield_structure` VALUES ('700', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14807 INSERT INTO `marc_subfield_structure` VALUES ('700', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14808 INSERT INTO `marc_subfield_structure` VALUES ('700', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14809 INSERT INTO `marc_subfield_structure` VALUES ('700', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14810 INSERT INTO `marc_subfield_structure` VALUES ('700', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14811 INSERT INTO `marc_subfield_structure` VALUES ('700', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14812 INSERT INTO `marc_subfield_structure` VALUES ('700', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14813 INSERT INTO `marc_subfield_structure` VALUES ('700', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -1, 'SR', '', '');
14814 INSERT INTO `marc_subfield_structure` VALUES ('700', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14815 INSERT INTO `marc_subfield_structure` VALUES ('700', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14816 INSERT INTO `marc_subfield_structure` VALUES ('700', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14817 INSERT INTO `marc_subfield_structure` VALUES ('700', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14818 INSERT INTO `marc_subfield_structure` VALUES ('700', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14819 INSERT INTO `marc_subfield_structure` VALUES ('705', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14820 INSERT INTO `marc_subfield_structure` VALUES ('705', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14821 INSERT INTO `marc_subfield_structure` VALUES ('705', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14822 INSERT INTO `marc_subfield_structure` VALUES ('705', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14823 INSERT INTO `marc_subfield_structure` VALUES ('705', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14824 INSERT INTO `marc_subfield_structure` VALUES ('705', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14825 INSERT INTO `marc_subfield_structure` VALUES ('705', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14826 INSERT INTO `marc_subfield_structure` VALUES ('705', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14827 INSERT INTO `marc_subfield_structure` VALUES ('705', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14828 INSERT INTO `marc_subfield_structure` VALUES ('705', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14829 INSERT INTO `marc_subfield_structure` VALUES ('705', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14830 INSERT INTO `marc_subfield_structure` VALUES ('705', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14831 INSERT INTO `marc_subfield_structure` VALUES ('705', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14832 INSERT INTO `marc_subfield_structure` VALUES ('705', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14833 INSERT INTO `marc_subfield_structure` VALUES ('705', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14834 INSERT INTO `marc_subfield_structure` VALUES ('705', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14835 INSERT INTO `marc_subfield_structure` VALUES ('705', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14836 INSERT INTO `marc_subfield_structure` VALUES ('710', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14837 INSERT INTO `marc_subfield_structure` VALUES ('710', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14838 INSERT INTO `marc_subfield_structure` VALUES ('710', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14839 INSERT INTO `marc_subfield_structure` VALUES ('710', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14840 INSERT INTO `marc_subfield_structure` VALUES ('710', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14841 INSERT INTO `marc_subfield_structure` VALUES ('710', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SR', '', '');
14842 INSERT INTO `marc_subfield_structure` VALUES ('710', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -1, 'SR', '', '');
14843 INSERT INTO `marc_subfield_structure` VALUES ('710', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -1, 'SR', '', '');
14844 INSERT INTO `marc_subfield_structure` VALUES ('710', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -1, 'SR', '', '');
14845 INSERT INTO `marc_subfield_structure` VALUES ('710', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -1, 'SR', '', '');
14846 INSERT INTO `marc_subfield_structure` VALUES ('710', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'SR', '', '');
14847 INSERT INTO `marc_subfield_structure` VALUES ('710', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14848 INSERT INTO `marc_subfield_structure` VALUES ('710', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14849 INSERT INTO `marc_subfield_structure` VALUES ('710', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14850 INSERT INTO `marc_subfield_structure` VALUES ('710', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14851 INSERT INTO `marc_subfield_structure` VALUES ('710', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14852 INSERT INTO `marc_subfield_structure` VALUES ('710', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14853 INSERT INTO `marc_subfield_structure` VALUES ('710', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14854 INSERT INTO `marc_subfield_structure` VALUES ('710', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14855 INSERT INTO `marc_subfield_structure` VALUES ('710', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14856 INSERT INTO `marc_subfield_structure` VALUES ('710', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14857 INSERT INTO `marc_subfield_structure` VALUES ('710', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14858 INSERT INTO `marc_subfield_structure` VALUES ('710', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14859 INSERT INTO `marc_subfield_structure` VALUES ('710', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14860 INSERT INTO `marc_subfield_structure` VALUES ('710', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14861 INSERT INTO `marc_subfield_structure` VALUES ('711', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14862 INSERT INTO `marc_subfield_structure` VALUES ('711', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14863 INSERT INTO `marc_subfield_structure` VALUES ('711', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14864 INSERT INTO `marc_subfield_structure` VALUES ('711', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14865 INSERT INTO `marc_subfield_structure` VALUES ('711', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14866 INSERT INTO `marc_subfield_structure` VALUES ('711', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SR', '', '');
14867 INSERT INTO `marc_subfield_structure` VALUES ('711', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'SR', '', '');
14868 INSERT INTO `marc_subfield_structure` VALUES ('711', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14869 INSERT INTO `marc_subfield_structure` VALUES ('711', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'SR', '', '');
14870 INSERT INTO `marc_subfield_structure` VALUES ('711', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'SR', '', '');
14871 INSERT INTO `marc_subfield_structure` VALUES ('711', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'SR', '', '');
14872 INSERT INTO `marc_subfield_structure` VALUES ('711', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14873 INSERT INTO `marc_subfield_structure` VALUES ('711', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14874 INSERT INTO `marc_subfield_structure` VALUES ('711', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14875 INSERT INTO `marc_subfield_structure` VALUES ('711', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14876 INSERT INTO `marc_subfield_structure` VALUES ('711', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14877 INSERT INTO `marc_subfield_structure` VALUES ('711', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14878 INSERT INTO `marc_subfield_structure` VALUES ('711', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14879 INSERT INTO `marc_subfield_structure` VALUES ('711', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14880 INSERT INTO `marc_subfield_structure` VALUES ('711', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14881 INSERT INTO `marc_subfield_structure` VALUES ('711', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14882 INSERT INTO `marc_subfield_structure` VALUES ('711', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14883 INSERT INTO `marc_subfield_structure` VALUES ('711', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14884 INSERT INTO `marc_subfield_structure` VALUES ('715', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'SR', '', '');
14885 INSERT INTO `marc_subfield_structure` VALUES ('715', 'a', 'Corporate name or jurisdiction name', 'Corporate name or jurisdiction name', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14886 INSERT INTO `marc_subfield_structure` VALUES ('715', 'b', 'Subordinate unit', 'Subordinate unit', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14887 INSERT INTO `marc_subfield_structure` VALUES ('715', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14888 INSERT INTO `marc_subfield_structure` VALUES ('715', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14889 INSERT INTO `marc_subfield_structure` VALUES ('715', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14890 INSERT INTO `marc_subfield_structure` VALUES ('715', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14891 INSERT INTO `marc_subfield_structure` VALUES ('715', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14892 INSERT INTO `marc_subfield_structure` VALUES ('715', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14893 INSERT INTO `marc_subfield_structure` VALUES ('715', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14894 INSERT INTO `marc_subfield_structure` VALUES ('715', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14895 INSERT INTO `marc_subfield_structure` VALUES ('715', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14896 INSERT INTO `marc_subfield_structure` VALUES ('715', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14897 INSERT INTO `marc_subfield_structure` VALUES ('715', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14898 INSERT INTO `marc_subfield_structure` VALUES ('715', 'u', 'Nonprinting information', 'Nonprinting information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14899 INSERT INTO `marc_subfield_structure` VALUES ('720', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14900 INSERT INTO `marc_subfield_structure` VALUES ('720', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14901 INSERT INTO `marc_subfield_structure` VALUES ('720', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14902 INSERT INTO `marc_subfield_structure` VALUES ('720', 'a', 'Name', 'Name', 0, 0, '', 7, NULL, NULL, '', NULL, -1, 'SR', '', '');
14903 INSERT INTO `marc_subfield_structure` VALUES ('720', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'SR', '', '');
14904 INSERT INTO `marc_subfield_structure` VALUES ('730', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14905 INSERT INTO `marc_subfield_structure` VALUES ('730', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14906 INSERT INTO `marc_subfield_structure` VALUES ('730', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14907 INSERT INTO `marc_subfield_structure` VALUES ('730', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14908 INSERT INTO `marc_subfield_structure` VALUES ('730', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SR', '', '');
14909 INSERT INTO `marc_subfield_structure` VALUES ('730', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14910 INSERT INTO `marc_subfield_structure` VALUES ('730', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14911 INSERT INTO `marc_subfield_structure` VALUES ('730', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14912 INSERT INTO `marc_subfield_structure` VALUES ('730', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14913 INSERT INTO `marc_subfield_structure` VALUES ('730', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14914 INSERT INTO `marc_subfield_structure` VALUES ('730', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14915 INSERT INTO `marc_subfield_structure` VALUES ('730', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14916 INSERT INTO `marc_subfield_structure` VALUES ('730', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14917 INSERT INTO `marc_subfield_structure` VALUES ('730', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14918 INSERT INTO `marc_subfield_structure` VALUES ('730', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14919 INSERT INTO `marc_subfield_structure` VALUES ('730', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14920 INSERT INTO `marc_subfield_structure` VALUES ('730', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14921 INSERT INTO `marc_subfield_structure` VALUES ('730', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14922 INSERT INTO `marc_subfield_structure` VALUES ('730', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14923 INSERT INTO `marc_subfield_structure` VALUES ('730', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14924 INSERT INTO `marc_subfield_structure` VALUES ('740', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14925 INSERT INTO `marc_subfield_structure` VALUES ('740', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14926 INSERT INTO `marc_subfield_structure` VALUES ('740', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14927 INSERT INTO `marc_subfield_structure` VALUES ('740', 'a', 'Uncontrolled related/analytical title', 'Uncontrolled related/analytical title', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14928 INSERT INTO `marc_subfield_structure` VALUES ('740', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14929 INSERT INTO `marc_subfield_structure` VALUES ('740', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14930 INSERT INTO `marc_subfield_structure` VALUES ('740', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14931 INSERT INTO `marc_subfield_structure` VALUES ('752', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14932 INSERT INTO `marc_subfield_structure` VALUES ('752', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14933 INSERT INTO `marc_subfield_structure` VALUES ('752', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14934 INSERT INTO `marc_subfield_structure` VALUES ('752', 'a', 'Country or larger entity', 'Country or larger entity', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14935 INSERT INTO `marc_subfield_structure` VALUES ('752', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14936 INSERT INTO `marc_subfield_structure` VALUES ('752', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14937 INSERT INTO `marc_subfield_structure` VALUES ('752', 'd', 'City', 'City', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14938 INSERT INTO `marc_subfield_structure` VALUES ('752', 'f', 'City subsection', 'City subsection', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14939 INSERT INTO `marc_subfield_structure` VALUES ('752', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14940 INSERT INTO `marc_subfield_structure` VALUES ('752', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14941 INSERT INTO `marc_subfield_structure` VALUES ('753', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14942 INSERT INTO `marc_subfield_structure` VALUES ('753', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14943 INSERT INTO `marc_subfield_structure` VALUES ('753', 'a', 'Make and model of machine', 'Make and model of machine', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14944 INSERT INTO `marc_subfield_structure` VALUES ('753', 'b', 'Programming language', 'Programming language', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14945 INSERT INTO `marc_subfield_structure` VALUES ('753', 'c', 'Operating system', 'Operating system', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14946 INSERT INTO `marc_subfield_structure` VALUES ('754', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14947 INSERT INTO `marc_subfield_structure` VALUES ('754', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14948 INSERT INTO `marc_subfield_structure` VALUES ('754', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14949 INSERT INTO `marc_subfield_structure` VALUES ('754', 'a', 'Taxonomic name', 'Taxonomic name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14950 INSERT INTO `marc_subfield_structure` VALUES ('754', 'c', 'Taxonomic category', 'Taxonomic category', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14951 INSERT INTO `marc_subfield_structure` VALUES ('754', 'd', 'Common or alternative name', 'Common or alternative name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14952 INSERT INTO `marc_subfield_structure` VALUES ('754', 'x', 'Non-public note', 'Non-public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14953 INSERT INTO `marc_subfield_structure` VALUES ('754', 'z', 'Public note', 'Public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14954 INSERT INTO `marc_subfield_structure` VALUES ('755', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14955 INSERT INTO `marc_subfield_structure` VALUES ('755', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14956 INSERT INTO `marc_subfield_structure` VALUES ('755', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14957 INSERT INTO `marc_subfield_structure` VALUES ('755', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14958 INSERT INTO `marc_subfield_structure` VALUES ('755', 'a', 'Access term', 'Access term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14959 INSERT INTO `marc_subfield_structure` VALUES ('755', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14960 INSERT INTO `marc_subfield_structure` VALUES ('755', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14961 INSERT INTO `marc_subfield_structure` VALUES ('755', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
14962 INSERT INTO `marc_subfield_structure` VALUES ('760', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14963 INSERT INTO `marc_subfield_structure` VALUES ('760', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14964 INSERT INTO `marc_subfield_structure` VALUES ('760', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14965 INSERT INTO `marc_subfield_structure` VALUES ('760', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14966 INSERT INTO `marc_subfield_structure` VALUES ('760', 'b', 'Edition', 'Edition', 0, 0, NULL, -6, NULL, NULL, '', NULL, 0, 'SR', '', '');
14967 INSERT INTO `marc_subfield_structure` VALUES ('760', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14968 INSERT INTO `marc_subfield_structure` VALUES ('760', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14969 INSERT INTO `marc_subfield_structure` VALUES ('760', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14970 INSERT INTO `marc_subfield_structure` VALUES ('760', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14971 INSERT INTO `marc_subfield_structure` VALUES ('760', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14972 INSERT INTO `marc_subfield_structure` VALUES ('760', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14973 INSERT INTO `marc_subfield_structure` VALUES ('760', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14974 INSERT INTO `marc_subfield_structure` VALUES ('760', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14975 INSERT INTO `marc_subfield_structure` VALUES ('760', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14976 INSERT INTO `marc_subfield_structure` VALUES ('760', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14977 INSERT INTO `marc_subfield_structure` VALUES ('760', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14978 INSERT INTO `marc_subfield_structure` VALUES ('760', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14979 INSERT INTO `marc_subfield_structure` VALUES ('760', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14980 INSERT INTO `marc_subfield_structure` VALUES ('760', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14981 INSERT INTO `marc_subfield_structure` VALUES ('762', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14982 INSERT INTO `marc_subfield_structure` VALUES ('762', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14983 INSERT INTO `marc_subfield_structure` VALUES ('762', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14984 INSERT INTO `marc_subfield_structure` VALUES ('762', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14985 INSERT INTO `marc_subfield_structure` VALUES ('762', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14986 INSERT INTO `marc_subfield_structure` VALUES ('762', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14987 INSERT INTO `marc_subfield_structure` VALUES ('762', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14988 INSERT INTO `marc_subfield_structure` VALUES ('762', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14989 INSERT INTO `marc_subfield_structure` VALUES ('762', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14990 INSERT INTO `marc_subfield_structure` VALUES ('762', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14991 INSERT INTO `marc_subfield_structure` VALUES ('762', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14992 INSERT INTO `marc_subfield_structure` VALUES ('762', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14993 INSERT INTO `marc_subfield_structure` VALUES ('762', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14994 INSERT INTO `marc_subfield_structure` VALUES ('762', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14995 INSERT INTO `marc_subfield_structure` VALUES ('762', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14996 INSERT INTO `marc_subfield_structure` VALUES ('762', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14997 INSERT INTO `marc_subfield_structure` VALUES ('762', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14998 INSERT INTO `marc_subfield_structure` VALUES ('762', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
14999 INSERT INTO `marc_subfield_structure` VALUES ('762', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15000 INSERT INTO `marc_subfield_structure` VALUES ('765', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15001 INSERT INTO `marc_subfield_structure` VALUES ('765', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15002 INSERT INTO `marc_subfield_structure` VALUES ('765', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15003 INSERT INTO `marc_subfield_structure` VALUES ('765', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15004 INSERT INTO `marc_subfield_structure` VALUES ('765', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15005 INSERT INTO `marc_subfield_structure` VALUES ('765', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15006 INSERT INTO `marc_subfield_structure` VALUES ('765', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15007 INSERT INTO `marc_subfield_structure` VALUES ('765', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15008 INSERT INTO `marc_subfield_structure` VALUES ('765', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15009 INSERT INTO `marc_subfield_structure` VALUES ('765', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15010 INSERT INTO `marc_subfield_structure` VALUES ('765', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15011 INSERT INTO `marc_subfield_structure` VALUES ('765', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15012 INSERT INTO `marc_subfield_structure` VALUES ('765', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15013 INSERT INTO `marc_subfield_structure` VALUES ('765', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15014 INSERT INTO `marc_subfield_structure` VALUES ('765', 'q', 'Parallel title (BK SE)  [OBSOLETE]', 'Parallel title (BK SE)  [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15015 INSERT INTO `marc_subfield_structure` VALUES ('765', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15016 INSERT INTO `marc_subfield_structure` VALUES ('765', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15017 INSERT INTO `marc_subfield_structure` VALUES ('765', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15018 INSERT INTO `marc_subfield_structure` VALUES ('765', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15019 INSERT INTO `marc_subfield_structure` VALUES ('765', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15020 INSERT INTO `marc_subfield_structure` VALUES ('765', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15021 INSERT INTO `marc_subfield_structure` VALUES ('765', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15022 INSERT INTO `marc_subfield_structure` VALUES ('765', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15023 INSERT INTO `marc_subfield_structure` VALUES ('767', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15024 INSERT INTO `marc_subfield_structure` VALUES ('767', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15025 INSERT INTO `marc_subfield_structure` VALUES ('767', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15026 INSERT INTO `marc_subfield_structure` VALUES ('767', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15027 INSERT INTO `marc_subfield_structure` VALUES ('767', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15028 INSERT INTO `marc_subfield_structure` VALUES ('767', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15029 INSERT INTO `marc_subfield_structure` VALUES ('767', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15030 INSERT INTO `marc_subfield_structure` VALUES ('767', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15031 INSERT INTO `marc_subfield_structure` VALUES ('767', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15032 INSERT INTO `marc_subfield_structure` VALUES ('767', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15033 INSERT INTO `marc_subfield_structure` VALUES ('767', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15034 INSERT INTO `marc_subfield_structure` VALUES ('767', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15035 INSERT INTO `marc_subfield_structure` VALUES ('767', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15036 INSERT INTO `marc_subfield_structure` VALUES ('767', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15037 INSERT INTO `marc_subfield_structure` VALUES ('767', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15038 INSERT INTO `marc_subfield_structure` VALUES ('767', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15039 INSERT INTO `marc_subfield_structure` VALUES ('767', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15040 INSERT INTO `marc_subfield_structure` VALUES ('767', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15041 INSERT INTO `marc_subfield_structure` VALUES ('767', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15042 INSERT INTO `marc_subfield_structure` VALUES ('767', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15043 INSERT INTO `marc_subfield_structure` VALUES ('767', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15044 INSERT INTO `marc_subfield_structure` VALUES ('767', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15045 INSERT INTO `marc_subfield_structure` VALUES ('767', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15046 INSERT INTO `marc_subfield_structure` VALUES ('770', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15047 INSERT INTO `marc_subfield_structure` VALUES ('770', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15048 INSERT INTO `marc_subfield_structure` VALUES ('770', '8', 'Field link and sequence number', 'Field link and sequence number ', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15049 INSERT INTO `marc_subfield_structure` VALUES ('770', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15050 INSERT INTO `marc_subfield_structure` VALUES ('770', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15051 INSERT INTO `marc_subfield_structure` VALUES ('770', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15052 INSERT INTO `marc_subfield_structure` VALUES ('770', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15053 INSERT INTO `marc_subfield_structure` VALUES ('770', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15054 INSERT INTO `marc_subfield_structure` VALUES ('770', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15055 INSERT INTO `marc_subfield_structure` VALUES ('770', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15056 INSERT INTO `marc_subfield_structure` VALUES ('770', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15057 INSERT INTO `marc_subfield_structure` VALUES ('770', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15058 INSERT INTO `marc_subfield_structure` VALUES ('770', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15059 INSERT INTO `marc_subfield_structure` VALUES ('770', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15060 INSERT INTO `marc_subfield_structure` VALUES ('770', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15061 INSERT INTO `marc_subfield_structure` VALUES ('770', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15062 INSERT INTO `marc_subfield_structure` VALUES ('770', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15063 INSERT INTO `marc_subfield_structure` VALUES ('770', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15064 INSERT INTO `marc_subfield_structure` VALUES ('770', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15065 INSERT INTO `marc_subfield_structure` VALUES ('770', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15066 INSERT INTO `marc_subfield_structure` VALUES ('770', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15067 INSERT INTO `marc_subfield_structure` VALUES ('770', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15068 INSERT INTO `marc_subfield_structure` VALUES ('770', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15069 INSERT INTO `marc_subfield_structure` VALUES ('772', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15070 INSERT INTO `marc_subfield_structure` VALUES ('772', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15071 INSERT INTO `marc_subfield_structure` VALUES ('772', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15072 INSERT INTO `marc_subfield_structure` VALUES ('772', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15073 INSERT INTO `marc_subfield_structure` VALUES ('772', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15074 INSERT INTO `marc_subfield_structure` VALUES ('772', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15075 INSERT INTO `marc_subfield_structure` VALUES ('772', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15076 INSERT INTO `marc_subfield_structure` VALUES ('772', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15077 INSERT INTO `marc_subfield_structure` VALUES ('772', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15078 INSERT INTO `marc_subfield_structure` VALUES ('772', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15079 INSERT INTO `marc_subfield_structure` VALUES ('772', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15080 INSERT INTO `marc_subfield_structure` VALUES ('772', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15081 INSERT INTO `marc_subfield_structure` VALUES ('772', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15082 INSERT INTO `marc_subfield_structure` VALUES ('772', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15083 INSERT INTO `marc_subfield_structure` VALUES ('772', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15084 INSERT INTO `marc_subfield_structure` VALUES ('772', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15085 INSERT INTO `marc_subfield_structure` VALUES ('772', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15086 INSERT INTO `marc_subfield_structure` VALUES ('772', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15087 INSERT INTO `marc_subfield_structure` VALUES ('772', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15088 INSERT INTO `marc_subfield_structure` VALUES ('772', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15089 INSERT INTO `marc_subfield_structure` VALUES ('772', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15090 INSERT INTO `marc_subfield_structure` VALUES ('772', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15091 INSERT INTO `marc_subfield_structure` VALUES ('772', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15092 INSERT INTO `marc_subfield_structure` VALUES ('773', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15093 INSERT INTO `marc_subfield_structure` VALUES ('773', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15094 INSERT INTO `marc_subfield_structure` VALUES ('773', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15095 INSERT INTO `marc_subfield_structure` VALUES ('773', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15096 INSERT INTO `marc_subfield_structure` VALUES ('773', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15097 INSERT INTO `marc_subfield_structure` VALUES ('773', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15098 INSERT INTO `marc_subfield_structure` VALUES ('773', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15099 INSERT INTO `marc_subfield_structure` VALUES ('773', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15100 INSERT INTO `marc_subfield_structure` VALUES ('773', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15101 INSERT INTO `marc_subfield_structure` VALUES ('773', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15102 INSERT INTO `marc_subfield_structure` VALUES ('773', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15103 INSERT INTO `marc_subfield_structure` VALUES ('773', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15104 INSERT INTO `marc_subfield_structure` VALUES ('773', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15105 INSERT INTO `marc_subfield_structure` VALUES ('773', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15106 INSERT INTO `marc_subfield_structure` VALUES ('773', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15107 INSERT INTO `marc_subfield_structure` VALUES ('773', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15108 INSERT INTO `marc_subfield_structure` VALUES ('773', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15109 INSERT INTO `marc_subfield_structure` VALUES ('773', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15110 INSERT INTO `marc_subfield_structure` VALUES ('773', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15111 INSERT INTO `marc_subfield_structure` VALUES ('773', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15112 INSERT INTO `marc_subfield_structure` VALUES ('773', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15113 INSERT INTO `marc_subfield_structure` VALUES ('773', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15114 INSERT INTO `marc_subfield_structure` VALUES ('773', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15115 INSERT INTO `marc_subfield_structure` VALUES ('774', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15116 INSERT INTO `marc_subfield_structure` VALUES ('774', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15117 INSERT INTO `marc_subfield_structure` VALUES ('774', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15118 INSERT INTO `marc_subfield_structure` VALUES ('774', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15119 INSERT INTO `marc_subfield_structure` VALUES ('774', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15120 INSERT INTO `marc_subfield_structure` VALUES ('774', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15121 INSERT INTO `marc_subfield_structure` VALUES ('774', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15122 INSERT INTO `marc_subfield_structure` VALUES ('774', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15123 INSERT INTO `marc_subfield_structure` VALUES ('774', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15124 INSERT INTO `marc_subfield_structure` VALUES ('774', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15125 INSERT INTO `marc_subfield_structure` VALUES ('774', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15126 INSERT INTO `marc_subfield_structure` VALUES ('774', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15127 INSERT INTO `marc_subfield_structure` VALUES ('774', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15128 INSERT INTO `marc_subfield_structure` VALUES ('774', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15129 INSERT INTO `marc_subfield_structure` VALUES ('774', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15130 INSERT INTO `marc_subfield_structure` VALUES ('774', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15131 INSERT INTO `marc_subfield_structure` VALUES ('774', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15132 INSERT INTO `marc_subfield_structure` VALUES ('774', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15133 INSERT INTO `marc_subfield_structure` VALUES ('774', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15134 INSERT INTO `marc_subfield_structure` VALUES ('774', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15135 INSERT INTO `marc_subfield_structure` VALUES ('774', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15136 INSERT INTO `marc_subfield_structure` VALUES ('774', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15137 INSERT INTO `marc_subfield_structure` VALUES ('775', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15138 INSERT INTO `marc_subfield_structure` VALUES ('775', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15139 INSERT INTO `marc_subfield_structure` VALUES ('775', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15140 INSERT INTO `marc_subfield_structure` VALUES ('775', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15141 INSERT INTO `marc_subfield_structure` VALUES ('775', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15142 INSERT INTO `marc_subfield_structure` VALUES ('775', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15143 INSERT INTO `marc_subfield_structure` VALUES ('775', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15144 INSERT INTO `marc_subfield_structure` VALUES ('775', 'e', 'Language code', 'Language code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15145 INSERT INTO `marc_subfield_structure` VALUES ('775', 'f', 'Country code', 'Country code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15146 INSERT INTO `marc_subfield_structure` VALUES ('775', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15147 INSERT INTO `marc_subfield_structure` VALUES ('775', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15148 INSERT INTO `marc_subfield_structure` VALUES ('775', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15149 INSERT INTO `marc_subfield_structure` VALUES ('775', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15150 INSERT INTO `marc_subfield_structure` VALUES ('775', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15151 INSERT INTO `marc_subfield_structure` VALUES ('775', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15152 INSERT INTO `marc_subfield_structure` VALUES ('775', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15153 INSERT INTO `marc_subfield_structure` VALUES ('775', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15154 INSERT INTO `marc_subfield_structure` VALUES ('775', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15155 INSERT INTO `marc_subfield_structure` VALUES ('775', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15156 INSERT INTO `marc_subfield_structure` VALUES ('775', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15157 INSERT INTO `marc_subfield_structure` VALUES ('775', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15158 INSERT INTO `marc_subfield_structure` VALUES ('775', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15159 INSERT INTO `marc_subfield_structure` VALUES ('775', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15160 INSERT INTO `marc_subfield_structure` VALUES ('775', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15161 INSERT INTO `marc_subfield_structure` VALUES ('775', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15162 INSERT INTO `marc_subfield_structure` VALUES ('776', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15163 INSERT INTO `marc_subfield_structure` VALUES ('776', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15164 INSERT INTO `marc_subfield_structure` VALUES ('776', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15165 INSERT INTO `marc_subfield_structure` VALUES ('776', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15166 INSERT INTO `marc_subfield_structure` VALUES ('776', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15167 INSERT INTO `marc_subfield_structure` VALUES ('776', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15168 INSERT INTO `marc_subfield_structure` VALUES ('776', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15169 INSERT INTO `marc_subfield_structure` VALUES ('776', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15170 INSERT INTO `marc_subfield_structure` VALUES ('776', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15171 INSERT INTO `marc_subfield_structure` VALUES ('776', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15172 INSERT INTO `marc_subfield_structure` VALUES ('776', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15173 INSERT INTO `marc_subfield_structure` VALUES ('776', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15174 INSERT INTO `marc_subfield_structure` VALUES ('776', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15175 INSERT INTO `marc_subfield_structure` VALUES ('776', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15176 INSERT INTO `marc_subfield_structure` VALUES ('776', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15177 INSERT INTO `marc_subfield_structure` VALUES ('776', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15178 INSERT INTO `marc_subfield_structure` VALUES ('776', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15179 INSERT INTO `marc_subfield_structure` VALUES ('776', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15180 INSERT INTO `marc_subfield_structure` VALUES ('776', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15181 INSERT INTO `marc_subfield_structure` VALUES ('776', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15182 INSERT INTO `marc_subfield_structure` VALUES ('776', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15183 INSERT INTO `marc_subfield_structure` VALUES ('776', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15184 INSERT INTO `marc_subfield_structure` VALUES ('776', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15185 INSERT INTO `marc_subfield_structure` VALUES ('777', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15186 INSERT INTO `marc_subfield_structure` VALUES ('777', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15187 INSERT INTO `marc_subfield_structure` VALUES ('777', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15188 INSERT INTO `marc_subfield_structure` VALUES ('777', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15189 INSERT INTO `marc_subfield_structure` VALUES ('777', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15190 INSERT INTO `marc_subfield_structure` VALUES ('777', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15191 INSERT INTO `marc_subfield_structure` VALUES ('777', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15192 INSERT INTO `marc_subfield_structure` VALUES ('777', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15193 INSERT INTO `marc_subfield_structure` VALUES ('777', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15194 INSERT INTO `marc_subfield_structure` VALUES ('777', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15195 INSERT INTO `marc_subfield_structure` VALUES ('777', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15196 INSERT INTO `marc_subfield_structure` VALUES ('777', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15197 INSERT INTO `marc_subfield_structure` VALUES ('777', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15198 INSERT INTO `marc_subfield_structure` VALUES ('777', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15199 INSERT INTO `marc_subfield_structure` VALUES ('777', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15200 INSERT INTO `marc_subfield_structure` VALUES ('777', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15201 INSERT INTO `marc_subfield_structure` VALUES ('777', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15202 INSERT INTO `marc_subfield_structure` VALUES ('777', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15203 INSERT INTO `marc_subfield_structure` VALUES ('777', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15204 INSERT INTO `marc_subfield_structure` VALUES ('777', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15205 INSERT INTO `marc_subfield_structure` VALUES ('780', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15206 INSERT INTO `marc_subfield_structure` VALUES ('780', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15207 INSERT INTO `marc_subfield_structure` VALUES ('780', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15208 INSERT INTO `marc_subfield_structure` VALUES ('780', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15209 INSERT INTO `marc_subfield_structure` VALUES ('780', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15210 INSERT INTO `marc_subfield_structure` VALUES ('780', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15211 INSERT INTO `marc_subfield_structure` VALUES ('780', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15212 INSERT INTO `marc_subfield_structure` VALUES ('780', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15213 INSERT INTO `marc_subfield_structure` VALUES ('780', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15214 INSERT INTO `marc_subfield_structure` VALUES ('780', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15215 INSERT INTO `marc_subfield_structure` VALUES ('780', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15216 INSERT INTO `marc_subfield_structure` VALUES ('780', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15217 INSERT INTO `marc_subfield_structure` VALUES ('780', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15218 INSERT INTO `marc_subfield_structure` VALUES ('780', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15219 INSERT INTO `marc_subfield_structure` VALUES ('780', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15220 INSERT INTO `marc_subfield_structure` VALUES ('780', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15221 INSERT INTO `marc_subfield_structure` VALUES ('780', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15222 INSERT INTO `marc_subfield_structure` VALUES ('780', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15223 INSERT INTO `marc_subfield_structure` VALUES ('780', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15224 INSERT INTO `marc_subfield_structure` VALUES ('780', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15225 INSERT INTO `marc_subfield_structure` VALUES ('780', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15226 INSERT INTO `marc_subfield_structure` VALUES ('780', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15227 INSERT INTO `marc_subfield_structure` VALUES ('780', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15228 INSERT INTO `marc_subfield_structure` VALUES ('785', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15229 INSERT INTO `marc_subfield_structure` VALUES ('785', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15230 INSERT INTO `marc_subfield_structure` VALUES ('785', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15231 INSERT INTO `marc_subfield_structure` VALUES ('785', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15232 INSERT INTO `marc_subfield_structure` VALUES ('785', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15233 INSERT INTO `marc_subfield_structure` VALUES ('785', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15234 INSERT INTO `marc_subfield_structure` VALUES ('785', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15235 INSERT INTO `marc_subfield_structure` VALUES ('785', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15236 INSERT INTO `marc_subfield_structure` VALUES ('785', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15237 INSERT INTO `marc_subfield_structure` VALUES ('785', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15238 INSERT INTO `marc_subfield_structure` VALUES ('785', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15239 INSERT INTO `marc_subfield_structure` VALUES ('785', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15240 INSERT INTO `marc_subfield_structure` VALUES ('785', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15241 INSERT INTO `marc_subfield_structure` VALUES ('785', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15242 INSERT INTO `marc_subfield_structure` VALUES ('785', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15243 INSERT INTO `marc_subfield_structure` VALUES ('785', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15244 INSERT INTO `marc_subfield_structure` VALUES ('785', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15245 INSERT INTO `marc_subfield_structure` VALUES ('785', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15246 INSERT INTO `marc_subfield_structure` VALUES ('785', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15247 INSERT INTO `marc_subfield_structure` VALUES ('785', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15248 INSERT INTO `marc_subfield_structure` VALUES ('785', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15249 INSERT INTO `marc_subfield_structure` VALUES ('785', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15250 INSERT INTO `marc_subfield_structure` VALUES ('785', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15251 INSERT INTO `marc_subfield_structure` VALUES ('786', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15252 INSERT INTO `marc_subfield_structure` VALUES ('786', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15253 INSERT INTO `marc_subfield_structure` VALUES ('786', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15254 INSERT INTO `marc_subfield_structure` VALUES ('786', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15255 INSERT INTO `marc_subfield_structure` VALUES ('786', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15256 INSERT INTO `marc_subfield_structure` VALUES ('786', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15257 INSERT INTO `marc_subfield_structure` VALUES ('786', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15258 INSERT INTO `marc_subfield_structure` VALUES ('786', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15259 INSERT INTO `marc_subfield_structure` VALUES ('786', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15260 INSERT INTO `marc_subfield_structure` VALUES ('786', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15261 INSERT INTO `marc_subfield_structure` VALUES ('786', 'j', 'Period of content', 'Period of content', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15262 INSERT INTO `marc_subfield_structure` VALUES ('786', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15263 INSERT INTO `marc_subfield_structure` VALUES ('786', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15264 INSERT INTO `marc_subfield_structure` VALUES ('786', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15265 INSERT INTO `marc_subfield_structure` VALUES ('786', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15266 INSERT INTO `marc_subfield_structure` VALUES ('786', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15267 INSERT INTO `marc_subfield_structure` VALUES ('786', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15268 INSERT INTO `marc_subfield_structure` VALUES ('786', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15269 INSERT INTO `marc_subfield_structure` VALUES ('786', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15270 INSERT INTO `marc_subfield_structure` VALUES ('786', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15271 INSERT INTO `marc_subfield_structure` VALUES ('786', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15272 INSERT INTO `marc_subfield_structure` VALUES ('786', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15273 INSERT INTO `marc_subfield_structure` VALUES ('786', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15274 INSERT INTO `marc_subfield_structure` VALUES ('786', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15275 INSERT INTO `marc_subfield_structure` VALUES ('787', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15276 INSERT INTO `marc_subfield_structure` VALUES ('787', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15277 INSERT INTO `marc_subfield_structure` VALUES ('787', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15278 INSERT INTO `marc_subfield_structure` VALUES ('787', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15279 INSERT INTO `marc_subfield_structure` VALUES ('787', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15280 INSERT INTO `marc_subfield_structure` VALUES ('787', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15281 INSERT INTO `marc_subfield_structure` VALUES ('787', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15282 INSERT INTO `marc_subfield_structure` VALUES ('787', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15283 INSERT INTO `marc_subfield_structure` VALUES ('787', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15284 INSERT INTO `marc_subfield_structure` VALUES ('787', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15285 INSERT INTO `marc_subfield_structure` VALUES ('787', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15286 INSERT INTO `marc_subfield_structure` VALUES ('787', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15287 INSERT INTO `marc_subfield_structure` VALUES ('787', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15288 INSERT INTO `marc_subfield_structure` VALUES ('787', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15289 INSERT INTO `marc_subfield_structure` VALUES ('787', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15290 INSERT INTO `marc_subfield_structure` VALUES ('787', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15291 INSERT INTO `marc_subfield_structure` VALUES ('787', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15292 INSERT INTO `marc_subfield_structure` VALUES ('787', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15293 INSERT INTO `marc_subfield_structure` VALUES ('787', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15294 INSERT INTO `marc_subfield_structure` VALUES ('787', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15295 INSERT INTO `marc_subfield_structure` VALUES ('787', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15296 INSERT INTO `marc_subfield_structure` VALUES ('787', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15297 INSERT INTO `marc_subfield_structure` VALUES ('787', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15298 INSERT INTO `marc_subfield_structure` VALUES ('789', '%', '%', '%', 0, 0, '', 7, '', '', '', 0, -6, 'SR', '', '');
15299 INSERT INTO `marc_subfield_structure` VALUES ('789', '2', '2', '2', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15300 INSERT INTO `marc_subfield_structure` VALUES ('789', '3', '3', '3', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15301 INSERT INTO `marc_subfield_structure` VALUES ('789', '4', '4', '4', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15302 INSERT INTO `marc_subfield_structure` VALUES ('789', '5', '5', '5', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15303 INSERT INTO `marc_subfield_structure` VALUES ('789', '6', '6', '6', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15304 INSERT INTO `marc_subfield_structure` VALUES ('789', '7', '7', '7', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15305 INSERT INTO `marc_subfield_structure` VALUES ('789', '8', '8', '8', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15306 INSERT INTO `marc_subfield_structure` VALUES ('789', '9', '9', '9', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15307 INSERT INTO `marc_subfield_structure` VALUES ('789', 'a', 'a', 'a', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15308 INSERT INTO `marc_subfield_structure` VALUES ('789', 'b', 'b', 'b', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15309 INSERT INTO `marc_subfield_structure` VALUES ('789', 'c', 'c', 'c', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15310 INSERT INTO `marc_subfield_structure` VALUES ('789', 'd', 'd', 'd', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15311 INSERT INTO `marc_subfield_structure` VALUES ('789', 'e', 'e', 'e', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15312 INSERT INTO `marc_subfield_structure` VALUES ('789', 'f', 'f', 'f', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15313 INSERT INTO `marc_subfield_structure` VALUES ('789', 'g', 'g', 'g', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15314 INSERT INTO `marc_subfield_structure` VALUES ('789', 'h', 'h', 'h', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15315 INSERT INTO `marc_subfield_structure` VALUES ('789', 'i', 'i', 'i', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15316 INSERT INTO `marc_subfield_structure` VALUES ('789', 'j', 'j', 'j', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15317 INSERT INTO `marc_subfield_structure` VALUES ('789', 'k', 'k', 'k', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15318 INSERT INTO `marc_subfield_structure` VALUES ('789', 'l', 'l', 'l', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15319 INSERT INTO `marc_subfield_structure` VALUES ('789', 'm', 'm', 'm', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15320 INSERT INTO `marc_subfield_structure` VALUES ('789', 'n', 'n', 'n', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15321 INSERT INTO `marc_subfield_structure` VALUES ('789', 'o', 'o', 'o', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15322 INSERT INTO `marc_subfield_structure` VALUES ('789', 'p', 'p', 'p', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15323 INSERT INTO `marc_subfield_structure` VALUES ('789', 'q', 'q', 'q', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15324 INSERT INTO `marc_subfield_structure` VALUES ('789', 'r', 'r', 'r', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15325 INSERT INTO `marc_subfield_structure` VALUES ('789', 's', 's', 's', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15326 INSERT INTO `marc_subfield_structure` VALUES ('789', 't', 't', 't', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15327 INSERT INTO `marc_subfield_structure` VALUES ('789', 'u', 'u', 'u', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15328 INSERT INTO `marc_subfield_structure` VALUES ('789', 'v', 'v', 'v', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15329 INSERT INTO `marc_subfield_structure` VALUES ('789', 'w', 'w', 'w', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15330 INSERT INTO `marc_subfield_structure` VALUES ('789', 'x', 'x', 'x', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15331 INSERT INTO `marc_subfield_structure` VALUES ('789', 'y', 'y', 'y', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15332 INSERT INTO `marc_subfield_structure` VALUES ('789', 'z', 'z', 'z', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15333 INSERT INTO `marc_subfield_structure` VALUES ('796', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'SR', '', '');
15334 INSERT INTO `marc_subfield_structure` VALUES ('796', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15335 INSERT INTO `marc_subfield_structure` VALUES ('796', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15336 INSERT INTO `marc_subfield_structure` VALUES ('796', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15337 INSERT INTO `marc_subfield_structure` VALUES ('796', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15338 INSERT INTO `marc_subfield_structure` VALUES ('796', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15339 INSERT INTO `marc_subfield_structure` VALUES ('796', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SR', '', '');
15340 INSERT INTO `marc_subfield_structure` VALUES ('796', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15341 INSERT INTO `marc_subfield_structure` VALUES ('796', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15342 INSERT INTO `marc_subfield_structure` VALUES ('796', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15343 INSERT INTO `marc_subfield_structure` VALUES ('796', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15344 INSERT INTO `marc_subfield_structure` VALUES ('796', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15345 INSERT INTO `marc_subfield_structure` VALUES ('796', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15346 INSERT INTO `marc_subfield_structure` VALUES ('796', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15347 INSERT INTO `marc_subfield_structure` VALUES ('796', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15348 INSERT INTO `marc_subfield_structure` VALUES ('796', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15349 INSERT INTO `marc_subfield_structure` VALUES ('796', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15350 INSERT INTO `marc_subfield_structure` VALUES ('796', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15351 INSERT INTO `marc_subfield_structure` VALUES ('796', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15352 INSERT INTO `marc_subfield_structure` VALUES ('796', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15353 INSERT INTO `marc_subfield_structure` VALUES ('796', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15354 INSERT INTO `marc_subfield_structure` VALUES ('796', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15355 INSERT INTO `marc_subfield_structure` VALUES ('796', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15356 INSERT INTO `marc_subfield_structure` VALUES ('796', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15357 INSERT INTO `marc_subfield_structure` VALUES ('796', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15358 INSERT INTO `marc_subfield_structure` VALUES ('796', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15359 INSERT INTO `marc_subfield_structure` VALUES ('796', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15360 INSERT INTO `marc_subfield_structure` VALUES ('796', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15361 INSERT INTO `marc_subfield_structure` VALUES ('797', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'SR', '', '');
15362 INSERT INTO `marc_subfield_structure` VALUES ('797', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15363 INSERT INTO `marc_subfield_structure` VALUES ('797', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15364 INSERT INTO `marc_subfield_structure` VALUES ('797', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15365 INSERT INTO `marc_subfield_structure` VALUES ('797', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15366 INSERT INTO `marc_subfield_structure` VALUES ('797', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15367 INSERT INTO `marc_subfield_structure` VALUES ('797', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SR', '', '');
15368 INSERT INTO `marc_subfield_structure` VALUES ('797', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15369 INSERT INTO `marc_subfield_structure` VALUES ('797', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15370 INSERT INTO `marc_subfield_structure` VALUES ('797', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15371 INSERT INTO `marc_subfield_structure` VALUES ('797', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15372 INSERT INTO `marc_subfield_structure` VALUES ('797', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15373 INSERT INTO `marc_subfield_structure` VALUES ('797', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15374 INSERT INTO `marc_subfield_structure` VALUES ('797', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15375 INSERT INTO `marc_subfield_structure` VALUES ('797', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15376 INSERT INTO `marc_subfield_structure` VALUES ('797', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15377 INSERT INTO `marc_subfield_structure` VALUES ('797', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15378 INSERT INTO `marc_subfield_structure` VALUES ('797', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15379 INSERT INTO `marc_subfield_structure` VALUES ('797', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15380 INSERT INTO `marc_subfield_structure` VALUES ('797', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15381 INSERT INTO `marc_subfield_structure` VALUES ('797', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15382 INSERT INTO `marc_subfield_structure` VALUES ('797', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15383 INSERT INTO `marc_subfield_structure` VALUES ('797', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15384 INSERT INTO `marc_subfield_structure` VALUES ('797', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15385 INSERT INTO `marc_subfield_structure` VALUES ('797', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15386 INSERT INTO `marc_subfield_structure` VALUES ('797', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15387 INSERT INTO `marc_subfield_structure` VALUES ('798', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SR', '', '');
15388 INSERT INTO `marc_subfield_structure` VALUES ('798', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15389 INSERT INTO `marc_subfield_structure` VALUES ('798', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15390 INSERT INTO `marc_subfield_structure` VALUES ('798', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15391 INSERT INTO `marc_subfield_structure` VALUES ('798', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15392 INSERT INTO `marc_subfield_structure` VALUES ('798', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15393 INSERT INTO `marc_subfield_structure` VALUES ('798', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SR', '', '');
15394 INSERT INTO `marc_subfield_structure` VALUES ('798', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15395 INSERT INTO `marc_subfield_structure` VALUES ('798', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15396 INSERT INTO `marc_subfield_structure` VALUES ('798', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15397 INSERT INTO `marc_subfield_structure` VALUES ('798', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15398 INSERT INTO `marc_subfield_structure` VALUES ('798', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15399 INSERT INTO `marc_subfield_structure` VALUES ('798', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15400 INSERT INTO `marc_subfield_structure` VALUES ('798', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15401 INSERT INTO `marc_subfield_structure` VALUES ('798', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15402 INSERT INTO `marc_subfield_structure` VALUES ('798', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15403 INSERT INTO `marc_subfield_structure` VALUES ('798', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15404 INSERT INTO `marc_subfield_structure` VALUES ('798', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15405 INSERT INTO `marc_subfield_structure` VALUES ('798', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15406 INSERT INTO `marc_subfield_structure` VALUES ('798', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15407 INSERT INTO `marc_subfield_structure` VALUES ('798', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15408 INSERT INTO `marc_subfield_structure` VALUES ('798', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15409 INSERT INTO `marc_subfield_structure` VALUES ('798', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15410 INSERT INTO `marc_subfield_structure` VALUES ('798', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SR', '', '');
15411 INSERT INTO `marc_subfield_structure` VALUES ('799', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'SR', '', '');
15412 INSERT INTO `marc_subfield_structure` VALUES ('799', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15413 INSERT INTO `marc_subfield_structure` VALUES ('799', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15414 INSERT INTO `marc_subfield_structure` VALUES ('799', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15415 INSERT INTO `marc_subfield_structure` VALUES ('799', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15416 INSERT INTO `marc_subfield_structure` VALUES ('799', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SR', '', '');
15417 INSERT INTO `marc_subfield_structure` VALUES ('799', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15418 INSERT INTO `marc_subfield_structure` VALUES ('799', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15419 INSERT INTO `marc_subfield_structure` VALUES ('799', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15420 INSERT INTO `marc_subfield_structure` VALUES ('799', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15421 INSERT INTO `marc_subfield_structure` VALUES ('799', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15422 INSERT INTO `marc_subfield_structure` VALUES ('799', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15423 INSERT INTO `marc_subfield_structure` VALUES ('799', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15424 INSERT INTO `marc_subfield_structure` VALUES ('799', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15425 INSERT INTO `marc_subfield_structure` VALUES ('799', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15426 INSERT INTO `marc_subfield_structure` VALUES ('799', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15427 INSERT INTO `marc_subfield_structure` VALUES ('799', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15428 INSERT INTO `marc_subfield_structure` VALUES ('799', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15429 INSERT INTO `marc_subfield_structure` VALUES ('799', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15430 INSERT INTO `marc_subfield_structure` VALUES ('799', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15431 INSERT INTO `marc_subfield_structure` VALUES ('799', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'SR', '', '');
15432 INSERT INTO `marc_subfield_structure` VALUES ('800', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15433 INSERT INTO `marc_subfield_structure` VALUES ('800', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15434 INSERT INTO `marc_subfield_structure` VALUES ('800', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15435 INSERT INTO `marc_subfield_structure` VALUES ('800', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'SR', '', '');
15436 INSERT INTO `marc_subfield_structure` VALUES ('800', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15437 INSERT INTO `marc_subfield_structure` VALUES ('800', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15438 INSERT INTO `marc_subfield_structure` VALUES ('800', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15439 INSERT INTO `marc_subfield_structure` VALUES ('800', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15440 INSERT INTO `marc_subfield_structure` VALUES ('800', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15441 INSERT INTO `marc_subfield_structure` VALUES ('800', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15442 INSERT INTO `marc_subfield_structure` VALUES ('800', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15443 INSERT INTO `marc_subfield_structure` VALUES ('800', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15444 INSERT INTO `marc_subfield_structure` VALUES ('800', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15445 INSERT INTO `marc_subfield_structure` VALUES ('800', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15446 INSERT INTO `marc_subfield_structure` VALUES ('800', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15447 INSERT INTO `marc_subfield_structure` VALUES ('800', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15448 INSERT INTO `marc_subfield_structure` VALUES ('800', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15449 INSERT INTO `marc_subfield_structure` VALUES ('800', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15450 INSERT INTO `marc_subfield_structure` VALUES ('800', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15451 INSERT INTO `marc_subfield_structure` VALUES ('800', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15452 INSERT INTO `marc_subfield_structure` VALUES ('800', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15453 INSERT INTO `marc_subfield_structure` VALUES ('800', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15454 INSERT INTO `marc_subfield_structure` VALUES ('800', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15455 INSERT INTO `marc_subfield_structure` VALUES ('800', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15456 INSERT INTO `marc_subfield_structure` VALUES ('800', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15457 INSERT INTO `marc_subfield_structure` VALUES ('810', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15458 INSERT INTO `marc_subfield_structure` VALUES ('810', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15459 INSERT INTO `marc_subfield_structure` VALUES ('810', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15460 INSERT INTO `marc_subfield_structure` VALUES ('810', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'SR', '', '');
15461 INSERT INTO `marc_subfield_structure` VALUES ('810', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15462 INSERT INTO `marc_subfield_structure` VALUES ('810', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15463 INSERT INTO `marc_subfield_structure` VALUES ('810', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15464 INSERT INTO `marc_subfield_structure` VALUES ('810', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15465 INSERT INTO `marc_subfield_structure` VALUES ('810', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15466 INSERT INTO `marc_subfield_structure` VALUES ('810', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15467 INSERT INTO `marc_subfield_structure` VALUES ('810', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15468 INSERT INTO `marc_subfield_structure` VALUES ('810', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15469 INSERT INTO `marc_subfield_structure` VALUES ('810', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15470 INSERT INTO `marc_subfield_structure` VALUES ('810', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15471 INSERT INTO `marc_subfield_structure` VALUES ('810', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15472 INSERT INTO `marc_subfield_structure` VALUES ('810', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15473 INSERT INTO `marc_subfield_structure` VALUES ('810', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15474 INSERT INTO `marc_subfield_structure` VALUES ('810', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15475 INSERT INTO `marc_subfield_structure` VALUES ('810', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15476 INSERT INTO `marc_subfield_structure` VALUES ('810', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15477 INSERT INTO `marc_subfield_structure` VALUES ('810', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15478 INSERT INTO `marc_subfield_structure` VALUES ('810', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15479 INSERT INTO `marc_subfield_structure` VALUES ('810', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15480 INSERT INTO `marc_subfield_structure` VALUES ('811', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15481 INSERT INTO `marc_subfield_structure` VALUES ('811', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15482 INSERT INTO `marc_subfield_structure` VALUES ('811', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15483 INSERT INTO `marc_subfield_structure` VALUES ('811', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'SR', '', '');
15484 INSERT INTO `marc_subfield_structure` VALUES ('811', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15485 INSERT INTO `marc_subfield_structure` VALUES ('811', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15486 INSERT INTO `marc_subfield_structure` VALUES ('811', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15487 INSERT INTO `marc_subfield_structure` VALUES ('811', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15488 INSERT INTO `marc_subfield_structure` VALUES ('811', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15489 INSERT INTO `marc_subfield_structure` VALUES ('811', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15490 INSERT INTO `marc_subfield_structure` VALUES ('811', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15491 INSERT INTO `marc_subfield_structure` VALUES ('811', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15492 INSERT INTO `marc_subfield_structure` VALUES ('811', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15493 INSERT INTO `marc_subfield_structure` VALUES ('811', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15494 INSERT INTO `marc_subfield_structure` VALUES ('811', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15495 INSERT INTO `marc_subfield_structure` VALUES ('811', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15496 INSERT INTO `marc_subfield_structure` VALUES ('811', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15497 INSERT INTO `marc_subfield_structure` VALUES ('811', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15498 INSERT INTO `marc_subfield_structure` VALUES ('811', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15499 INSERT INTO `marc_subfield_structure` VALUES ('811', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15500 INSERT INTO `marc_subfield_structure` VALUES ('811', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15501 INSERT INTO `marc_subfield_structure` VALUES ('830', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15502 INSERT INTO `marc_subfield_structure` VALUES ('830', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15503 INSERT INTO `marc_subfield_structure` VALUES ('830', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'SR', '', '');
15504 INSERT INTO `marc_subfield_structure` VALUES ('830', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15505 INSERT INTO `marc_subfield_structure` VALUES ('830', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15506 INSERT INTO `marc_subfield_structure` VALUES ('830', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15507 INSERT INTO `marc_subfield_structure` VALUES ('830', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15508 INSERT INTO `marc_subfield_structure` VALUES ('830', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15509 INSERT INTO `marc_subfield_structure` VALUES ('830', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15510 INSERT INTO `marc_subfield_structure` VALUES ('830', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15511 INSERT INTO `marc_subfield_structure` VALUES ('830', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15512 INSERT INTO `marc_subfield_structure` VALUES ('830', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15513 INSERT INTO `marc_subfield_structure` VALUES ('830', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15514 INSERT INTO `marc_subfield_structure` VALUES ('830', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15515 INSERT INTO `marc_subfield_structure` VALUES ('830', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15516 INSERT INTO `marc_subfield_structure` VALUES ('830', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15517 INSERT INTO `marc_subfield_structure` VALUES ('830', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15518 INSERT INTO `marc_subfield_structure` VALUES ('830', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15519 INSERT INTO `marc_subfield_structure` VALUES ('840', 'a', 'Title', 'Title', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15520 INSERT INTO `marc_subfield_structure` VALUES ('840', 'h', 'Medium', 'Medium', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15521 INSERT INTO `marc_subfield_structure` VALUES ('840', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15522 INSERT INTO `marc_subfield_structure` VALUES ('841', 'a', 'Type of record', 'Type of record', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15523 INSERT INTO `marc_subfield_structure` VALUES ('841', 'b', 'Fixed-length data elements', 'Fixed-length data elements', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15524 INSERT INTO `marc_subfield_structure` VALUES ('841', 'e', 'Encoding level', 'Encoding level', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15525 INSERT INTO `marc_subfield_structure` VALUES ('842', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15526 INSERT INTO `marc_subfield_structure` VALUES ('842', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15527 INSERT INTO `marc_subfield_structure` VALUES ('842', 'a', 'Textual physical form designator', 'Textual physical form designator', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15528 INSERT INTO `marc_subfield_structure` VALUES ('843', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15529 INSERT INTO `marc_subfield_structure` VALUES ('843', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15530 INSERT INTO `marc_subfield_structure` VALUES ('843', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15531 INSERT INTO `marc_subfield_structure` VALUES ('843', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15532 INSERT INTO `marc_subfield_structure` VALUES ('843', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15533 INSERT INTO `marc_subfield_structure` VALUES ('843', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15534 INSERT INTO `marc_subfield_structure` VALUES ('843', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15535 INSERT INTO `marc_subfield_structure` VALUES ('843', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15536 INSERT INTO `marc_subfield_structure` VALUES ('843', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15537 INSERT INTO `marc_subfield_structure` VALUES ('843', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15538 INSERT INTO `marc_subfield_structure` VALUES ('843', 'm', 'Dates of publication and/or sequential designation of issues reproduced', 'Dates of publication and/or sequential designation of issues reproduced', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15539 INSERT INTO `marc_subfield_structure` VALUES ('843', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15540 INSERT INTO `marc_subfield_structure` VALUES ('844', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15541 INSERT INTO `marc_subfield_structure` VALUES ('844', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15542 INSERT INTO `marc_subfield_structure` VALUES ('844', 'a', 'Name of unit', 'Name of unit', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15543 INSERT INTO `marc_subfield_structure` VALUES ('845', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15544 INSERT INTO `marc_subfield_structure` VALUES ('845', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15545 INSERT INTO `marc_subfield_structure` VALUES ('845', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15546 INSERT INTO `marc_subfield_structure` VALUES ('845', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15547 INSERT INTO `marc_subfield_structure` VALUES ('845', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15548 INSERT INTO `marc_subfield_structure` VALUES ('845', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15549 INSERT INTO `marc_subfield_structure` VALUES ('845', 'c', 'Authorization', 'Authorization', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15550 INSERT INTO `marc_subfield_structure` VALUES ('845', 'd', 'Authorized users', 'Authorized users', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15551 INSERT INTO `marc_subfield_structure` VALUES ('850', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15552 INSERT INTO `marc_subfield_structure` VALUES ('850', 'a', 'Holding institution', 'Holding institution', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15553 INSERT INTO `marc_subfield_structure` VALUES ('850', 'b', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15554 INSERT INTO `marc_subfield_structure` VALUES ('850', 'd', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15555 INSERT INTO `marc_subfield_structure` VALUES ('850', 'e', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15556 INSERT INTO `marc_subfield_structure` VALUES ('851', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15557 INSERT INTO `marc_subfield_structure` VALUES ('851', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15558 INSERT INTO `marc_subfield_structure` VALUES ('851', 'a', 'Name (custodian or owner)', 'Name (custodian or owner)', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15559 INSERT INTO `marc_subfield_structure` VALUES ('851', 'b', 'Institutional division', 'Institutional division', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15560 INSERT INTO `marc_subfield_structure` VALUES ('851', 'c', 'Street address', 'Street address', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15561 INSERT INTO `marc_subfield_structure` VALUES ('851', 'd', 'Country', 'Country', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15562 INSERT INTO `marc_subfield_structure` VALUES ('851', 'e', 'Location of units', 'Location of units', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15563 INSERT INTO `marc_subfield_structure` VALUES ('851', 'f', 'Item number', 'Item number', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15564 INSERT INTO `marc_subfield_structure` VALUES ('851', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SR', '', '');
15565 INSERT INTO `marc_subfield_structure` VALUES ('852', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15566 INSERT INTO `marc_subfield_structure` VALUES ('852', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15567 INSERT INTO `marc_subfield_structure` VALUES ('852', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15568 INSERT INTO `marc_subfield_structure` VALUES ('852', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15569 INSERT INTO `marc_subfield_structure` VALUES ('852', 'a', 'Location', 'Location', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15570 INSERT INTO `marc_subfield_structure` VALUES ('852', 'b', 'Sublocation or collection', 'Sublocation or collection', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15571 INSERT INTO `marc_subfield_structure` VALUES ('852', 'c', 'Shelving location', 'Shelving location', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15572 INSERT INTO `marc_subfield_structure` VALUES ('852', 'e', 'Address', 'Address', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15573 INSERT INTO `marc_subfield_structure` VALUES ('852', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15574 INSERT INTO `marc_subfield_structure` VALUES ('852', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15575 INSERT INTO `marc_subfield_structure` VALUES ('852', 'h', 'Classification part', 'Classification part', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15576 INSERT INTO `marc_subfield_structure` VALUES ('852', 'i', 'Item part', 'Item part', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15577 INSERT INTO `marc_subfield_structure` VALUES ('852', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15578 INSERT INTO `marc_subfield_structure` VALUES ('852', 'k', 'Call number prefix', 'Call number prefix', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15579 INSERT INTO `marc_subfield_structure` VALUES ('852', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15580 INSERT INTO `marc_subfield_structure` VALUES ('852', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15581 INSERT INTO `marc_subfield_structure` VALUES ('852', 'n', 'Country code', 'Country code', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15582 INSERT INTO `marc_subfield_structure` VALUES ('852', 'p', 'Piece designation', 'Piece designation', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15583 INSERT INTO `marc_subfield_structure` VALUES ('852', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15584 INSERT INTO `marc_subfield_structure` VALUES ('852', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15585 INSERT INTO `marc_subfield_structure` VALUES ('852', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15586 INSERT INTO `marc_subfield_structure` VALUES ('852', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15587 INSERT INTO `marc_subfield_structure` VALUES ('852', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15588 INSERT INTO `marc_subfield_structure` VALUES ('853', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15589 INSERT INTO `marc_subfield_structure` VALUES ('853', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15590 INSERT INTO `marc_subfield_structure` VALUES ('853', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15591 INSERT INTO `marc_subfield_structure` VALUES ('853', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15592 INSERT INTO `marc_subfield_structure` VALUES ('853', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15593 INSERT INTO `marc_subfield_structure` VALUES ('853', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15594 INSERT INTO `marc_subfield_structure` VALUES ('853', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15595 INSERT INTO `marc_subfield_structure` VALUES ('853', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15596 INSERT INTO `marc_subfield_structure` VALUES ('853', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15597 INSERT INTO `marc_subfield_structure` VALUES ('853', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15598 INSERT INTO `marc_subfield_structure` VALUES ('853', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15599 INSERT INTO `marc_subfield_structure` VALUES ('853', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15600 INSERT INTO `marc_subfield_structure` VALUES ('853', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15601 INSERT INTO `marc_subfield_structure` VALUES ('853', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15602 INSERT INTO `marc_subfield_structure` VALUES ('853', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15603 INSERT INTO `marc_subfield_structure` VALUES ('853', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15604 INSERT INTO `marc_subfield_structure` VALUES ('853', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15605 INSERT INTO `marc_subfield_structure` VALUES ('853', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15606 INSERT INTO `marc_subfield_structure` VALUES ('853', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15607 INSERT INTO `marc_subfield_structure` VALUES ('853', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15608 INSERT INTO `marc_subfield_structure` VALUES ('853', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15609 INSERT INTO `marc_subfield_structure` VALUES ('853', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15610 INSERT INTO `marc_subfield_structure` VALUES ('853', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15611 INSERT INTO `marc_subfield_structure` VALUES ('853', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15612 INSERT INTO `marc_subfield_structure` VALUES ('853', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15613 INSERT INTO `marc_subfield_structure` VALUES ('854', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15614 INSERT INTO `marc_subfield_structure` VALUES ('854', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15615 INSERT INTO `marc_subfield_structure` VALUES ('854', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15616 INSERT INTO `marc_subfield_structure` VALUES ('854', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15617 INSERT INTO `marc_subfield_structure` VALUES ('854', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15618 INSERT INTO `marc_subfield_structure` VALUES ('854', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15619 INSERT INTO `marc_subfield_structure` VALUES ('854', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15620 INSERT INTO `marc_subfield_structure` VALUES ('854', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15621 INSERT INTO `marc_subfield_structure` VALUES ('854', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15622 INSERT INTO `marc_subfield_structure` VALUES ('854', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15623 INSERT INTO `marc_subfield_structure` VALUES ('854', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15624 INSERT INTO `marc_subfield_structure` VALUES ('854', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15625 INSERT INTO `marc_subfield_structure` VALUES ('854', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15626 INSERT INTO `marc_subfield_structure` VALUES ('854', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15627 INSERT INTO `marc_subfield_structure` VALUES ('854', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15628 INSERT INTO `marc_subfield_structure` VALUES ('854', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15629 INSERT INTO `marc_subfield_structure` VALUES ('854', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15630 INSERT INTO `marc_subfield_structure` VALUES ('854', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15631 INSERT INTO `marc_subfield_structure` VALUES ('854', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15632 INSERT INTO `marc_subfield_structure` VALUES ('854', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15633 INSERT INTO `marc_subfield_structure` VALUES ('854', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15634 INSERT INTO `marc_subfield_structure` VALUES ('854', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15635 INSERT INTO `marc_subfield_structure` VALUES ('854', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15636 INSERT INTO `marc_subfield_structure` VALUES ('854', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15637 INSERT INTO `marc_subfield_structure` VALUES ('854', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15638 INSERT INTO `marc_subfield_structure` VALUES ('855', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15639 INSERT INTO `marc_subfield_structure` VALUES ('855', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15640 INSERT INTO `marc_subfield_structure` VALUES ('855', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15641 INSERT INTO `marc_subfield_structure` VALUES ('855', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15642 INSERT INTO `marc_subfield_structure` VALUES ('855', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15643 INSERT INTO `marc_subfield_structure` VALUES ('855', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15644 INSERT INTO `marc_subfield_structure` VALUES ('855', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15645 INSERT INTO `marc_subfield_structure` VALUES ('855', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15646 INSERT INTO `marc_subfield_structure` VALUES ('855', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15647 INSERT INTO `marc_subfield_structure` VALUES ('855', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15648 INSERT INTO `marc_subfield_structure` VALUES ('855', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15649 INSERT INTO `marc_subfield_structure` VALUES ('855', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15650 INSERT INTO `marc_subfield_structure` VALUES ('855', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15651 INSERT INTO `marc_subfield_structure` VALUES ('855', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15652 INSERT INTO `marc_subfield_structure` VALUES ('855', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15653 INSERT INTO `marc_subfield_structure` VALUES ('855', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15654 INSERT INTO `marc_subfield_structure` VALUES ('855', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15655 INSERT INTO `marc_subfield_structure` VALUES ('855', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15656 INSERT INTO `marc_subfield_structure` VALUES ('855', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15657 INSERT INTO `marc_subfield_structure` VALUES ('855', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15658 INSERT INTO `marc_subfield_structure` VALUES ('855', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15659 INSERT INTO `marc_subfield_structure` VALUES ('855', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15660 INSERT INTO `marc_subfield_structure` VALUES ('855', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15661 INSERT INTO `marc_subfield_structure` VALUES ('855', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15662 INSERT INTO `marc_subfield_structure` VALUES ('855', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15663 INSERT INTO `marc_subfield_structure` VALUES ('856', '2', 'Access method', 'Access method', 0, 0, '', 8, '', '', '', 0, -6, 'SR', '', '');
15664 INSERT INTO `marc_subfield_structure` VALUES ('856', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', 0, -6, 'SR', '', '');
15665 INSERT INTO `marc_subfield_structure` VALUES ('856', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', 0, -6, 'SR', '', '');
15666 INSERT INTO `marc_subfield_structure` VALUES ('856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', 0, -6, 'SR', '', '');
15667 INSERT INTO `marc_subfield_structure` VALUES ('856', 'a', 'Host name', 'Host name', 1, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15668 INSERT INTO `marc_subfield_structure` VALUES ('856', 'b', 'Access number', 'Access number', 1, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15669 INSERT INTO `marc_subfield_structure` VALUES ('856', 'c', 'Compression information', 'Compression information', 1, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15670 INSERT INTO `marc_subfield_structure` VALUES ('856', 'd', 'Path', 'Path', 1, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15671 INSERT INTO `marc_subfield_structure` VALUES ('856', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15672 INSERT INTO `marc_subfield_structure` VALUES ('856', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15673 INSERT INTO `marc_subfield_structure` VALUES ('856', 'i', 'Instruction', 'Instruction', 1, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15674 INSERT INTO `marc_subfield_structure` VALUES ('856', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15675 INSERT INTO `marc_subfield_structure` VALUES ('856', 'k', 'Password', 'Password', 0, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15676 INSERT INTO `marc_subfield_structure` VALUES ('856', 'l', 'Logon', 'Logon', 0, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15677 INSERT INTO `marc_subfield_structure` VALUES ('856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15678 INSERT INTO `marc_subfield_structure` VALUES ('856', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15679 INSERT INTO `marc_subfield_structure` VALUES ('856', 'o', 'Operating system', 'Operating system', 0, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15680 INSERT INTO `marc_subfield_structure` VALUES ('856', 'p', 'Port', 'Port', 0, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15681 INSERT INTO `marc_subfield_structure` VALUES ('856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15682 INSERT INTO `marc_subfield_structure` VALUES ('856', 'r', 'Settings', 'Settings', 0, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15683 INSERT INTO `marc_subfield_structure` VALUES ('856', 's', 'File size', 'File size', 1, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15684 INSERT INTO `marc_subfield_structure` VALUES ('856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15685 INSERT INTO `marc_subfield_structure` VALUES ('856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 'biblioitems.url', 8, '', '', '', 1, -1, 'SR', '', '');
15686 INSERT INTO `marc_subfield_structure` VALUES ('856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15687 INSERT INTO `marc_subfield_structure` VALUES ('856', 'w', 'Record control number', 'Record control number', 1, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15688 INSERT INTO `marc_subfield_structure` VALUES ('856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 1, 'SR', '', '');
15689 INSERT INTO `marc_subfield_structure` VALUES ('856', 'y', 'Link text', 'Link text', 1, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15690 INSERT INTO `marc_subfield_structure` VALUES ('856', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, -1, 'SR', '', '');
15691 INSERT INTO `marc_subfield_structure` VALUES ('859', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'SR', '', '');
15692 INSERT INTO `marc_subfield_structure` VALUES ('859', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'SR', '', '');
15693 INSERT INTO `marc_subfield_structure` VALUES ('859', 'd', 'TDC (RLIN)', 'TDC (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'SR', '', '');
15694 INSERT INTO `marc_subfield_structure` VALUES ('859', 'l', 'LIB (RLIN)', 'LIB (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'SR', '', '');
15695 INSERT INTO `marc_subfield_structure` VALUES ('859', 'p', 'PRI (RLIN)', 'PRI (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'SR', '', '');
15696 INSERT INTO `marc_subfield_structure` VALUES ('859', 'r', 'REG (RLIN)', 'REG (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'SR', '', '');
15697 INSERT INTO `marc_subfield_structure` VALUES ('859', 'v', 'VER (RLIN)', 'VER (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'SR', '', '');
15698 INSERT INTO `marc_subfield_structure` VALUES ('859', 'x', 'LDEL (RLIN)', 'LDEL (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'SR', '', '');
15699 INSERT INTO `marc_subfield_structure` VALUES ('866', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15700 INSERT INTO `marc_subfield_structure` VALUES ('866', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15701 INSERT INTO `marc_subfield_structure` VALUES ('866', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'SR', '', '');
15702 INSERT INTO `marc_subfield_structure` VALUES ('866', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'SR', '', '');
15703 INSERT INTO `marc_subfield_structure` VALUES ('866', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'SR', '', '');
15704 INSERT INTO `marc_subfield_structure` VALUES ('867', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15705 INSERT INTO `marc_subfield_structure` VALUES ('867', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15706 INSERT INTO `marc_subfield_structure` VALUES ('867', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'SR', '', '');
15707 INSERT INTO `marc_subfield_structure` VALUES ('867', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'SR', '', '');
15708 INSERT INTO `marc_subfield_structure` VALUES ('867', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'SR', '', '');
15709 INSERT INTO `marc_subfield_structure` VALUES ('868', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15710 INSERT INTO `marc_subfield_structure` VALUES ('868', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15711 INSERT INTO `marc_subfield_structure` VALUES ('868', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'SR', '', '');
15712 INSERT INTO `marc_subfield_structure` VALUES ('868', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'SR', '', '');
15713 INSERT INTO `marc_subfield_structure` VALUES ('868', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'SR', '', '');
15714 INSERT INTO `marc_subfield_structure` VALUES ('870', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15715 INSERT INTO `marc_subfield_structure` VALUES ('870', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15716 INSERT INTO `marc_subfield_structure` VALUES ('870', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15717 INSERT INTO `marc_subfield_structure` VALUES ('870', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15718 INSERT INTO `marc_subfield_structure` VALUES ('870', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15719 INSERT INTO `marc_subfield_structure` VALUES ('870', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15720 INSERT INTO `marc_subfield_structure` VALUES ('870', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15721 INSERT INTO `marc_subfield_structure` VALUES ('870', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15722 INSERT INTO `marc_subfield_structure` VALUES ('870', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15723 INSERT INTO `marc_subfield_structure` VALUES ('870', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15724 INSERT INTO `marc_subfield_structure` VALUES ('870', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15725 INSERT INTO `marc_subfield_structure` VALUES ('870', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15726 INSERT INTO `marc_subfield_structure` VALUES ('870', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15727 INSERT INTO `marc_subfield_structure` VALUES ('870', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15728 INSERT INTO `marc_subfield_structure` VALUES ('870', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15729 INSERT INTO `marc_subfield_structure` VALUES ('870', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15730 INSERT INTO `marc_subfield_structure` VALUES ('870', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15731 INSERT INTO `marc_subfield_structure` VALUES ('871', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15732 INSERT INTO `marc_subfield_structure` VALUES ('871', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15733 INSERT INTO `marc_subfield_structure` VALUES ('871', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15734 INSERT INTO `marc_subfield_structure` VALUES ('871', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15735 INSERT INTO `marc_subfield_structure` VALUES ('871', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15736 INSERT INTO `marc_subfield_structure` VALUES ('871', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15737 INSERT INTO `marc_subfield_structure` VALUES ('871', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15738 INSERT INTO `marc_subfield_structure` VALUES ('871', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15739 INSERT INTO `marc_subfield_structure` VALUES ('871', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15740 INSERT INTO `marc_subfield_structure` VALUES ('871', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15741 INSERT INTO `marc_subfield_structure` VALUES ('871', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15742 INSERT INTO `marc_subfield_structure` VALUES ('871', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15743 INSERT INTO `marc_subfield_structure` VALUES ('871', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15744 INSERT INTO `marc_subfield_structure` VALUES ('871', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15745 INSERT INTO `marc_subfield_structure` VALUES ('871', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15746 INSERT INTO `marc_subfield_structure` VALUES ('871', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15747 INSERT INTO `marc_subfield_structure` VALUES ('872', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15748 INSERT INTO `marc_subfield_structure` VALUES ('872', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15749 INSERT INTO `marc_subfield_structure` VALUES ('872', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15750 INSERT INTO `marc_subfield_structure` VALUES ('872', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15751 INSERT INTO `marc_subfield_structure` VALUES ('872', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15752 INSERT INTO `marc_subfield_structure` VALUES ('872', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15753 INSERT INTO `marc_subfield_structure` VALUES ('872', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15754 INSERT INTO `marc_subfield_structure` VALUES ('872', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15755 INSERT INTO `marc_subfield_structure` VALUES ('872', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15756 INSERT INTO `marc_subfield_structure` VALUES ('872', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15757 INSERT INTO `marc_subfield_structure` VALUES ('872', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15758 INSERT INTO `marc_subfield_structure` VALUES ('872', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15759 INSERT INTO `marc_subfield_structure` VALUES ('872', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15760 INSERT INTO `marc_subfield_structure` VALUES ('872', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15761 INSERT INTO `marc_subfield_structure` VALUES ('872', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15762 INSERT INTO `marc_subfield_structure` VALUES ('872', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15763 INSERT INTO `marc_subfield_structure` VALUES ('872', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15764 INSERT INTO `marc_subfield_structure` VALUES ('873', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15765 INSERT INTO `marc_subfield_structure` VALUES ('873', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15766 INSERT INTO `marc_subfield_structure` VALUES ('873', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15767 INSERT INTO `marc_subfield_structure` VALUES ('873', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15768 INSERT INTO `marc_subfield_structure` VALUES ('873', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15769 INSERT INTO `marc_subfield_structure` VALUES ('873', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15770 INSERT INTO `marc_subfield_structure` VALUES ('873', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15771 INSERT INTO `marc_subfield_structure` VALUES ('873', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15772 INSERT INTO `marc_subfield_structure` VALUES ('873', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15773 INSERT INTO `marc_subfield_structure` VALUES ('873', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15774 INSERT INTO `marc_subfield_structure` VALUES ('873', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15775 INSERT INTO `marc_subfield_structure` VALUES ('873', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15776 INSERT INTO `marc_subfield_structure` VALUES ('873', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15777 INSERT INTO `marc_subfield_structure` VALUES ('873', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15778 INSERT INTO `marc_subfield_structure` VALUES ('873', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15779 INSERT INTO `marc_subfield_structure` VALUES ('873', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15780 INSERT INTO `marc_subfield_structure` VALUES ('876', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15781 INSERT INTO `marc_subfield_structure` VALUES ('876', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15782 INSERT INTO `marc_subfield_structure` VALUES ('876', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15783 INSERT INTO `marc_subfield_structure` VALUES ('876', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15784 INSERT INTO `marc_subfield_structure` VALUES ('876', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15785 INSERT INTO `marc_subfield_structure` VALUES ('876', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15786 INSERT INTO `marc_subfield_structure` VALUES ('876', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15787 INSERT INTO `marc_subfield_structure` VALUES ('876', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15788 INSERT INTO `marc_subfield_structure` VALUES ('876', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15789 INSERT INTO `marc_subfield_structure` VALUES ('876', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15790 INSERT INTO `marc_subfield_structure` VALUES ('876', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15791 INSERT INTO `marc_subfield_structure` VALUES ('876', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15792 INSERT INTO `marc_subfield_structure` VALUES ('876', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15793 INSERT INTO `marc_subfield_structure` VALUES ('876', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15794 INSERT INTO `marc_subfield_structure` VALUES ('876', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15795 INSERT INTO `marc_subfield_structure` VALUES ('876', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15796 INSERT INTO `marc_subfield_structure` VALUES ('877', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15797 INSERT INTO `marc_subfield_structure` VALUES ('877', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15798 INSERT INTO `marc_subfield_structure` VALUES ('877', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15799 INSERT INTO `marc_subfield_structure` VALUES ('877', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15800 INSERT INTO `marc_subfield_structure` VALUES ('877', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15801 INSERT INTO `marc_subfield_structure` VALUES ('877', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15802 INSERT INTO `marc_subfield_structure` VALUES ('877', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15803 INSERT INTO `marc_subfield_structure` VALUES ('877', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15804 INSERT INTO `marc_subfield_structure` VALUES ('877', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15805 INSERT INTO `marc_subfield_structure` VALUES ('877', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15806 INSERT INTO `marc_subfield_structure` VALUES ('877', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15807 INSERT INTO `marc_subfield_structure` VALUES ('877', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15808 INSERT INTO `marc_subfield_structure` VALUES ('877', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15809 INSERT INTO `marc_subfield_structure` VALUES ('877', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15810 INSERT INTO `marc_subfield_structure` VALUES ('877', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15811 INSERT INTO `marc_subfield_structure` VALUES ('877', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15812 INSERT INTO `marc_subfield_structure` VALUES ('878', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15813 INSERT INTO `marc_subfield_structure` VALUES ('878', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15814 INSERT INTO `marc_subfield_structure` VALUES ('878', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15815 INSERT INTO `marc_subfield_structure` VALUES ('878', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15816 INSERT INTO `marc_subfield_structure` VALUES ('878', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15817 INSERT INTO `marc_subfield_structure` VALUES ('878', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15818 INSERT INTO `marc_subfield_structure` VALUES ('878', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15819 INSERT INTO `marc_subfield_structure` VALUES ('878', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15820 INSERT INTO `marc_subfield_structure` VALUES ('878', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15821 INSERT INTO `marc_subfield_structure` VALUES ('878', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15822 INSERT INTO `marc_subfield_structure` VALUES ('878', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15823 INSERT INTO `marc_subfield_structure` VALUES ('878', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15824 INSERT INTO `marc_subfield_structure` VALUES ('878', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15825 INSERT INTO `marc_subfield_structure` VALUES ('878', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15826 INSERT INTO `marc_subfield_structure` VALUES ('878', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15827 INSERT INTO `marc_subfield_structure` VALUES ('878', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15828 INSERT INTO `marc_subfield_structure` VALUES ('880', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15829 INSERT INTO `marc_subfield_structure` VALUES ('880', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15830 INSERT INTO `marc_subfield_structure` VALUES ('880', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15831 INSERT INTO `marc_subfield_structure` VALUES ('880', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15832 INSERT INTO `marc_subfield_structure` VALUES ('880', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15833 INSERT INTO `marc_subfield_structure` VALUES ('880', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15834 INSERT INTO `marc_subfield_structure` VALUES ('880', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15835 INSERT INTO `marc_subfield_structure` VALUES ('880', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15836 INSERT INTO `marc_subfield_structure` VALUES ('880', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15837 INSERT INTO `marc_subfield_structure` VALUES ('880', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15838 INSERT INTO `marc_subfield_structure` VALUES ('880', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15839 INSERT INTO `marc_subfield_structure` VALUES ('880', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15840 INSERT INTO `marc_subfield_structure` VALUES ('880', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15841 INSERT INTO `marc_subfield_structure` VALUES ('880', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15842 INSERT INTO `marc_subfield_structure` VALUES ('880', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15843 INSERT INTO `marc_subfield_structure` VALUES ('880', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15844 INSERT INTO `marc_subfield_structure` VALUES ('880', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15845 INSERT INTO `marc_subfield_structure` VALUES ('880', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15846 INSERT INTO `marc_subfield_structure` VALUES ('880', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15847 INSERT INTO `marc_subfield_structure` VALUES ('880', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15848 INSERT INTO `marc_subfield_structure` VALUES ('880', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15849 INSERT INTO `marc_subfield_structure` VALUES ('880', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15850 INSERT INTO `marc_subfield_structure` VALUES ('880', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15851 INSERT INTO `marc_subfield_structure` VALUES ('880', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15852 INSERT INTO `marc_subfield_structure` VALUES ('880', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15853 INSERT INTO `marc_subfield_structure` VALUES ('880', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15854 INSERT INTO `marc_subfield_structure` VALUES ('880', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15855 INSERT INTO `marc_subfield_structure` VALUES ('880', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15856 INSERT INTO `marc_subfield_structure` VALUES ('880', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15857 INSERT INTO `marc_subfield_structure` VALUES ('880', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15858 INSERT INTO `marc_subfield_structure` VALUES ('880', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15859 INSERT INTO `marc_subfield_structure` VALUES ('880', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15860 INSERT INTO `marc_subfield_structure` VALUES ('880', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15861 INSERT INTO `marc_subfield_structure` VALUES ('880', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15862 INSERT INTO `marc_subfield_structure` VALUES ('886', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15863 INSERT INTO `marc_subfield_structure` VALUES ('886', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15864 INSERT INTO `marc_subfield_structure` VALUES ('886', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15865 INSERT INTO `marc_subfield_structure` VALUES ('886', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15866 INSERT INTO `marc_subfield_structure` VALUES ('886', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15867 INSERT INTO `marc_subfield_structure` VALUES ('886', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15868 INSERT INTO `marc_subfield_structure` VALUES ('886', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15869 INSERT INTO `marc_subfield_structure` VALUES ('886', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15870 INSERT INTO `marc_subfield_structure` VALUES ('886', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15871 INSERT INTO `marc_subfield_structure` VALUES ('886', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15872 INSERT INTO `marc_subfield_structure` VALUES ('886', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15873 INSERT INTO `marc_subfield_structure` VALUES ('886', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15874 INSERT INTO `marc_subfield_structure` VALUES ('886', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15875 INSERT INTO `marc_subfield_structure` VALUES ('886', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15876 INSERT INTO `marc_subfield_structure` VALUES ('886', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15877 INSERT INTO `marc_subfield_structure` VALUES ('886', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15878 INSERT INTO `marc_subfield_structure` VALUES ('886', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15879 INSERT INTO `marc_subfield_structure` VALUES ('886', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15880 INSERT INTO `marc_subfield_structure` VALUES ('886', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15881 INSERT INTO `marc_subfield_structure` VALUES ('886', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15882 INSERT INTO `marc_subfield_structure` VALUES ('886', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15883 INSERT INTO `marc_subfield_structure` VALUES ('886', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15884 INSERT INTO `marc_subfield_structure` VALUES ('886', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15885 INSERT INTO `marc_subfield_structure` VALUES ('886', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15886 INSERT INTO `marc_subfield_structure` VALUES ('886', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15887 INSERT INTO `marc_subfield_structure` VALUES ('886', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15888 INSERT INTO `marc_subfield_structure` VALUES ('886', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15889 INSERT INTO `marc_subfield_structure` VALUES ('886', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15890 INSERT INTO `marc_subfield_structure` VALUES ('886', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15891 INSERT INTO `marc_subfield_structure` VALUES ('886', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15892 INSERT INTO `marc_subfield_structure` VALUES ('886', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15893 INSERT INTO `marc_subfield_structure` VALUES ('886', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15894 INSERT INTO `marc_subfield_structure` VALUES ('886', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15895 INSERT INTO `marc_subfield_structure` VALUES ('886', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15896 INSERT INTO `marc_subfield_structure` VALUES ('886', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15897 INSERT INTO `marc_subfield_structure` VALUES ('886', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15898 INSERT INTO `marc_subfield_structure` VALUES ('887', '2', 'Source of data', 'Source of data', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15899 INSERT INTO `marc_subfield_structure` VALUES ('887', 'a', 'Content of non-MARC field', 'Content of non-MARC field', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15900 INSERT INTO `marc_subfield_structure` VALUES ('896', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'SR', '', '');
15901 INSERT INTO `marc_subfield_structure` VALUES ('896', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15902 INSERT INTO `marc_subfield_structure` VALUES ('896', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15903 INSERT INTO `marc_subfield_structure` VALUES ('896', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15904 INSERT INTO `marc_subfield_structure` VALUES ('896', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'SR', '', '');
15905 INSERT INTO `marc_subfield_structure` VALUES ('896', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15906 INSERT INTO `marc_subfield_structure` VALUES ('896', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15907 INSERT INTO `marc_subfield_structure` VALUES ('896', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15908 INSERT INTO `marc_subfield_structure` VALUES ('896', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15909 INSERT INTO `marc_subfield_structure` VALUES ('896', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15910 INSERT INTO `marc_subfield_structure` VALUES ('896', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15911 INSERT INTO `marc_subfield_structure` VALUES ('896', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15912 INSERT INTO `marc_subfield_structure` VALUES ('896', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15913 INSERT INTO `marc_subfield_structure` VALUES ('896', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15914 INSERT INTO `marc_subfield_structure` VALUES ('896', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15915 INSERT INTO `marc_subfield_structure` VALUES ('896', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15916 INSERT INTO `marc_subfield_structure` VALUES ('896', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15917 INSERT INTO `marc_subfield_structure` VALUES ('896', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15918 INSERT INTO `marc_subfield_structure` VALUES ('896', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15919 INSERT INTO `marc_subfield_structure` VALUES ('896', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15920 INSERT INTO `marc_subfield_structure` VALUES ('896', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15921 INSERT INTO `marc_subfield_structure` VALUES ('896', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15922 INSERT INTO `marc_subfield_structure` VALUES ('896', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15923 INSERT INTO `marc_subfield_structure` VALUES ('896', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15924 INSERT INTO `marc_subfield_structure` VALUES ('896', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15925 INSERT INTO `marc_subfield_structure` VALUES ('896', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15926 INSERT INTO `marc_subfield_structure` VALUES ('897', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'SR', '', '');
15927 INSERT INTO `marc_subfield_structure` VALUES ('897', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15928 INSERT INTO `marc_subfield_structure` VALUES ('897', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15929 INSERT INTO `marc_subfield_structure` VALUES ('897', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15930 INSERT INTO `marc_subfield_structure` VALUES ('897', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'SR', '', '');
15931 INSERT INTO `marc_subfield_structure` VALUES ('897', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15932 INSERT INTO `marc_subfield_structure` VALUES ('897', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15933 INSERT INTO `marc_subfield_structure` VALUES ('897', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15934 INSERT INTO `marc_subfield_structure` VALUES ('897', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15935 INSERT INTO `marc_subfield_structure` VALUES ('897', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15936 INSERT INTO `marc_subfield_structure` VALUES ('897', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15937 INSERT INTO `marc_subfield_structure` VALUES ('897', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15938 INSERT INTO `marc_subfield_structure` VALUES ('897', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15939 INSERT INTO `marc_subfield_structure` VALUES ('897', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15940 INSERT INTO `marc_subfield_structure` VALUES ('897', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15941 INSERT INTO `marc_subfield_structure` VALUES ('897', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15942 INSERT INTO `marc_subfield_structure` VALUES ('897', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15943 INSERT INTO `marc_subfield_structure` VALUES ('897', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15944 INSERT INTO `marc_subfield_structure` VALUES ('897', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15945 INSERT INTO `marc_subfield_structure` VALUES ('897', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15946 INSERT INTO `marc_subfield_structure` VALUES ('897', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15947 INSERT INTO `marc_subfield_structure` VALUES ('897', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15948 INSERT INTO `marc_subfield_structure` VALUES ('897', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15949 INSERT INTO `marc_subfield_structure` VALUES ('897', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15950 INSERT INTO `marc_subfield_structure` VALUES ('898', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'SR', '', '');
15951 INSERT INTO `marc_subfield_structure` VALUES ('898', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15952 INSERT INTO `marc_subfield_structure` VALUES ('898', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15953 INSERT INTO `marc_subfield_structure` VALUES ('898', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15954 INSERT INTO `marc_subfield_structure` VALUES ('898', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'SR', '', '');
15955 INSERT INTO `marc_subfield_structure` VALUES ('898', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15956 INSERT INTO `marc_subfield_structure` VALUES ('898', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15957 INSERT INTO `marc_subfield_structure` VALUES ('898', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15958 INSERT INTO `marc_subfield_structure` VALUES ('898', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15959 INSERT INTO `marc_subfield_structure` VALUES ('898', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15960 INSERT INTO `marc_subfield_structure` VALUES ('898', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15961 INSERT INTO `marc_subfield_structure` VALUES ('898', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15962 INSERT INTO `marc_subfield_structure` VALUES ('898', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15963 INSERT INTO `marc_subfield_structure` VALUES ('898', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15964 INSERT INTO `marc_subfield_structure` VALUES ('898', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15965 INSERT INTO `marc_subfield_structure` VALUES ('898', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15966 INSERT INTO `marc_subfield_structure` VALUES ('898', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15967 INSERT INTO `marc_subfield_structure` VALUES ('898', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15968 INSERT INTO `marc_subfield_structure` VALUES ('898', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15969 INSERT INTO `marc_subfield_structure` VALUES ('898', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15970 INSERT INTO `marc_subfield_structure` VALUES ('898', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15971 INSERT INTO `marc_subfield_structure` VALUES ('898', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
15972 INSERT INTO `marc_subfield_structure` VALUES ('899', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'SR', '', '');
15973 INSERT INTO `marc_subfield_structure` VALUES ('899', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15974 INSERT INTO `marc_subfield_structure` VALUES ('899', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15975 INSERT INTO `marc_subfield_structure` VALUES ('899', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'SR', '', '');
15976 INSERT INTO `marc_subfield_structure` VALUES ('899', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15977 INSERT INTO `marc_subfield_structure` VALUES ('899', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15978 INSERT INTO `marc_subfield_structure` VALUES ('899', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15979 INSERT INTO `marc_subfield_structure` VALUES ('899', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15980 INSERT INTO `marc_subfield_structure` VALUES ('899', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15981 INSERT INTO `marc_subfield_structure` VALUES ('899', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15982 INSERT INTO `marc_subfield_structure` VALUES ('899', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15983 INSERT INTO `marc_subfield_structure` VALUES ('899', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15984 INSERT INTO `marc_subfield_structure` VALUES ('899', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15985 INSERT INTO `marc_subfield_structure` VALUES ('899', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15986 INSERT INTO `marc_subfield_structure` VALUES ('899', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15987 INSERT INTO `marc_subfield_structure` VALUES ('899', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15988 INSERT INTO `marc_subfield_structure` VALUES ('899', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15989 INSERT INTO `marc_subfield_structure` VALUES ('899', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15990 INSERT INTO `marc_subfield_structure` VALUES ('899', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, 5, 'SR', '', '');
15991 INSERT INTO `marc_subfield_structure` VALUES ('89e', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15992 INSERT INTO `marc_subfield_structure` VALUES ('89e', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15993 INSERT INTO `marc_subfield_structure` VALUES ('89e', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15994 INSERT INTO `marc_subfield_structure` VALUES ('89e', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15995 INSERT INTO `marc_subfield_structure` VALUES ('89e', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15996 INSERT INTO `marc_subfield_structure` VALUES ('89e', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15997 INSERT INTO `marc_subfield_structure` VALUES ('89e', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15998 INSERT INTO `marc_subfield_structure` VALUES ('89e', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
15999 INSERT INTO `marc_subfield_structure` VALUES ('89e', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16000 INSERT INTO `marc_subfield_structure` VALUES ('89e', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16001 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16002 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16003 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16004 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16005 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16006 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16007 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16008 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16009 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16010 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16011 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16012 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16013 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16014 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16015 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16016 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16017 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16018 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16019 INSERT INTO `marc_subfield_structure` VALUES ('89e', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16020 INSERT INTO `marc_subfield_structure` VALUES ('89e', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16021 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16022 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16023 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16024 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16025 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16026 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'SR', '', '');
16027 INSERT INTO `marc_subfield_structure` VALUES ('900', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16028 INSERT INTO `marc_subfield_structure` VALUES ('900', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16029 INSERT INTO `marc_subfield_structure` VALUES ('900', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16030 INSERT INTO `marc_subfield_structure` VALUES ('900', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16031 INSERT INTO `marc_subfield_structure` VALUES ('900', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16032 INSERT INTO `marc_subfield_structure` VALUES ('900', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16033 INSERT INTO `marc_subfield_structure` VALUES ('900', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16034 INSERT INTO `marc_subfield_structure` VALUES ('900', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16035 INSERT INTO `marc_subfield_structure` VALUES ('900', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16036 INSERT INTO `marc_subfield_structure` VALUES ('900', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16037 INSERT INTO `marc_subfield_structure` VALUES ('900', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16038 INSERT INTO `marc_subfield_structure` VALUES ('900', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16039 INSERT INTO `marc_subfield_structure` VALUES ('900', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16040 INSERT INTO `marc_subfield_structure` VALUES ('900', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16041 INSERT INTO `marc_subfield_structure` VALUES ('900', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16042 INSERT INTO `marc_subfield_structure` VALUES ('900', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16043 INSERT INTO `marc_subfield_structure` VALUES ('900', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16044 INSERT INTO `marc_subfield_structure` VALUES ('900', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16045 INSERT INTO `marc_subfield_structure` VALUES ('901', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16046 INSERT INTO `marc_subfield_structure` VALUES ('901', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16047 INSERT INTO `marc_subfield_structure` VALUES ('901', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16048 INSERT INTO `marc_subfield_structure` VALUES ('901', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16049 INSERT INTO `marc_subfield_structure` VALUES ('901', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16050 INSERT INTO `marc_subfield_structure` VALUES ('901', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16051 INSERT INTO `marc_subfield_structure` VALUES ('901', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16052 INSERT INTO `marc_subfield_structure` VALUES ('901', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16053 INSERT INTO `marc_subfield_structure` VALUES ('901', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16054 INSERT INTO `marc_subfield_structure` VALUES ('901', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16055 INSERT INTO `marc_subfield_structure` VALUES ('901', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16056 INSERT INTO `marc_subfield_structure` VALUES ('901', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16057 INSERT INTO `marc_subfield_structure` VALUES ('901', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16058 INSERT INTO `marc_subfield_structure` VALUES ('901', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16059 INSERT INTO `marc_subfield_structure` VALUES ('901', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16060 INSERT INTO `marc_subfield_structure` VALUES ('901', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16061 INSERT INTO `marc_subfield_structure` VALUES ('901', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16062 INSERT INTO `marc_subfield_structure` VALUES ('901', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16063 INSERT INTO `marc_subfield_structure` VALUES ('901', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16064 INSERT INTO `marc_subfield_structure` VALUES ('901', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16065 INSERT INTO `marc_subfield_structure` VALUES ('901', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16066 INSERT INTO `marc_subfield_structure` VALUES ('901', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16067 INSERT INTO `marc_subfield_structure` VALUES ('901', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16068 INSERT INTO `marc_subfield_structure` VALUES ('901', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16069 INSERT INTO `marc_subfield_structure` VALUES ('901', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16070 INSERT INTO `marc_subfield_structure` VALUES ('901', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16071 INSERT INTO `marc_subfield_structure` VALUES ('901', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16072 INSERT INTO `marc_subfield_structure` VALUES ('901', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16073 INSERT INTO `marc_subfield_structure` VALUES ('901', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16074 INSERT INTO `marc_subfield_structure` VALUES ('901', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16075 INSERT INTO `marc_subfield_structure` VALUES ('901', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16076 INSERT INTO `marc_subfield_structure` VALUES ('901', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16077 INSERT INTO `marc_subfield_structure` VALUES ('901', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16078 INSERT INTO `marc_subfield_structure` VALUES ('901', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16079 INSERT INTO `marc_subfield_structure` VALUES ('901', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16080 INSERT INTO `marc_subfield_structure` VALUES ('901', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16081 INSERT INTO `marc_subfield_structure` VALUES ('902', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16082 INSERT INTO `marc_subfield_structure` VALUES ('902', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16083 INSERT INTO `marc_subfield_structure` VALUES ('902', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16084 INSERT INTO `marc_subfield_structure` VALUES ('902', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16085 INSERT INTO `marc_subfield_structure` VALUES ('902', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16086 INSERT INTO `marc_subfield_structure` VALUES ('902', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16087 INSERT INTO `marc_subfield_structure` VALUES ('902', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16088 INSERT INTO `marc_subfield_structure` VALUES ('902', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16089 INSERT INTO `marc_subfield_structure` VALUES ('902', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16090 INSERT INTO `marc_subfield_structure` VALUES ('902', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16091 INSERT INTO `marc_subfield_structure` VALUES ('902', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16092 INSERT INTO `marc_subfield_structure` VALUES ('902', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16093 INSERT INTO `marc_subfield_structure` VALUES ('902', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16094 INSERT INTO `marc_subfield_structure` VALUES ('902', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16095 INSERT INTO `marc_subfield_structure` VALUES ('902', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16096 INSERT INTO `marc_subfield_structure` VALUES ('902', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16097 INSERT INTO `marc_subfield_structure` VALUES ('902', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16098 INSERT INTO `marc_subfield_structure` VALUES ('902', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16099 INSERT INTO `marc_subfield_structure` VALUES ('902', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16100 INSERT INTO `marc_subfield_structure` VALUES ('902', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16101 INSERT INTO `marc_subfield_structure` VALUES ('902', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16102 INSERT INTO `marc_subfield_structure` VALUES ('902', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16103 INSERT INTO `marc_subfield_structure` VALUES ('902', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16104 INSERT INTO `marc_subfield_structure` VALUES ('902', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16105 INSERT INTO `marc_subfield_structure` VALUES ('902', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16106 INSERT INTO `marc_subfield_structure` VALUES ('902', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16107 INSERT INTO `marc_subfield_structure` VALUES ('902', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16108 INSERT INTO `marc_subfield_structure` VALUES ('902', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16109 INSERT INTO `marc_subfield_structure` VALUES ('902', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16110 INSERT INTO `marc_subfield_structure` VALUES ('902', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16111 INSERT INTO `marc_subfield_structure` VALUES ('902', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16112 INSERT INTO `marc_subfield_structure` VALUES ('902', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16113 INSERT INTO `marc_subfield_structure` VALUES ('902', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16114 INSERT INTO `marc_subfield_structure` VALUES ('902', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16115 INSERT INTO `marc_subfield_structure` VALUES ('902', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16116 INSERT INTO `marc_subfield_structure` VALUES ('902', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16117 INSERT INTO `marc_subfield_structure` VALUES ('903', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16118 INSERT INTO `marc_subfield_structure` VALUES ('903', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16119 INSERT INTO `marc_subfield_structure` VALUES ('903', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16120 INSERT INTO `marc_subfield_structure` VALUES ('903', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16121 INSERT INTO `marc_subfield_structure` VALUES ('903', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16122 INSERT INTO `marc_subfield_structure` VALUES ('903', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16123 INSERT INTO `marc_subfield_structure` VALUES ('903', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16124 INSERT INTO `marc_subfield_structure` VALUES ('903', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16125 INSERT INTO `marc_subfield_structure` VALUES ('903', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16126 INSERT INTO `marc_subfield_structure` VALUES ('903', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16127 INSERT INTO `marc_subfield_structure` VALUES ('903', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16128 INSERT INTO `marc_subfield_structure` VALUES ('903', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16129 INSERT INTO `marc_subfield_structure` VALUES ('903', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16130 INSERT INTO `marc_subfield_structure` VALUES ('903', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16131 INSERT INTO `marc_subfield_structure` VALUES ('903', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16132 INSERT INTO `marc_subfield_structure` VALUES ('903', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16133 INSERT INTO `marc_subfield_structure` VALUES ('903', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16134 INSERT INTO `marc_subfield_structure` VALUES ('903', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16135 INSERT INTO `marc_subfield_structure` VALUES ('903', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16136 INSERT INTO `marc_subfield_structure` VALUES ('903', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16137 INSERT INTO `marc_subfield_structure` VALUES ('903', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16138 INSERT INTO `marc_subfield_structure` VALUES ('903', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16139 INSERT INTO `marc_subfield_structure` VALUES ('903', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16140 INSERT INTO `marc_subfield_structure` VALUES ('903', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16141 INSERT INTO `marc_subfield_structure` VALUES ('903', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16142 INSERT INTO `marc_subfield_structure` VALUES ('903', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16143 INSERT INTO `marc_subfield_structure` VALUES ('903', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16144 INSERT INTO `marc_subfield_structure` VALUES ('903', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16145 INSERT INTO `marc_subfield_structure` VALUES ('903', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16146 INSERT INTO `marc_subfield_structure` VALUES ('903', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16147 INSERT INTO `marc_subfield_structure` VALUES ('903', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16148 INSERT INTO `marc_subfield_structure` VALUES ('903', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16149 INSERT INTO `marc_subfield_structure` VALUES ('903', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16150 INSERT INTO `marc_subfield_structure` VALUES ('903', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16151 INSERT INTO `marc_subfield_structure` VALUES ('903', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16152 INSERT INTO `marc_subfield_structure` VALUES ('903', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16153 INSERT INTO `marc_subfield_structure` VALUES ('904', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16154 INSERT INTO `marc_subfield_structure` VALUES ('904', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16155 INSERT INTO `marc_subfield_structure` VALUES ('904', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16156 INSERT INTO `marc_subfield_structure` VALUES ('904', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16157 INSERT INTO `marc_subfield_structure` VALUES ('904', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16158 INSERT INTO `marc_subfield_structure` VALUES ('904', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16159 INSERT INTO `marc_subfield_structure` VALUES ('904', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16160 INSERT INTO `marc_subfield_structure` VALUES ('904', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16161 INSERT INTO `marc_subfield_structure` VALUES ('904', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16162 INSERT INTO `marc_subfield_structure` VALUES ('904', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16163 INSERT INTO `marc_subfield_structure` VALUES ('904', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16164 INSERT INTO `marc_subfield_structure` VALUES ('904', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16165 INSERT INTO `marc_subfield_structure` VALUES ('904', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16166 INSERT INTO `marc_subfield_structure` VALUES ('904', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16167 INSERT INTO `marc_subfield_structure` VALUES ('904', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16168 INSERT INTO `marc_subfield_structure` VALUES ('904', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16169 INSERT INTO `marc_subfield_structure` VALUES ('904', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16170 INSERT INTO `marc_subfield_structure` VALUES ('904', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16171 INSERT INTO `marc_subfield_structure` VALUES ('904', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16172 INSERT INTO `marc_subfield_structure` VALUES ('904', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16173 INSERT INTO `marc_subfield_structure` VALUES ('904', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16174 INSERT INTO `marc_subfield_structure` VALUES ('904', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16175 INSERT INTO `marc_subfield_structure` VALUES ('904', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16176 INSERT INTO `marc_subfield_structure` VALUES ('904', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16177 INSERT INTO `marc_subfield_structure` VALUES ('904', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16178 INSERT INTO `marc_subfield_structure` VALUES ('904', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16179 INSERT INTO `marc_subfield_structure` VALUES ('904', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16180 INSERT INTO `marc_subfield_structure` VALUES ('904', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16181 INSERT INTO `marc_subfield_structure` VALUES ('904', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16182 INSERT INTO `marc_subfield_structure` VALUES ('904', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16183 INSERT INTO `marc_subfield_structure` VALUES ('904', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16184 INSERT INTO `marc_subfield_structure` VALUES ('904', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16185 INSERT INTO `marc_subfield_structure` VALUES ('904', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16186 INSERT INTO `marc_subfield_structure` VALUES ('904', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16187 INSERT INTO `marc_subfield_structure` VALUES ('904', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16188 INSERT INTO `marc_subfield_structure` VALUES ('904', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16189 INSERT INTO `marc_subfield_structure` VALUES ('905', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16190 INSERT INTO `marc_subfield_structure` VALUES ('905', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16191 INSERT INTO `marc_subfield_structure` VALUES ('905', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16192 INSERT INTO `marc_subfield_structure` VALUES ('905', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16193 INSERT INTO `marc_subfield_structure` VALUES ('905', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16194 INSERT INTO `marc_subfield_structure` VALUES ('905', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16195 INSERT INTO `marc_subfield_structure` VALUES ('905', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16196 INSERT INTO `marc_subfield_structure` VALUES ('905', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16197 INSERT INTO `marc_subfield_structure` VALUES ('905', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16198 INSERT INTO `marc_subfield_structure` VALUES ('905', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16199 INSERT INTO `marc_subfield_structure` VALUES ('905', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16200 INSERT INTO `marc_subfield_structure` VALUES ('905', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16201 INSERT INTO `marc_subfield_structure` VALUES ('905', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16202 INSERT INTO `marc_subfield_structure` VALUES ('905', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16203 INSERT INTO `marc_subfield_structure` VALUES ('905', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16204 INSERT INTO `marc_subfield_structure` VALUES ('905', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16205 INSERT INTO `marc_subfield_structure` VALUES ('905', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16206 INSERT INTO `marc_subfield_structure` VALUES ('905', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16207 INSERT INTO `marc_subfield_structure` VALUES ('905', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16208 INSERT INTO `marc_subfield_structure` VALUES ('905', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16209 INSERT INTO `marc_subfield_structure` VALUES ('905', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16210 INSERT INTO `marc_subfield_structure` VALUES ('905', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16211 INSERT INTO `marc_subfield_structure` VALUES ('905', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16212 INSERT INTO `marc_subfield_structure` VALUES ('905', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16213 INSERT INTO `marc_subfield_structure` VALUES ('905', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16214 INSERT INTO `marc_subfield_structure` VALUES ('905', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16215 INSERT INTO `marc_subfield_structure` VALUES ('905', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16216 INSERT INTO `marc_subfield_structure` VALUES ('905', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16217 INSERT INTO `marc_subfield_structure` VALUES ('905', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16218 INSERT INTO `marc_subfield_structure` VALUES ('905', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16219 INSERT INTO `marc_subfield_structure` VALUES ('905', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16220 INSERT INTO `marc_subfield_structure` VALUES ('905', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16221 INSERT INTO `marc_subfield_structure` VALUES ('905', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16222 INSERT INTO `marc_subfield_structure` VALUES ('905', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16223 INSERT INTO `marc_subfield_structure` VALUES ('905', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16224 INSERT INTO `marc_subfield_structure` VALUES ('905', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16225 INSERT INTO `marc_subfield_structure` VALUES ('906', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16226 INSERT INTO `marc_subfield_structure` VALUES ('906', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16227 INSERT INTO `marc_subfield_structure` VALUES ('906', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16228 INSERT INTO `marc_subfield_structure` VALUES ('906', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16229 INSERT INTO `marc_subfield_structure` VALUES ('906', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16230 INSERT INTO `marc_subfield_structure` VALUES ('906', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16231 INSERT INTO `marc_subfield_structure` VALUES ('906', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16232 INSERT INTO `marc_subfield_structure` VALUES ('906', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16233 INSERT INTO `marc_subfield_structure` VALUES ('906', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16234 INSERT INTO `marc_subfield_structure` VALUES ('906', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16235 INSERT INTO `marc_subfield_structure` VALUES ('906', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16236 INSERT INTO `marc_subfield_structure` VALUES ('906', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16237 INSERT INTO `marc_subfield_structure` VALUES ('906', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16238 INSERT INTO `marc_subfield_structure` VALUES ('906', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16239 INSERT INTO `marc_subfield_structure` VALUES ('906', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16240 INSERT INTO `marc_subfield_structure` VALUES ('906', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16241 INSERT INTO `marc_subfield_structure` VALUES ('906', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16242 INSERT INTO `marc_subfield_structure` VALUES ('906', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16243 INSERT INTO `marc_subfield_structure` VALUES ('906', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16244 INSERT INTO `marc_subfield_structure` VALUES ('906', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16245 INSERT INTO `marc_subfield_structure` VALUES ('906', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16246 INSERT INTO `marc_subfield_structure` VALUES ('906', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16247 INSERT INTO `marc_subfield_structure` VALUES ('906', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16248 INSERT INTO `marc_subfield_structure` VALUES ('906', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16249 INSERT INTO `marc_subfield_structure` VALUES ('906', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16250 INSERT INTO `marc_subfield_structure` VALUES ('906', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16251 INSERT INTO `marc_subfield_structure` VALUES ('906', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16252 INSERT INTO `marc_subfield_structure` VALUES ('906', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16253 INSERT INTO `marc_subfield_structure` VALUES ('906', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16254 INSERT INTO `marc_subfield_structure` VALUES ('906', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16255 INSERT INTO `marc_subfield_structure` VALUES ('906', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16256 INSERT INTO `marc_subfield_structure` VALUES ('906', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16257 INSERT INTO `marc_subfield_structure` VALUES ('906', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16258 INSERT INTO `marc_subfield_structure` VALUES ('906', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16259 INSERT INTO `marc_subfield_structure` VALUES ('906', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16260 INSERT INTO `marc_subfield_structure` VALUES ('906', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16261 INSERT INTO `marc_subfield_structure` VALUES ('907', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16262 INSERT INTO `marc_subfield_structure` VALUES ('907', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16263 INSERT INTO `marc_subfield_structure` VALUES ('907', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16264 INSERT INTO `marc_subfield_structure` VALUES ('907', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16265 INSERT INTO `marc_subfield_structure` VALUES ('907', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16266 INSERT INTO `marc_subfield_structure` VALUES ('907', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16267 INSERT INTO `marc_subfield_structure` VALUES ('907', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16268 INSERT INTO `marc_subfield_structure` VALUES ('907', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16269 INSERT INTO `marc_subfield_structure` VALUES ('907', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16270 INSERT INTO `marc_subfield_structure` VALUES ('907', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16271 INSERT INTO `marc_subfield_structure` VALUES ('907', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16272 INSERT INTO `marc_subfield_structure` VALUES ('907', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16273 INSERT INTO `marc_subfield_structure` VALUES ('907', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16274 INSERT INTO `marc_subfield_structure` VALUES ('907', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16275 INSERT INTO `marc_subfield_structure` VALUES ('907', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16276 INSERT INTO `marc_subfield_structure` VALUES ('907', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16277 INSERT INTO `marc_subfield_structure` VALUES ('907', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16278 INSERT INTO `marc_subfield_structure` VALUES ('907', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16279 INSERT INTO `marc_subfield_structure` VALUES ('907', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16280 INSERT INTO `marc_subfield_structure` VALUES ('907', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16281 INSERT INTO `marc_subfield_structure` VALUES ('907', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16282 INSERT INTO `marc_subfield_structure` VALUES ('907', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16283 INSERT INTO `marc_subfield_structure` VALUES ('907', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16284 INSERT INTO `marc_subfield_structure` VALUES ('907', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16285 INSERT INTO `marc_subfield_structure` VALUES ('907', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16286 INSERT INTO `marc_subfield_structure` VALUES ('907', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16287 INSERT INTO `marc_subfield_structure` VALUES ('907', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16288 INSERT INTO `marc_subfield_structure` VALUES ('907', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16289 INSERT INTO `marc_subfield_structure` VALUES ('907', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16290 INSERT INTO `marc_subfield_structure` VALUES ('907', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16291 INSERT INTO `marc_subfield_structure` VALUES ('907', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16292 INSERT INTO `marc_subfield_structure` VALUES ('907', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16293 INSERT INTO `marc_subfield_structure` VALUES ('907', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16294 INSERT INTO `marc_subfield_structure` VALUES ('907', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16295 INSERT INTO `marc_subfield_structure` VALUES ('907', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16296 INSERT INTO `marc_subfield_structure` VALUES ('907', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16297 INSERT INTO `marc_subfield_structure` VALUES ('908', 'a', 'Put command parameter', 'Put command parameter', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16298 INSERT INTO `marc_subfield_structure` VALUES ('910', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16299 INSERT INTO `marc_subfield_structure` VALUES ('910', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16300 INSERT INTO `marc_subfield_structure` VALUES ('910', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16301 INSERT INTO `marc_subfield_structure` VALUES ('910', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16302 INSERT INTO `marc_subfield_structure` VALUES ('910', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16303 INSERT INTO `marc_subfield_structure` VALUES ('910', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16304 INSERT INTO `marc_subfield_structure` VALUES ('910', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16305 INSERT INTO `marc_subfield_structure` VALUES ('910', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16306 INSERT INTO `marc_subfield_structure` VALUES ('910', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16307 INSERT INTO `marc_subfield_structure` VALUES ('910', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16308 INSERT INTO `marc_subfield_structure` VALUES ('910', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16309 INSERT INTO `marc_subfield_structure` VALUES ('910', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16310 INSERT INTO `marc_subfield_structure` VALUES ('910', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16311 INSERT INTO `marc_subfield_structure` VALUES ('910', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16312 INSERT INTO `marc_subfield_structure` VALUES ('910', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16313 INSERT INTO `marc_subfield_structure` VALUES ('910', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16314 INSERT INTO `marc_subfield_structure` VALUES ('91o', 'a', 'User-option data', 'User-option data', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16315 INSERT INTO `marc_subfield_structure` VALUES ('91r', 'a', 'RLG standards note', 'RLG standards note', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16316 INSERT INTO `marc_subfield_structure` VALUES ('911', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16317 INSERT INTO `marc_subfield_structure` VALUES ('911', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16318 INSERT INTO `marc_subfield_structure` VALUES ('911', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16319 INSERT INTO `marc_subfield_structure` VALUES ('911', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16320 INSERT INTO `marc_subfield_structure` VALUES ('911', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16321 INSERT INTO `marc_subfield_structure` VALUES ('911', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16322 INSERT INTO `marc_subfield_structure` VALUES ('911', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16323 INSERT INTO `marc_subfield_structure` VALUES ('911', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16324 INSERT INTO `marc_subfield_structure` VALUES ('911', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16325 INSERT INTO `marc_subfield_structure` VALUES ('911', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16326 INSERT INTO `marc_subfield_structure` VALUES ('911', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16327 INSERT INTO `marc_subfield_structure` VALUES ('911', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16328 INSERT INTO `marc_subfield_structure` VALUES ('911', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16329 INSERT INTO `marc_subfield_structure` VALUES ('911', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16330 INSERT INTO `marc_subfield_structure` VALUES ('911', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16331 INSERT INTO `marc_subfield_structure` VALUES ('911', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16332 INSERT INTO `marc_subfield_structure` VALUES ('911', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16333 INSERT INTO `marc_subfield_structure` VALUES ('930', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16334 INSERT INTO `marc_subfield_structure` VALUES ('930', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16335 INSERT INTO `marc_subfield_structure` VALUES ('930', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16336 INSERT INTO `marc_subfield_structure` VALUES ('930', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16337 INSERT INTO `marc_subfield_structure` VALUES ('930', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16338 INSERT INTO `marc_subfield_structure` VALUES ('930', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16339 INSERT INTO `marc_subfield_structure` VALUES ('930', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16340 INSERT INTO `marc_subfield_structure` VALUES ('930', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16341 INSERT INTO `marc_subfield_structure` VALUES ('930', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16342 INSERT INTO `marc_subfield_structure` VALUES ('930', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16343 INSERT INTO `marc_subfield_structure` VALUES ('930', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16344 INSERT INTO `marc_subfield_structure` VALUES ('930', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16345 INSERT INTO `marc_subfield_structure` VALUES ('930', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16346 INSERT INTO `marc_subfield_structure` VALUES ('930', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16347 INSERT INTO `marc_subfield_structure` VALUES ('930', 's', 'Version', 'Version', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16348 INSERT INTO `marc_subfield_structure` VALUES ('930', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16349 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'a', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SR', '', '');
16350 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'b', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SR', '', '');
16351 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'c', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SR', '', '');
16352 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'd', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SR', '', '');
16353 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'e', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SR', '', '');
16354 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'f', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SR', '', '');
16355 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'g', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SR', '', '');
16356 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'h', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SR', '', '');
16357 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'i', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SR', '', '');
16358 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'k', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SR', '', '');
16359 INSERT INTO `marc_subfield_structure` VALUES ('936', 'a', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16360 INSERT INTO `marc_subfield_structure` VALUES ('940', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16361 INSERT INTO `marc_subfield_structure` VALUES ('940', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16362 INSERT INTO `marc_subfield_structure` VALUES ('940', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', 1, -6, 'SR', '', '');
16363 INSERT INTO `marc_subfield_structure` VALUES ('940', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16364 INSERT INTO `marc_subfield_structure` VALUES ('940', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16365 INSERT INTO `marc_subfield_structure` VALUES ('940', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16366 INSERT INTO `marc_subfield_structure` VALUES ('940', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16367 INSERT INTO `marc_subfield_structure` VALUES ('940', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16368 INSERT INTO `marc_subfield_structure` VALUES ('940', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16369 INSERT INTO `marc_subfield_structure` VALUES ('940', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16370 INSERT INTO `marc_subfield_structure` VALUES ('940', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16371 INSERT INTO `marc_subfield_structure` VALUES ('940', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16372 INSERT INTO `marc_subfield_structure` VALUES ('940', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16373 INSERT INTO `marc_subfield_structure` VALUES ('940', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16374 INSERT INTO `marc_subfield_structure` VALUES ('940', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16375 INSERT INTO `marc_subfield_structure` VALUES ('941', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16376 INSERT INTO `marc_subfield_structure` VALUES ('941', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SR', '', '');
16377 INSERT INTO `marc_subfield_structure` VALUES ('943', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16378 INSERT INTO `marc_subfield_structure` VALUES ('943', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16379 INSERT INTO `marc_subfield_structure` VALUES ('943', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 9, '', '', '', 1, 5, 'SR', '', '130');
16380 INSERT INTO `marc_subfield_structure` VALUES ('943', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16381 INSERT INTO `marc_subfield_structure` VALUES ('943', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16382 INSERT INTO `marc_subfield_structure` VALUES ('943', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16383 INSERT INTO `marc_subfield_structure` VALUES ('943', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16384 INSERT INTO `marc_subfield_structure` VALUES ('943', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16385 INSERT INTO `marc_subfield_structure` VALUES ('943', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16386 INSERT INTO `marc_subfield_structure` VALUES ('943', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16387 INSERT INTO `marc_subfield_structure` VALUES ('943', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16388 INSERT INTO `marc_subfield_structure` VALUES ('943', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16389 INSERT INTO `marc_subfield_structure` VALUES ('943', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16390 INSERT INTO `marc_subfield_structure` VALUES ('943', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16391 INSERT INTO `marc_subfield_structure` VALUES ('943', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16392 INSERT INTO `marc_subfield_structure` VALUES ('945', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16393 INSERT INTO `marc_subfield_structure` VALUES ('945', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16394 INSERT INTO `marc_subfield_structure` VALUES ('945', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16395 INSERT INTO `marc_subfield_structure` VALUES ('945', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16396 INSERT INTO `marc_subfield_structure` VALUES ('945', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16397 INSERT INTO `marc_subfield_structure` VALUES ('945', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16398 INSERT INTO `marc_subfield_structure` VALUES ('945', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16399 INSERT INTO `marc_subfield_structure` VALUES ('945', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16400 INSERT INTO `marc_subfield_structure` VALUES ('945', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16401 INSERT INTO `marc_subfield_structure` VALUES ('945', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16402 INSERT INTO `marc_subfield_structure` VALUES ('945', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16403 INSERT INTO `marc_subfield_structure` VALUES ('945', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16404 INSERT INTO `marc_subfield_structure` VALUES ('945', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16405 INSERT INTO `marc_subfield_structure` VALUES ('945', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16406 INSERT INTO `marc_subfield_structure` VALUES ('945', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16407 INSERT INTO `marc_subfield_structure` VALUES ('945', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16408 INSERT INTO `marc_subfield_structure` VALUES ('945', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16409 INSERT INTO `marc_subfield_structure` VALUES ('945', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16410 INSERT INTO `marc_subfield_structure` VALUES ('945', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16411 INSERT INTO `marc_subfield_structure` VALUES ('945', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16412 INSERT INTO `marc_subfield_structure` VALUES ('945', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16413 INSERT INTO `marc_subfield_structure` VALUES ('945', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16414 INSERT INTO `marc_subfield_structure` VALUES ('945', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16415 INSERT INTO `marc_subfield_structure` VALUES ('945', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16416 INSERT INTO `marc_subfield_structure` VALUES ('945', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16417 INSERT INTO `marc_subfield_structure` VALUES ('945', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16418 INSERT INTO `marc_subfield_structure` VALUES ('945', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16419 INSERT INTO `marc_subfield_structure` VALUES ('945', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16420 INSERT INTO `marc_subfield_structure` VALUES ('945', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16421 INSERT INTO `marc_subfield_structure` VALUES ('945', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16422 INSERT INTO `marc_subfield_structure` VALUES ('945', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16423 INSERT INTO `marc_subfield_structure` VALUES ('945', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16424 INSERT INTO `marc_subfield_structure` VALUES ('945', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16425 INSERT INTO `marc_subfield_structure` VALUES ('945', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16426 INSERT INTO `marc_subfield_structure` VALUES ('945', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16427 INSERT INTO `marc_subfield_structure` VALUES ('945', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16428 INSERT INTO `marc_subfield_structure` VALUES ('94c', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16429 INSERT INTO `marc_subfield_structure` VALUES ('94c', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16430 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'a', 'Title', 'Title', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16431 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16432 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16433 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16434 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16435 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16436 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16437 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16438 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'k', 'Form', 'Form', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16439 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16440 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16441 INSERT INTO `marc_subfield_structure` VALUES ('94c', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16442 INSERT INTO `marc_subfield_structure` VALUES ('946', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16443 INSERT INTO `marc_subfield_structure` VALUES ('946', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16444 INSERT INTO `marc_subfield_structure` VALUES ('946', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16445 INSERT INTO `marc_subfield_structure` VALUES ('946', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16446 INSERT INTO `marc_subfield_structure` VALUES ('946', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16447 INSERT INTO `marc_subfield_structure` VALUES ('946', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16448 INSERT INTO `marc_subfield_structure` VALUES ('946', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16449 INSERT INTO `marc_subfield_structure` VALUES ('946', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16450 INSERT INTO `marc_subfield_structure` VALUES ('946', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16451 INSERT INTO `marc_subfield_structure` VALUES ('946', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16452 INSERT INTO `marc_subfield_structure` VALUES ('946', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16453 INSERT INTO `marc_subfield_structure` VALUES ('946', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16454 INSERT INTO `marc_subfield_structure` VALUES ('946', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16455 INSERT INTO `marc_subfield_structure` VALUES ('946', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16456 INSERT INTO `marc_subfield_structure` VALUES ('946', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16457 INSERT INTO `marc_subfield_structure` VALUES ('946', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16458 INSERT INTO `marc_subfield_structure` VALUES ('946', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16459 INSERT INTO `marc_subfield_structure` VALUES ('946', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16460 INSERT INTO `marc_subfield_structure` VALUES ('946', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16461 INSERT INTO `marc_subfield_structure` VALUES ('946', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16462 INSERT INTO `marc_subfield_structure` VALUES ('946', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16463 INSERT INTO `marc_subfield_structure` VALUES ('946', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16464 INSERT INTO `marc_subfield_structure` VALUES ('946', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16465 INSERT INTO `marc_subfield_structure` VALUES ('946', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16466 INSERT INTO `marc_subfield_structure` VALUES ('946', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16467 INSERT INTO `marc_subfield_structure` VALUES ('946', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16468 INSERT INTO `marc_subfield_structure` VALUES ('946', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16469 INSERT INTO `marc_subfield_structure` VALUES ('946', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16470 INSERT INTO `marc_subfield_structure` VALUES ('946', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16471 INSERT INTO `marc_subfield_structure` VALUES ('946', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16472 INSERT INTO `marc_subfield_structure` VALUES ('946', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16473 INSERT INTO `marc_subfield_structure` VALUES ('946', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16474 INSERT INTO `marc_subfield_structure` VALUES ('946', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16475 INSERT INTO `marc_subfield_structure` VALUES ('946', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16476 INSERT INTO `marc_subfield_structure` VALUES ('946', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16477 INSERT INTO `marc_subfield_structure` VALUES ('946', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16478 INSERT INTO `marc_subfield_structure` VALUES ('947', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16479 INSERT INTO `marc_subfield_structure` VALUES ('947', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16480 INSERT INTO `marc_subfield_structure` VALUES ('947', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16481 INSERT INTO `marc_subfield_structure` VALUES ('947', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16482 INSERT INTO `marc_subfield_structure` VALUES ('947', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16483 INSERT INTO `marc_subfield_structure` VALUES ('947', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16484 INSERT INTO `marc_subfield_structure` VALUES ('947', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16485 INSERT INTO `marc_subfield_structure` VALUES ('947', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16486 INSERT INTO `marc_subfield_structure` VALUES ('947', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16487 INSERT INTO `marc_subfield_structure` VALUES ('947', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16488 INSERT INTO `marc_subfield_structure` VALUES ('947', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16489 INSERT INTO `marc_subfield_structure` VALUES ('947', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16490 INSERT INTO `marc_subfield_structure` VALUES ('947', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16491 INSERT INTO `marc_subfield_structure` VALUES ('947', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16492 INSERT INTO `marc_subfield_structure` VALUES ('947', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16493 INSERT INTO `marc_subfield_structure` VALUES ('947', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16494 INSERT INTO `marc_subfield_structure` VALUES ('947', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16495 INSERT INTO `marc_subfield_structure` VALUES ('947', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16496 INSERT INTO `marc_subfield_structure` VALUES ('947', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16497 INSERT INTO `marc_subfield_structure` VALUES ('947', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16498 INSERT INTO `marc_subfield_structure` VALUES ('947', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16499 INSERT INTO `marc_subfield_structure` VALUES ('947', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16500 INSERT INTO `marc_subfield_structure` VALUES ('947', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16501 INSERT INTO `marc_subfield_structure` VALUES ('947', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16502 INSERT INTO `marc_subfield_structure` VALUES ('947', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16503 INSERT INTO `marc_subfield_structure` VALUES ('947', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16504 INSERT INTO `marc_subfield_structure` VALUES ('947', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16505 INSERT INTO `marc_subfield_structure` VALUES ('947', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16506 INSERT INTO `marc_subfield_structure` VALUES ('947', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16507 INSERT INTO `marc_subfield_structure` VALUES ('947', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16508 INSERT INTO `marc_subfield_structure` VALUES ('947', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16509 INSERT INTO `marc_subfield_structure` VALUES ('947', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16510 INSERT INTO `marc_subfield_structure` VALUES ('947', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16511 INSERT INTO `marc_subfield_structure` VALUES ('947', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16512 INSERT INTO `marc_subfield_structure` VALUES ('947', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16513 INSERT INTO `marc_subfield_structure` VALUES ('947', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16514 INSERT INTO `marc_subfield_structure` VALUES ('948', '0', '0 (OCLC)', '0 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16515 INSERT INTO `marc_subfield_structure` VALUES ('948', '1', '1 (OCLC)', '1 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16516 INSERT INTO `marc_subfield_structure` VALUES ('948', '2', '2 (OCLC)', '2 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16517 INSERT INTO `marc_subfield_structure` VALUES ('948', '3', '3 (OCLC)', '3 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16518 INSERT INTO `marc_subfield_structure` VALUES ('948', '4', '4 (OCLC)', '4 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16519 INSERT INTO `marc_subfield_structure` VALUES ('948', '5', '5 (OCLC)', '5 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16520 INSERT INTO `marc_subfield_structure` VALUES ('948', '6', '6 (OCLC)', '6 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16521 INSERT INTO `marc_subfield_structure` VALUES ('948', '7', '7 (OCLC)', '7 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16522 INSERT INTO `marc_subfield_structure` VALUES ('948', '8', '8 (OCLC)', '8 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16523 INSERT INTO `marc_subfield_structure` VALUES ('948', '9', '9 (OCLC)', '9 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16524 INSERT INTO `marc_subfield_structure` VALUES ('948', 'a', 'Series part designator, SPT (RLIN)', 'Series part designator, SPT (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16525 INSERT INTO `marc_subfield_structure` VALUES ('948', 'b', 'b (OCLC)', 'b (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16526 INSERT INTO `marc_subfield_structure` VALUES ('948', 'c', 'c (OCLC)', 'c (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16527 INSERT INTO `marc_subfield_structure` VALUES ('948', 'd', 'd (OCLC)', 'd (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16528 INSERT INTO `marc_subfield_structure` VALUES ('948', 'e', 'e (OCLC)', 'e (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16529 INSERT INTO `marc_subfield_structure` VALUES ('948', 'f', 'f (OCLC)', 'f (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16530 INSERT INTO `marc_subfield_structure` VALUES ('948', 'g', 'g (OCLC)', 'g (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16531 INSERT INTO `marc_subfield_structure` VALUES ('948', 'h', 'h (OCLC)', 'h (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16532 INSERT INTO `marc_subfield_structure` VALUES ('948', 'i', 'i (OCLC)', 'i (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16533 INSERT INTO `marc_subfield_structure` VALUES ('948', 'j', 'j (OCLC)', 'j (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16534 INSERT INTO `marc_subfield_structure` VALUES ('948', 'k', 'k (OCLC)', 'k (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16535 INSERT INTO `marc_subfield_structure` VALUES ('948', 'l', 'l (OCLC)', 'l (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16536 INSERT INTO `marc_subfield_structure` VALUES ('948', 'm', 'm (OCLC)', 'm (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16537 INSERT INTO `marc_subfield_structure` VALUES ('948', 'n', 'n (OCLC)', 'n (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16538 INSERT INTO `marc_subfield_structure` VALUES ('948', 'o', 'o (OCLC)', 'o (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16539 INSERT INTO `marc_subfield_structure` VALUES ('948', 'p', 'p (OCLC)', 'p (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16540 INSERT INTO `marc_subfield_structure` VALUES ('948', 'q', 'q (OCLC)', 'q (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16541 INSERT INTO `marc_subfield_structure` VALUES ('948', 'r', 'r (OCLC)', 'r (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16542 INSERT INTO `marc_subfield_structure` VALUES ('948', 's', 's (OCLC)', 's (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16543 INSERT INTO `marc_subfield_structure` VALUES ('948', 't', 't (OCLC)', 't (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16544 INSERT INTO `marc_subfield_structure` VALUES ('948', 'u', 'u (OCLC)', 'u (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16545 INSERT INTO `marc_subfield_structure` VALUES ('948', 'v', 'v (OCLC)', 'v (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16546 INSERT INTO `marc_subfield_structure` VALUES ('948', 'w', 'w (OCLC)', 'w (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16547 INSERT INTO `marc_subfield_structure` VALUES ('948', 'x', 'x (OCLC)', 'x (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16548 INSERT INTO `marc_subfield_structure` VALUES ('948', 'y', 'y (OCLC)', 'y (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16549 INSERT INTO `marc_subfield_structure` VALUES ('948', 'z', 'z (OCLC)', 'z (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16550 INSERT INTO `marc_subfield_structure` VALUES ('949', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16551 INSERT INTO `marc_subfield_structure` VALUES ('949', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16552 INSERT INTO `marc_subfield_structure` VALUES ('949', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16553 INSERT INTO `marc_subfield_structure` VALUES ('949', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16554 INSERT INTO `marc_subfield_structure` VALUES ('949', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16555 INSERT INTO `marc_subfield_structure` VALUES ('949', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16556 INSERT INTO `marc_subfield_structure` VALUES ('949', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16557 INSERT INTO `marc_subfield_structure` VALUES ('949', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16558 INSERT INTO `marc_subfield_structure` VALUES ('949', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16559 INSERT INTO `marc_subfield_structure` VALUES ('949', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16560 INSERT INTO `marc_subfield_structure` VALUES ('949', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16561 INSERT INTO `marc_subfield_structure` VALUES ('949', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16562 INSERT INTO `marc_subfield_structure` VALUES ('949', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16563 INSERT INTO `marc_subfield_structure` VALUES ('949', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16564 INSERT INTO `marc_subfield_structure` VALUES ('949', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16565 INSERT INTO `marc_subfield_structure` VALUES ('949', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16566 INSERT INTO `marc_subfield_structure` VALUES ('949', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16567 INSERT INTO `marc_subfield_structure` VALUES ('949', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16568 INSERT INTO `marc_subfield_structure` VALUES ('949', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16569 INSERT INTO `marc_subfield_structure` VALUES ('949', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16570 INSERT INTO `marc_subfield_structure` VALUES ('949', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16571 INSERT INTO `marc_subfield_structure` VALUES ('949', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16572 INSERT INTO `marc_subfield_structure` VALUES ('949', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16573 INSERT INTO `marc_subfield_structure` VALUES ('949', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16574 INSERT INTO `marc_subfield_structure` VALUES ('949', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16575 INSERT INTO `marc_subfield_structure` VALUES ('949', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16576 INSERT INTO `marc_subfield_structure` VALUES ('949', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16577 INSERT INTO `marc_subfield_structure` VALUES ('949', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16578 INSERT INTO `marc_subfield_structure` VALUES ('949', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16579 INSERT INTO `marc_subfield_structure` VALUES ('949', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16580 INSERT INTO `marc_subfield_structure` VALUES ('949', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16581 INSERT INTO `marc_subfield_structure` VALUES ('949', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16582 INSERT INTO `marc_subfield_structure` VALUES ('949', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16583 INSERT INTO `marc_subfield_structure` VALUES ('949', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16584 INSERT INTO `marc_subfield_structure` VALUES ('949', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16585 INSERT INTO `marc_subfield_structure` VALUES ('949', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16586 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'a', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16587 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'b', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16588 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'c', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16589 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'd', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16590 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'e', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16591 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'a', 'ATC', 'ATC', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16592 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'b', 'SNR', 'SNR', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16593 INSERT INTO `marc_subfield_structure` VALUES ('950', 'a', 'Classification number, LCAL (RLIN)', 'Classification number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16594 INSERT INTO `marc_subfield_structure` VALUES ('950', 'b', 'Book number/undivided call number, LCAL (RLIN)', 'Book number/undivided call number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16595 INSERT INTO `marc_subfield_structure` VALUES ('950', 'd', 'Additional free-text stamp above the call number, LCAL (RLIN)', 'Additional free-text stamp above the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16596 INSERT INTO `marc_subfield_structure` VALUES ('950', 'e', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16597 INSERT INTO `marc_subfield_structure` VALUES ('950', 'f', 'Location-level footnote, LFNT (RLIN)', 'Location-level footnote, LFNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16598 INSERT INTO `marc_subfield_structure` VALUES ('950', 'h', 'Location-level output transaction history, LHST (RLIN)', 'Location-level output transaction history, LHST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16599 INSERT INTO `marc_subfield_structure` VALUES ('950', 'i', 'Location-level extra card request, LEXT (RLIN)', 'Location-level extra card request, LEXT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16600 INSERT INTO `marc_subfield_structure` VALUES ('950', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16601 INSERT INTO `marc_subfield_structure` VALUES ('950', 'n', 'Location-level additional note, LANT (RLIN)', 'Location-level additional note, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16602 INSERT INTO `marc_subfield_structure` VALUES ('950', 'p', 'Location-level pathfinder, LPTH (RLIN)', 'Location-level pathfinder, LPTH (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16603 INSERT INTO `marc_subfield_structure` VALUES ('950', 't', 'Location-level field suppression, LFSP (RLIN)', 'Location-level field suppression, LFSP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16604 INSERT INTO `marc_subfield_structure` VALUES ('950', 'u', 'Non-printing notes, LANT (RLIN)', 'Non-printing notes, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16605 INSERT INTO `marc_subfield_structure` VALUES ('950', 'v', 'Volumes, LVOL (RLIN)', 'Volumes, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16606 INSERT INTO `marc_subfield_structure` VALUES ('950', 'w', 'Subscription status code, LANT (RLIN)', 'Subscription status code, LANT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16607 INSERT INTO `marc_subfield_structure` VALUES ('950', 'y', 'Date, LVOL (RLIN)', 'Date, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16608 INSERT INTO `marc_subfield_structure` VALUES ('950', 'z', 'Retention, LVOL (RLIN)', 'Retention, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16609 INSERT INTO `marc_subfield_structure` VALUES ('951', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
16610 INSERT INTO `marc_subfield_structure` VALUES ('951', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
16611 INSERT INTO `marc_subfield_structure` VALUES ('951', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
16612 INSERT INTO `marc_subfield_structure` VALUES ('951', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
16613 INSERT INTO `marc_subfield_structure` VALUES ('951', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
16614 INSERT INTO `marc_subfield_structure` VALUES ('951', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
16615 INSERT INTO `marc_subfield_structure` VALUES ('951', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
16616 INSERT INTO `marc_subfield_structure` VALUES ('951', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
16617 INSERT INTO `marc_subfield_structure` VALUES ('951', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
16618 INSERT INTO `marc_subfield_structure` VALUES ('951', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SR', '', '');
16619 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'a', 'Record ID (RLIN)', 'Record ID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16620 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'b', 'Institution name (RLIN)', 'Institution name (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16621 INSERT INTO `marc_subfield_structure` VALUES ('95r', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SR', '', '');
16622 INSERT INTO `marc_subfield_structure` VALUES ('95r', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SR', '', '');
16623 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'a', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SR', '', '');
16624 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'b', 'State, province, territory', 'State, province, territory', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SR', '', '');
16625 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'c', 'County, region, islands area', 'County, region, islands area', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SR', '', '');
16626 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'd', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SR', '', '');
16627 INSERT INTO `marc_subfield_structure` VALUES ('955', 'a', 'Classification number, CCAL (RLIN)', 'Classification number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16628 INSERT INTO `marc_subfield_structure` VALUES ('955', 'b', 'Book number/undivided call number, CCAL (RLIN)', 'Book number/undivided call number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16629 INSERT INTO `marc_subfield_structure` VALUES ('955', 'c', 'Copy information and material description, CCAL + MDES (RLIN)', 'Copy information and material description, CCAL + MDES (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16630 INSERT INTO `marc_subfield_structure` VALUES ('955', 'h', 'Copy status--for earlier dates, CST (RLIN)', 'Copy status--for earlier dates, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16631 INSERT INTO `marc_subfield_structure` VALUES ('955', 'i', 'Copy status, CST (RLIN)', 'Copy status, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16632 INSERT INTO `marc_subfield_structure` VALUES ('955', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16633 INSERT INTO `marc_subfield_structure` VALUES ('955', 'q', 'Aquisitions control number, HNT (RLIN)', 'Aquisitions control number, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16634 INSERT INTO `marc_subfield_structure` VALUES ('955', 'r', 'Circulation control number, HNT (RLIN)', 'Circulation control number, HNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16635 INSERT INTO `marc_subfield_structure` VALUES ('955', 's', 'Shelflist note, HNT (RLIN)', 'Shelflist note, HNT (RLIN)', 1, 0, '', 9, '', '', '', 1, 5, 'SR', '', '');
16636 INSERT INTO `marc_subfield_structure` VALUES ('955', 'u', 'Non-printing notes, HNT (RLIN)', 'Non-printing notes, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16637 INSERT INTO `marc_subfield_structure` VALUES ('956', '2', 'Access method', 'Access method', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16638 INSERT INTO `marc_subfield_structure` VALUES ('956', '3', 'Materials specified', 'Materials specified', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16639 INSERT INTO `marc_subfield_structure` VALUES ('956', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16640 INSERT INTO `marc_subfield_structure` VALUES ('956', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16641 INSERT INTO `marc_subfield_structure` VALUES ('956', 'a', 'Host name', 'Host name', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16642 INSERT INTO `marc_subfield_structure` VALUES ('956', 'b', 'Access number', 'Access number', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16643 INSERT INTO `marc_subfield_structure` VALUES ('956', 'c', 'Compression information', 'Compression information', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16644 INSERT INTO `marc_subfield_structure` VALUES ('956', 'd', 'Path', 'Path', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16645 INSERT INTO `marc_subfield_structure` VALUES ('956', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16646 INSERT INTO `marc_subfield_structure` VALUES ('956', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16647 INSERT INTO `marc_subfield_structure` VALUES ('956', 'i', 'Instruction', 'Instruction', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16648 INSERT INTO `marc_subfield_structure` VALUES ('956', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16649 INSERT INTO `marc_subfield_structure` VALUES ('956', 'k', 'Password', 'Password', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16650 INSERT INTO `marc_subfield_structure` VALUES ('956', 'l', 'Logon', 'Logon', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16651 INSERT INTO `marc_subfield_structure` VALUES ('956', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16652 INSERT INTO `marc_subfield_structure` VALUES ('956', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16653 INSERT INTO `marc_subfield_structure` VALUES ('956', 'o', 'Operating system', 'Operating system', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16654 INSERT INTO `marc_subfield_structure` VALUES ('956', 'p', 'Port', 'Port', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16655 INSERT INTO `marc_subfield_structure` VALUES ('956', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16656 INSERT INTO `marc_subfield_structure` VALUES ('956', 'r', 'Settings', 'Settings', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16657 INSERT INTO `marc_subfield_structure` VALUES ('956', 's', 'File size', 'File size', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16658 INSERT INTO `marc_subfield_structure` VALUES ('956', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16659 INSERT INTO `marc_subfield_structure` VALUES ('956', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -6, 'SR', '', '');
16660 INSERT INTO `marc_subfield_structure` VALUES ('956', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16661 INSERT INTO `marc_subfield_structure` VALUES ('956', 'w', 'Record control number', 'Record control number', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16662 INSERT INTO `marc_subfield_structure` VALUES ('956', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', 0, 6, 'SR', '', '');
16663 INSERT INTO `marc_subfield_structure` VALUES ('956', 'y', 'Link text', 'Link text', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16664 INSERT INTO `marc_subfield_structure` VALUES ('956', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16665 INSERT INTO `marc_subfield_structure` VALUES ('960', '3', 'Materials specified, MATL', 'Materials specified, MATL', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16666 INSERT INTO `marc_subfield_structure` VALUES ('960', 'a', 'Physical location, PLOC (RLIN)', 'Physical location, PLOC (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16667 INSERT INTO `marc_subfield_structure` VALUES ('967', 'a', 'GNR (RLIN)', 'GNR (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16668 INSERT INTO `marc_subfield_structure` VALUES ('967', 'c', 'PSI (RLIN)', 'PSI (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16669 INSERT INTO `marc_subfield_structure` VALUES ('980', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16670 INSERT INTO `marc_subfield_structure` VALUES ('980', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16671 INSERT INTO `marc_subfield_structure` VALUES ('980', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16672 INSERT INTO `marc_subfield_structure` VALUES ('980', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16673 INSERT INTO `marc_subfield_structure` VALUES ('980', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16674 INSERT INTO `marc_subfield_structure` VALUES ('980', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16675 INSERT INTO `marc_subfield_structure` VALUES ('980', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16676 INSERT INTO `marc_subfield_structure` VALUES ('980', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16677 INSERT INTO `marc_subfield_structure` VALUES ('980', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16678 INSERT INTO `marc_subfield_structure` VALUES ('980', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16679 INSERT INTO `marc_subfield_structure` VALUES ('980', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16680 INSERT INTO `marc_subfield_structure` VALUES ('980', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16681 INSERT INTO `marc_subfield_structure` VALUES ('980', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16682 INSERT INTO `marc_subfield_structure` VALUES ('980', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16683 INSERT INTO `marc_subfield_structure` VALUES ('980', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16684 INSERT INTO `marc_subfield_structure` VALUES ('980', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16685 INSERT INTO `marc_subfield_structure` VALUES ('980', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16686 INSERT INTO `marc_subfield_structure` VALUES ('980', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16687 INSERT INTO `marc_subfield_structure` VALUES ('980', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16688 INSERT INTO `marc_subfield_structure` VALUES ('980', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16689 INSERT INTO `marc_subfield_structure` VALUES ('980', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16690 INSERT INTO `marc_subfield_structure` VALUES ('980', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16691 INSERT INTO `marc_subfield_structure` VALUES ('980', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16692 INSERT INTO `marc_subfield_structure` VALUES ('980', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16693 INSERT INTO `marc_subfield_structure` VALUES ('981', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16694 INSERT INTO `marc_subfield_structure` VALUES ('981', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16695 INSERT INTO `marc_subfield_structure` VALUES ('981', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16696 INSERT INTO `marc_subfield_structure` VALUES ('981', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16697 INSERT INTO `marc_subfield_structure` VALUES ('981', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16698 INSERT INTO `marc_subfield_structure` VALUES ('981', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16699 INSERT INTO `marc_subfield_structure` VALUES ('981', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16700 INSERT INTO `marc_subfield_structure` VALUES ('981', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16701 INSERT INTO `marc_subfield_structure` VALUES ('981', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16702 INSERT INTO `marc_subfield_structure` VALUES ('981', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16703 INSERT INTO `marc_subfield_structure` VALUES ('981', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16704 INSERT INTO `marc_subfield_structure` VALUES ('981', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16705 INSERT INTO `marc_subfield_structure` VALUES ('981', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16706 INSERT INTO `marc_subfield_structure` VALUES ('981', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16707 INSERT INTO `marc_subfield_structure` VALUES ('981', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16708 INSERT INTO `marc_subfield_structure` VALUES ('981', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16709 INSERT INTO `marc_subfield_structure` VALUES ('981', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16710 INSERT INTO `marc_subfield_structure` VALUES ('981', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16711 INSERT INTO `marc_subfield_structure` VALUES ('981', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16712 INSERT INTO `marc_subfield_structure` VALUES ('981', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16713 INSERT INTO `marc_subfield_structure` VALUES ('981', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16714 INSERT INTO `marc_subfield_structure` VALUES ('981', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16715 INSERT INTO `marc_subfield_structure` VALUES ('982', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16716 INSERT INTO `marc_subfield_structure` VALUES ('982', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16717 INSERT INTO `marc_subfield_structure` VALUES ('982', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16718 INSERT INTO `marc_subfield_structure` VALUES ('982', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16719 INSERT INTO `marc_subfield_structure` VALUES ('982', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16720 INSERT INTO `marc_subfield_structure` VALUES ('982', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16721 INSERT INTO `marc_subfield_structure` VALUES ('982', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16722 INSERT INTO `marc_subfield_structure` VALUES ('982', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16723 INSERT INTO `marc_subfield_structure` VALUES ('982', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16724 INSERT INTO `marc_subfield_structure` VALUES ('982', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16725 INSERT INTO `marc_subfield_structure` VALUES ('982', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16726 INSERT INTO `marc_subfield_structure` VALUES ('982', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16727 INSERT INTO `marc_subfield_structure` VALUES ('982', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16728 INSERT INTO `marc_subfield_structure` VALUES ('982', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16729 INSERT INTO `marc_subfield_structure` VALUES ('982', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16730 INSERT INTO `marc_subfield_structure` VALUES ('982', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16731 INSERT INTO `marc_subfield_structure` VALUES ('982', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16732 INSERT INTO `marc_subfield_structure` VALUES ('982', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16733 INSERT INTO `marc_subfield_structure` VALUES ('982', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16734 INSERT INTO `marc_subfield_structure` VALUES ('982', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SR', '', '');
16735 INSERT INTO `marc_subfield_structure` VALUES ('983', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16736 INSERT INTO `marc_subfield_structure` VALUES ('983', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16737 INSERT INTO `marc_subfield_structure` VALUES ('983', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16738 INSERT INTO `marc_subfield_structure` VALUES ('983', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16739 INSERT INTO `marc_subfield_structure` VALUES ('983', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16740 INSERT INTO `marc_subfield_structure` VALUES ('983', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16741 INSERT INTO `marc_subfield_structure` VALUES ('983', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16742 INSERT INTO `marc_subfield_structure` VALUES ('983', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16743 INSERT INTO `marc_subfield_structure` VALUES ('983', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16744 INSERT INTO `marc_subfield_structure` VALUES ('983', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16745 INSERT INTO `marc_subfield_structure` VALUES ('983', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16746 INSERT INTO `marc_subfield_structure` VALUES ('983', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16747 INSERT INTO `marc_subfield_structure` VALUES ('983', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16748 INSERT INTO `marc_subfield_structure` VALUES ('983', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16749 INSERT INTO `marc_subfield_structure` VALUES ('983', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16750 INSERT INTO `marc_subfield_structure` VALUES ('983', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16751 INSERT INTO `marc_subfield_structure` VALUES ('983', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16752 INSERT INTO `marc_subfield_structure` VALUES ('984', 'a', 'Holding library identification number', 'Holding library identification number', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16753 INSERT INTO `marc_subfield_structure` VALUES ('984', 'b', 'Physical description codes', 'Physical description codes', 1, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16754 INSERT INTO `marc_subfield_structure` VALUES ('984', 'c', 'Call number', 'Call number', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16755 INSERT INTO `marc_subfield_structure` VALUES ('984', 'd', 'Volume or other numbering', 'Volume or other numbering', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16756 INSERT INTO `marc_subfield_structure` VALUES ('984', 'e', 'Dates', 'Dates', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16757 INSERT INTO `marc_subfield_structure` VALUES ('984', 'f', 'Completeness note', 'Completeness note', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16758 INSERT INTO `marc_subfield_structure` VALUES ('984', 'g', 'Referral note', 'Referral note', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16759 INSERT INTO `marc_subfield_structure` VALUES ('984', 'h', 'Retention note', 'Retention note', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16760 INSERT INTO `marc_subfield_structure` VALUES ('987', 'a', 'Romanization/conversion identifier', 'Romanization/conversion identifier', 0, 0, '', 9, '', '', '', NULL, -6, 'SR', '', '');
16761 INSERT INTO `marc_subfield_structure` VALUES ('987', 'b', 'Agency that converted, created or reviewed', 'Agency that converted, created or reviewed', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16762 INSERT INTO `marc_subfield_structure` VALUES ('987', 'c', 'Date of conversion or review', 'Date of conversion or review', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16763 INSERT INTO `marc_subfield_structure` VALUES ('987', 'd', 'Status code', 'Status code ', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16764 INSERT INTO `marc_subfield_structure` VALUES ('987', 'e', 'Version of conversion program used', 'Version of conversion program used', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16765 INSERT INTO `marc_subfield_structure` VALUES ('987', 'f', 'Note', 'Note', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16766 INSERT INTO `marc_subfield_structure` VALUES ('990', 'a', 'Link information for 9XX fields', 'Link information for 9XX fields', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16767 INSERT INTO `marc_subfield_structure` VALUES ('990', 'b', 'Link information for field corresponding to 9XX field', 'Link information for field corresponding to 9XX field', 1, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16768 INSERT INTO `marc_subfield_structure` VALUES ('995', 'a', 'Origine du document, texte libre', 'Origine du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16769 INSERT INTO `marc_subfield_structure` VALUES ('995', 'b', 'Origine du document, donn&eacute;e cod&eacute;e', '', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16770 INSERT INTO `marc_subfield_structure` VALUES ('995', 'c', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16771 INSERT INTO `marc_subfield_structure` VALUES ('995', 'd', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16772 INSERT INTO `marc_subfield_structure` VALUES ('995', 'e', 'Genre d&eacute;taill&eacute;', 'Genre d&eacute;taill&eacute;', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16773 INSERT INTO `marc_subfield_structure` VALUES ('995', 'f', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16774 INSERT INTO `marc_subfield_structure` VALUES ('995', 'g', 'Code &agrave; barres, pr&eacute;fixe', 'Code &agrave; barres, pr&eacute;fixe', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16775 INSERT INTO `marc_subfield_structure` VALUES ('995', 'h', 'Code &agrave; barres, incr&eacute;mentation', 'Code &agrave; barres, incr&eacute;mentation', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16776 INSERT INTO `marc_subfield_structure` VALUES ('995', 'i', 'Code &agrave; barres, suffixe', 'Code &agrave; barres, suffixe', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16777 INSERT INTO `marc_subfield_structure` VALUES ('995', 'j', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16778 INSERT INTO `marc_subfield_structure` VALUES ('995', 'k', 'Cote', 'Cote', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16779 INSERT INTO `marc_subfield_structure` VALUES ('995', 'l', 'Volumaison', 'Volumaison', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16780 INSERT INTO `marc_subfield_structure` VALUES ('995', 'm', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16781 INSERT INTO `marc_subfield_structure` VALUES ('995', 'n', 'Date de restitution pr&eacute;vue', 'Date de restitution pr&eacute;vue', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16782 INSERT INTO `marc_subfield_structure` VALUES ('995', 'o', 'Cat&eacute;gorie de circulation', 'Cat&eacute;gorie de circulation', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16783 INSERT INTO `marc_subfield_structure` VALUES ('995', 'p', 'P&eacute;riodique', 'P&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16784 INSERT INTO `marc_subfield_structure` VALUES ('995', 'q', 'Public vis&eacute; (selon l\'&acirc;ge)', 'Public vis&eacute; (selon l\'&acirc;ge)', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16785 INSERT INTO `marc_subfield_structure` VALUES ('995', 'r', 'Type de document et support mat&eacute;riel', 'Type de document et support mat&eacute;riel', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16786 INSERT INTO `marc_subfield_structure` VALUES ('995', 's', 'Él&eacute;ment de tri', 'Él&eacute;ment de tri', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16787 INSERT INTO `marc_subfield_structure` VALUES ('995', 't', 'Genre', 'Genre', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16788 INSERT INTO `marc_subfield_structure` VALUES ('995', 'u', 'Note sur l\'exemplaire', 'Note sur l\'exemplaire', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16789 INSERT INTO `marc_subfield_structure` VALUES ('995', 'v', 'Note sur le num&eacute;ro de p&eacute;riodique', 'Note sur le num&eacute;ro de p&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16790 INSERT INTO `marc_subfield_structure` VALUES ('995', 'w', 'Établissement cible du document, texte libre', 'Établissement cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16791 INSERT INTO `marc_subfield_structure` VALUES ('995', 'x', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16792 INSERT INTO `marc_subfield_structure` VALUES ('995', 'y', 'Ensemble cible du document , texte libre', 'Ensemble cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16793 INSERT INTO `marc_subfield_structure` VALUES ('995', 'z', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'SR', '', '');
16794 INSERT INTO `marc_subfield_structure` VALUES ('998', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16795 INSERT INTO `marc_subfield_structure` VALUES ('998', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16796 INSERT INTO `marc_subfield_structure` VALUES ('998', 'd', 'First date, FD (RLIN)', 'First Date, FD (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'SR', '', '');
16797 INSERT INTO `marc_subfield_structure` VALUES ('998', 'i', 'RINS (RLIN)', 'RINS (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16798 INSERT INTO `marc_subfield_structure` VALUES ('998', 'l', 'LI (RLIN)', 'LI (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16799 INSERT INTO `marc_subfield_structure` VALUES ('998', 'n', 'NUC (RLIN)', 'NUC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16800 INSERT INTO `marc_subfield_structure` VALUES ('998', 'p', 'PROC (RLIN)', 'PROC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16801 INSERT INTO `marc_subfield_structure` VALUES ('998', 's', 'CC (RLIN)', 'CC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16802 INSERT INTO `marc_subfield_structure` VALUES ('998', 't', 'RTYP (RLIN)', 'RTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16803 INSERT INTO `marc_subfield_structure` VALUES ('998', 'w', 'PLINK (RLIN)', 'PLINK (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16804 INSERT INTO `marc_subfield_structure` VALUES ('999', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
16805 INSERT INTO `marc_subfield_structure` VALUES ('999', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'SR', '', '');
16806 INSERT INTO `marc_subfield_structure` VALUES ('999', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
16807 INSERT INTO `marc_subfield_structure` VALUES ('999', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
16808 INSERT INTO `marc_subfield_structure` VALUES ('999', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
16809 INSERT INTO `marc_subfield_structure` VALUES ('999', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
16810 INSERT INTO `marc_subfield_structure` VALUES ('999', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
16811 INSERT INTO `marc_subfield_structure` VALUES ('999', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
16812 INSERT INTO `marc_subfield_structure` VALUES ('999', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
16813 INSERT INTO `marc_subfield_structure` VALUES ('999', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
16814 INSERT INTO `marc_subfield_structure` VALUES ('999', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
16815 INSERT INTO `marc_subfield_structure` VALUES ('999', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
16816 INSERT INTO `marc_subfield_structure` VALUES ('999', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SR', '', '');
16817 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'a', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16818 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'd', 'UAD (RLIN)', 'UAD (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16819 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'f', 'FPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16820 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'h', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16821 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'i', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16822 INSERT INTO `marc_subfield_structure` VALUES ('u01', 's', 'UST (RLIN)', 'UST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16823 INSERT INTO `marc_subfield_structure` VALUES ('u01', 't', 'UTYP (RLIN)', 'UTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16824 INSERT INTO `marc_subfield_structure` VALUES ('u02', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16825 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16826 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'b', 'Additional codes following the standard number', 'Additional codes following the standard number', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16827 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16828 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16829 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'n', 'LSI', 'LSI', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16830 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'o', 'SID', 'SID', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16831 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'p', 'DP', 'DP', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16832 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'r', 'RUSH', 'RUSH', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16833 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'a', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16834 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'b', 'SID', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16835 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'c', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16836 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'd', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16837 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'e', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16838 INSERT INTO `marc_subfield_structure` VALUES ('u10', 's', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16839 INSERT INTO `marc_subfield_structure` VALUES ('u11', 'a', 'Department report request, DRR (DRRH for earlier occurrences)', 'DRR (DRRH for earlier occurrences)', 1, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16840 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'a', 'SUPN', 'SUPN', 1, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16841 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'b', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16842 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'c', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16843 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'd', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16844 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'e', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16845 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'x', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16846 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'a', 'SHIP', 'SHIP', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16847 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'b', 'BILL', 'BILL', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16848 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'c', 'DAC', 'DAC', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16849 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'n', 'LSAC', 'LSAC', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16850 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'a', 'SICO', 'SICO', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16851 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'b', 'SICO', 'SICO', 1, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16852 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'c', 'SCAT', 'SCAT', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16853 INSERT INTO `marc_subfield_structure` VALUES ('u25', 'a', 'Supplier report(s), SRPT', 'Supplier report(s), SRPT', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16854 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'a', 'NCC [OBSOLETE]', 'NCC [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16855 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'i', 'ICI', 'ICI', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16856 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'm', 'MCI', 'MCI', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16857 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'a', 'NCC', 'NCC', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16858 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'b', 'NCS', 'NCS', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16859 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'a', 'ICL', 'ICL', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16860 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'd', 'ICAD', 'ICAD', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16861 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'a', 'EPCL', 'EPCL', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16862 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'r', 'ERI', 'ERI', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16863 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'd', 'EPDT [OBSOLETE]', 'EPDT [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16864 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'f', 'EFRQ', 'EFRQ', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16865 INSERT INTO `marc_subfield_structure` VALUES ('u40', 's', 'EPST', 'EPST', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16866 INSERT INTO `marc_subfield_structure` VALUES ('u40', 't', 'ETYP', 'ETYP', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16867 INSERT INTO `marc_subfield_structure` VALUES ('u50', 'a', 'Acquisitions notes, AQNT', 'Acquisitions notes, AQNT', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16868 INSERT INTO `marc_subfield_structure` VALUES ('u51', 'a', 'Selection notes, SLNT', 'Selection notes, SLNT', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16869 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'a', 'INT', 'INT', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16870 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'b', 'INT', 'NT', 1, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16871 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'a', 'CLNT', 'CLNT', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16872 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'b', 'CLNT', 'CLNT', 1, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16873 INSERT INTO `marc_subfield_structure` VALUES ('u54', 'a', 'Notes to serials department, SRNT', 'Notes to serials department, SRNT', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16874 INSERT INTO `marc_subfield_structure` VALUES ('u55', 'a', 'Cataloging notes, CTNT', 'Cataloging notes, CTNT', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16875 INSERT INTO `marc_subfield_structure` VALUES ('u5f', 'a', 'Accounting notes, ACNT', 'Accounting notes, ACNT', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16876 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'a', 'QTY', 'QTY', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16877 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'b', 'MAT', 'MAT', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16878 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'l', 'MLOC', 'MLOC', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16879 INSERT INTO `marc_subfield_structure` VALUES ('u71', 'a', 'Fund account, FUND', 'Fund account, FUND', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16880 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'a', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16881 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'c', 'CIRC', 'CIRC', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16882 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'h', 'IPST', 'IPST', 1, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16883 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'i', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16884 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'l', 'SLOC', 'SLOC', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16885 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'a', 'LPRI', 'LPRI', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16886 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'b', 'CURR', 'CURR', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16887 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'k', 'CVRT [OBSOLETE]', 'CVRT [OBSOLETE]', 1, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16888 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'p', 'LPD', 'LPD', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16889 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'r', 'EDRT', 'EDRT', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16890 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'h', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16891 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'i', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16892 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'a', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16893 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'b', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16894 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'c', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16895 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'd', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16896 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'e', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16897 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'f', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16898 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'g', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16899 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'h', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16900 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'n', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SR', '', '');
16901
16902
16903 -- *******************************************************
16904
16905
16906
16907 -- ***********************************************************
16908 -- SIMPLE VIDEORECORDINGS KOHA RECORD AND HOLDINGS MANAGEMENT 
16909 -- FIELDS/SUBFIELDS.                                          
16910 -- ***********************************************************
16911
16912 -- These ought to be adjusted for different less conflicting and more 
16913 -- rationally chosen fields and subfields but I had left that for last. 
16914
16915 -- ADJUST ME
16916 -- Use values from your dump of marc_tag_structure and marc_subfield_structure 
16917 -- to provide support for your Koha database.
16918
16919
16920 -- ******************************************************
16921
16922
16923 -- Current Record ID Field/Subfields 
16924
16925
16926 INSERT INTO `marc_tag_structure` VALUES ('090', 'SYSTEM CONTROL NUMBERS (KOHA)', 'SYSTEM CONTROL NUMBERS (KOHA)', 1, 0, '', 'VR');
16927
16928 INSERT INTO `marc_subfield_structure` VALUES ('090', 'a', 'Item type [OBSOLETE]', 'Item type [OBSOLETE]', 0, 0, NULL, -1, NULL, NULL, '', NULL, -5, 'VR', '', '');
16929 INSERT INTO `marc_subfield_structure` VALUES ('090', 'b', 'Koha Dewey Subclass [OBSOLETE]', 'Koha Dewey Subclass [OBSOLETE]', 0, 0, NULL, 0, NULL, NULL, '', NULL, -5, 'VR', '', '');
16930 INSERT INTO `marc_subfield_structure` VALUES ('090', 'c', 'Koha biblionumber', 'Koha biblionumber', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, -5, 'VR', '', '');
16931 INSERT INTO `marc_subfield_structure` VALUES ('090', 'd', 'Koha biblioitemnumber', 'Koha biblioitemnumber', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, -5, 'VR', '', '');
16932
16933
16934 -- ******************************************************
16935
16936
16937 -- Current primary biblioitems Field/Subfields 
16938
16939
16940 INSERT INTO `marc_tag_structure` VALUES ('942', 'ADDED ENTRY ELEMENTS (KOHA)', 'ADDED ENTRY ELEMENTS (KOHA)', 0, 0, '', 'VR');
16941
16942 INSERT INTO `marc_subfield_structure` VALUES ('942', 'a', 'Institution code [OBSOLETE]', 'Institution code [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -5, 'VR', '', '');
16943 INSERT INTO `marc_subfield_structure` VALUES ('942', 'c', 'Item type', 'Item type', 0, 1, 'biblioitems.itemtype', 9, 'itemtypes', '', '', NULL, 0, 'VR', '', '');
16944 INSERT INTO `marc_subfield_structure` VALUES ('942', 'j', 'Location (call number prefix code)', 'Location (call number prefix code)', 0, 0, 'biblioitems.classification', 9, '', '', '', NULL, -6, 'VR', '', '');
16945 INSERT INTO `marc_subfield_structure` VALUES ('942', 'k', 'Classification base (DDC to decimal or LCC letter class padded after single letter classes with trailing 0', 'Classification base', 0, 0, 'biblioitems.dewey', 9, '', '', '', NULL, -6, 'VR', '', '');
16946 INSERT INTO `marc_subfield_structure` VALUES ('942', 'l', 'Classification subclass (DDC after decimal or LCC number after letters', 'Classification subclass', 0, 0, 'biblioitems.subclass', 9, '', '', '', NULL, -6, 'VR', '', '');
16947
16948
16949 -- ******************************************************
16950
16951
16952 -- Recommended items Field/Subfields 
16953
16954
16955 -- INSERT INTO `marc_tag_structure` VALUES ('95k', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', '');
16956
16957 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '0', 'Item status (withdrawn) (similar to 876-8 $j)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'VR', '', '');
16958 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '1', 'Item status (lost) (similar to 876-8 $j)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'VR', '', '');
16959 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '2', 'Source of classification or shelving scheme (similar to 852 $2)', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
16960 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '3', 'Materials specified (similar to 852, 876-8 $3)', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'VR', '', '');
16961 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '4', 'Use restrictions (similar to 506 $a, 876-8 $h)', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'VR', '', '');
16962 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '6', 'Linkage (similar to 852, 876-8 $6)', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'VR', '', '');
16963 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '8', 'Sequence number (similar to 852, 876-8 $8)', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
16964 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '9', 'Koha itemnumber (autogenerated similar to 852, 876-8 $3 $8 $t combined)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, 'VR', '', '');
16965 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'a', 'Location (homebranch) (similar to 852 $a)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, '', '', '');
16966 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'b', 'Sublocation or collection (holdingbranch) (similar to 852 $b)', 'Sublocation or collection (holdingbranch)', 1, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'VR', '', '');
16967 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'c', 'Shelving location (similar to 852 $c, 876-8 $l)', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'VR', '', '');
16968 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'd', 'Date acquired (similar to 541, 876-8 $d)', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, 'VR', '', '');
16969 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'e', 'Source of acquisition (similar to 541 $a, 876-8 $e)', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'VR', '', '');
16970 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'f', 'Coded location qualifier (similar to 852 $f)', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
16971 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'g', 'Non-coded location qualifier (similar to 852 $g)', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
16972 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'h', 'Classification part (similar to 852 $h)', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
16973 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'i', 'Item part (similar to 852 $i)', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
16974 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'j', 'Shelving control number (similar to 852 $j)', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
16975 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'k', 'Call number prefix (similar to 852 $k)', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
16976 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'l', 'Shelving form of title (similar to 852 $l)', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
16977 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'm', 'Call number suffix (similar to 852 $m)', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
16978 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'n', 'Country code (similar to 852 $n)', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
16979 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'o', 'Call number (similar to 852 $k $h $i $m combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'VR', '', '');
16980 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'p', 'Piece designation (barcode) (similar to 852, 876-8 $p)', 'Piece designation (barcode)', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, 'VR', '', '');
16981 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'q', 'Piece physical condition (similar to 562 $a, 852 $q)', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
16982 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'r', 'Invalid or canceled piece designation (canceled barcode) (similar to 876-8 $r)', 'Invalid or canceled piece designation (canceled barcode)', 1, 0, '', 10, '', '', '', NULL, -1, 'VR', '', '');
16983 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 's', 'Copyright article-fee code (similar to 018 $a, 852 $s)', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
16984 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 't', 'Copy number (similar to 852, 876-8 $t)', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
16985 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'u', 'Cost, normal purchase price (similar to 541 $h, 876-8 $c)', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'VR', '', '');
16986 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'v', 'Cost, replacement price (similar to 365 $b, 876-8 $c)', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'VR', '', '');
16987 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'w', 'Price effective from (similar to 365 $f)', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'VR', '', '');
16988 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'x', 'Nonpublic note (similar to 852, 876-8 $x)', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'VR', '', '');
16989 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'y', 'Use restrictions (not for loan) (similar to 506 $a, 876-8 $h)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'VR', '', '');
16990 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'z', 'Public note (similar to 852, 876-8 $z)', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'VR', '', '');
16991
16992
16993
16994 -- Current items Field/Subfields 
16995
16996
16997 INSERT INTO `marc_tag_structure` VALUES ('952', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', 'VR');
16998
16999 INSERT INTO `marc_subfield_structure` VALUES ('952', '0', 'Item status (withdrawn)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'VR', '', '');
17000 INSERT INTO `marc_subfield_structure` VALUES ('952', '1', 'Item status (lost)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'VR', '', '');
17001 INSERT INTO `marc_subfield_structure` VALUES ('952', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
17002 INSERT INTO `marc_subfield_structure` VALUES ('952', '3', 'Materials specified', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'VR', '', '');
17003 INSERT INTO `marc_subfield_structure` VALUES ('952', '4', 'Use restrictions', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'VR', '', '');
17004 INSERT INTO `marc_subfield_structure` VALUES ('952', '6', 'Linkage', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'VR', '', '');
17005 INSERT INTO `marc_subfield_structure` VALUES ('952', '8', 'Sequence number', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
17006 INSERT INTO `marc_subfield_structure` VALUES ('952', '9', 'Cost, normal purchase price', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'VR', '', '');
17007 INSERT INTO `marc_subfield_structure` VALUES ('952', 'a', 'Canceled barcode', 'Canceled barcode', 1, 0, '', 10, '', '', '', NULL, -1, 'VR', '', '');
17008 INSERT INTO `marc_subfield_structure` VALUES ('952', 'b', 'Location (homebranch)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, 'VR', '', '');
17009 INSERT INTO `marc_subfield_structure` VALUES ('952', 'c', 'Shelving location', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'VR', '', '');
17010 INSERT INTO `marc_subfield_structure` VALUES ('952', 'd', 'Sublocation or collection (holdingbranch)', 'Sublocation or collection (holdingbranch)', 0, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'VR', '''952b''', '');
17011 INSERT INTO `marc_subfield_structure` VALUES ('952', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'VR', '', '');
17012 INSERT INTO `marc_subfield_structure` VALUES ('952', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
17013 INSERT INTO `marc_subfield_structure` VALUES ('952', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
17014 INSERT INTO `marc_subfield_structure` VALUES ('952', 'h', 'Classification part', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
17015 INSERT INTO `marc_subfield_structure` VALUES ('952', 'i', 'Item part', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
17016 INSERT INTO `marc_subfield_structure` VALUES ('952', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
17017 INSERT INTO `marc_subfield_structure` VALUES ('952', 'k', 'Call number (combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'VR', '', '');
17018 INSERT INTO `marc_subfield_structure` VALUES ('952', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
17019 INSERT INTO `marc_subfield_structure` VALUES ('952', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
17020 INSERT INTO `marc_subfield_structure` VALUES ('952', 'n', 'Country code', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
17021 INSERT INTO `marc_subfield_structure` VALUES ('952', 'o', 'Call number prefix', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
17022 INSERT INTO `marc_subfield_structure` VALUES ('952', 'p', 'Barcode', 'Barcode', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, 'VR', '', '');
17023 INSERT INTO `marc_subfield_structure` VALUES ('952', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
17024 INSERT INTO `marc_subfield_structure` VALUES ('952', 'r', 'Cost, replacement price', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'VR', '', '');
17025 INSERT INTO `marc_subfield_structure` VALUES ('952', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
17026 INSERT INTO `marc_subfield_structure` VALUES ('952', 't', 'Copy number', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'VR', '', '');
17027 INSERT INTO `marc_subfield_structure` VALUES ('952', 'u', 'Koha itemnumber (autogenerated)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, 'VR', '', '');
17028 INSERT INTO `marc_subfield_structure` VALUES ('952', 'v', 'Date acquired', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, 'VR', '', '');
17029 INSERT INTO `marc_subfield_structure` VALUES ('952', 'w', 'Price effective from', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'VR', '', '');
17030 INSERT INTO `marc_subfield_structure` VALUES ('952', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'VR', '', '');
17031 INSERT INTO `marc_subfield_structure` VALUES ('952', 'y', 'Use restrictions (not for loan)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'VR', '', '');
17032 INSERT INTO `marc_subfield_structure` VALUES ('952', 'z', 'Public note', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'VR', '', '');
17033
17034
17035 -- *******************************************************
17036
17037
17038
17039 -- *******************************************************************
17040 -- SIMPLE VIDEORECORDINGS MARC 21 FIELDS/SUBFIELDS AND COMMMONLY USED 
17041 -- EXTENSIONS.                                                        
17042 -- *******************************************************************
17043
17044
17045 -- A Few local use codes need specifying.  Several seealso, plugin, and 
17046 -- authority framework columns need improving.  $9 for authority record linking 
17047 -- needs to be added where not already provided by RLIN specifications. 
17048 -- Needs checking for errors but probably tolerable for use on a production. 
17049 -- A server can be upgraded easily from later versions of this file.
17050 --                                                                          
17051 -- In the absense of more column support for qualifying the relative 
17052 -- importance of subfields to the record editor, some modest modification of 
17053 -- the default framework is needed setting the not-useful non-Koha holdings 
17054 -- subfields to not managed in Koha.
17055
17056 -- MARC fields including letters as part of the field identifier are from RLIN
17057 -- and should be expected to remain along with RLIN $% subfields.  RLIN has 
17058 -- been using letters in fields because there are not enough local use number 
17059 -- fields which have not already been specified for very large union catalogue 
17060 -- networks such as RLIN itself.
17061
17062
17063 -- Fields ending in c, o, or r are temporary placeholders for information from
17064 -- a numeric value until a non-conflicting way to treat the content under the
17065 -- proper original numeric field is adopted.  090 for LC call numbers is much 
17066 -- too common and important so 999 is also provided as a temporary place 
17067 -- holder until all Koha code for finding control fields has been changed from 
17068 -- a numeric test of < 10 to a regular expression match of m/^00/ to prevent 
17069 -- mistaken matching of fields with letters such as 09o if they were control 
17070 -- fields.
17071 INSERT INTO `marc_tag_structure` VALUES ('000', 'LEADER', 'LEADER', 0, 1, '', 'VR');
17072 INSERT INTO `marc_tag_structure` VALUES ('001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 0, '', 'VR');
17073 INSERT INTO `marc_tag_structure` VALUES ('003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 0, '', 'VR');
17074 INSERT INTO `marc_tag_structure` VALUES ('005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 0, '', 'VR');
17075 INSERT INTO `marc_tag_structure` VALUES ('006', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 1, 0, '', 'VR');
17076 INSERT INTO `marc_tag_structure` VALUES ('007', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 1, 0, '', 'VR');
17077 INSERT INTO `marc_tag_structure` VALUES ('008', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 0, 1, '', 'VR');
17078 INSERT INTO `marc_tag_structure` VALUES ('009', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 1, 0, '', 'VR');
17079 INSERT INTO `marc_tag_structure` VALUES ('010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, '', 'VR');
17080 INSERT INTO `marc_tag_structure` VALUES ('011', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 0, 0, '', 'VR');
17081 INSERT INTO `marc_tag_structure` VALUES ('013', 'PATENT CONTROL INFORMATION', 'PATENT CONTROL INFORMATION', 1, 0, '', 'VR');
17082 INSERT INTO `marc_tag_structure` VALUES ('015', 'NATIONAL BIBLIOGRAPHY NUMBER', 'NATIONAL BIBLIOGRAPHY NUMBER', 1, 0, '', 'VR');
17083 INSERT INTO `marc_tag_structure` VALUES ('016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, '', 'VR');
17084 INSERT INTO `marc_tag_structure` VALUES ('017', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 1, 0, '', 'VR');
17085 INSERT INTO `marc_tag_structure` VALUES ('018', 'COPYRIGHT ARTICLE-FEE CODE', 'COPYRIGHT ARTICLE-FEE CODE', 0, 0, '', 'VR');
17086 INSERT INTO `marc_tag_structure` VALUES ('01e', 'CODED FIELD ERROR (RLIN)', 'CODED FIELD ERROR (RLIN)', 1, 0, '', 'VR');
17087 INSERT INTO `marc_tag_structure` VALUES ('020', 'ISBN', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL, 'VR');
17088 INSERT INTO `marc_tag_structure` VALUES ('022', 'INTERNATIONAL STANDARD SERIAL NUMBER', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL, 'VR');
17089 INSERT INTO `marc_tag_structure` VALUES ('023', 'STANDARD FILM NUMBER (VM) [DELETED]', 'STANDARD FILM NUMBER (VM) [DELETED]', 1, 0, NULL, 'VR');
17090 INSERT INTO `marc_tag_structure` VALUES ('024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL, 'VR');
17091 INSERT INTO `marc_tag_structure` VALUES ('025', 'OVERSEAS ACQUISITION NUMBER', 'OVERSEAS ACQUISITION NUMBER', 1, 0, '', 'VR');
17092 INSERT INTO `marc_tag_structure` VALUES ('026', 'FINGERPRINT IDENTIFIER', 'FINGERPRINT IDENTIFIER', 1, 0, '', 'VR');
17093 INSERT INTO `marc_tag_structure` VALUES ('027', 'STANDARD TECHNICAL REPORT NUMBER', 'STANDARD TECHNICAL REPORT NUMBER', 1, 0, '', 'VR');
17094 INSERT INTO `marc_tag_structure` VALUES ('028', 'IDENTIFICATION NUMBER--PUBLISHER NUMBER', 'PUBLISHER NUMBER', 1, 0, NULL, 'VR');
17095 INSERT INTO `marc_tag_structure` VALUES ('029', 'OTHER SYSTEM CONTROL NUMBER (OCLC)', ' (OCLC)', 1, 0, '', 'VR');
17096 INSERT INTO `marc_tag_structure` VALUES ('030', 'CODEN DESIGNATION', 'CODEN DESIGNATION', 1, 0, '', 'VR');
17097 INSERT INTO `marc_tag_structure` VALUES ('031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, '', 'VR');
17098 INSERT INTO `marc_tag_structure` VALUES ('032', 'POSTAL REGISTRATION NUMBER', 'POSTAL REGISTRATION NUMBER', 1, 0, '', 'VR');
17099 INSERT INTO `marc_tag_structure` VALUES ('033', 'DATE/TIME AND PLACE OF AN EVENT', 'DATE/TIME AND PLACE OF AN EVENT', 1, 0, '', 'VR');
17100 INSERT INTO `marc_tag_structure` VALUES ('034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, '', 'VR');
17101 INSERT INTO `marc_tag_structure` VALUES ('035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL, 'VR');
17102 INSERT INTO `marc_tag_structure` VALUES ('036', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 0, 0, '', 'VR');
17103 INSERT INTO `marc_tag_structure` VALUES ('037', 'PUBLICATION, DISTRIBUTION DETAILS--SOURCE OF ACQUISITION', 'SOURCE OF ACQUISITION', 1, 0, NULL, 'VR');
17104 INSERT INTO `marc_tag_structure` VALUES ('038', 'RECORD CONTENT LICENSOR', 'RECORD CONTENT LICENSOR', 0, 0, '', 'VR');
17105 INSERT INTO `marc_tag_structure` VALUES ('039', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 0, 0, '', 'VR');
17106 INSERT INTO `marc_tag_structure` VALUES ('040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 0, NULL, 'VR');
17107 INSERT INTO `marc_tag_structure` VALUES ('041', 'LANGUAGE CODE', 'LANGUAGE CODE', 1, 0, '', 'VR');
17108 INSERT INTO `marc_tag_structure` VALUES ('042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, '', 'VR');
17109 INSERT INTO `marc_tag_structure` VALUES ('043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL, 'VR');
17110 INSERT INTO `marc_tag_structure` VALUES ('044', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 0, 0, '', 'VR');
17111 INSERT INTO `marc_tag_structure` VALUES ('045', 'TIME PERIOD OF CONTENT', 'TIME PERIOD OF CONTENT', 0, 0, '', 'VR');
17112 INSERT INTO `marc_tag_structure` VALUES ('046', 'SPECIAL CODED DATES', 'SPECIAL CODED DATES', 1, 0, '', 'VR');
17113 INSERT INTO `marc_tag_structure` VALUES ('047', 'FORM OF MUSICAL COMPOSITION CODE', 'FORM OF MUSICAL COMPOSITION CODE', 0, 0, '', 'VR');
17114 INSERT INTO `marc_tag_structure` VALUES ('048', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 1, 0, '', 'VR');
17115 INSERT INTO `marc_tag_structure` VALUES ('049', 'LOCAL HOLDINGS (OCLC)', 'LOCAL HOLDINGS (OCLC)', 0, 0, '', 'VR');
17116 INSERT INTO `marc_tag_structure` VALUES ('050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL, 'VR');
17117 INSERT INTO `marc_tag_structure` VALUES ('051', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 1, 0, NULL, 'VR');
17118 INSERT INTO `marc_tag_structure` VALUES ('052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL, 'VR');
17119 INSERT INTO `marc_tag_structure` VALUES ('055', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 1, 0, NULL, 'VR');
17120 INSERT INTO `marc_tag_structure` VALUES ('060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL, 'VR');
17121 INSERT INTO `marc_tag_structure` VALUES ('061', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 1, 0, NULL, 'VR');
17122 INSERT INTO `marc_tag_structure` VALUES ('066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL, 'VR');
17123 INSERT INTO `marc_tag_structure` VALUES ('070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL, 'VR');
17124 INSERT INTO `marc_tag_structure` VALUES ('071', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 1, 0, NULL, 'VR');
17125 INSERT INTO `marc_tag_structure` VALUES ('072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL, 'VR');
17126 INSERT INTO `marc_tag_structure` VALUES ('074', 'GPO ITEM NUMBER', 'GPO ITEM NUMBER', 1, 0, NULL, 'VR');
17127 INSERT INTO `marc_tag_structure` VALUES ('080', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'VR');
17128 INSERT INTO `marc_tag_structure` VALUES ('082', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'VR');
17129 INSERT INTO `marc_tag_structure` VALUES ('084', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL, 'VR');
17130 INSERT INTO `marc_tag_structure` VALUES ('086', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL, 'VR');
17131 INSERT INTO `marc_tag_structure` VALUES ('087', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 1, 0, NULL, 'VR');
17132 INSERT INTO `marc_tag_structure` VALUES ('088', 'REPORT NUMBER', 'REPORT NUMBER', 1, 0, NULL, 'VR');
17133 INSERT INTO `marc_tag_structure` VALUES ('09o', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'VR');
17134 INSERT INTO `marc_tag_structure` VALUES ('091', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 0, 0, '', 'VR');
17135 INSERT INTO `marc_tag_structure` VALUES ('092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, '', 'VR');
17136 INSERT INTO `marc_tag_structure` VALUES ('096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, '', 'VR');
17137 INSERT INTO `marc_tag_structure` VALUES ('098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, '', 'VR');
17138 INSERT INTO `marc_tag_structure` VALUES ('099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, '', 'VR');
17139 INSERT INTO `marc_tag_structure` VALUES ('100', 'MAIN ENTRY--DIRECTOR/PERSONAL NAME', 'MAIN ENTRY--PERSONAL NAME', 0, 0, NULL, 'VR');
17140 INSERT INTO `marc_tag_structure` VALUES ('110', 'MAIN ENTRY--CORPORATE NAME', 'MAIN ENTRY--CORPORATE NAME', 0, 0, NULL, 'VR');
17141 INSERT INTO `marc_tag_structure` VALUES ('111', 'MAIN ENTRY--MEETING NAME', 'MAIN ENTRY--MEETING NAME', 0, 0, NULL, 'VR');
17142 INSERT INTO `marc_tag_structure` VALUES ('130', 'MAIN ENTRY--UNIFORM TITLE', 'MAIN ENTRY--UNIFORM TITLE', 0, 0, NULL, 'VR');
17143 INSERT INTO `marc_tag_structure` VALUES ('210', 'ABBREVIATED TITLE', 'ABBREVIATED TITLE', 1, 0, NULL, 'VR');
17144 INSERT INTO `marc_tag_structure` VALUES ('211', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 1, 0, NULL, 'VR');
17145 INSERT INTO `marc_tag_structure` VALUES ('212', 'VARIANT ACCESS TITLE [OBSOLETE]', 'VARIANT ACCESS TITLE [OBSOLETE]', 1, 0, NULL, 'VR');
17146 INSERT INTO `marc_tag_structure` VALUES ('214', 'AUGMENTED TITLE [OBSOLETE]', 'AUGMENTED TITLE [OBSOLETE]', 1, 0, NULL, 'VR');
17147 INSERT INTO `marc_tag_structure` VALUES ('222', 'KEY TITLE', 'KEY TITLE', 1, 0, NULL, 'VR');
17148 INSERT INTO `marc_tag_structure` VALUES ('240', 'UNIFORM TITLE', 'UNIFORM TITLE', 0, 0, 'Unititle', 'VR');
17149 INSERT INTO `marc_tag_structure` VALUES ('241', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 0, 0, '', 'VR');
17150 INSERT INTO `marc_tag_structure` VALUES ('242', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 1, 0, NULL, 'VR');
17151 INSERT INTO `marc_tag_structure` VALUES ('243', 'COLLECTIVE UNIFORM TITLE', 'COLLECTIVE UNIFORM TITLE', 0, 0, '', 'VR');
17152 INSERT INTO `marc_tag_structure` VALUES ('245', 'TITLE', 'TITLE STATEMENT', 0, 1, '', 'VR');
17153 INSERT INTO `marc_tag_structure` VALUES ('246', 'VARYING FORM OF TITLE', 'VARYING FORM OF TITLE', 1, 0, NULL, 'VR');
17154 INSERT INTO `marc_tag_structure` VALUES ('247', 'FORMER TITLE', 'FORMER TITLE', 1, 0, NULL, 'VR');
17155 INSERT INTO `marc_tag_structure` VALUES ('250', 'EDITION STATEMENT', 'EDITION STATEMENT', 0, 0, NULL, 'VR');
17156 INSERT INTO `marc_tag_structure` VALUES ('254', 'MUSICAL PRESENTATION STATEMENT', 'MUSICAL PRESENTATION STATEMENT', 0, 0, NULL, 'VR');
17157 INSERT INTO `marc_tag_structure` VALUES ('255', 'CARTOGRAPHIC MATHEMATICAL DATA', 'CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL, 'VR');
17158 INSERT INTO `marc_tag_structure` VALUES ('256', 'COMPUTER FILE CHARACTERISTICS', 'COMPUTER FILE CHARACTERISTICS', 0, 0, NULL, 'VR');
17159 INSERT INTO `marc_tag_structure` VALUES ('257', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 0, 0, NULL, 'VR');
17160 INSERT INTO `marc_tag_structure` VALUES ('258', 'PHILATELIC ISSUE DATE', 'PHILATELIC ISSUE DATE', 1, 0, NULL, 'VR');
17161 INSERT INTO `marc_tag_structure` VALUES ('260', 'STUDIO/PROCUCTION COMPANY--PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 'PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 1, 0, NULL, 'VR');
17162 INSERT INTO `marc_tag_structure` VALUES ('261', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, NULL, 'VR');
17163 INSERT INTO `marc_tag_structure` VALUES ('262', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 0, 0, NULL, 'VR');
17164 INSERT INTO `marc_tag_structure` VALUES ('263', 'PROJECTED PUBLICATION DATE', 'PROJECTED PUBLICATION DATE', 0, 0, NULL, 'VR');
17165 INSERT INTO `marc_tag_structure` VALUES ('265', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 0, 0, NULL, 'VR');
17166 INSERT INTO `marc_tag_structure` VALUES ('270', 'PUBLICATION, DISTRIBUTION DETAILS--ADDRESS', 'ADDRESS', 1, 0, NULL, 'VR');
17167 INSERT INTO `marc_tag_structure` VALUES ('300', 'PHYSICAL DESCRIPTION', 'PHYSICAL DESCRIPTION', 1, 1, NULL, 'VR');
17168 INSERT INTO `marc_tag_structure` VALUES ('301', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 0, 0, NULL, 'VR');
17169 INSERT INTO `marc_tag_structure` VALUES ('302', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 0, 0, NULL, 'VR');
17170 INSERT INTO `marc_tag_structure` VALUES ('303', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'VR');
17171 INSERT INTO `marc_tag_structure` VALUES ('304', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'VR');
17172 INSERT INTO `marc_tag_structure` VALUES ('305', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 0, 0, NULL, 'VR');
17173 INSERT INTO `marc_tag_structure` VALUES ('306', 'RUN TIME', 'PLAYING TIME', 0, 0, NULL, 'VR');
17174 INSERT INTO `marc_tag_structure` VALUES ('307', 'HOURS, ETC.', 'HOURS, ETC.', 1, 0, NULL, 'VR');
17175 INSERT INTO `marc_tag_structure` VALUES ('308', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 1, 0, NULL, 'VR');
17176 INSERT INTO `marc_tag_structure` VALUES ('310', 'CURRENT PUBLICATION FREQUENCY', 'CURRENT PUBLICATION FREQUENCY', 0, 0, NULL, 'VR');
17177 INSERT INTO `marc_tag_structure` VALUES ('315', 'FREQUENCY (CF MP) [OBSOLETE]', 'FREQUENCY (CF MP) [OBSOLETE]', 0, 0, NULL, 'VR');
17178 INSERT INTO `marc_tag_structure` VALUES ('321', 'FORMER PUBLICATION FREQUENCY', 'FORMER PUBLICATION FREQUENCY', 1, 0, NULL, 'VR');
17179 INSERT INTO `marc_tag_structure` VALUES ('340', 'PHYSICAL MEDIUM', 'PHYSICAL MEDIUM', 1, 0, NULL, 'VR');
17180 INSERT INTO `marc_tag_structure` VALUES ('342', 'GEOSPATIAL REFERENCE DATA', 'GEOSPATIAL REFERENCE DATA', 1, 0, NULL, 'VR');
17181 INSERT INTO `marc_tag_structure` VALUES ('343', 'PLANAR COORDINATE DATA', 'PLANAR COORDINATE DATA', 1, 0, NULL, 'VR');
17182 INSERT INTO `marc_tag_structure` VALUES ('350', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 1, 0, NULL, 'VR');
17183 INSERT INTO `marc_tag_structure` VALUES ('351', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 1, 0, NULL, 'VR');
17184 INSERT INTO `marc_tag_structure` VALUES ('352', 'DIGITAL GRAPHIC REPRESENTATION', 'DIGITAL GRAPHIC REPRESENTATION', 1, 0, NULL, 'VR');
17185 INSERT INTO `marc_tag_structure` VALUES ('355', 'SECURITY CLASSIFICATION CONTROL', 'SECURITY CLASSIFICATION CONTROL', 1, 0, NULL, 'VR');
17186 INSERT INTO `marc_tag_structure` VALUES ('357', 'ORIGINATOR DISSEMINATION CONTROL', 'ORIGINATOR DISSEMINATION CONTROL', 0, 0, NULL, 'VR');
17187 INSERT INTO `marc_tag_structure` VALUES ('359', 'RENTAL PRICE (VM) [OBSOLETE]', 'RENTAL PRICE (VM) [OBSOLETE]', 0, 0, NULL, 'VR');
17188 INSERT INTO `marc_tag_structure` VALUES ('362', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 1, 0, NULL, 'VR');
17189 INSERT INTO `marc_tag_structure` VALUES ('365', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE PRICE', 'TRADE PRICE', 1, 0, NULL, 'VR');
17190 INSERT INTO `marc_tag_structure` VALUES ('366', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE AVAILABILITY INFORMATION', 'TRADE AVAILABILITY INFORMATION', 1, 0, NULL, 'VR');
17191 INSERT INTO `marc_tag_structure` VALUES ('400', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'VR');
17192 INSERT INTO `marc_tag_structure` VALUES ('410', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'VR');
17193 INSERT INTO `marc_tag_structure` VALUES ('411', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'VR');
17194 INSERT INTO `marc_tag_structure` VALUES ('440', 'SERIES--TITLE', 'SERIES STATEMENT/ADDED ENTRY--TITLE', 1, 0, NULL, 'VR');
17195 INSERT INTO `marc_tag_structure` VALUES ('490', 'SERIES STATEMENT', 'SERIES STATEMENT', 1, 0, '', 'VR');
17196 INSERT INTO `marc_tag_structure` VALUES ('500', 'ASPECT RATIO/GENERAL NOTE', 'GENERAL NOTE', 1, 0, NULL, 'VR');
17197 INSERT INTO `marc_tag_structure` VALUES ('501', 'WITH NOTE', 'WITH NOTE', 1, 0, NULL, 'VR');
17198 INSERT INTO `marc_tag_structure` VALUES ('502', 'DISSERTATION NOTE', 'DISSERTATION NOTE', 1, 0, NULL, 'VR');
17199 INSERT INTO `marc_tag_structure` VALUES ('503', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 1, 0, NULL, 'VR');
17200 INSERT INTO `marc_tag_structure` VALUES ('504', 'BIBLIOGRAPHY, ETC. NOTE', 'BIBLIOGRAPHY, ETC. NOTE', 1, 0, NULL, 'VR');
17201 INSERT INTO `marc_tag_structure` VALUES ('505', 'FORMATTED CONTENTS NOTE', 'FORMATTED CONTENTS NOTE', 1, 0, NULL, 'VR');
17202 INSERT INTO `marc_tag_structure` VALUES ('506', 'RATING/RESTRICTIONS ON ACCESS NOTE', 'RESTRICTIONS ON ACCESS NOTE', 1, 0, NULL, 'VR');
17203 INSERT INTO `marc_tag_structure` VALUES ('507', 'SCALE NOTE FOR GRAPHIC MATERIAL', 'SCALE NOTE FOR GRAPHIC MATERIAL', 0, 0, NULL, 'VR');
17204 INSERT INTO `marc_tag_structure` VALUES ('508', 'CREATION/PRODUCTION CREDITS NOTE', 'CREATION/PRODUCTION CREDITS NOTE', 1, 0, NULL, 'VR');
17205 INSERT INTO `marc_tag_structure` VALUES ('509', 'INFORMAL NOTES (RLIN)', 'INFORMAL NOTES (RLIN)', 0, 0, NULL, 'VR');
17206 INSERT INTO `marc_tag_structure` VALUES ('510', 'CITATION/REFERENCES NOTE', 'CITATION/REFERENCES NOTE', 1, 0, NULL, 'VR');
17207 INSERT INTO `marc_tag_structure` VALUES ('511', 'PARTICIPANT OR PERFORMER NOTE', 'PARTICIPANT OR PERFORMER NOTE', 1, 0, NULL, 'VR');
17208 INSERT INTO `marc_tag_structure` VALUES ('512', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'VR');
17209 INSERT INTO `marc_tag_structure` VALUES ('513', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 1, 0, NULL, 'VR');
17210 INSERT INTO `marc_tag_structure` VALUES ('514', 'DATA QUALITY NOTE', 'DATA QUALITY NOTE', 0, 0, NULL, 'VR');
17211 INSERT INTO `marc_tag_structure` VALUES ('515', 'NUMBERING PECULIARITIES NOTE', 'NUMBERING PECULIARITIES NOTE', 1, 0, NULL, 'VR');
17212 INSERT INTO `marc_tag_structure` VALUES ('516', 'REGION CODE/TYPE OF COMPUTER FILE OR DATA NOTE', 'TYPE OF COMPUTER FILE OR DATA NOTE', 1, 0, NULL, 'VR');
17213 INSERT INTO `marc_tag_structure` VALUES ('517', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 0, 0, NULL, 'VR');
17214 INSERT INTO `marc_tag_structure` VALUES ('518', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 1, 0, NULL, 'VR');
17215 INSERT INTO `marc_tag_structure` VALUES ('520', 'SUMMARY, ETC.', 'SUMMARY, ETC.', 1, 0, NULL, 'VR');
17216 INSERT INTO `marc_tag_structure` VALUES ('521', 'GRADE LEVEL/TARGET AUDIENCE NOTE', 'TARGET AUDIENCE NOTE', 1, 0, NULL, 'VR');
17217 INSERT INTO `marc_tag_structure` VALUES ('522', 'GEOGRAPHIC DETAILS/GEOGRAPHIC COVERAGE NOTE', 'GEOGRAPHIC COVERAGE NOTE', 1, 0, NULL, 'VR');
17218 INSERT INTO `marc_tag_structure` VALUES ('523', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'VR');
17219 INSERT INTO `marc_tag_structure` VALUES ('524', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'VR');
17220 INSERT INTO `marc_tag_structure` VALUES ('525', 'SUPPLEMENT NOTE', 'SUPPLEMENT NOTE', 0, 0, NULL, 'VR');
17221 INSERT INTO `marc_tag_structure` VALUES ('526', 'STUDY PROGRAM INFORMATION NOTE', 'STUDY PROGRAM INFORMATION NOTE', 0, 0, NULL, 'VR');
17222 INSERT INTO `marc_tag_structure` VALUES ('527', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 1, 0, NULL, 'VR');
17223 INSERT INTO `marc_tag_structure` VALUES ('530', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 1, 0, NULL, 'VR');
17224 INSERT INTO `marc_tag_structure` VALUES ('533', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'VR');
17225 INSERT INTO `marc_tag_structure` VALUES ('534', 'ORIGINAL VERSION NOTE', 'ORIGINAL VERSION NOTE', 1, 0, NULL, 'VR');
17226 INSERT INTO `marc_tag_structure` VALUES ('535', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 1, 0, NULL, 'VR');
17227 INSERT INTO `marc_tag_structure` VALUES ('536', 'FUNDING INFORMATION NOTE', 'FUNDING INFORMATION NOTE', 1, 0, NULL, 'VR');
17228 INSERT INTO `marc_tag_structure` VALUES ('537', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'VR');
17229 INSERT INTO `marc_tag_structure` VALUES ('538', 'SYSTEM DETAILS NOTE', 'SYSTEM DETAILS NOTE', 1, 0, NULL, 'VR');
17230 INSERT INTO `marc_tag_structure` VALUES ('540', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'VR');
17231 INSERT INTO `marc_tag_structure` VALUES ('541', 'ACQUISITION INFO--IMMEDIATE SOURCE OF ACQUISITION NOTE', 'IMMEDIATE SOURCE OF ACQUISITION NOTE', 1, 0, NULL, 'VR');
17232 INSERT INTO `marc_tag_structure` VALUES ('543', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 1, 0, NULL, 'VR');
17233 INSERT INTO `marc_tag_structure` VALUES ('544', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 1, 0, NULL, 'VR');
17234 INSERT INTO `marc_tag_structure` VALUES ('546', 'LANGUAGE/TRANSLATION INFO', 'LANGUAGE NOTE', 1, 0, NULL, 'VR');
17235 INSERT INTO `marc_tag_structure` VALUES ('547', 'FORMER TITLE COMPLEXITY NOTE', 'FORMER TITLE COMPLEXITY NOTE', 1, 0, NULL, 'VR');
17236 INSERT INTO `marc_tag_structure` VALUES ('550', 'ISSUING BODY NOTE', 'ISSUING BODY NOTE', 1, 0, NULL, 'VR');
17237 INSERT INTO `marc_tag_structure` VALUES ('552', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 1, 0, NULL, 'VR');
17238 INSERT INTO `marc_tag_structure` VALUES ('555', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 1, 0, NULL, 'VR');
17239 INSERT INTO `marc_tag_structure` VALUES ('556', 'INFORMATION ABOUT DOCUMENTATION NOTE', 'INFORMATION ABOUT DOCUMENTATION NOTE', 1, 0, NULL, 'VR');
17240 INSERT INTO `marc_tag_structure` VALUES ('561', 'OWNERSHIP AND CUSTODIAL HISTORY', 'OWNERSHIP AND CUSTODIAL HISTORY', 1, 0, NULL, 'VR');
17241 INSERT INTO `marc_tag_structure` VALUES ('562', 'COPY AND VERSION IDENTIFICATION NOTE', 'COPY AND VERSION IDENTIFICATION NOTE', 1, 0, NULL, 'VR');
17242 INSERT INTO `marc_tag_structure` VALUES ('563', 'BINDING INFORMATION', 'BINDING INFORMATION', 1, 0, NULL, 'VR');
17243 INSERT INTO `marc_tag_structure` VALUES ('565', 'CASE FILE CHARACTERISTICS NOTE', 'CASE FILE CHARACTERISTICS NOTE', 1, 0, NULL, 'VR');
17244 INSERT INTO `marc_tag_structure` VALUES ('567', 'METHODOLOGY NOTE', 'METHODOLOGY NOTE', 1, 0, NULL, 'VR');
17245 INSERT INTO `marc_tag_structure` VALUES ('570', 'EDITOR NOTE (SE) [OBSOLETE]', 'EDITOR NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'VR');
17246 INSERT INTO `marc_tag_structure` VALUES ('580', 'LINKING ENTRY COMPLEXITY NOTE', 'LINKING ENTRY COMPLEXITY NOTE', 1, 0, NULL, 'VR');
17247 INSERT INTO `marc_tag_structure` VALUES ('581', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'VR');
17248 INSERT INTO `marc_tag_structure` VALUES ('582', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 1, 0, NULL, 'VR');
17249 INSERT INTO `marc_tag_structure` VALUES ('583', 'ACQUISITION INFO--ACTION NOTE', 'ACTION NOTE', 1, 0, NULL, 'VR');
17250 INSERT INTO `marc_tag_structure` VALUES ('584', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 1, 0, NULL, 'VR');
17251 INSERT INTO `marc_tag_structure` VALUES ('585', 'EXHIBITIONS NOTE', 'EXHIBITIONS NOTE', 1, 0, NULL, 'VR');
17252 INSERT INTO `marc_tag_structure` VALUES ('586', 'AWARDS', 'AWARDS NOTE', 1, 0, NULL, 'VR');
17253 INSERT INTO `marc_tag_structure` VALUES ('590', 'LOCAL NOTE (RLIN)', 'LOCAL NOTE (RLIN)', 1, 0, NULL, 'VR');
17254 INSERT INTO `marc_tag_structure` VALUES ('600', 'SUBJECT--PERSONAL NAME', 'SUBJECT ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'VR');
17255 INSERT INTO `marc_tag_structure` VALUES ('610', 'SUBJECT--CORPORATE NAME', 'SUBJECT ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'VR');
17256 INSERT INTO `marc_tag_structure` VALUES ('611', 'SUBJECT--MEETING NAME', 'SUBJECT ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'VR');
17257 INSERT INTO `marc_tag_structure` VALUES ('630', 'SUBJECT--UNIFORM TITLE', 'SUBJECT ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'VR');
17258 INSERT INTO `marc_tag_structure` VALUES ('648', 'SUBJECT--CHRONOLOGICAL TERM', 'SUBJECT ADDED ENTRY--CHRONOLOGICAL TERM', 1, 0, NULL, 'VR');
17259 INSERT INTO `marc_tag_structure` VALUES ('650', 'SUBJECT--TOPIC', 'SUBJECT ADDED ENTRY--TOPICAL TERM', 1, 0, NULL, 'VR');
17260 INSERT INTO `marc_tag_structure` VALUES ('651', 'SUBJECT--GEOGRAPHIC NAME', 'SUBJECT ADDED ENTRY--GEOGRAPHIC NAME', 1, 0, NULL, 'VR');
17261 INSERT INTO `marc_tag_structure` VALUES ('652', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 1, 0, NULL, 'VR');
17262 INSERT INTO `marc_tag_structure` VALUES ('653', 'SUBJECT--UNCONTROLLED', 'INDEX TERM--UNCONTROLLED', 1, 0, NULL, 'VR');
17263 INSERT INTO `marc_tag_structure` VALUES ('654', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 1, 0, NULL, 'VR');
17264 INSERT INTO `marc_tag_structure` VALUES ('655', 'SUBJECT--GENRE/FORM', 'INDEX TERM--GENRE/FORM', 1, 0, NULL, 'VR');
17265 INSERT INTO `marc_tag_structure` VALUES ('656', 'SUBJECT--OCCUPATION', 'INDEX TERM--OCCUPATION', 1, 0, NULL, 'VR');
17266 INSERT INTO `marc_tag_structure` VALUES ('657', 'SUBJECT--FUNCTION', 'INDEX TERM--FUNCTION', 1, 0, NULL, 'VR');
17267 INSERT INTO `marc_tag_structure` VALUES ('658', 'SUBJECT--CURRICULUM OBJECTIVE', 'INDEX TERM--CURRICULUM OBJECTIVE', 1, 0, NULL, 'VR');
17268 INSERT INTO `marc_tag_structure` VALUES ('662', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'VR');
17269 INSERT INTO `marc_tag_structure` VALUES ('690', 'LOCAL SUBJECT--TOPICAL TERM (OCLC, RLIN)', 'LOCAL SUBJECT ADDED ENTRY--TOPICAL TERM (OCLC, RLIN)', 1, 0, '', 'VR');
17270 INSERT INTO `marc_tag_structure` VALUES ('691', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 1, 0, '', 'VR');
17271 INSERT INTO `marc_tag_structure` VALUES ('696', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'VR');
17272 INSERT INTO `marc_tag_structure` VALUES ('697', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'VR');
17273 INSERT INTO `marc_tag_structure` VALUES ('698', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'VR');
17274 INSERT INTO `marc_tag_structure` VALUES ('699', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'VR');
17275 INSERT INTO `marc_tag_structure` VALUES ('700', 'ADDED ENTRY--PERSONAL NAME', 'ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'VR');
17276 INSERT INTO `marc_tag_structure` VALUES ('705', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'VR');
17277 INSERT INTO `marc_tag_structure` VALUES ('710', 'ADDED ENTRY--CORPORATE NAME', 'ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'VR');
17278 INSERT INTO `marc_tag_structure` VALUES ('711', 'ADDED ENTRY--MEETING NAME', 'ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'VR');
17279 INSERT INTO `marc_tag_structure` VALUES ('715', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'VR');
17280 INSERT INTO `marc_tag_structure` VALUES ('720', 'ADDED ENTRY--UNCONTROLLED NAME (ACTOR, ETC.)', 'ADDED ENTRY--UNCONTROLLED NAME', 1, 0, NULL, 'VR');
17281 INSERT INTO `marc_tag_structure` VALUES ('730', 'ADDED ENTRY--UNIFORM TITLE', 'ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'VR');
17282 INSERT INTO `marc_tag_structure` VALUES ('740', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 1, 0, NULL, 'VR');
17283 INSERT INTO `marc_tag_structure` VALUES ('752', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'VR');
17284 INSERT INTO `marc_tag_structure` VALUES ('753', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 1, 0, NULL, 'VR');
17285 INSERT INTO `marc_tag_structure` VALUES ('754', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 1, 0, NULL, 'VR');
17286 INSERT INTO `marc_tag_structure` VALUES ('755', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 1, 0, NULL, 'VR');
17287 INSERT INTO `marc_tag_structure` VALUES ('760', 'MAIN SERIES ENTRY', 'MAIN SERIES ENTRY', 1, 0, NULL, 'VR');
17288 INSERT INTO `marc_tag_structure` VALUES ('762', 'SUBSERIES ENTRY', 'SUBSERIES ENTRY', 1, 0, NULL, 'VR');
17289 INSERT INTO `marc_tag_structure` VALUES ('765', 'ORIGINAL LANGUAGE ENTRY', 'ORIGINAL LANGUAGE ENTRY', 1, 0, NULL, 'VR');
17290 INSERT INTO `marc_tag_structure` VALUES ('767', 'TRANSLATION ENTRY', 'TRANSLATION ENTRY', 1, 0, NULL, 'VR');
17291 INSERT INTO `marc_tag_structure` VALUES ('770', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 1, 0, NULL, 'VR');
17292 INSERT INTO `marc_tag_structure` VALUES ('772', 'SUPPLEMENT PARENT ENTRY', 'SUPPLEMENT PARENT ENTRY', 1, 0, NULL, 'VR');
17293 INSERT INTO `marc_tag_structure` VALUES ('773', 'HOST ITEM ENTRY', 'HOST ITEM ENTRY', 1, 0, NULL, 'VR');
17294 INSERT INTO `marc_tag_structure` VALUES ('774', 'CONSTITUENT UNIT ENTRY', 'CONSTITUENT UNIT ENTRY', 1, 0, NULL, 'VR');
17295 INSERT INTO `marc_tag_structure` VALUES ('775', 'OTHER EDITION ENTRY', 'OTHER EDITION ENTRY', 1, 0, NULL, 'VR');
17296 INSERT INTO `marc_tag_structure` VALUES ('776', 'ADDITIONAL PHYSICAL FORM ENTRY', 'ADDITIONAL PHYSICAL FORM ENTRY', 1, 0, NULL, 'VR');
17297 INSERT INTO `marc_tag_structure` VALUES ('777', 'ISSUED WITH ENTRY', 'ISSUED WITH ENTRY', 1, 0, NULL, 'VR');
17298 INSERT INTO `marc_tag_structure` VALUES ('780', 'PRECEDING ENTRY', 'PRECEDING ENTRY', 1, 0, NULL, 'VR');
17299 INSERT INTO `marc_tag_structure` VALUES ('785', 'SUCCEEDING ENTRY', 'SUCCEEDING ENTRY', 1, 0, NULL, 'VR');
17300 INSERT INTO `marc_tag_structure` VALUES ('786', 'DATA SOURCE ENTRY', 'DATA SOURCE ENTRY', 1, 0, NULL, 'VR');
17301 INSERT INTO `marc_tag_structure` VALUES ('787', 'NONSPECIFIC RELATIONSHIP ENTRY', 'NONSPECIFIC RELATIONSHIP ENTRY', 1, 0, NULL, 'VR');
17302 INSERT INTO `marc_tag_structure` VALUES ('789', 'COMPONENT ITEM ENTRY (RLIN)', 'COMPONENT ITEM ENTRY (RLIN)', 1, 0, '', 'VR');
17303 INSERT INTO `marc_tag_structure` VALUES ('796', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'VR');
17304 INSERT INTO `marc_tag_structure` VALUES ('797', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'VR');
17305 INSERT INTO `marc_tag_structure` VALUES ('798', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'VR');
17306 INSERT INTO `marc_tag_structure` VALUES ('799', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'VR');
17307 INSERT INTO `marc_tag_structure` VALUES ('800', 'SERIES ADDED ENTRY--PERSONAL NAME', 'SERIES ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'VR');
17308 INSERT INTO `marc_tag_structure` VALUES ('810', 'SERIES ADDED ENTRY--CORPORATE NAME', 'SERIES ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'VR');
17309 INSERT INTO `marc_tag_structure` VALUES ('811', 'SERIES ADDED ENTRY--MEETING NAME', 'SERIES ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'VR');
17310 INSERT INTO `marc_tag_structure` VALUES ('830', 'SERIES ADDED ENTRY--UNIFORM TITLE', 'SERIES ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'VR');
17311 INSERT INTO `marc_tag_structure` VALUES ('840', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 1, 0, NULL, 'VR');
17312 INSERT INTO `marc_tag_structure` VALUES ('841', 'HOLDINGS CODED DATA VALUES', 'HOLDINGS CODED DATA VALUES', 0, 0, NULL, 'VR');
17313 INSERT INTO `marc_tag_structure` VALUES ('842', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 0, 0, NULL, 'VR');
17314 INSERT INTO `marc_tag_structure` VALUES ('843', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'VR');
17315 INSERT INTO `marc_tag_structure` VALUES ('844', 'NAME OF UNIT', 'NAME OF UNIT', 0, 0, NULL, 'VR');
17316 INSERT INTO `marc_tag_structure` VALUES ('845', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'VR');
17317 INSERT INTO `marc_tag_structure` VALUES ('850', 'HOLDING INSTITUTION', 'HOLDING INSTITUTION', 1, 0, NULL, 'VR');
17318 INSERT INTO `marc_tag_structure` VALUES ('851', 'LOCATION [OBSOLETE]', 'LOCATION [OBSOLETE]', 1, 0, NULL, 'VR');
17319 INSERT INTO `marc_tag_structure` VALUES ('852', 'LOCATION/CALL NUMBER', 'LOCATION/CALL NUMBER', 1, 0, NULL, 'VR');
17320 INSERT INTO `marc_tag_structure` VALUES ('853', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'VR');
17321 INSERT INTO `marc_tag_structure` VALUES ('854', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'VR');
17322 INSERT INTO `marc_tag_structure` VALUES ('855', 'CAPTIONS AND PATTERN--INDEXES', 'CAPTIONS AND PATTERN--INDEXES', 1, 0, NULL, 'VR');
17323 INSERT INTO `marc_tag_structure` VALUES ('856', 'URL/ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL, 'VR');
17324 INSERT INTO `marc_tag_structure` VALUES ('859', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'VR');
17325 INSERT INTO `marc_tag_structure` VALUES ('863', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'VR');
17326 INSERT INTO `marc_tag_structure` VALUES ('864', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'VR');
17327 INSERT INTO `marc_tag_structure` VALUES ('865', 'ENUMERATION AND CHRONOLOGY--INDEXES', 'ENUMERATION AND CHRONOLOGY--INDEXES', 1, 0, NULL, 'VR');
17328 INSERT INTO `marc_tag_structure` VALUES ('866', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'VR');
17329 INSERT INTO `marc_tag_structure` VALUES ('867', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'VR');
17330 INSERT INTO `marc_tag_structure` VALUES ('868', 'TEXTUAL HOLDINGS--INDEXES', 'TEXTUAL HOLDINGS--INDEXES', 1, 0, NULL, 'VR');
17331 INSERT INTO `marc_tag_structure` VALUES ('870', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 1, 0, NULL, 'VR');
17332 INSERT INTO `marc_tag_structure` VALUES ('871', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 1, 0, NULL, 'VR');
17333 INSERT INTO `marc_tag_structure` VALUES ('872', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 1, 0, NULL, 'VR');
17334 INSERT INTO `marc_tag_structure` VALUES ('873', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 1, 0, NULL, 'VR');
17335 INSERT INTO `marc_tag_structure` VALUES ('876', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'VR');
17336 INSERT INTO `marc_tag_structure` VALUES ('877', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'VR');
17337 INSERT INTO `marc_tag_structure` VALUES ('878', 'ITEM INFORMATION--INDEXES', 'ITEM INFORMATION--INDEXES', 1, 0, NULL, 'VR');
17338 INSERT INTO `marc_tag_structure` VALUES ('880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL, 'VR');
17339 INSERT INTO `marc_tag_structure` VALUES ('886', 'FOREIGN MARC INFORMATION FIELD', 'FOREIGN MARC INFORMATION FIELD', 1, 0, NULL, 'VR');
17340 INSERT INTO `marc_tag_structure` VALUES ('887', 'NON-MARC INFORMATION FIELD', 'NON-MARC INFORMATION FIELD', 1, 0, NULL, 'VR');
17341 INSERT INTO `marc_tag_structure` VALUES ('896', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'VR');
17342 INSERT INTO `marc_tag_structure` VALUES ('897', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'VR');
17343 INSERT INTO `marc_tag_structure` VALUES ('898', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'VR');
17344 INSERT INTO `marc_tag_structure` VALUES ('899', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'VR');
17345 INSERT INTO `marc_tag_structure` VALUES ('89e', 'ERRONEOUS FIELD, ERR (RLIN)', 'ERRONEOUS FIELD, ERR (RLIN)', 1, 0, '', 'VR');
17346 INSERT INTO `marc_tag_structure` VALUES ('900', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 1, 0, '', 'VR');
17347 INSERT INTO `marc_tag_structure` VALUES ('901', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 1, 0, '', 'VR');
17348 INSERT INTO `marc_tag_structure` VALUES ('902', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 1, 0, '', 'VR');
17349 INSERT INTO `marc_tag_structure` VALUES ('903', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 1, 0, '', 'VR');
17350 INSERT INTO `marc_tag_structure` VALUES ('904', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 1, 0, '', 'VR');
17351 INSERT INTO `marc_tag_structure` VALUES ('905', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 1, 0, '', 'VR');
17352 INSERT INTO `marc_tag_structure` VALUES ('906', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 1, 0, '', 'VR');
17353 INSERT INTO `marc_tag_structure` VALUES ('907', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 1, 0, '', 'VR');
17354 INSERT INTO `marc_tag_structure` VALUES ('908', 'PUT COMMAND PARAMETER (RLIN)', 'PUT COMMAND PARAMETER (RLIN)', 0, 0, '', 'VR');
17355 INSERT INTO `marc_tag_structure` VALUES ('910', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 1, 0, '', 'VR');
17356 INSERT INTO `marc_tag_structure` VALUES ('91o', 'USER-OPTION DATA (COLC)', 'USER-OPTION DATA (OCLC)', 0, 0, '', 'VR');
17357 INSERT INTO `marc_tag_structure` VALUES ('91r', 'RLG STANDARDS NOTE (RLIN)', 'RLG STANDARDS NOTE (RLIN)', 1, 0, '', 'VR');
17358 INSERT INTO `marc_tag_structure` VALUES ('911', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 1, 0, '', 'VR');
17359 INSERT INTO `marc_tag_structure` VALUES ('930', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 1, 0, '', 'VR');
17360 INSERT INTO `marc_tag_structure` VALUES ('93r', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 1, 0, '', 'VR');
17361 INSERT INTO `marc_tag_structure` VALUES ('936', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 0, 0, '', 'VR');
17362 INSERT INTO `marc_tag_structure` VALUES ('940', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'VR');
17363 INSERT INTO `marc_tag_structure` VALUES ('941', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'VR');
17364 INSERT INTO `marc_tag_structure` VALUES ('943', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'VR');
17365 INSERT INTO `marc_tag_structure` VALUES ('945', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'VR');
17366 INSERT INTO `marc_tag_structure` VALUES ('94c', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'VR');
17367 INSERT INTO `marc_tag_structure` VALUES ('946', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'VR');
17368 INSERT INTO `marc_tag_structure` VALUES ('947', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'VR');
17369 INSERT INTO `marc_tag_structure` VALUES ('948', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 1, 0, '', 'VR');
17370 INSERT INTO `marc_tag_structure` VALUES ('949', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'VR');
17371 INSERT INTO `marc_tag_structure` VALUES ('94a', 'ANALYSIS TREATMENT NOTE (RLIN)', 'ANALYSIS TREATMENT NOTE (RLIN)', 1, 0, '', 'VR');
17372 INSERT INTO `marc_tag_structure` VALUES ('94b', 'TREATMENT CODES (RLIN)', 'TREATMENT CODES (RLIN)', 1, 0, '', 'VR');
17373 INSERT INTO `marc_tag_structure` VALUES ('950', 'LOCAL HOLDINGS (RLIN)', 'LOCAL HOLDINGS (RLIN)', 1, 0, '', 'VR');
17374 INSERT INTO `marc_tag_structure` VALUES ('951', 'EQUIVALENCE OR CROSS-REFERENCE--GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'VR');
17375 INSERT INTO `marc_tag_structure` VALUES ('95c', 'EQUIVALENCE OR CROSS-REFERENCE--HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'VR');
17376 INSERT INTO `marc_tag_structure` VALUES ('95r', 'CLUSTER MEMBER (RLIN)', 'CLUSTER MEMBER (RLIN)', 1, 0, '', 'VR');
17377 INSERT INTO `marc_tag_structure` VALUES ('955', 'COPY-LEVEL INFORMATION (RLIN)', 'COPY-LEVEL INFORMATION (RLIN)', 1, 0, '', 'VR');
17378 INSERT INTO `marc_tag_structure` VALUES ('956', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 1, 0, '', 'VR');
17379 INSERT INTO `marc_tag_structure` VALUES ('960', 'PHYSICAL LOCATION (RLIN)', 'PHYSICAL LOCATION (RLIN)', 1, 0, '', 'VR');
17380 INSERT INTO `marc_tag_structure` VALUES ('967', 'ADDITIONAL ESTC CODES (RLIN)', 'ADDITIONAL ESTC CODES (RLIN)', 1, 0, '', 'VR');
17381 INSERT INTO `marc_tag_structure` VALUES ('980', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'VR');
17382 INSERT INTO `marc_tag_structure` VALUES ('981', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'VR');
17383 INSERT INTO `marc_tag_structure` VALUES ('982', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'VR');
17384 INSERT INTO `marc_tag_structure` VALUES ('983', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--TITLE/UNIFORM TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE--SERIES STATEMENT-TITLE/UNIFORM TITLE [LOCAL, CANADA]', 1, 0, '', 'VR');
17385 INSERT INTO `marc_tag_structure` VALUES ('984', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 1, 0, '', 'VR');
17386 INSERT INTO `marc_tag_structure` VALUES ('987', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 1, 0, '', 'VR');
17387 INSERT INTO `marc_tag_structure` VALUES ('990', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 1, 0, '', 'VR');
17388 INSERT INTO `marc_tag_structure` VALUES ('995', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 1, 0, '', 'VR');
17389 INSERT INTO `marc_tag_structure` VALUES ('998', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'VR');
17390 INSERT INTO `marc_tag_structure` VALUES ('999', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'VR');
17391 INSERT INTO `marc_tag_structure` VALUES ('b99', 'PRIVATE LOCAL INFORMATION (RLIN)', 'PRIVATE LOCAL INFORMATION (RLIN)', 1, 0, '', 'VR');
17392 INSERT INTO `marc_tag_structure` VALUES ('u01', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 0, 0, '', 'VR');
17393 INSERT INTO `marc_tag_structure` VALUES ('u02', 'STANDARD NUMBER (RLIN)', 'STANDARD NUMBER (RLIN)', 0, 0, '', 'VR');
17394 INSERT INTO `marc_tag_structure` VALUES ('u08', 'CODED INFORMATION (RLIN)', 'CODED INFORMATION (RLIN)', 0, 0, '', 'VR');
17395 INSERT INTO `marc_tag_structure` VALUES ('u10', 'REQUESTER IDENTIFICATION (RLIN)', 'REQUESTER IDENTIFICATION (RLIN)', 1, 0, '', 'VR');
17396 INSERT INTO `marc_tag_structure` VALUES ('u11', 'DEPARTMENT REPORT REQUEST (RLIN)', 'DEPARTMENT REPORT REQUEST (RLIN)', 1, 0, '', 'VR');
17397 INSERT INTO `marc_tag_structure` VALUES ('u20', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 0, 0, '', 'VR');
17398 INSERT INTO `marc_tag_structure` VALUES ('u21', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 0, 0, '', 'VR');
17399 INSERT INTO `marc_tag_structure` VALUES ('u22', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 0, 0, '', 'VR');
17400 INSERT INTO `marc_tag_structure` VALUES ('u25', 'SUPPLIER REPORT(S) (RLIN)', 'SUPPLIER REPORT(S) (RLIN)', 0, 0, '', 'VR');
17401 INSERT INTO `marc_tag_structure` VALUES ('u30', 'INTERVALS (RLIN)', 'INTERVALS (RLIN)', 0, 0, '', 'VR');
17402 INSERT INTO `marc_tag_structure` VALUES ('u31', 'CLAIM COUNTS (RLIN)', 'CLAIM COUNTS (RLIN)', 0, 0, '', 'VR');
17403 INSERT INTO `marc_tag_structure` VALUES ('u33', 'INVOICE CLAIM (RLIN)', 'INVOICE CLAIM (RLIN)', 0, 0, '', 'VR');
17404 INSERT INTO `marc_tag_structure` VALUES ('u34', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 0, 0, '', 'VR');
17405 INSERT INTO `marc_tag_structure` VALUES ('u40', 'EXTENDED PROCUREMENT CODES (RLIN)', 'EXTENDED PROCUREMENT CODES (RLIN)', 0, 0, '', 'VR');
17406 INSERT INTO `marc_tag_structure` VALUES ('u50', 'ACQUISITIONS NOTES (RLIN)', 'ACQUISITIONS NOTES (RLIN)', 0, 0, '', 'VR');
17407 INSERT INTO `marc_tag_structure` VALUES ('u51', 'SELECTION NOTES (RLIN)', 'SELECTION NOTES (RLIN)', 0, 0, '', 'VR');
17408 INSERT INTO `marc_tag_structure` VALUES ('u52', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 0, 0, '', 'VR');
17409 INSERT INTO `marc_tag_structure` VALUES ('u53', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 0, 0, '', 'VR');
17410 INSERT INTO `marc_tag_structure` VALUES ('u54', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 0, 0, '', 'VR');
17411 INSERT INTO `marc_tag_structure` VALUES ('u55', 'CATALOGING NOTES (RLIN)', 'CATALOGING NOTES (RLIN)', 0, 0, '', 'VR');
17412 INSERT INTO `marc_tag_structure` VALUES ('u5f', 'ACCOUNTING NOTES (RLIN)', 'ACCOUNTING NOTES (RLIN)', 0, 0, '', 'VR');
17413 INSERT INTO `marc_tag_structure` VALUES ('u70', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 0, 0, '', 'VR');
17414 INSERT INTO `marc_tag_structure` VALUES ('u71', 'FUND ACCOUNT (RLIN)', 'FUND ACCOUNT (RLIN)', 0, 0, '', 'VR');
17415 INSERT INTO `marc_tag_structure` VALUES ('u75', 'ITEM DETAILS (RLIN)', 'ITEM DETAILS (RLIN)', 1, 0, '', 'VR');
17416 INSERT INTO `marc_tag_structure` VALUES ('u7f', 'PRICE INFORMATION (RLIN)', 'PRICE INFORMATION (RLIN)', 1, 0, '', 'VR');
17417 INSERT INTO `marc_tag_structure` VALUES ('u90', 'TAPE OUTPUT, TAPE (RLIN)', 'TAPE OUTPUT, TAPE (RLIN)', 0, 0, '', 'VR');
17418 INSERT INTO `marc_tag_structure` VALUES ('ufi', 'FISCAL INFORMATION, FI (RLIN)', 'FISCAL INFORMATION, FI (RLIN)', 1, 0, '', 'VR');
17419
17420
17421
17422 INSERT INTO `marc_subfield_structure` VALUES ('000', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_leader.pl', 0, 0, 'VR', '', '');
17423 INSERT INTO `marc_subfield_structure` VALUES ('001', '@', 'control field', 'control field', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17424 INSERT INTO `marc_subfield_structure` VALUES ('003', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_003.pl', 0, -6, 'VR', '', '');
17425 INSERT INTO `marc_subfield_structure` VALUES ('005', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_005.pl', 0, -1, 'VR', '', '');
17426 INSERT INTO `marc_subfield_structure` VALUES ('006', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_006.pl', 0, -1, 'VR', '', '');
17427 INSERT INTO `marc_subfield_structure` VALUES ('007', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_007.pl', 0, 0, 'VR', '', '');
17428 INSERT INTO `marc_subfield_structure` VALUES ('008', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_field_008.pl', 0, 0, 'VR', '', '');
17429 INSERT INTO `marc_subfield_structure` VALUES ('009', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17430 INSERT INTO `marc_subfield_structure` VALUES ('010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', NULL, 0, -6, 'VR', '', '');
17431 INSERT INTO `marc_subfield_structure` VALUES ('010', 'a', 'LC control number', 'LC control number', 0, 0, 'biblioitems.lccn', 0, '', '', '', 0, -6, 'VR', '', '');
17432 INSERT INTO `marc_subfield_structure` VALUES ('010', 'b', 'NUCMC control number', 'NUCMC control number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17433 INSERT INTO `marc_subfield_structure` VALUES ('010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17434 INSERT INTO `marc_subfield_structure` VALUES ('011', 'a', 'LC control number', 'LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17435 INSERT INTO `marc_subfield_structure` VALUES ('013', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'VR', '', '');
17436 INSERT INTO `marc_subfield_structure` VALUES ('013', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17437 INSERT INTO `marc_subfield_structure` VALUES ('013', 'a', 'Number', 'Number', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17438 INSERT INTO `marc_subfield_structure` VALUES ('013', 'b', 'Country', 'Country', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17439 INSERT INTO `marc_subfield_structure` VALUES ('013', 'c', 'Type of number', 'Type of number', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17440 INSERT INTO `marc_subfield_structure` VALUES ('013', 'd', 'Date', 'Date', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17441 INSERT INTO `marc_subfield_structure` VALUES ('013', 'e', 'Status', 'Status', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17442 INSERT INTO `marc_subfield_structure` VALUES ('013', 'f', 'Party to document', 'Party to document', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17443 INSERT INTO `marc_subfield_structure` VALUES ('015', '2', 'Source', 'Source', 0, 0, '', 0, '', '', NULL, 0, -6, 'VR', '', '');
17444 INSERT INTO `marc_subfield_structure` VALUES ('015', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17445 INSERT INTO `marc_subfield_structure` VALUES ('015', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17446 INSERT INTO `marc_subfield_structure` VALUES ('015', 'a', 'National bibliography number', 'National bibliography number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17447 INSERT INTO `marc_subfield_structure` VALUES ('016', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17448 INSERT INTO `marc_subfield_structure` VALUES ('016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17449 INSERT INTO `marc_subfield_structure` VALUES ('016', 'a', 'Record control number', 'Record control number', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17450 INSERT INTO `marc_subfield_structure` VALUES ('016', 'z', 'Canceled or invalid record control number', 'Canceled or invalid record control number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17451 INSERT INTO `marc_subfield_structure` VALUES ('017', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17452 INSERT INTO `marc_subfield_structure` VALUES ('017', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17453 INSERT INTO `marc_subfield_structure` VALUES ('017', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17454 INSERT INTO `marc_subfield_structure` VALUES ('017', 'a', 'Copyright or legal deposit number', 'Copyright or legal deposit number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17455 INSERT INTO `marc_subfield_structure` VALUES ('017', 'b', 'Assigning agency', 'Assigning agency', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17456 INSERT INTO `marc_subfield_structure` VALUES ('017', 'd', 'Date', 'Date', 0, 0, '', 0, '', '', NULL, 0, -6, 'VR', '', '');
17457 INSERT INTO `marc_subfield_structure` VALUES ('017', 'i', 'Display text', 'Display text', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17458 INSERT INTO `marc_subfield_structure` VALUES ('018', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17459 INSERT INTO `marc_subfield_structure` VALUES ('018', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17460 INSERT INTO `marc_subfield_structure` VALUES ('018', 'a', 'Copyright article-fee code', 'Copyright article-fee code', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17461 INSERT INTO `marc_subfield_structure` VALUES ('01e', 'a', 'Coded field error', 'Coded field error', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17462 INSERT INTO `marc_subfield_structure` VALUES ('020', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17463 INSERT INTO `marc_subfield_structure` VALUES ('020', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17464 INSERT INTO `marc_subfield_structure` VALUES ('020', 'a', 'International Standard Book Number', 'International Standard Book Number', 0, 0, 'biblioitems.isbn', 0, '', '', '', 0, -6, 'VR', '', '');
17465 INSERT INTO `marc_subfield_structure` VALUES ('020', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17466 INSERT INTO `marc_subfield_structure` VALUES ('020', 'z', 'Cancelled/invalid ISBN', 'Cancelled/invalid ISBN', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17467 INSERT INTO `marc_subfield_structure` VALUES ('022', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17468 INSERT INTO `marc_subfield_structure` VALUES ('022', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17469 INSERT INTO `marc_subfield_structure` VALUES ('022', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17470 INSERT INTO `marc_subfield_structure` VALUES ('022', 'a', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, 'biblioitems.issn', 0, '', '', '', 0, -6, 'VR', '', '');
17471 INSERT INTO `marc_subfield_structure` VALUES ('022', 'y', 'Incorrect ISSN', 'Incorrect ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17472 INSERT INTO `marc_subfield_structure` VALUES ('022', 'z', 'Canceled ISSN', 'Canceled ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17473 INSERT INTO `marc_subfield_structure` VALUES ('023', 'a', 'Standard film number', 'Standard film number', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17474 INSERT INTO `marc_subfield_structure` VALUES ('024', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 0, '', '', '', 0, -1, 'VR', '', '');
17475 INSERT INTO `marc_subfield_structure` VALUES ('024', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17476 INSERT INTO `marc_subfield_structure` VALUES ('024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17477 INSERT INTO `marc_subfield_structure` VALUES ('024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'VR', '', '');
17478 INSERT INTO `marc_subfield_structure` VALUES ('024', 'b', 'Additional codes following the standard number [OBSOLETE]', 'Additional codes following the standard number [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17479 INSERT INTO `marc_subfield_structure` VALUES ('024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -1, 'VR', '', '');
17480 INSERT INTO `marc_subfield_structure` VALUES ('024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'VR', '', '');
17481 INSERT INTO `marc_subfield_structure` VALUES ('024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17482 INSERT INTO `marc_subfield_structure` VALUES ('025', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17483 INSERT INTO `marc_subfield_structure` VALUES ('025', 'a', 'Overseas acquisition number', 'Overseas acquisition number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17484 INSERT INTO `marc_subfield_structure` VALUES ('026', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17485 INSERT INTO `marc_subfield_structure` VALUES ('026', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17486 INSERT INTO `marc_subfield_structure` VALUES ('026', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17487 INSERT INTO `marc_subfield_structure` VALUES ('026', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17488 INSERT INTO `marc_subfield_structure` VALUES ('026', 'a', 'First and second groups of characters', 'First and second groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17489 INSERT INTO `marc_subfield_structure` VALUES ('026', 'b', 'Third and fourth groups of characters', 'Third and fourth groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17490 INSERT INTO `marc_subfield_structure` VALUES ('026', 'c', 'Date', 'Date', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17491 INSERT INTO `marc_subfield_structure` VALUES ('026', 'd', 'Number of volume or part', 'Number of volume or part', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17492 INSERT INTO `marc_subfield_structure` VALUES ('026', 'e', 'unparsed fingerprint', 'unparsed fingerprint', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17493 INSERT INTO `marc_subfield_structure` VALUES ('027', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17494 INSERT INTO `marc_subfield_structure` VALUES ('027', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17495 INSERT INTO `marc_subfield_structure` VALUES ('027', 'a', 'Standard technical report number', 'Standard technical report number', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17496 INSERT INTO `marc_subfield_structure` VALUES ('027', 'z', 'Canceled/invalid number', 'Canceled/invalid number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17497 INSERT INTO `marc_subfield_structure` VALUES ('028', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17498 INSERT INTO `marc_subfield_structure` VALUES ('028', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17499 INSERT INTO `marc_subfield_structure` VALUES ('028', 'a', 'Publisher number', 'Publisher number', 0, 0, '', 0, '', '', '', 0, 0, 'VR', '', '');
17500 INSERT INTO `marc_subfield_structure` VALUES ('028', 'b', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, 0, 'VR', '', '');
17501 INSERT INTO `marc_subfield_structure` VALUES ('030', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17502 INSERT INTO `marc_subfield_structure` VALUES ('030', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17503 INSERT INTO `marc_subfield_structure` VALUES ('030', 'a', 'CODEN', 'CODEN', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17504 INSERT INTO `marc_subfield_structure` VALUES ('030', 'z', 'Canceled/invalid CODEN', 'Canceled/invalid CODEN', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17505 INSERT INTO `marc_subfield_structure` VALUES ('031', '2', 'System code', 'System code', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17506 INSERT INTO `marc_subfield_structure` VALUES ('031', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17507 INSERT INTO `marc_subfield_structure` VALUES ('031', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17508 INSERT INTO `marc_subfield_structure` VALUES ('031', 'a', 'Number of work', 'Number of work', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17509 INSERT INTO `marc_subfield_structure` VALUES ('031', 'b', 'Number of movement', 'Number of movement', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17510 INSERT INTO `marc_subfield_structure` VALUES ('031', 'c', 'Number of excerpt', 'Number of excerpt', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17511 INSERT INTO `marc_subfield_structure` VALUES ('031', 'd', 'Caption or heading', 'Caption or heading', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17512 INSERT INTO `marc_subfield_structure` VALUES ('031', 'e', 'Role', 'Role', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17513 INSERT INTO `marc_subfield_structure` VALUES ('031', 'g', 'Clef', 'Clef', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17514 INSERT INTO `marc_subfield_structure` VALUES ('031', 'm', 'Voice/instrument', 'Voice/instrument', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17515 INSERT INTO `marc_subfield_structure` VALUES ('031', 'n', 'Key signature', 'Key signature', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17516 INSERT INTO `marc_subfield_structure` VALUES ('031', 'o', 'Time signature', 'Time signature', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17517 INSERT INTO `marc_subfield_structure` VALUES ('031', 'p', 'Musical notation', 'Musical notation', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17518 INSERT INTO `marc_subfield_structure` VALUES ('031', 'q', 'General note', 'General note', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17519 INSERT INTO `marc_subfield_structure` VALUES ('031', 'r', 'Key or mode', 'Key or mode', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17520 INSERT INTO `marc_subfield_structure` VALUES ('031', 's', 'Coded validity note', 'Coded validity note', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17521 INSERT INTO `marc_subfield_structure` VALUES ('031', 't', 'Text incipit', 'Text incipit', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17522 INSERT INTO `marc_subfield_structure` VALUES ('031', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 0, '', '', '', 1, -6, 'VR', '', '');
17523 INSERT INTO `marc_subfield_structure` VALUES ('031', 'y', 'Link text', 'Link text', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17524 INSERT INTO `marc_subfield_structure` VALUES ('031', 'z', 'Public note', 'Public note', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17525 INSERT INTO `marc_subfield_structure` VALUES ('032', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'VR', '', '');
17526 INSERT INTO `marc_subfield_structure` VALUES ('032', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17527 INSERT INTO `marc_subfield_structure` VALUES ('032', 'a', 'Postal registration number', 'Postal registration number', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17528 INSERT INTO `marc_subfield_structure` VALUES ('032', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17529 INSERT INTO `marc_subfield_structure` VALUES ('033', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17530 INSERT INTO `marc_subfield_structure` VALUES ('033', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17531 INSERT INTO `marc_subfield_structure` VALUES ('033', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17532 INSERT INTO `marc_subfield_structure` VALUES ('033', 'a', 'Formatted date/time', 'Formatted date/time', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17533 INSERT INTO `marc_subfield_structure` VALUES ('033', 'b', 'Geographic classification area code', 'Geographic classification area code', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17534 INSERT INTO `marc_subfield_structure` VALUES ('033', 'c', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17535 INSERT INTO `marc_subfield_structure` VALUES ('034', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17536 INSERT INTO `marc_subfield_structure` VALUES ('034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17537 INSERT INTO `marc_subfield_structure` VALUES ('034', 'a', 'Category of scale', 'Category of scale', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17538 INSERT INTO `marc_subfield_structure` VALUES ('034', 'b', 'Constant ratio linear horizontal scale', 'Constant ratio linear horizontal scale', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17539 INSERT INTO `marc_subfield_structure` VALUES ('034', 'c', 'Constant ratio linear vertical scale', 'Constant ratio linear vertical scale', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17540 INSERT INTO `marc_subfield_structure` VALUES ('034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17541 INSERT INTO `marc_subfield_structure` VALUES ('034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17542 INSERT INTO `marc_subfield_structure` VALUES ('034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17543 INSERT INTO `marc_subfield_structure` VALUES ('034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17544 INSERT INTO `marc_subfield_structure` VALUES ('034', 'h', 'Angular scale', 'Angular scale', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17545 INSERT INTO `marc_subfield_structure` VALUES ('034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17546 INSERT INTO `marc_subfield_structure` VALUES ('034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17547 INSERT INTO `marc_subfield_structure` VALUES ('034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17548 INSERT INTO `marc_subfield_structure` VALUES ('034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17549 INSERT INTO `marc_subfield_structure` VALUES ('034', 'p', 'Equinox', 'Equinox', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17550 INSERT INTO `marc_subfield_structure` VALUES ('034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17551 INSERT INTO `marc_subfield_structure` VALUES ('034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17552 INSERT INTO `marc_subfield_structure` VALUES ('035', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17553 INSERT INTO `marc_subfield_structure` VALUES ('035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17554 INSERT INTO `marc_subfield_structure` VALUES ('035', 'a', 'System control number', 'System control number', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17555 INSERT INTO `marc_subfield_structure` VALUES ('035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17556 INSERT INTO `marc_subfield_structure` VALUES ('036', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17557 INSERT INTO `marc_subfield_structure` VALUES ('036', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17558 INSERT INTO `marc_subfield_structure` VALUES ('036', 'a', 'Original study number', 'Original study number', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17559 INSERT INTO `marc_subfield_structure` VALUES ('036', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17560 INSERT INTO `marc_subfield_structure` VALUES ('037', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
17561 INSERT INTO `marc_subfield_structure` VALUES ('037', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
17562 INSERT INTO `marc_subfield_structure` VALUES ('037', 'a', 'Stock number', 'Stock number', 0, 0, '', 9, '', '', '', 0, -1, 'VR', '', '');
17563 INSERT INTO `marc_subfield_structure` VALUES ('037', 'b', 'Source of stock number/acquisition', 'Source of stock number/acquisition', 0, 0, '', 9, '', '', '', 0, -1, 'VR', '', '');
17564 INSERT INTO `marc_subfield_structure` VALUES ('037', 'c', 'Terms of availability', 'Terms of availability', 1, 0, '', 9, '', '', '', 0, -1, 'VR', '', '');
17565 INSERT INTO `marc_subfield_structure` VALUES ('037', 'f', 'Form of issue', 'Form of issue', 1, 0, '', 9, '', '', '', 0, -1, 'VR', '', '');
17566 INSERT INTO `marc_subfield_structure` VALUES ('037', 'g', 'Additional format characteristics', 'Additional format characteristics', 1, 0, '', 9, '', '', '', 0, -1, 'VR', '', '');
17567 INSERT INTO `marc_subfield_structure` VALUES ('037', 'n', 'Note', 'Note', 1, 0, '', 9, '', '', '', 0, -1, 'VR', '', '');
17568 INSERT INTO `marc_subfield_structure` VALUES ('038', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17569 INSERT INTO `marc_subfield_structure` VALUES ('038', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17570 INSERT INTO `marc_subfield_structure` VALUES ('038', 'a', 'Record content licensor', 'Record content licensor', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17571 INSERT INTO `marc_subfield_structure` VALUES ('039', 'a', 'Level of rules in bibliographic description', 'Level of rules in bibliographic description', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17572 INSERT INTO `marc_subfield_structure` VALUES ('039', 'b', 'Level of effort used to assign nonsubject heading access points', 'Level of effort used to assign nonsubject heading access points', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17573 INSERT INTO `marc_subfield_structure` VALUES ('039', 'c', 'Level of effort used to assign subject headings', 'Level of effort used to assign subject headings', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17574 INSERT INTO `marc_subfield_structure` VALUES ('039', 'd', 'Level of effort used to assign classification', 'Level of effort used to assign classification', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17575 INSERT INTO `marc_subfield_structure` VALUES ('039', 'e', 'Number of fixed field character positions coded', 'Number of fixed field character positions coded', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17576 INSERT INTO `marc_subfield_structure` VALUES ('040', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17577 INSERT INTO `marc_subfield_structure` VALUES ('040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17578 INSERT INTO `marc_subfield_structure` VALUES ('040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 0, '', 0, '', '', '', 0, -1, 'VR', '', '');
17579 INSERT INTO `marc_subfield_structure` VALUES ('040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17580 INSERT INTO `marc_subfield_structure` VALUES ('040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, '', 0, '', '', '', 0, -1, 'VR', '', '');
17581 INSERT INTO `marc_subfield_structure` VALUES ('040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, '', 0, '', '', '', 0, -1, 'VR', '', '');
17582 INSERT INTO `marc_subfield_structure` VALUES ('040', 'e', 'Description conventions', 'Description conventions', 0, 0, '', 0, '', '', '', 0, -1, 'VR', '', '');
17583 INSERT INTO `marc_subfield_structure` VALUES ('041', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17584 INSERT INTO `marc_subfield_structure` VALUES ('041', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17585 INSERT INTO `marc_subfield_structure` VALUES ('041', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17586 INSERT INTO `marc_subfield_structure` VALUES ('041', 'a', 'Language code of text/sound track or separate title', 'Language code of text/sound track or separate title', 1, 0, '', 0, '', '', '', 0, -1, 'VR', '', '');
17587 INSERT INTO `marc_subfield_structure` VALUES ('041', 'b', 'Language code of summary or abstract/overprinted title or subtitle', 'Language code of summary or abstract/overprinted title or subtitle', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17588 INSERT INTO `marc_subfield_structure` VALUES ('041', 'c', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17589 INSERT INTO `marc_subfield_structure` VALUES ('041', 'd', 'Language code of sung or spoken text', 'Language code of sung or spoken text', 1, 0, '', 0, '', '', '', 0, -1, 'VR', '', '');
17590 INSERT INTO `marc_subfield_structure` VALUES ('041', 'e', 'Language code of librettos', 'Language code of librettos', 1, 0, '', 0, '', '', '', 0, -1, 'VR', '', '');
17591 INSERT INTO `marc_subfield_structure` VALUES ('041', 'f', 'Language code of table of contents', 'Language code of table of contents', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17592 INSERT INTO `marc_subfield_structure` VALUES ('041', 'g', 'Language code of accompanying material other than librettos', 'Language code of accompanying material other than librettos', 1, 0, '', 0, '', '', '', 0, -1, 'VR', '', '');
17593 INSERT INTO `marc_subfield_structure` VALUES ('041', 'h', 'Language code of original and/or intermediate translations of text', 'Language code of original and/or intermediate translations of text', 1, 0, '', 0, '', '', '', 0, -1, 'VR', '', '');
17594 INSERT INTO `marc_subfield_structure` VALUES ('042', 'a', 'Authentication code', 'Authentication code', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17595 INSERT INTO `marc_subfield_structure` VALUES ('043', '2', 'Source of local code', 'Source of local code', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17596 INSERT INTO `marc_subfield_structure` VALUES ('043', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17597 INSERT INTO `marc_subfield_structure` VALUES ('043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17598 INSERT INTO `marc_subfield_structure` VALUES ('043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17599 INSERT INTO `marc_subfield_structure` VALUES ('043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17600 INSERT INTO `marc_subfield_structure` VALUES ('043', 'c', 'ISO code', 'ISO code', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17601 INSERT INTO `marc_subfield_structure` VALUES ('044', '2', 'Source of local subentity code', 'Source of local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17602 INSERT INTO `marc_subfield_structure` VALUES ('044', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17603 INSERT INTO `marc_subfield_structure` VALUES ('044', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17604 INSERT INTO `marc_subfield_structure` VALUES ('044', 'a', 'MARC country code', 'MARC country code', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17605 INSERT INTO `marc_subfield_structure` VALUES ('044', 'b', 'Local subentity code', 'Local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17606 INSERT INTO `marc_subfield_structure` VALUES ('044', 'c', 'ISO country code', 'ISO country code', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17607 INSERT INTO `marc_subfield_structure` VALUES ('045', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17608 INSERT INTO `marc_subfield_structure` VALUES ('045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17609 INSERT INTO `marc_subfield_structure` VALUES ('045', 'a', 'Time period code', 'Time period code', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17610 INSERT INTO `marc_subfield_structure` VALUES ('045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17611 INSERT INTO `marc_subfield_structure` VALUES ('045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17612 INSERT INTO `marc_subfield_structure` VALUES ('046', '2', 'Source of date', 'Source of date', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17613 INSERT INTO `marc_subfield_structure` VALUES ('046', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17614 INSERT INTO `marc_subfield_structure` VALUES ('046', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17615 INSERT INTO `marc_subfield_structure` VALUES ('046', 'a', 'Type of date code', 'Type of date code', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17616 INSERT INTO `marc_subfield_structure` VALUES ('046', 'b', 'Date 1 (B.C. date)', 'Date 1 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17617 INSERT INTO `marc_subfield_structure` VALUES ('046', 'c', 'Date 1 (C.E. date)', 'Date 1 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17618 INSERT INTO `marc_subfield_structure` VALUES ('046', 'd', 'Date 2 (B.C. date)', 'Date 2 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17619 INSERT INTO `marc_subfield_structure` VALUES ('046', 'e', 'Date 2 (C.E. date)', 'Date 2 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17620 INSERT INTO `marc_subfield_structure` VALUES ('046', 'j', 'Date resource modified', 'Date resource modified', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17621 INSERT INTO `marc_subfield_structure` VALUES ('046', 'k', 'Beginning or single date created', 'Beginning or single date created', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17622 INSERT INTO `marc_subfield_structure` VALUES ('046', 'l', 'Ending date created', 'Ending date created', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17623 INSERT INTO `marc_subfield_structure` VALUES ('046', 'm', 'Beginning of date valid', 'Beginning of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17624 INSERT INTO `marc_subfield_structure` VALUES ('046', 'n', 'End of date valid', 'End of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17625 INSERT INTO `marc_subfield_structure` VALUES ('047', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17626 INSERT INTO `marc_subfield_structure` VALUES ('047', 'a', 'Form of musical composition code', 'Form of musical composition code', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17627 INSERT INTO `marc_subfield_structure` VALUES ('048', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17628 INSERT INTO `marc_subfield_structure` VALUES ('048', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17629 INSERT INTO `marc_subfield_structure` VALUES ('048', 'a', 'Performer or ensemble', 'Performer or ensemble', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17630 INSERT INTO `marc_subfield_structure` VALUES ('048', 'b', 'Soloist', 'Soloist', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17631 INSERT INTO `marc_subfield_structure` VALUES ('049', 'a', 'Holding library', 'Holding library', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17632 INSERT INTO `marc_subfield_structure` VALUES ('049', 'c', 'Copy statement', 'Copy statement', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17633 INSERT INTO `marc_subfield_structure` VALUES ('049', 'd', 'Definition of bibliographic subdivisions', 'Definition of bibliographic subdivisions', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17634 INSERT INTO `marc_subfield_structure` VALUES ('049', 'l', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17635 INSERT INTO `marc_subfield_structure` VALUES ('049', 'm', 'Missing elements', 'Missing elements', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17636 INSERT INTO `marc_subfield_structure` VALUES ('049', 'n', 'Notes about holdings', 'Notes about holdings', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17637 INSERT INTO `marc_subfield_structure` VALUES ('049', 'o', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17638 INSERT INTO `marc_subfield_structure` VALUES ('049', 'p', 'Secondary bibliographic subdivision', 'Secondary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17639 INSERT INTO `marc_subfield_structure` VALUES ('049', 'q', 'Third bibliographic subdivision', 'Third bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17640 INSERT INTO `marc_subfield_structure` VALUES ('049', 'r', 'Fourth bibliographic subdivision', 'Fourth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17641 INSERT INTO `marc_subfield_structure` VALUES ('049', 's', 'Fifth bibliographic subdivision', 'Fifth bibliographic subdivision', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17642 INSERT INTO `marc_subfield_structure` VALUES ('049', 't', 'Sixth bibliographic subdivision', 'Sixth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17643 INSERT INTO `marc_subfield_structure` VALUES ('049', 'u', 'Seventh bibliographic subdivision', 'Seventh bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17644 INSERT INTO `marc_subfield_structure` VALUES ('049', 'v', 'Primary bibliographic subdivision', 'Primary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17645 INSERT INTO `marc_subfield_structure` VALUES ('049', 'y', 'Inclusive dates of publication or coverage', 'Inclusive dates of publication or coverage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17646 INSERT INTO `marc_subfield_structure` VALUES ('050', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17647 INSERT INTO `marc_subfield_structure` VALUES ('050', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17648 INSERT INTO `marc_subfield_structure` VALUES ('050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17649 INSERT INTO `marc_subfield_structure` VALUES ('050', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, 0, 'VR', '', '');
17650 INSERT INTO `marc_subfield_structure` VALUES ('050', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, 0, 'VR', '', '');
17651 INSERT INTO `marc_subfield_structure` VALUES ('050', 'd', 'Supplementary class number (MU) [OBSOLETE]', 'Supplementary class number (MU) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17652 INSERT INTO `marc_subfield_structure` VALUES ('051', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17653 INSERT INTO `marc_subfield_structure` VALUES ('051', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17654 INSERT INTO `marc_subfield_structure` VALUES ('051', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17655 INSERT INTO `marc_subfield_structure` VALUES ('051', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17656 INSERT INTO `marc_subfield_structure` VALUES ('052', '2', 'Code Source', 'Code Source', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17657 INSERT INTO `marc_subfield_structure` VALUES ('052', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17658 INSERT INTO `marc_subfield_structure` VALUES ('052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17659 INSERT INTO `marc_subfield_structure` VALUES ('052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17660 INSERT INTO `marc_subfield_structure` VALUES ('052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17661 INSERT INTO `marc_subfield_structure` VALUES ('052', 'c', 'Subject (MP) [OBSOLETE]', 'Subject (MP) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17662 INSERT INTO `marc_subfield_structure` VALUES ('052', 'd', 'Populated place name', 'Populated place name', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17663 INSERT INTO `marc_subfield_structure` VALUES ('055', '2', 'Source of call/class number', 'Source of call/class number', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17664 INSERT INTO `marc_subfield_structure` VALUES ('055', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17665 INSERT INTO `marc_subfield_structure` VALUES ('055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17666 INSERT INTO `marc_subfield_structure` VALUES ('055', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17667 INSERT INTO `marc_subfield_structure` VALUES ('055', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17668 INSERT INTO `marc_subfield_structure` VALUES ('060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17669 INSERT INTO `marc_subfield_structure` VALUES ('060', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17670 INSERT INTO `marc_subfield_structure` VALUES ('060', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17671 INSERT INTO `marc_subfield_structure` VALUES ('061', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17672 INSERT INTO `marc_subfield_structure` VALUES ('061', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17673 INSERT INTO `marc_subfield_structure` VALUES ('061', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17674 INSERT INTO `marc_subfield_structure` VALUES ('061', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17675 INSERT INTO `marc_subfield_structure` VALUES ('066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17676 INSERT INTO `marc_subfield_structure` VALUES ('066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17677 INSERT INTO `marc_subfield_structure` VALUES ('066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17678 INSERT INTO `marc_subfield_structure` VALUES ('070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17679 INSERT INTO `marc_subfield_structure` VALUES ('070', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17680 INSERT INTO `marc_subfield_structure` VALUES ('070', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17681 INSERT INTO `marc_subfield_structure` VALUES ('071', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17682 INSERT INTO `marc_subfield_structure` VALUES ('071', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17683 INSERT INTO `marc_subfield_structure` VALUES ('071', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17684 INSERT INTO `marc_subfield_structure` VALUES ('071', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17685 INSERT INTO `marc_subfield_structure` VALUES ('072', '2', 'Source', 'Source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17686 INSERT INTO `marc_subfield_structure` VALUES ('072', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17687 INSERT INTO `marc_subfield_structure` VALUES ('072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17688 INSERT INTO `marc_subfield_structure` VALUES ('072', 'a', 'Subject category code', 'Subject category code', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17689 INSERT INTO `marc_subfield_structure` VALUES ('072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17690 INSERT INTO `marc_subfield_structure` VALUES ('074', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17691 INSERT INTO `marc_subfield_structure` VALUES ('074', 'a', 'GPO item number', 'GPO item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'VR', '', '');
17692 INSERT INTO `marc_subfield_structure` VALUES ('074', 'z', 'Canceled/invalid GPO item number', 'Canceled/invalid GPO item number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17693 INSERT INTO `marc_subfield_structure` VALUES ('080', '2', 'Edition identifier', 'Edition identifier', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17694 INSERT INTO `marc_subfield_structure` VALUES ('080', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17695 INSERT INTO `marc_subfield_structure` VALUES ('080', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17696 INSERT INTO `marc_subfield_structure` VALUES ('080', 'a', 'Universal Decimal Classification number', 'Universal Decimal Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17697 INSERT INTO `marc_subfield_structure` VALUES ('080', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17698 INSERT INTO `marc_subfield_structure` VALUES ('080', 'x', 'Common auxiliary subdivision', 'Common auxiliary subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17699 INSERT INTO `marc_subfield_structure` VALUES ('082', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, 0, 'VR', '', '');
17700 INSERT INTO `marc_subfield_structure` VALUES ('082', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', NULL, -6, 'VR', '', '');
17701 INSERT INTO `marc_subfield_structure` VALUES ('082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', NULL, -6, 'VR', '', '');
17702 INSERT INTO `marc_subfield_structure` VALUES ('082', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, 0, 'VR', '', '');
17703 INSERT INTO `marc_subfield_structure` VALUES ('082', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, 0, 'VR', '', '');
17704 INSERT INTO `marc_subfield_structure` VALUES ('084', '2', 'Source of number', 'Source of number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17705 INSERT INTO `marc_subfield_structure` VALUES ('084', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17706 INSERT INTO `marc_subfield_structure` VALUES ('084', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17707 INSERT INTO `marc_subfield_structure` VALUES ('084', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17708 INSERT INTO `marc_subfield_structure` VALUES ('084', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17709 INSERT INTO `marc_subfield_structure` VALUES ('086', '2', 'Number source', 'Number source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'VR', '', '');
17710 INSERT INTO `marc_subfield_structure` VALUES ('086', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17711 INSERT INTO `marc_subfield_structure` VALUES ('086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17712 INSERT INTO `marc_subfield_structure` VALUES ('086', 'a', 'Classification number', 'Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'VR', '', '');
17713 INSERT INTO `marc_subfield_structure` VALUES ('086', 'z', 'Canceled/invalid classification number', 'Canceled/invalid classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17714 INSERT INTO `marc_subfield_structure` VALUES ('087', 'a', 'Report number [OBSOLETE, CAN/MARC]', 'Report number [OBSOLETE, CAN/MARC]', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17715 INSERT INTO `marc_subfield_structure` VALUES ('087', 'z', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17716 INSERT INTO `marc_subfield_structure` VALUES ('088', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17717 INSERT INTO `marc_subfield_structure` VALUES ('088', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17718 INSERT INTO `marc_subfield_structure` VALUES ('088', 'a', 'Report number', 'Report number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17719 INSERT INTO `marc_subfield_structure` VALUES ('088', 'z', 'Canceled/invalid report number', 'Canceled/invalid report number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'VR', '', '');
17720 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17721 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17722 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
17723 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
17724 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
17725 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
17726 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
17727 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
17728 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
17729 INSERT INTO `marc_subfield_structure` VALUES ('09o', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
17730 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
17731 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
17732 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
17733 INSERT INTO `marc_subfield_structure` VALUES ('091', 'a', 'Microfilm shelf location', 'Microfilm shelf location', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17734 INSERT INTO `marc_subfield_structure` VALUES ('092', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, -6, 'VR', '', '');
17735 INSERT INTO `marc_subfield_structure` VALUES ('092', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'VR', '', '');
17736 INSERT INTO `marc_subfield_structure` VALUES ('092', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'VR', '', '');
17737 INSERT INTO `marc_subfield_structure` VALUES ('092', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17738 INSERT INTO `marc_subfield_structure` VALUES ('092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17739 INSERT INTO `marc_subfield_structure` VALUES ('096', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'VR', '', '');
17740 INSERT INTO `marc_subfield_structure` VALUES ('096', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'VR', '', '');
17741 INSERT INTO `marc_subfield_structure` VALUES ('096', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17742 INSERT INTO `marc_subfield_structure` VALUES ('096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17743 INSERT INTO `marc_subfield_structure` VALUES ('098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, '', 0, '', '', '', NULL, -6, 'VR', '', '');
17744 INSERT INTO `marc_subfield_structure` VALUES ('098', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17745 INSERT INTO `marc_subfield_structure` VALUES ('098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17746 INSERT INTO `marc_subfield_structure` VALUES ('099', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, -6, 'VR', '', '');
17747 INSERT INTO `marc_subfield_structure` VALUES ('099', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17748 INSERT INTO `marc_subfield_structure` VALUES ('099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
17749 INSERT INTO `marc_subfield_structure` VALUES ('100', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', 0, -6, 'VR', '', '');
17750 INSERT INTO `marc_subfield_structure` VALUES ('100', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', 0, -6, 'VR', '', '');
17751 INSERT INTO `marc_subfield_structure` VALUES ('100', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', 0, -6, 'VR', '', '');
17752 INSERT INTO `marc_subfield_structure` VALUES ('100', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
17753 INSERT INTO `marc_subfield_structure` VALUES ('100', 'a', 'Personal name', 'Personal name', 0, 0, 'biblio.author', 1, '', '', '', 0, -1, 'VR', '''100b'',''100c'',''100q'',''100d'',''100e'',''110a'',''110b'',''110c'',''110d'',''110e'',''700a'',''700b'',''700c'',''700q'',''700d'',''700e'',''710a'',''710b'',''710c'',''710d'',''710e'',''720a'',''720e'',''900a''', '');
17754 INSERT INTO `marc_subfield_structure` VALUES ('100', 'b', 'Numeration', 'Numeration', 0, 0, '', 1, '', '', '', 0, -1, 'VR', '', '');
17755 INSERT INTO `marc_subfield_structure` VALUES ('100', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 1, '', '', '', 0, -1, 'VR', '', '');
17756 INSERT INTO `marc_subfield_structure` VALUES ('100', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 1, '', '', '', 0, -1, 'VR', '', '');
17757 INSERT INTO `marc_subfield_structure` VALUES ('100', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', 0, -1, 'VR', '', '');
17758 INSERT INTO `marc_subfield_structure` VALUES ('100', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', 0, -6, 'VR', '', '');
17759 INSERT INTO `marc_subfield_structure` VALUES ('100', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', 0, -6, 'VR', '', '');
17760 INSERT INTO `marc_subfield_structure` VALUES ('100', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 1, '', '', '', 0, -6, 'VR', '', '');
17761 INSERT INTO `marc_subfield_structure` VALUES ('100', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', 0, -6, 'VR', '', '');
17762 INSERT INTO `marc_subfield_structure` VALUES ('100', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', 0, -6, 'VR', '', '');
17763 INSERT INTO `marc_subfield_structure` VALUES ('100', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'VR', '', '');
17764 INSERT INTO `marc_subfield_structure` VALUES ('100', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'VR', '', '');
17765 INSERT INTO `marc_subfield_structure` VALUES ('100', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 1, '', '', '', 0, -1, 'VR', '', '');
17766 INSERT INTO `marc_subfield_structure` VALUES ('100', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', 0, -6, 'VR', '', '');
17767 INSERT INTO `marc_subfield_structure` VALUES ('100', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', 0, -6, 'VR', '', '');
17768 INSERT INTO `marc_subfield_structure` VALUES ('110', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', NULL, -6, 'VR', '', '');
17769 INSERT INTO `marc_subfield_structure` VALUES ('110', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', NULL, -6, 'VR', '', '');
17770 INSERT INTO `marc_subfield_structure` VALUES ('110', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', NULL, -6, 'VR', '', '');
17771 INSERT INTO `marc_subfield_structure` VALUES ('110', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
17772 INSERT INTO `marc_subfield_structure` VALUES ('110', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 1, '', '', '', NULL, -1, 'VR', '', '');
17773 INSERT INTO `marc_subfield_structure` VALUES ('110', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 1, '', '', '', NULL, -1, 'VR', '', '');
17774 INSERT INTO `marc_subfield_structure` VALUES ('110', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 1, '', '', '', NULL, -1, 'VR', '', '');
17775 INSERT INTO `marc_subfield_structure` VALUES ('110', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 1, '', '', '', NULL, -1, 'VR', '', '');
17776 INSERT INTO `marc_subfield_structure` VALUES ('110', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', NULL, -1, 'VR', '', '');
17777 INSERT INTO `marc_subfield_structure` VALUES ('110', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'VR', '', '');
17778 INSERT INTO `marc_subfield_structure` VALUES ('110', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', NULL, -6, 'VR', '', '');
17779 INSERT INTO `marc_subfield_structure` VALUES ('110', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', NULL, -6, 'VR', '', '');
17780 INSERT INTO `marc_subfield_structure` VALUES ('110', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'VR', '', '');
17781 INSERT INTO `marc_subfield_structure` VALUES ('110', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 1, '', '', '', NULL, -6, 'VR', '', '');
17782 INSERT INTO `marc_subfield_structure` VALUES ('110', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', NULL, -6, 'VR', '', '');
17783 INSERT INTO `marc_subfield_structure` VALUES ('110', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'VR', '', '');
17784 INSERT INTO `marc_subfield_structure` VALUES ('110', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', NULL, -6, 'VR', '', '');
17785 INSERT INTO `marc_subfield_structure` VALUES ('111', '4', 'Relator code', 'Relator code', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17786 INSERT INTO `marc_subfield_structure` VALUES ('111', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17787 INSERT INTO `marc_subfield_structure` VALUES ('111', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17788 INSERT INTO `marc_subfield_structure` VALUES ('111', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
17789 INSERT INTO `marc_subfield_structure` VALUES ('111', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'VR', '', '');
17790 INSERT INTO `marc_subfield_structure` VALUES ('111', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17791 INSERT INTO `marc_subfield_structure` VALUES ('111', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'VR', '', '');
17792 INSERT INTO `marc_subfield_structure` VALUES ('111', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'VR', '', '');
17793 INSERT INTO `marc_subfield_structure` VALUES ('111', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'VR', '', '');
17794 INSERT INTO `marc_subfield_structure` VALUES ('111', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17795 INSERT INTO `marc_subfield_structure` VALUES ('111', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17796 INSERT INTO `marc_subfield_structure` VALUES ('111', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17797 INSERT INTO `marc_subfield_structure` VALUES ('111', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17798 INSERT INTO `marc_subfield_structure` VALUES ('111', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17799 INSERT INTO `marc_subfield_structure` VALUES ('111', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17800 INSERT INTO `marc_subfield_structure` VALUES ('111', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17801 INSERT INTO `marc_subfield_structure` VALUES ('111', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17802 INSERT INTO `marc_subfield_structure` VALUES ('111', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17803 INSERT INTO `marc_subfield_structure` VALUES ('130', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17804 INSERT INTO `marc_subfield_structure` VALUES ('130', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17805 INSERT INTO `marc_subfield_structure` VALUES ('130', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
17806 INSERT INTO `marc_subfield_structure` VALUES ('130', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17807 INSERT INTO `marc_subfield_structure` VALUES ('130', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17808 INSERT INTO `marc_subfield_structure` VALUES ('130', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17809 INSERT INTO `marc_subfield_structure` VALUES ('130', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17810 INSERT INTO `marc_subfield_structure` VALUES ('130', 'h', 'Medium', 'Medium', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17811 INSERT INTO `marc_subfield_structure` VALUES ('130', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17812 INSERT INTO `marc_subfield_structure` VALUES ('130', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17813 INSERT INTO `marc_subfield_structure` VALUES ('130', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17814 INSERT INTO `marc_subfield_structure` VALUES ('130', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17815 INSERT INTO `marc_subfield_structure` VALUES ('130', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17816 INSERT INTO `marc_subfield_structure` VALUES ('130', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17817 INSERT INTO `marc_subfield_structure` VALUES ('130', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17818 INSERT INTO `marc_subfield_structure` VALUES ('130', 's', 'Version', 'Version', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17819 INSERT INTO `marc_subfield_structure` VALUES ('130', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'VR', '', '');
17820 INSERT INTO `marc_subfield_structure` VALUES ('210', '2', 'Source', 'Source', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17821 INSERT INTO `marc_subfield_structure` VALUES ('210', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17822 INSERT INTO `marc_subfield_structure` VALUES ('210', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17823 INSERT INTO `marc_subfield_structure` VALUES ('210', 'a', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17824 INSERT INTO `marc_subfield_structure` VALUES ('210', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17825 INSERT INTO `marc_subfield_structure` VALUES ('211', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17826 INSERT INTO `marc_subfield_structure` VALUES ('211', 'a', 'Acronym or shortened title', 'Acronym or shortened title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17827 INSERT INTO `marc_subfield_structure` VALUES ('212', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17828 INSERT INTO `marc_subfield_structure` VALUES ('212', 'a', 'Variant access title', 'Variant access title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17829 INSERT INTO `marc_subfield_structure` VALUES ('214', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17830 INSERT INTO `marc_subfield_structure` VALUES ('214', 'a', 'Augmented title', 'Augmented title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17831 INSERT INTO `marc_subfield_structure` VALUES ('222', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17832 INSERT INTO `marc_subfield_structure` VALUES ('222', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17833 INSERT INTO `marc_subfield_structure` VALUES ('222', 'a', 'Key title', 'Key title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17834 INSERT INTO `marc_subfield_structure` VALUES ('222', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17835 INSERT INTO `marc_subfield_structure` VALUES ('240', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17836 INSERT INTO `marc_subfield_structure` VALUES ('240', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17837 INSERT INTO `marc_subfield_structure` VALUES ('240', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
17838 INSERT INTO `marc_subfield_structure` VALUES ('240', 'a', 'Uniform title', 'Uniform title', 0, 0, 'biblio.unititle', 2, '', '', '', 1, -1, 'VR', '', '');
17839 INSERT INTO `marc_subfield_structure` VALUES ('240', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17840 INSERT INTO `marc_subfield_structure` VALUES ('240', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17841 INSERT INTO `marc_subfield_structure` VALUES ('240', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17842 INSERT INTO `marc_subfield_structure` VALUES ('240', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'VR', '', '');
17843 INSERT INTO `marc_subfield_structure` VALUES ('240', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17844 INSERT INTO `marc_subfield_structure` VALUES ('240', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'VR', '', '');
17845 INSERT INTO `marc_subfield_structure` VALUES ('240', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17846 INSERT INTO `marc_subfield_structure` VALUES ('240', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17847 INSERT INTO `marc_subfield_structure` VALUES ('240', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17848 INSERT INTO `marc_subfield_structure` VALUES ('240', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17849 INSERT INTO `marc_subfield_structure` VALUES ('240', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17850 INSERT INTO `marc_subfield_structure` VALUES ('240', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'VR', '', '');
17851 INSERT INTO `marc_subfield_structure` VALUES ('241', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17852 INSERT INTO `marc_subfield_structure` VALUES ('241', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17853 INSERT INTO `marc_subfield_structure` VALUES ('242', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17854 INSERT INTO `marc_subfield_structure` VALUES ('242', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17855 INSERT INTO `marc_subfield_structure` VALUES ('242', 'a', 'Title', 'Title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17856 INSERT INTO `marc_subfield_structure` VALUES ('242', 'b', 'Remainder of title', 'Remainder of title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17857 INSERT INTO `marc_subfield_structure` VALUES ('242', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17858 INSERT INTO `marc_subfield_structure` VALUES ('242', 'd', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17859 INSERT INTO `marc_subfield_structure` VALUES ('242', 'e', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17860 INSERT INTO `marc_subfield_structure` VALUES ('242', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17861 INSERT INTO `marc_subfield_structure` VALUES ('242', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17862 INSERT INTO `marc_subfield_structure` VALUES ('242', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17863 INSERT INTO `marc_subfield_structure` VALUES ('242', 'y', 'Language code of translated title', 'Language code of translated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'VR', '', '');
17864 INSERT INTO `marc_subfield_structure` VALUES ('243', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17865 INSERT INTO `marc_subfield_structure` VALUES ('243', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17866 INSERT INTO `marc_subfield_structure` VALUES ('243', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
17867 INSERT INTO `marc_subfield_structure` VALUES ('243', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 2, '', '', '', 1, -1, 'VR', '', '');
17868 INSERT INTO `marc_subfield_structure` VALUES ('243', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17869 INSERT INTO `marc_subfield_structure` VALUES ('243', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17870 INSERT INTO `marc_subfield_structure` VALUES ('243', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17871 INSERT INTO `marc_subfield_structure` VALUES ('243', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'VR', '', '');
17872 INSERT INTO `marc_subfield_structure` VALUES ('243', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17873 INSERT INTO `marc_subfield_structure` VALUES ('243', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'VR', '', '');
17874 INSERT INTO `marc_subfield_structure` VALUES ('243', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17875 INSERT INTO `marc_subfield_structure` VALUES ('243', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17876 INSERT INTO `marc_subfield_structure` VALUES ('243', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17877 INSERT INTO `marc_subfield_structure` VALUES ('243', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17878 INSERT INTO `marc_subfield_structure` VALUES ('243', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'VR', '', '');
17879 INSERT INTO `marc_subfield_structure` VALUES ('243', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'VR', '', '');
17880 INSERT INTO `marc_subfield_structure` VALUES ('245', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17881 INSERT INTO `marc_subfield_structure` VALUES ('245', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17882 INSERT INTO `marc_subfield_structure` VALUES ('245', 'a', 'Title', 'Title', 0, 1, 'biblio.title', 2, '', '', '', NULL, 0, 'VR', '''245b'',''245f'',''245g'',''245k'',''245n'',''245p'',''245s'',''245h'',''246i'',''246a'',''246b'',''246f'',''246g'',''246n'',''246p'',''246h'',''242a'',''242b'',''242n'',''242p'',''242h''', '');
17883 INSERT INTO `marc_subfield_structure` VALUES ('245', 'b', 'Remainder of title', 'Remainder of title', 0, 0, 'bibliosubtitle.subtitle', 2, '', '', '', NULL, 0, 'VR', '', '');
17884 INSERT INTO `marc_subfield_structure` VALUES ('245', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 2, '', '', '', NULL, 0, 'VR', '', '');
17885 INSERT INTO `marc_subfield_structure` VALUES ('245', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series: (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17886 INSERT INTO `marc_subfield_structure` VALUES ('245', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17887 INSERT INTO `marc_subfield_structure` VALUES ('245', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17888 INSERT INTO `marc_subfield_structure` VALUES ('245', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17889 INSERT INTO `marc_subfield_structure` VALUES ('245', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, 0, 'VR', '', '');
17890 INSERT INTO `marc_subfield_structure` VALUES ('245', 'k', 'Form', 'Form', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17891 INSERT INTO `marc_subfield_structure` VALUES ('245', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17892 INSERT INTO `marc_subfield_structure` VALUES ('245', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17893 INSERT INTO `marc_subfield_structure` VALUES ('245', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17894 INSERT INTO `marc_subfield_structure` VALUES ('246', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17895 INSERT INTO `marc_subfield_structure` VALUES ('246', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17896 INSERT INTO `marc_subfield_structure` VALUES ('246', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17897 INSERT INTO `marc_subfield_structure` VALUES ('246', 'a', 'Title proper/short title', 'Title proper/short title', 0, 0, '', 2, '', '', '', NULL, -1, 'VR', '', '');
17898 INSERT INTO `marc_subfield_structure` VALUES ('246', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -1, 'VR', '', '');
17899 INSERT INTO `marc_subfield_structure` VALUES ('246', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17900 INSERT INTO `marc_subfield_structure` VALUES ('246', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17901 INSERT INTO `marc_subfield_structure` VALUES ('246', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17902 INSERT INTO `marc_subfield_structure` VALUES ('246', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17903 INSERT INTO `marc_subfield_structure` VALUES ('246', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -1, 'VR', '', '');
17904 INSERT INTO `marc_subfield_structure` VALUES ('246', 'i', 'Display text', 'Display text', 0, 0, '', 2, '', '', '', NULL, -1, 'VR', '', '');
17905 INSERT INTO `marc_subfield_structure` VALUES ('246', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17906 INSERT INTO `marc_subfield_structure` VALUES ('246', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17907 INSERT INTO `marc_subfield_structure` VALUES ('247', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17908 INSERT INTO `marc_subfield_structure` VALUES ('247', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17909 INSERT INTO `marc_subfield_structure` VALUES ('247', 'a', 'Title', 'Title', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17910 INSERT INTO `marc_subfield_structure` VALUES ('247', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17911 INSERT INTO `marc_subfield_structure` VALUES ('247', 'd', 'Designation of section (SE) [OBSOLETE]', 'Designation of section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17912 INSERT INTO `marc_subfield_structure` VALUES ('247', 'e', 'Name of part/section (SE) [OBSOLETE]', 'Name of part/section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17913 INSERT INTO `marc_subfield_structure` VALUES ('247', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17914 INSERT INTO `marc_subfield_structure` VALUES ('247', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17915 INSERT INTO `marc_subfield_structure` VALUES ('247', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17916 INSERT INTO `marc_subfield_structure` VALUES ('247', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17917 INSERT INTO `marc_subfield_structure` VALUES ('247', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17918 INSERT INTO `marc_subfield_structure` VALUES ('247', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17919 INSERT INTO `marc_subfield_structure` VALUES ('250', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17920 INSERT INTO `marc_subfield_structure` VALUES ('250', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17921 INSERT INTO `marc_subfield_structure` VALUES ('250', 'a', 'Edition statement', 'Edition statement', 0, 0, '', 2, '', '', '', NULL, -1, 'VR', '', '');
17922 INSERT INTO `marc_subfield_structure` VALUES ('250', 'b', 'Remainder of edition statement', 'Remainder of edition statement', 0, 0, '', 2, '', '', '', NULL, -1, 'VR', '', '');
17923 INSERT INTO `marc_subfield_structure` VALUES ('254', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17924 INSERT INTO `marc_subfield_structure` VALUES ('254', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17925 INSERT INTO `marc_subfield_structure` VALUES ('254', 'a', 'Musical presentation statement', 'Musical presentation statement', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17926 INSERT INTO `marc_subfield_structure` VALUES ('255', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17927 INSERT INTO `marc_subfield_structure` VALUES ('255', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17928 INSERT INTO `marc_subfield_structure` VALUES ('255', 'a', 'Statement of scale', 'Statement of scale', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17929 INSERT INTO `marc_subfield_structure` VALUES ('255', 'b', 'Statement of projection', 'Statement of projection', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17930 INSERT INTO `marc_subfield_structure` VALUES ('255', 'c', 'Statement of coordinates', 'Statement of coordinates', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17931 INSERT INTO `marc_subfield_structure` VALUES ('255', 'd', 'Statement of zone', 'Statement of zone', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17932 INSERT INTO `marc_subfield_structure` VALUES ('255', 'e', 'Statement of equinox', 'Statement of equinox', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17933 INSERT INTO `marc_subfield_structure` VALUES ('255', 'f', 'Outer G-ring coordinate pairs', 'Outer G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17934 INSERT INTO `marc_subfield_structure` VALUES ('255', 'g', 'Exclusion G-ring coordinate pairs', 'Exclusion G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17935 INSERT INTO `marc_subfield_structure` VALUES ('256', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17936 INSERT INTO `marc_subfield_structure` VALUES ('256', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17937 INSERT INTO `marc_subfield_structure` VALUES ('256', 'a', 'Computer file characteristics', 'Computer file characteristics', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17938 INSERT INTO `marc_subfield_structure` VALUES ('257', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17939 INSERT INTO `marc_subfield_structure` VALUES ('257', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17940 INSERT INTO `marc_subfield_structure` VALUES ('257', 'a', 'Country of producing entity', 'Country of producing entity', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17941 INSERT INTO `marc_subfield_structure` VALUES ('258', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17942 INSERT INTO `marc_subfield_structure` VALUES ('258', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17943 INSERT INTO `marc_subfield_structure` VALUES ('258', 'a', 'Issuing jurisdiction', 'Issuing jurisdiction', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17944 INSERT INTO `marc_subfield_structure` VALUES ('258', 'b', 'Denomination', 'Denomination', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17945 INSERT INTO `marc_subfield_structure` VALUES ('260', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17946 INSERT INTO `marc_subfield_structure` VALUES ('260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17947 INSERT INTO `marc_subfield_structure` VALUES ('260', 'a', 'Place of publication, distribution, etc', 'Place of publication, distribution, etc', 1, 0, 'biblioitems.place', 2, '', '', '', NULL, -1, 'VR', '', '');
17948 INSERT INTO `marc_subfield_structure` VALUES ('260', 'b', 'Name of publisher, distributor, etc', 'Name of publisher, distributor, etc', 1, 0, 'biblioitems.publishercode', 2, '', '', '', NULL, -1, 'VR', '', '');
17949 INSERT INTO `marc_subfield_structure` VALUES ('260', 'c', 'Date of copyright, publication, distribution, release, etc', 'Date of publication, distribution, etc', 1, 0, 'biblio.copyrightdate', 2, '', '', '', NULL, -1, 'VR', '', '');
17950 INSERT INTO `marc_subfield_structure` VALUES ('260', 'd', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17951 INSERT INTO `marc_subfield_structure` VALUES ('260', 'e', 'Place of manufacture', 'Place of manufacture', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17952 INSERT INTO `marc_subfield_structure` VALUES ('260', 'f', 'Manufacturer', 'Manufacturer', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17953 INSERT INTO `marc_subfield_structure` VALUES ('260', 'g', 'Date of manufacture', 'Date of manufacture', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17954 INSERT INTO `marc_subfield_structure` VALUES ('260', 'k', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17955 INSERT INTO `marc_subfield_structure` VALUES ('260', 'l', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17956 INSERT INTO `marc_subfield_structure` VALUES ('261', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17957 INSERT INTO `marc_subfield_structure` VALUES ('261', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17958 INSERT INTO `marc_subfield_structure` VALUES ('261', 'a', 'Producing company', 'Producing company', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17959 INSERT INTO `marc_subfield_structure` VALUES ('261', 'b', 'Releasing company (primary distributor)', 'Releasing company (primary distributor)', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17960 INSERT INTO `marc_subfield_structure` VALUES ('261', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17961 INSERT INTO `marc_subfield_structure` VALUES ('261', 'd', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17962 INSERT INTO `marc_subfield_structure` VALUES ('261', 'e', 'Contractual producer', 'Contractual producer', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17963 INSERT INTO `marc_subfield_structure` VALUES ('261', 'f', 'Place of production, release, etc.', 'Place of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17964 INSERT INTO `marc_subfield_structure` VALUES ('262', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17965 INSERT INTO `marc_subfield_structure` VALUES ('262', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17966 INSERT INTO `marc_subfield_structure` VALUES ('262', 'a', 'Place of production, release, etc.', 'Place of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17967 INSERT INTO `marc_subfield_structure` VALUES ('262', 'b', 'Publisher or trade name', 'Publisher or trade name', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17968 INSERT INTO `marc_subfield_structure` VALUES ('262', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17969 INSERT INTO `marc_subfield_structure` VALUES ('262', 'k', 'Serial identification', 'Serial identification', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17970 INSERT INTO `marc_subfield_structure` VALUES ('262', 'l', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17971 INSERT INTO `marc_subfield_structure` VALUES ('263', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17972 INSERT INTO `marc_subfield_structure` VALUES ('263', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17973 INSERT INTO `marc_subfield_structure` VALUES ('263', 'a', 'Projected publication date', 'Projected publication date', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17974 INSERT INTO `marc_subfield_structure` VALUES ('265', '6', 'Linkage [OBSOLETE]', 'Linkage [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17975 INSERT INTO `marc_subfield_structure` VALUES ('265', 'a', 'Source for acquisition/subscription address [OBSOLETE]', 'Source for acquisition/subscription address [OBSOLETE]', 1, 0, '', 2, '', '', '', NULL, -6, 'VR', '', '');
17976 INSERT INTO `marc_subfield_structure` VALUES ('270', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
17977 INSERT INTO `marc_subfield_structure` VALUES ('270', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
17978 INSERT INTO `marc_subfield_structure` VALUES ('270', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
17979 INSERT INTO `marc_subfield_structure` VALUES ('270', 'a', 'Address', 'Address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'VR', '', '');
17980 INSERT INTO `marc_subfield_structure` VALUES ('270', 'b', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'VR', '', '');
17981 INSERT INTO `marc_subfield_structure` VALUES ('270', 'c', 'State or province', 'State or province', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
17982 INSERT INTO `marc_subfield_structure` VALUES ('270', 'd', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'VR', '', '');
17983 INSERT INTO `marc_subfield_structure` VALUES ('270', 'e', 'Postal code', 'Postal code', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'VR', '', '');
17984 INSERT INTO `marc_subfield_structure` VALUES ('270', 'f', 'Terms preceding attention name', 'Terms preceding attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'VR', '', '');
17985 INSERT INTO `marc_subfield_structure` VALUES ('270', 'g', 'Attention name', 'Attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'VR', '', '');
17986 INSERT INTO `marc_subfield_structure` VALUES ('270', 'h', 'Attention position', 'Attention position', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'VR', '', '');
17987 INSERT INTO `marc_subfield_structure` VALUES ('270', 'i', 'Type of address', 'Type of address', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'VR', '', '');
17988 INSERT INTO `marc_subfield_structure` VALUES ('270', 'j', 'Specialized telephone number', 'Specialized telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'VR', '', '');
17989 INSERT INTO `marc_subfield_structure` VALUES ('270', 'k', 'Telephone number', 'Telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'VR', '', '');
17990 INSERT INTO `marc_subfield_structure` VALUES ('270', 'l', 'Fax number', 'Fax number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'VR', '', '');
17991 INSERT INTO `marc_subfield_structure` VALUES ('270', 'm', 'Electronic mail address', 'Electronic mail address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'VR', '', '');
17992 INSERT INTO `marc_subfield_structure` VALUES ('270', 'n', 'TDD or TTY number', 'TDD or TTY number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'VR', '', '');
17993 INSERT INTO `marc_subfield_structure` VALUES ('270', 'p', 'Contact person', 'Contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'VR', '', '');
17994 INSERT INTO `marc_subfield_structure` VALUES ('270', 'q', 'Title of contact person', 'Title of contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'VR', '', '');
17995 INSERT INTO `marc_subfield_structure` VALUES ('270', 'r', 'Hours', 'Hours', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'VR', '', '');
17996 INSERT INTO `marc_subfield_structure` VALUES ('270', 'z', 'Public note', 'Public note', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'VR', '', '');
17997 INSERT INTO `marc_subfield_structure` VALUES ('300', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
17998 INSERT INTO `marc_subfield_structure` VALUES ('300', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
17999 INSERT INTO `marc_subfield_structure` VALUES ('300', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18000 INSERT INTO `marc_subfield_structure` VALUES ('300', 'a', 'Extent (number of discs/tapes followed by format)', 'Extent', 1, 1, 'biblioitems.pages', 3, '', '', '', NULL, 0, 'VR', '', '');
18001 INSERT INTO `marc_subfield_structure` VALUES ('300', 'b', 'Other physical details', 'Other physical details', 0, 0, 'biblioitems.illus', 3, '', '', '', 0, 0, 'VR', '', '');
18002 INSERT INTO `marc_subfield_structure` VALUES ('300', 'c', 'Dimensions', 'Dimensions', 1, 0, 'biblioitems.size', 3, '', '', '', NULL, 0, 'VR', '', '');
18003 INSERT INTO `marc_subfield_structure` VALUES ('300', 'd', 'Accompanying material [OBSOLETE, CAN/MARC]', 'Accompanying material [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18004 INSERT INTO `marc_subfield_structure` VALUES ('300', 'e', 'Accompanying material', 'Accompanying material', 0, 0, '', 3, '', '', '', NULL, 0, 'VR', '', '');
18005 INSERT INTO `marc_subfield_structure` VALUES ('300', 'f', 'Type of unit', 'Type of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'VR', '', '');
18006 INSERT INTO `marc_subfield_structure` VALUES ('300', 'g', 'Size of unit', 'Size of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'VR', '', '');
18007 INSERT INTO `marc_subfield_structure` VALUES ('300', 'k', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18008 INSERT INTO `marc_subfield_structure` VALUES ('300', 'm', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18009 INSERT INTO `marc_subfield_structure` VALUES ('300', 'n', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18010 INSERT INTO `marc_subfield_structure` VALUES ('301', 'a', 'Extent of item', 'Extent of item', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18011 INSERT INTO `marc_subfield_structure` VALUES ('301', 'b', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18012 INSERT INTO `marc_subfield_structure` VALUES ('301', 'c', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', NULL, NULL, -6, 'VR', '', '');
18013 INSERT INTO `marc_subfield_structure` VALUES ('301', 'd', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18014 INSERT INTO `marc_subfield_structure` VALUES ('301', 'e', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18015 INSERT INTO `marc_subfield_structure` VALUES ('301', 'f', 'Speed', 'Speed', 0, 0, '', 3, '', '', NULL, NULL, -6, 'VR', '', '');
18016 INSERT INTO `marc_subfield_structure` VALUES ('302', 'a', 'Page count', 'Page count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'VR', '', '');
18017 INSERT INTO `marc_subfield_structure` VALUES ('303', 'a', 'Unit count', 'Unit count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'VR', '', '');
18018 INSERT INTO `marc_subfield_structure` VALUES ('304', 'a', 'Linear footage', 'Linear footage', 0, 0, '', 3, '', '', NULL, NULL, -6, 'VR', '', '');
18019 INSERT INTO `marc_subfield_structure` VALUES ('305', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18020 INSERT INTO `marc_subfield_structure` VALUES ('305', 'a', 'Extent', 'Extent', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18021 INSERT INTO `marc_subfield_structure` VALUES ('305', 'b', 'Other physical details', 'Other physical details', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18022 INSERT INTO `marc_subfield_structure` VALUES ('305', 'c', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', NULL, NULL, -6, 'VR', '', '');
18023 INSERT INTO `marc_subfield_structure` VALUES ('305', 'd', 'Microgroove or standard', 'Microgroove or standard', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18024 INSERT INTO `marc_subfield_structure` VALUES ('305', 'e', 'Stereophonic, monaural', 'Stereophonic, monaural', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18025 INSERT INTO `marc_subfield_structure` VALUES ('305', 'f', 'Number of tracks', 'Number of tracks', 0, 0, '', 3, '', '', NULL, NULL, -6, 'VR', '', '');
18026 INSERT INTO `marc_subfield_structure` VALUES ('305', 'm', 'Serial identification', 'Serial identification', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18027 INSERT INTO `marc_subfield_structure` VALUES ('305', 'n', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 3, '', '', NULL, NULL, -6, 'VR', '', '');
18028 INSERT INTO `marc_subfield_structure` VALUES ('306', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18029 INSERT INTO `marc_subfield_structure` VALUES ('306', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18030 INSERT INTO `marc_subfield_structure` VALUES ('306', 'a', 'Playing time', 'Playing time', 0, 0, '', 3, '', '', '', NULL, 0, 'VR', '', '');
18031 INSERT INTO `marc_subfield_structure` VALUES ('307', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18032 INSERT INTO `marc_subfield_structure` VALUES ('307', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18033 INSERT INTO `marc_subfield_structure` VALUES ('307', 'a', 'Hours', 'Hours', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18034 INSERT INTO `marc_subfield_structure` VALUES ('307', 'b', 'Additional information', 'Additional information', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18035 INSERT INTO `marc_subfield_structure` VALUES ('308', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18036 INSERT INTO `marc_subfield_structure` VALUES ('308', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18037 INSERT INTO `marc_subfield_structure` VALUES ('308', 'a', 'Number of reels', 'Number of reels', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18038 INSERT INTO `marc_subfield_structure` VALUES ('308', 'b', 'Footage', 'Footage', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18039 INSERT INTO `marc_subfield_structure` VALUES ('308', 'c', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18040 INSERT INTO `marc_subfield_structure` VALUES ('308', 'd', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18041 INSERT INTO `marc_subfield_structure` VALUES ('308', 'e', 'Width', 'Width', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18042 INSERT INTO `marc_subfield_structure` VALUES ('308', 'f', 'Presentation format', 'Presentation format', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18043 INSERT INTO `marc_subfield_structure` VALUES ('310', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18044 INSERT INTO `marc_subfield_structure` VALUES ('310', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18045 INSERT INTO `marc_subfield_structure` VALUES ('310', 'a', 'Current publication frequency', 'Current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18046 INSERT INTO `marc_subfield_structure` VALUES ('310', 'b', 'Date of current publication frequency', 'Date of current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18047 INSERT INTO `marc_subfield_structure` VALUES ('315', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18048 INSERT INTO `marc_subfield_structure` VALUES ('315', 'a', 'Frequency', 'Frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18049 INSERT INTO `marc_subfield_structure` VALUES ('315', 'b', 'Dates of frequency', 'Dates of frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18050 INSERT INTO `marc_subfield_structure` VALUES ('321', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18051 INSERT INTO `marc_subfield_structure` VALUES ('321', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18052 INSERT INTO `marc_subfield_structure` VALUES ('321', 'a', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18053 INSERT INTO `marc_subfield_structure` VALUES ('321', 'b', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18054 INSERT INTO `marc_subfield_structure` VALUES ('340', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18055 INSERT INTO `marc_subfield_structure` VALUES ('340', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18056 INSERT INTO `marc_subfield_structure` VALUES ('340', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18057 INSERT INTO `marc_subfield_structure` VALUES ('340', 'a', 'Material base and configuration', 'Material base and configuration', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18058 INSERT INTO `marc_subfield_structure` VALUES ('340', 'b', 'Dimensions', 'Dimensions', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18059 INSERT INTO `marc_subfield_structure` VALUES ('340', 'c', 'Materials applied to surface', 'Materials applied to surface', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18060 INSERT INTO `marc_subfield_structure` VALUES ('340', 'd', 'Information recording technique', 'Information recording technique', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18061 INSERT INTO `marc_subfield_structure` VALUES ('340', 'e', 'Support', 'Support', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18062 INSERT INTO `marc_subfield_structure` VALUES ('340', 'f', 'Production rate/ratio', 'Production rate/ratio', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18063 INSERT INTO `marc_subfield_structure` VALUES ('340', 'h', 'Location within medium', 'Location within medium', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18064 INSERT INTO `marc_subfield_structure` VALUES ('340', 'i', 'Technical specifications of medium', 'Technical specifications of medium', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18065 INSERT INTO `marc_subfield_structure` VALUES ('342', '2', 'Reference method used', 'Reference method used', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18066 INSERT INTO `marc_subfield_structure` VALUES ('342', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18067 INSERT INTO `marc_subfield_structure` VALUES ('342', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18068 INSERT INTO `marc_subfield_structure` VALUES ('342', 'a', 'Name', 'Name', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18069 INSERT INTO `marc_subfield_structure` VALUES ('342', 'b', 'Coordinate or distance units', 'Coordinate or distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18070 INSERT INTO `marc_subfield_structure` VALUES ('342', 'c', 'Latitude resolution', 'Latitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18071 INSERT INTO `marc_subfield_structure` VALUES ('342', 'd', 'Longitude resolution', 'Longitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18072 INSERT INTO `marc_subfield_structure` VALUES ('342', 'e', 'Standard parallel or oblique line latitude', 'Standard parallel or oblique line latitude', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18073 INSERT INTO `marc_subfield_structure` VALUES ('342', 'f', 'Oblique line longitude', 'Oblique line longitude', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18074 INSERT INTO `marc_subfield_structure` VALUES ('342', 'g', 'Longitude of central meridian or projection center', 'Longitude of central meridian or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18075 INSERT INTO `marc_subfield_structure` VALUES ('342', 'h', 'Latitude of projection origin or projection center', 'Latitude of projection origin or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18076 INSERT INTO `marc_subfield_structure` VALUES ('342', 'i', 'False easting', 'False easting', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18077 INSERT INTO `marc_subfield_structure` VALUES ('342', 'j', 'False northing', 'False northing', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18078 INSERT INTO `marc_subfield_structure` VALUES ('342', 'k', 'Scale factor', 'Scale factor', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18079 INSERT INTO `marc_subfield_structure` VALUES ('342', 'l', 'Height of perspective point above surface', 'Height of perspective point above surface', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18080 INSERT INTO `marc_subfield_structure` VALUES ('342', 'm', 'Azimuthal angle', 'Azimuthal angle', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18081 INSERT INTO `marc_subfield_structure` VALUES ('342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole', 'Azimuth measure point longitude or straight vertical longitude from pole', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18082 INSERT INTO `marc_subfield_structure` VALUES ('342', 'o', 'Landsat number and path number', 'Landsat number and path number', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18083 INSERT INTO `marc_subfield_structure` VALUES ('342', 'p', 'Zone identifier', 'Zone identifier', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18084 INSERT INTO `marc_subfield_structure` VALUES ('342', 'q', 'Ellipsoid name', 'Ellipsoid name', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18085 INSERT INTO `marc_subfield_structure` VALUES ('342', 'r', 'Semi-major axis', 'Semi-major axis', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18086 INSERT INTO `marc_subfield_structure` VALUES ('342', 's', 'Denominator of flattening ratio', 'Denominator of flattening ratio', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18087 INSERT INTO `marc_subfield_structure` VALUES ('342', 't', 'Vertical resolution', 'Vertical resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18088 INSERT INTO `marc_subfield_structure` VALUES ('342', 'u', 'Vertical encoding method', 'Vertical encoding method', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18089 INSERT INTO `marc_subfield_structure` VALUES ('342', 'v', 'Local planar, local, or other projection or grid description', 'Local planar, local, or other projection or grid description', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18090 INSERT INTO `marc_subfield_structure` VALUES ('342', 'w', 'Local planar or local georeference information', 'Local planar or local georeference information', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18091 INSERT INTO `marc_subfield_structure` VALUES ('343', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18092 INSERT INTO `marc_subfield_structure` VALUES ('343', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18093 INSERT INTO `marc_subfield_structure` VALUES ('343', 'a', 'Planar coordinate encoding method', 'Planar coordinate encoding method', 1, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18094 INSERT INTO `marc_subfield_structure` VALUES ('343', 'b', 'Planar distance units', 'Planar distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18095 INSERT INTO `marc_subfield_structure` VALUES ('343', 'c', 'Abscissa resolution', 'Abscissa resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18096 INSERT INTO `marc_subfield_structure` VALUES ('343', 'd', 'Ordinate resolution', 'Ordinate resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18097 INSERT INTO `marc_subfield_structure` VALUES ('343', 'e', 'Distance resolution', 'Distance resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18098 INSERT INTO `marc_subfield_structure` VALUES ('343', 'f', 'Bearing resolution', 'Bearing resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18099 INSERT INTO `marc_subfield_structure` VALUES ('343', 'g', 'Bearing unit', 'Bearing unit', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18100 INSERT INTO `marc_subfield_structure` VALUES ('343', 'h', 'Bearing reference direction', 'Bearing reference direction', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18101 INSERT INTO `marc_subfield_structure` VALUES ('343', 'i', 'Bearing reference meridian', 'Bearing reference meridian', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18102 INSERT INTO `marc_subfield_structure` VALUES ('350', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18103 INSERT INTO `marc_subfield_structure` VALUES ('350', 'a', 'Price', 'Price', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18104 INSERT INTO `marc_subfield_structure` VALUES ('350', 'b', 'Form of issue', 'Form of issue', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18105 INSERT INTO `marc_subfield_structure` VALUES ('351', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18106 INSERT INTO `marc_subfield_structure` VALUES ('351', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18107 INSERT INTO `marc_subfield_structure` VALUES ('351', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18108 INSERT INTO `marc_subfield_structure` VALUES ('351', 'a', 'Organization', 'Organization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18109 INSERT INTO `marc_subfield_structure` VALUES ('351', 'b', 'Arrangement', 'Arrangement', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18110 INSERT INTO `marc_subfield_structure` VALUES ('351', 'c', 'Hierarchical level', 'Hierarchical level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18111 INSERT INTO `marc_subfield_structure` VALUES ('352', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18112 INSERT INTO `marc_subfield_structure` VALUES ('352', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18113 INSERT INTO `marc_subfield_structure` VALUES ('352', 'a', 'Direct reference method', 'Direct reference method', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18114 INSERT INTO `marc_subfield_structure` VALUES ('352', 'b', 'Object type', 'Object type', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18115 INSERT INTO `marc_subfield_structure` VALUES ('352', 'c', 'Object count', 'Object count', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18116 INSERT INTO `marc_subfield_structure` VALUES ('352', 'd', 'Row count', 'Row count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18117 INSERT INTO `marc_subfield_structure` VALUES ('352', 'e', 'Column count', 'Column count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18118 INSERT INTO `marc_subfield_structure` VALUES ('352', 'f', 'Vertical count', 'Vertical count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18119 INSERT INTO `marc_subfield_structure` VALUES ('352', 'g', 'VPF topology level', 'VPF topology level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18120 INSERT INTO `marc_subfield_structure` VALUES ('352', 'i', 'Indirect reference description', 'Indirect reference description', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18121 INSERT INTO `marc_subfield_structure` VALUES ('355', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18122 INSERT INTO `marc_subfield_structure` VALUES ('355', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18123 INSERT INTO `marc_subfield_structure` VALUES ('355', 'a', 'Security classification', 'Security classification', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18124 INSERT INTO `marc_subfield_structure` VALUES ('355', 'b', 'Handling instructions', 'Handling instructions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18125 INSERT INTO `marc_subfield_structure` VALUES ('355', 'c', 'External dissemination information', 'External dissemination information', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18126 INSERT INTO `marc_subfield_structure` VALUES ('355', 'd', 'Downgrading or declassification event', 'Downgrading or declassification event', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18127 INSERT INTO `marc_subfield_structure` VALUES ('355', 'e', 'Classification system', 'Classification system', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18128 INSERT INTO `marc_subfield_structure` VALUES ('355', 'f', 'Country of origin code', 'Country of origin code', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18129 INSERT INTO `marc_subfield_structure` VALUES ('355', 'g', 'Downgrading date', 'Downgrading date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18130 INSERT INTO `marc_subfield_structure` VALUES ('355', 'h', 'Declassification date', 'Declassification date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18131 INSERT INTO `marc_subfield_structure` VALUES ('355', 'j', 'Authorization', 'Authorization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18132 INSERT INTO `marc_subfield_structure` VALUES ('357', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18133 INSERT INTO `marc_subfield_structure` VALUES ('357', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18134 INSERT INTO `marc_subfield_structure` VALUES ('357', 'a', 'Originator control term', 'Originator control term', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18135 INSERT INTO `marc_subfield_structure` VALUES ('357', 'b', 'Originating agency', 'Originating agency', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18136 INSERT INTO `marc_subfield_structure` VALUES ('357', 'c', 'Authorized recipients of material', 'Authorized recipients of material', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18137 INSERT INTO `marc_subfield_structure` VALUES ('357', 'g', 'Other restrictions', 'Other restrictions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18138 INSERT INTO `marc_subfield_structure` VALUES ('359', 'a', 'Rental price', 'Rental price', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18139 INSERT INTO `marc_subfield_structure` VALUES ('362', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18140 INSERT INTO `marc_subfield_structure` VALUES ('362', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18141 INSERT INTO `marc_subfield_structure` VALUES ('362', 'a', 'Dates of publication and/or sequential designation', 'Dates of publication and/or sequential designation', 0, 0, 'biblioitems.volumedesc', 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18142 INSERT INTO `marc_subfield_structure` VALUES ('362', 'z', 'Source of information', 'Source of information', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'VR', '', '');
18143 INSERT INTO `marc_subfield_structure` VALUES ('365', '2', 'Source of price type code', 'Source of price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18144 INSERT INTO `marc_subfield_structure` VALUES ('365', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
18145 INSERT INTO `marc_subfield_structure` VALUES ('365', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
18146 INSERT INTO `marc_subfield_structure` VALUES ('365', 'a', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18147 INSERT INTO `marc_subfield_structure` VALUES ('365', 'b', 'Price amount', 'Price amount', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18148 INSERT INTO `marc_subfield_structure` VALUES ('365', 'c', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18149 INSERT INTO `marc_subfield_structure` VALUES ('365', 'd', 'Unit of pricing', 'Unit of pricing', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18150 INSERT INTO `marc_subfield_structure` VALUES ('365', 'e', 'Price note', 'Price note', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18151 INSERT INTO `marc_subfield_structure` VALUES ('365', 'f', 'Price effective from', 'Price effective from', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18152 INSERT INTO `marc_subfield_structure` VALUES ('365', 'g', 'Price effective until', 'Price effective until', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18153 INSERT INTO `marc_subfield_structure` VALUES ('365', 'h', 'Tax rate 1', 'Tax rate 1', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18154 INSERT INTO `marc_subfield_structure` VALUES ('365', 'i', 'Tax rate 2', 'Tax rate 2', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18155 INSERT INTO `marc_subfield_structure` VALUES ('365', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18156 INSERT INTO `marc_subfield_structure` VALUES ('365', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18157 INSERT INTO `marc_subfield_structure` VALUES ('365', 'm', 'Identification of pricing entity', 'Identification of pricing entity', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18158 INSERT INTO `marc_subfield_structure` VALUES ('366', '2', 'Source of availability status code', 'Source of availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18159 INSERT INTO `marc_subfield_structure` VALUES ('366', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
18160 INSERT INTO `marc_subfield_structure` VALUES ('366', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
18161 INSERT INTO `marc_subfield_structure` VALUES ('366', 'a', 'Publishers\' compressed title identification', 'Publishers\' compressed title identification', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18162 INSERT INTO `marc_subfield_structure` VALUES ('366', 'b', 'Detailed date of publication', 'Detailed date of publication', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18163 INSERT INTO `marc_subfield_structure` VALUES ('366', 'c', 'Availability status code', 'Availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18164 INSERT INTO `marc_subfield_structure` VALUES ('366', 'd', 'Expected next availability date', 'Expected next availability date', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18165 INSERT INTO `marc_subfield_structure` VALUES ('366', 'e', 'Note', 'Note', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18166 INSERT INTO `marc_subfield_structure` VALUES ('366', 'f', 'Publishers\' discount category', 'Publishers\' discount category', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18167 INSERT INTO `marc_subfield_structure` VALUES ('366', 'g', 'Date made out of print', 'Date made out of print', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18168 INSERT INTO `marc_subfield_structure` VALUES ('366', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18169 INSERT INTO `marc_subfield_structure` VALUES ('366', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18170 INSERT INTO `marc_subfield_structure` VALUES ('366', 'm', 'Identification of agency', 'Identification of agency', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18171 INSERT INTO `marc_subfield_structure` VALUES ('400', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', 0, -6, 'VR', '', '');
18172 INSERT INTO `marc_subfield_structure` VALUES ('400', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', 0, -6, 'VR', '', '');
18173 INSERT INTO `marc_subfield_structure` VALUES ('400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', 0, -6, 'VR', '', '');
18174 INSERT INTO `marc_subfield_structure` VALUES ('400', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
18175 INSERT INTO `marc_subfield_structure` VALUES ('400', 'a', 'Personal name', 'Personal name', 0, 0, '', 4, '', '', '', 0, -6, 'VR', '', '');
18176 INSERT INTO `marc_subfield_structure` VALUES ('400', 'b', 'Numeration', 'Numeration', 0, 0, '', 4, '', '', '', 0, -6, 'VR', '', '');
18177 INSERT INTO `marc_subfield_structure` VALUES ('400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 4, '', '', '', 0, -6, 'VR', '', '');
18178 INSERT INTO `marc_subfield_structure` VALUES ('400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 4, '', '', '', 0, -6, 'VR', '', '');
18179 INSERT INTO `marc_subfield_structure` VALUES ('400', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', 0, -6, 'VR', '', '');
18180 INSERT INTO `marc_subfield_structure` VALUES ('400', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', 0, -6, 'VR', '', '');
18181 INSERT INTO `marc_subfield_structure` VALUES ('400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', 0, -6, 'VR', '', '');
18182 INSERT INTO `marc_subfield_structure` VALUES ('400', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', 0, -6, 'VR', '', '');
18183 INSERT INTO `marc_subfield_structure` VALUES ('400', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', 0, -6, 'VR', '', '');
18184 INSERT INTO `marc_subfield_structure` VALUES ('400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'VR', '', '');
18185 INSERT INTO `marc_subfield_structure` VALUES ('400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'VR', '', '');
18186 INSERT INTO `marc_subfield_structure` VALUES ('400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 4, '', '', '', 0, -6, 'VR', '', '');
18187 INSERT INTO `marc_subfield_structure` VALUES ('400', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', 0, -6, 'VR', '', '');
18188 INSERT INTO `marc_subfield_structure` VALUES ('400', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', 0, -6, 'VR', '', '');
18189 INSERT INTO `marc_subfield_structure` VALUES ('400', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18190 INSERT INTO `marc_subfield_structure` VALUES ('400', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18191 INSERT INTO `marc_subfield_structure` VALUES ('410', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18192 INSERT INTO `marc_subfield_structure` VALUES ('410', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18193 INSERT INTO `marc_subfield_structure` VALUES ('410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18194 INSERT INTO `marc_subfield_structure` VALUES ('410', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'VR', '', '');
18195 INSERT INTO `marc_subfield_structure` VALUES ('410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18196 INSERT INTO `marc_subfield_structure` VALUES ('410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18197 INSERT INTO `marc_subfield_structure` VALUES ('410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18198 INSERT INTO `marc_subfield_structure` VALUES ('410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18199 INSERT INTO `marc_subfield_structure` VALUES ('410', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18200 INSERT INTO `marc_subfield_structure` VALUES ('410', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18201 INSERT INTO `marc_subfield_structure` VALUES ('410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18202 INSERT INTO `marc_subfield_structure` VALUES ('410', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18203 INSERT INTO `marc_subfield_structure` VALUES ('410', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18204 INSERT INTO `marc_subfield_structure` VALUES ('410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18205 INSERT INTO `marc_subfield_structure` VALUES ('410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18206 INSERT INTO `marc_subfield_structure` VALUES ('410', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18207 INSERT INTO `marc_subfield_structure` VALUES ('410', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18208 INSERT INTO `marc_subfield_structure` VALUES ('410', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18209 INSERT INTO `marc_subfield_structure` VALUES ('410', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18210 INSERT INTO `marc_subfield_structure` VALUES ('411', '4', 'Relator code', 'Relator code', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'VR', '', '');
18211 INSERT INTO `marc_subfield_structure` VALUES ('411', '6', 'Linkage', 'Linkage', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'VR', '', '');
18212 INSERT INTO `marc_subfield_structure` VALUES ('411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'VR', '', '');
18213 INSERT INTO `marc_subfield_structure` VALUES ('411', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
18214 INSERT INTO `marc_subfield_structure` VALUES ('411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'VR', '', '');
18215 INSERT INTO `marc_subfield_structure` VALUES ('411', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'VR', '', '');
18216 INSERT INTO `marc_subfield_structure` VALUES ('411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'VR', '', '');
18217 INSERT INTO `marc_subfield_structure` VALUES ('411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'VR', '', '');
18218 INSERT INTO `marc_subfield_structure` VALUES ('411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'VR', '', '');
18219 INSERT INTO `marc_subfield_structure` VALUES ('411', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'VR', '', '');
18220 INSERT INTO `marc_subfield_structure` VALUES ('411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'VR', '', '');
18221 INSERT INTO `marc_subfield_structure` VALUES ('411', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'VR', '', '');
18222 INSERT INTO `marc_subfield_structure` VALUES ('411', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'VR', '', '');
18223 INSERT INTO `marc_subfield_structure` VALUES ('411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'VR', '', '');
18224 INSERT INTO `marc_subfield_structure` VALUES ('411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'VR', '', '');
18225 INSERT INTO `marc_subfield_structure` VALUES ('411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'VR', '', '');
18226 INSERT INTO `marc_subfield_structure` VALUES ('411', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'VR', '', '');
18227 INSERT INTO `marc_subfield_structure` VALUES ('411', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'VR', '', '');
18228 INSERT INTO `marc_subfield_structure` VALUES ('411', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18229 INSERT INTO `marc_subfield_structure` VALUES ('411', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18230 INSERT INTO `marc_subfield_structure` VALUES ('440', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18231 INSERT INTO `marc_subfield_structure` VALUES ('440', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18232 INSERT INTO `marc_subfield_structure` VALUES ('440', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
18233 INSERT INTO `marc_subfield_structure` VALUES ('440', 'a', 'Title', 'Title', 0, 0, 'biblio.seriestitle', 4, '', '', '', NULL, 0, 'VR', '', '');
18234 INSERT INTO `marc_subfield_structure` VALUES ('440', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 'biblioitems.number', 4, '', '', '', NULL, 0, 'VR', '', '');
18235 INSERT INTO `marc_subfield_structure` VALUES ('440', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, 0, 'VR', '', '');
18236 INSERT INTO `marc_subfield_structure` VALUES ('440', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, 'biblioitems.volume', 4, '', '', '', NULL, 0, 'VR', '', '');
18237 INSERT INTO `marc_subfield_structure` VALUES ('440', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, 0, 'VR', '', '');
18238 INSERT INTO `marc_subfield_structure` VALUES ('490', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18239 INSERT INTO `marc_subfield_structure` VALUES ('490', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', NULL, NULL, -6, 'VR', '', '');
18240 INSERT INTO `marc_subfield_structure` VALUES ('490', 'a', 'Series statement', 'Series statement', 1, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18241 INSERT INTO `marc_subfield_structure` VALUES ('490', 'l', 'Library of Congress call number', 'Library of Congress call number', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18242 INSERT INTO `marc_subfield_structure` VALUES ('490', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 1, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18243 INSERT INTO `marc_subfield_structure` VALUES ('490', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'VR', '', '');
18244 INSERT INTO `marc_subfield_structure` VALUES ('500', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18245 INSERT INTO `marc_subfield_structure` VALUES ('500', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18246 INSERT INTO `marc_subfield_structure` VALUES ('500', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18247 INSERT INTO `marc_subfield_structure` VALUES ('500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18248 INSERT INTO `marc_subfield_structure` VALUES ('500', 'a', 'General note', 'General note', 0, 0, 'biblio.notes', 5, '', '', '', NULL, -1, 'VR', '', '');
18249 INSERT INTO `marc_subfield_structure` VALUES ('500', 'l', 'Library of Congress call number (SE) [OBSOLETE]', 'Library of Congress call number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18250 INSERT INTO `marc_subfield_structure` VALUES ('500', 'n', 'n (RLIN) [OBSOLETE]', 'n (RLIN) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18251 INSERT INTO `marc_subfield_structure` VALUES ('500', 'x', 'International Standard Serial Number (SE) [OBSOLETE]', 'International Standard Serial Number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18252 INSERT INTO `marc_subfield_structure` VALUES ('500', 'z', 'Source of note information (AM SE) [OBSOLETE]', 'Source of note information (AM SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18253 INSERT INTO `marc_subfield_structure` VALUES ('501', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18254 INSERT INTO `marc_subfield_structure` VALUES ('501', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18255 INSERT INTO `marc_subfield_structure` VALUES ('501', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18256 INSERT INTO `marc_subfield_structure` VALUES ('501', 'a', 'With note', 'With note', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18257 INSERT INTO `marc_subfield_structure` VALUES ('502', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18258 INSERT INTO `marc_subfield_structure` VALUES ('502', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18259 INSERT INTO `marc_subfield_structure` VALUES ('502', 'a', 'Dissertation note', 'Dissertation note', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18260 INSERT INTO `marc_subfield_structure` VALUES ('503', '8', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18261 INSERT INTO `marc_subfield_structure` VALUES ('503', 'a', 'Bibliographic history note', 'Bibliographic history note', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18262 INSERT INTO `marc_subfield_structure` VALUES ('504', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18263 INSERT INTO `marc_subfield_structure` VALUES ('504', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18264 INSERT INTO `marc_subfield_structure` VALUES ('504', 'a', 'Bibliography, etc', 'Bibliography, etc', 0, 0, '', 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18265 INSERT INTO `marc_subfield_structure` VALUES ('504', 'b', 'Number of references', 'Number of references', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18266 INSERT INTO `marc_subfield_structure` VALUES ('505', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18267 INSERT INTO `marc_subfield_structure` VALUES ('505', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18268 INSERT INTO `marc_subfield_structure` VALUES ('505', 'a', 'Formatted contents note', 'Formatted contents note', 0, 0, '', 5, '', '', '', NULL, -1, 'VR', '', '');
18269 INSERT INTO `marc_subfield_structure` VALUES ('505', 'g', 'Miscellaneous information', 'Miscellaneous information', 1, 0, '', 5, '', '', '', NULL, -1, 'VR', '', '');
18270 INSERT INTO `marc_subfield_structure` VALUES ('505', 'r', 'Statement of responsibility', 'Statement of responsibility', 1, 0, '', 5, '', '', '', NULL, -1, 'VR', '', '');
18271 INSERT INTO `marc_subfield_structure` VALUES ('505', 't', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -1, 'VR', '', '');
18272 INSERT INTO `marc_subfield_structure` VALUES ('505', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'VR', '', '');
18273 INSERT INTO `marc_subfield_structure` VALUES ('506', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18274 INSERT INTO `marc_subfield_structure` VALUES ('506', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18275 INSERT INTO `marc_subfield_structure` VALUES ('506', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18276 INSERT INTO `marc_subfield_structure` VALUES ('506', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18277 INSERT INTO `marc_subfield_structure` VALUES ('506', 'a', 'Terms governing access', 'Terms governing access', 0, 0, '', 5, '', '', '', NULL, -1, 'VR', '', '');
18278 INSERT INTO `marc_subfield_structure` VALUES ('506', 'b', 'Jurisdiction', 'Jurisdiction', 1, 0, '', 5, '', '', '', NULL, -1, 'VR', '', '');
18279 INSERT INTO `marc_subfield_structure` VALUES ('506', 'c', 'Physical access provisions', 'Physical access provisions', 1, 0, '', 5, '', '', '', NULL, -1, 'VR', '', '');
18280 INSERT INTO `marc_subfield_structure` VALUES ('506', 'd', 'Authorized users', 'Authorized users', 1, 0, '', 5, '', '', '', NULL, -1, 'VR', '', '');
18281 INSERT INTO `marc_subfield_structure` VALUES ('506', 'e', 'Authorization', 'Authorization', 1, 0, '', 5, '', '', '', NULL, -1, 'VR', '', '');
18282 INSERT INTO `marc_subfield_structure` VALUES ('506', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'VR', '', '');
18283 INSERT INTO `marc_subfield_structure` VALUES ('507', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18284 INSERT INTO `marc_subfield_structure` VALUES ('507', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18285 INSERT INTO `marc_subfield_structure` VALUES ('507', 'a', 'Representative fraction of scale note', 'Representative fraction of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18286 INSERT INTO `marc_subfield_structure` VALUES ('507', 'b', 'Remainder of scale note', 'Remainder of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18287 INSERT INTO `marc_subfield_structure` VALUES ('508', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18288 INSERT INTO `marc_subfield_structure` VALUES ('508', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18289 INSERT INTO `marc_subfield_structure` VALUES ('508', 'a', 'Creation/production credits note', 'Creation/production credits note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18290 INSERT INTO `marc_subfield_structure` VALUES ('509', 'a', 'Informal Notes', 'Informal Notes', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18291 INSERT INTO `marc_subfield_structure` VALUES ('510', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18292 INSERT INTO `marc_subfield_structure` VALUES ('510', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18293 INSERT INTO `marc_subfield_structure` VALUES ('510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18294 INSERT INTO `marc_subfield_structure` VALUES ('510', 'a', 'Name of source', 'Name of source', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18295 INSERT INTO `marc_subfield_structure` VALUES ('510', 'b', 'Coverage of source', 'Coverage of source', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18296 INSERT INTO `marc_subfield_structure` VALUES ('510', 'c', 'Location within source', 'Location within source', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18297 INSERT INTO `marc_subfield_structure` VALUES ('510', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18298 INSERT INTO `marc_subfield_structure` VALUES ('511', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18299 INSERT INTO `marc_subfield_structure` VALUES ('511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18300 INSERT INTO `marc_subfield_structure` VALUES ('511', 'a', 'Participant or performer note', 'Participant or performer note', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18301 INSERT INTO `marc_subfield_structure` VALUES ('512', '6', 'Linkage', 'Linkage', 0, 0, '', -1, '', '', '', NULL, -6, 'VR', '', '');
18302 INSERT INTO `marc_subfield_structure` VALUES ('512', 'a', 'Earlier or later volumes separately cataloged note', 'Earlier or later volumes separately cataloged note', 0, 0, '', -1, '', '', '', NULL, -6, 'VR', '', '');
18303 INSERT INTO `marc_subfield_structure` VALUES ('513', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18304 INSERT INTO `marc_subfield_structure` VALUES ('513', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18305 INSERT INTO `marc_subfield_structure` VALUES ('513', 'a', 'Type of report', 'Type of report', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18306 INSERT INTO `marc_subfield_structure` VALUES ('513', 'b', 'Period covered', 'Period covered', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18307 INSERT INTO `marc_subfield_structure` VALUES ('514', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18308 INSERT INTO `marc_subfield_structure` VALUES ('514', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18309 INSERT INTO `marc_subfield_structure` VALUES ('514', 'a', 'Attribute accuracy report', 'Attribute accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18310 INSERT INTO `marc_subfield_structure` VALUES ('514', 'b', 'Attribute accuracy value', 'Attribute accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18311 INSERT INTO `marc_subfield_structure` VALUES ('514', 'c', 'Attribute accuracy explanation', 'Attribute accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18312 INSERT INTO `marc_subfield_structure` VALUES ('514', 'd', 'Logical consistency report', 'Logical consistency report', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18313 INSERT INTO `marc_subfield_structure` VALUES ('514', 'e', 'Completeness report', 'Completeness report', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18314 INSERT INTO `marc_subfield_structure` VALUES ('514', 'f', 'Horizontal position accuracy report', 'Horizontal position accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18315 INSERT INTO `marc_subfield_structure` VALUES ('514', 'g', 'Horizontal position accuracy value', 'Horizontal position accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18316 INSERT INTO `marc_subfield_structure` VALUES ('514', 'h', 'Horizontal position accuracy explanation', 'Horizontal position accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18317 INSERT INTO `marc_subfield_structure` VALUES ('514', 'i', 'Vertical positional accuracy report', 'Vertical positional accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18318 INSERT INTO `marc_subfield_structure` VALUES ('514', 'j', 'Vertical positional accuracy value', 'Vertical positional accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18319 INSERT INTO `marc_subfield_structure` VALUES ('514', 'k', 'Vertical positional accuracy explanation', 'Vertical positional accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18320 INSERT INTO `marc_subfield_structure` VALUES ('514', 'm', 'Cloud cover', 'Cloud cover', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18321 INSERT INTO `marc_subfield_structure` VALUES ('514', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'VR', '', '');
18322 INSERT INTO `marc_subfield_structure` VALUES ('514', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18323 INSERT INTO `marc_subfield_structure` VALUES ('515', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18324 INSERT INTO `marc_subfield_structure` VALUES ('515', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18325 INSERT INTO `marc_subfield_structure` VALUES ('515', 'a', 'Numbering peculiarities note', 'Numbering peculiarities note', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18326 INSERT INTO `marc_subfield_structure` VALUES ('515', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, '', -1, '', '', '', NULL, -6, 'VR', '', '');
18327 INSERT INTO `marc_subfield_structure` VALUES ('516', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18328 INSERT INTO `marc_subfield_structure` VALUES ('516', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18329 INSERT INTO `marc_subfield_structure` VALUES ('516', 'a', 'Type of computer file or data note', 'Type of computer file or data note', 0, 0, '', 5, '', '', '', NULL, -1, 'VR', '', '');
18330 INSERT INTO `marc_subfield_structure` VALUES ('517', 'a', 'Different formats', 'Different formats', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18331 INSERT INTO `marc_subfield_structure` VALUES ('517', 'b', 'Content descriptors', 'Content descriptors', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18332 INSERT INTO `marc_subfield_structure` VALUES ('517', 'c', 'Additional animation techniques', 'Additional animation techniques', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18333 INSERT INTO `marc_subfield_structure` VALUES ('518', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18334 INSERT INTO `marc_subfield_structure` VALUES ('518', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18335 INSERT INTO `marc_subfield_structure` VALUES ('518', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18336 INSERT INTO `marc_subfield_structure` VALUES ('518', 'a', 'Date/time and place of an event note', 'Date/time and place of an event note', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18337 INSERT INTO `marc_subfield_structure` VALUES ('520', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18338 INSERT INTO `marc_subfield_structure` VALUES ('520', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18339 INSERT INTO `marc_subfield_structure` VALUES ('520', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18340 INSERT INTO `marc_subfield_structure` VALUES ('520', 'a', 'Summary, etc', 'Summary, etc', 0, 0, 'biblio.abstract', 5, '', '', '', NULL, -1, 'VR', '', '');
18341 INSERT INTO `marc_subfield_structure` VALUES ('520', 'b', 'Expansion of summary note', 'Expansion of summary note', 0, 0, '', 5, '', '', '', NULL, -1, 'VR', '', '');
18342 INSERT INTO `marc_subfield_structure` VALUES ('520', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'VR', '', '');
18343 INSERT INTO `marc_subfield_structure` VALUES ('520', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18344 INSERT INTO `marc_subfield_structure` VALUES ('521', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18345 INSERT INTO `marc_subfield_structure` VALUES ('521', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18346 INSERT INTO `marc_subfield_structure` VALUES ('521', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18347 INSERT INTO `marc_subfield_structure` VALUES ('521', 'a', 'Target audience note', 'Target audience note', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'VR', '', '');
18348 INSERT INTO `marc_subfield_structure` VALUES ('521', 'b', 'Source', 'Source', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'VR', '', '');
18349 INSERT INTO `marc_subfield_structure` VALUES ('522', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18350 INSERT INTO `marc_subfield_structure` VALUES ('522', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18351 INSERT INTO `marc_subfield_structure` VALUES ('522', 'a', 'Geographic coverage note', 'Geographic coverage note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'VR', '', '');
18352 INSERT INTO `marc_subfield_structure` VALUES ('523', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18353 INSERT INTO `marc_subfield_structure` VALUES ('523', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18354 INSERT INTO `marc_subfield_structure` VALUES ('523', 'a', 'Time period of content note', 'Time period of content note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18355 INSERT INTO `marc_subfield_structure` VALUES ('524', '2', 'Source of schema used', 'Source of schema used', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18356 INSERT INTO `marc_subfield_structure` VALUES ('524', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18357 INSERT INTO `marc_subfield_structure` VALUES ('524', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18358 INSERT INTO `marc_subfield_structure` VALUES ('524', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18359 INSERT INTO `marc_subfield_structure` VALUES ('524', 'a', 'Preferred citation of described materials note', 'Preferred citation of described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18360 INSERT INTO `marc_subfield_structure` VALUES ('525', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18361 INSERT INTO `marc_subfield_structure` VALUES ('525', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18362 INSERT INTO `marc_subfield_structure` VALUES ('525', 'a', 'Supplement note', 'Supplement note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18363 INSERT INTO `marc_subfield_structure` VALUES ('525', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18364 INSERT INTO `marc_subfield_structure` VALUES ('526', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18365 INSERT INTO `marc_subfield_structure` VALUES ('526', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18366 INSERT INTO `marc_subfield_structure` VALUES ('526', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18367 INSERT INTO `marc_subfield_structure` VALUES ('526', 'a', 'Program name', 'Program name', 0, 0, '', 5, '', '', '', NULL, -1, 'VR', '', '');
18368 INSERT INTO `marc_subfield_structure` VALUES ('526', 'b', 'Interest level', 'Interest level', 0, 0, '', 5, '', '', '', NULL, -1, 'VR', '', '');
18369 INSERT INTO `marc_subfield_structure` VALUES ('526', 'c', 'Reading level', 'Reading level', 0, 0, '', 5, '', '', '', NULL, -1, 'VR', '', '');
18370 INSERT INTO `marc_subfield_structure` VALUES ('526', 'd', 'Title point value', 'Title point value', 0, 0, '', 5, '', '', '', NULL, -1, 'VR', '', '');
18371 INSERT INTO `marc_subfield_structure` VALUES ('526', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18372 INSERT INTO `marc_subfield_structure` VALUES ('526', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 5, '', '', '', NULL, 6, 'VR', '', '');
18373 INSERT INTO `marc_subfield_structure` VALUES ('526', 'z', 'Public note', 'Public note', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18374 INSERT INTO `marc_subfield_structure` VALUES ('527', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18375 INSERT INTO `marc_subfield_structure` VALUES ('527', 'a', 'Censorship note', 'Censorship note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18376 INSERT INTO `marc_subfield_structure` VALUES ('530', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18377 INSERT INTO `marc_subfield_structure` VALUES ('530', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18378 INSERT INTO `marc_subfield_structure` VALUES ('530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18379 INSERT INTO `marc_subfield_structure` VALUES ('530', 'a', 'Additional physical form available note', 'Additional physical form available note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18380 INSERT INTO `marc_subfield_structure` VALUES ('530', 'b', 'Availability source', 'Availability source', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18381 INSERT INTO `marc_subfield_structure` VALUES ('530', 'c', 'Availability conditions', 'Availability conditions', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18382 INSERT INTO `marc_subfield_structure` VALUES ('530', 'd', 'Order number', 'Order number', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18383 INSERT INTO `marc_subfield_structure` VALUES ('530', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'VR', '', '');
18384 INSERT INTO `marc_subfield_structure` VALUES ('530', 'z', 'Source of note information (AM CF VM SE) [OBSOLETE]', 'Source of note information (AM CF VM SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18385 INSERT INTO `marc_subfield_structure` VALUES ('533', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18386 INSERT INTO `marc_subfield_structure` VALUES ('533', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18387 INSERT INTO `marc_subfield_structure` VALUES ('533', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18388 INSERT INTO `marc_subfield_structure` VALUES ('533', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18389 INSERT INTO `marc_subfield_structure` VALUES ('533', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18390 INSERT INTO `marc_subfield_structure` VALUES ('533', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18391 INSERT INTO `marc_subfield_structure` VALUES ('533', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18392 INSERT INTO `marc_subfield_structure` VALUES ('533', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18393 INSERT INTO `marc_subfield_structure` VALUES ('533', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18394 INSERT INTO `marc_subfield_structure` VALUES ('533', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18395 INSERT INTO `marc_subfield_structure` VALUES ('533', 'm', 'Dates and/or sequential designation of issues reproduced', 'Dates and/or sequential designation of issues reproduced', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18396 INSERT INTO `marc_subfield_structure` VALUES ('533', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18397 INSERT INTO `marc_subfield_structure` VALUES ('534', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18398 INSERT INTO `marc_subfield_structure` VALUES ('534', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18399 INSERT INTO `marc_subfield_structure` VALUES ('534', 'a', 'Main entry of original', 'Main entry of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18400 INSERT INTO `marc_subfield_structure` VALUES ('534', 'b', 'Edition statement of original', 'Edition statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18401 INSERT INTO `marc_subfield_structure` VALUES ('534', 'c', 'Publication, distribution, etc', 'Publication, distribution, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18402 INSERT INTO `marc_subfield_structure` VALUES ('534', 'e', 'Physical description, etc', 'Physical description, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18403 INSERT INTO `marc_subfield_structure` VALUES ('534', 'f', 'Series statement of original', 'Series statement of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18404 INSERT INTO `marc_subfield_structure` VALUES ('534', 'k', 'Key title of original', 'Key title of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18405 INSERT INTO `marc_subfield_structure` VALUES ('534', 'l', 'Location of original', 'Location of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18406 INSERT INTO `marc_subfield_structure` VALUES ('534', 'm', 'Material specific details', 'Material specific details', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18407 INSERT INTO `marc_subfield_structure` VALUES ('534', 'n', 'Note about original', 'Note about original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18408 INSERT INTO `marc_subfield_structure` VALUES ('534', 'p', 'Introductory phrase', 'Introductory phrase', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18409 INSERT INTO `marc_subfield_structure` VALUES ('534', 't', 'Title statement of original', 'Title statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18410 INSERT INTO `marc_subfield_structure` VALUES ('534', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18411 INSERT INTO `marc_subfield_structure` VALUES ('534', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18412 INSERT INTO `marc_subfield_structure` VALUES ('535', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18413 INSERT INTO `marc_subfield_structure` VALUES ('535', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18414 INSERT INTO `marc_subfield_structure` VALUES ('535', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18415 INSERT INTO `marc_subfield_structure` VALUES ('535', 'a', 'Custodian', 'Custodian', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18416 INSERT INTO `marc_subfield_structure` VALUES ('535', 'b', 'Postal address', 'Postal address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18417 INSERT INTO `marc_subfield_structure` VALUES ('535', 'c', 'Country', 'Country', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18418 INSERT INTO `marc_subfield_structure` VALUES ('535', 'd', 'Telecommunications address', 'Telecommunications address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18419 INSERT INTO `marc_subfield_structure` VALUES ('535', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18420 INSERT INTO `marc_subfield_structure` VALUES ('536', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18421 INSERT INTO `marc_subfield_structure` VALUES ('536', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18422 INSERT INTO `marc_subfield_structure` VALUES ('536', 'a', 'Text of note', 'Text of note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18423 INSERT INTO `marc_subfield_structure` VALUES ('536', 'b', 'Contract number', 'Contract number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18424 INSERT INTO `marc_subfield_structure` VALUES ('536', 'c', 'Grant number', 'Grant number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18425 INSERT INTO `marc_subfield_structure` VALUES ('536', 'd', 'Undifferentiated number', 'Undifferentiated number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18426 INSERT INTO `marc_subfield_structure` VALUES ('536', 'e', 'Program element number', 'Program element number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18427 INSERT INTO `marc_subfield_structure` VALUES ('536', 'f', 'Project number', 'Project number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18428 INSERT INTO `marc_subfield_structure` VALUES ('536', 'g', 'Task number', 'Task number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18429 INSERT INTO `marc_subfield_structure` VALUES ('536', 'h', 'Work unit number', 'Work unit number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18430 INSERT INTO `marc_subfield_structure` VALUES ('537', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18431 INSERT INTO `marc_subfield_structure` VALUES ('537', 'a', 'Source of data note', 'Source of data note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18432 INSERT INTO `marc_subfield_structure` VALUES ('538', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18433 INSERT INTO `marc_subfield_structure` VALUES ('538', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18434 INSERT INTO `marc_subfield_structure` VALUES ('538', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18435 INSERT INTO `marc_subfield_structure` VALUES ('538', 'a', 'System details note', 'System details note', 0, 0, '', 5, '', '', '', NULL, -1, 'VR', '', '');
18436 INSERT INTO `marc_subfield_structure` VALUES ('538', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -1, 'VR', '', '');
18437 INSERT INTO `marc_subfield_structure` VALUES ('538', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'VR', '', '');
18438 INSERT INTO `marc_subfield_structure` VALUES ('540', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18439 INSERT INTO `marc_subfield_structure` VALUES ('540', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18440 INSERT INTO `marc_subfield_structure` VALUES ('540', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18441 INSERT INTO `marc_subfield_structure` VALUES ('540', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18442 INSERT INTO `marc_subfield_structure` VALUES ('540', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18443 INSERT INTO `marc_subfield_structure` VALUES ('540', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18444 INSERT INTO `marc_subfield_structure` VALUES ('540', 'c', 'Authorization', 'Authorization', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18445 INSERT INTO `marc_subfield_structure` VALUES ('540', 'd', 'Authorized users', 'Authorized users', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18446 INSERT INTO `marc_subfield_structure` VALUES ('540', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'VR', '', '');
18447 INSERT INTO `marc_subfield_structure` VALUES ('541', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
18448 INSERT INTO `marc_subfield_structure` VALUES ('541', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
18449 INSERT INTO `marc_subfield_structure` VALUES ('541', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
18450 INSERT INTO `marc_subfield_structure` VALUES ('541', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
18451 INSERT INTO `marc_subfield_structure` VALUES ('541', 'a', 'Source of acquisition', 'Source of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'VR', '', '');
18452 INSERT INTO `marc_subfield_structure` VALUES ('541', 'b', 'Address', 'Address', 0, 0, '', 9, '', '', '', NULL, 1, 'VR', '', '');
18453 INSERT INTO `marc_subfield_structure` VALUES ('541', 'c', 'Method of acquisition', 'Method of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'VR', '', '');
18454 INSERT INTO `marc_subfield_structure` VALUES ('541', 'd', 'Date of acquisition', 'Date of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'VR', '', '');
18455 INSERT INTO `marc_subfield_structure` VALUES ('541', 'e', 'Accession number', 'Accession number', 0, 0, '', 9, '', '', '', NULL, 1, 'VR', '', '');
18456 INSERT INTO `marc_subfield_structure` VALUES ('541', 'f', 'Owner', 'Owner', 0, 0, '', 9, '', '', '', NULL, 1, 'VR', '', '');
18457 INSERT INTO `marc_subfield_structure` VALUES ('541', 'h', 'Purchase price', 'Purchase price', 0, 0, '', 9, '', '', '', NULL, 1, 'VR', '', '');
18458 INSERT INTO `marc_subfield_structure` VALUES ('541', 'n', 'Extent', 'Extent', 0, 0, '', 9, '', '', '', NULL, 1, 'VR', '', '');
18459 INSERT INTO `marc_subfield_structure` VALUES ('541', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, 1, 'VR', '', '');
18460 INSERT INTO `marc_subfield_structure` VALUES ('543', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18461 INSERT INTO `marc_subfield_structure` VALUES ('543', 'a', 'Solicitation information note', 'Solicitation information note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18462 INSERT INTO `marc_subfield_structure` VALUES ('544', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18463 INSERT INTO `marc_subfield_structure` VALUES ('544', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18464 INSERT INTO `marc_subfield_structure` VALUES ('544', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18465 INSERT INTO `marc_subfield_structure` VALUES ('544', 'a', 'Custodian', 'Custodian', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18466 INSERT INTO `marc_subfield_structure` VALUES ('544', 'b', 'Address', 'Address', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18467 INSERT INTO `marc_subfield_structure` VALUES ('544', 'c', 'Country', 'Country', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18468 INSERT INTO `marc_subfield_structure` VALUES ('544', 'd', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18469 INSERT INTO `marc_subfield_structure` VALUES ('544', 'e', 'Provenance', 'Provenance', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18470 INSERT INTO `marc_subfield_structure` VALUES ('544', 'n', 'Note', 'Note', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18471 INSERT INTO `marc_subfield_structure` VALUES ('545', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18472 INSERT INTO `marc_subfield_structure` VALUES ('545', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18473 INSERT INTO `marc_subfield_structure` VALUES ('545', 'a', 'Biographical or historical note', 'Biographical or historical note', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18474 INSERT INTO `marc_subfield_structure` VALUES ('545', 'b', 'Expansion', 'Expansion', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18475 INSERT INTO `marc_subfield_structure` VALUES ('545', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'VR', '', '');
18476 INSERT INTO `marc_subfield_structure` VALUES ('546', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18477 INSERT INTO `marc_subfield_structure` VALUES ('546', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18478 INSERT INTO `marc_subfield_structure` VALUES ('546', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18479 INSERT INTO `marc_subfield_structure` VALUES ('546', 'a', 'Language note', 'Language note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'VR', '', '');
18480 INSERT INTO `marc_subfield_structure` VALUES ('546', 'b', 'Information code or alphabet', 'Information code or alphabet', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'VR', '', '');
18481 INSERT INTO `marc_subfield_structure` VALUES ('546', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18482 INSERT INTO `marc_subfield_structure` VALUES ('547', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18483 INSERT INTO `marc_subfield_structure` VALUES ('547', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18484 INSERT INTO `marc_subfield_structure` VALUES ('547', 'a', 'Former title complexity note', 'Former title complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18485 INSERT INTO `marc_subfield_structure` VALUES ('547', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18486 INSERT INTO `marc_subfield_structure` VALUES ('550', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18487 INSERT INTO `marc_subfield_structure` VALUES ('550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18488 INSERT INTO `marc_subfield_structure` VALUES ('550', 'a', 'Issuing body note', 'Issuing body note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18489 INSERT INTO `marc_subfield_structure` VALUES ('550', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18490 INSERT INTO `marc_subfield_structure` VALUES ('552', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18491 INSERT INTO `marc_subfield_structure` VALUES ('552', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18492 INSERT INTO `marc_subfield_structure` VALUES ('552', 'a', 'Entity type label', 'Entity type label', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18493 INSERT INTO `marc_subfield_structure` VALUES ('552', 'b', 'Entity type definition and source', 'Entity type definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18494 INSERT INTO `marc_subfield_structure` VALUES ('552', 'c', 'Attribute label', 'Attribute label', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18495 INSERT INTO `marc_subfield_structure` VALUES ('552', 'd', 'Attribute definition and source', 'Attribute definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18496 INSERT INTO `marc_subfield_structure` VALUES ('552', 'e', 'Enumerated domain value', 'Enumerated domain value', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18497 INSERT INTO `marc_subfield_structure` VALUES ('552', 'f', 'Enumerated domain value definition and source', 'Enumerated domain value definition and source', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18498 INSERT INTO `marc_subfield_structure` VALUES ('552', 'g', 'Range domain minimum and maximum', 'Range domain minimum and maximum', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18499 INSERT INTO `marc_subfield_structure` VALUES ('552', 'h', 'Codeset name and source', 'Codeset name and source', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18500 INSERT INTO `marc_subfield_structure` VALUES ('552', 'i', 'Unrepresentable domain', 'Unrepresentable domain', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18501 INSERT INTO `marc_subfield_structure` VALUES ('552', 'j', 'Attribute units of measurement and resolution', 'Attribute units of measurement and resolution', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18502 INSERT INTO `marc_subfield_structure` VALUES ('552', 'k', 'Beginning date and ending date of attribute values', 'Beginning date and ending date of attribute values', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18503 INSERT INTO `marc_subfield_structure` VALUES ('552', 'l', 'Attribute value accuracy', 'Attribute value accuracy', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18504 INSERT INTO `marc_subfield_structure` VALUES ('552', 'm', 'Attribute value accuracy explanation', 'Attribute value accuracy explanation', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18505 INSERT INTO `marc_subfield_structure` VALUES ('552', 'n', 'Attribute measurement frequency', 'Attribute measurement frequency', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18506 INSERT INTO `marc_subfield_structure` VALUES ('552', 'o', 'Entity and attribute overview', 'Entity and attribute overview', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18507 INSERT INTO `marc_subfield_structure` VALUES ('552', 'p', 'Entity and attribute detail citation', 'Entity and attribute detail citation', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18508 INSERT INTO `marc_subfield_structure` VALUES ('552', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'VR', '', '');
18509 INSERT INTO `marc_subfield_structure` VALUES ('552', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18510 INSERT INTO `marc_subfield_structure` VALUES ('555', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18511 INSERT INTO `marc_subfield_structure` VALUES ('555', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18512 INSERT INTO `marc_subfield_structure` VALUES ('555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18513 INSERT INTO `marc_subfield_structure` VALUES ('555', 'a', 'Cumulative index/finding aids note', 'Cumulative index/finding aids note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18514 INSERT INTO `marc_subfield_structure` VALUES ('555', 'b', 'Availability source', 'Availability source', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18515 INSERT INTO `marc_subfield_structure` VALUES ('555', 'c', 'Degree of control', 'Degree of control', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18516 INSERT INTO `marc_subfield_structure` VALUES ('555', 'd', 'Bibliographic reference', 'Bibliographic reference', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18517 INSERT INTO `marc_subfield_structure` VALUES ('555', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'VR', '', '');
18518 INSERT INTO `marc_subfield_structure` VALUES ('556', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18519 INSERT INTO `marc_subfield_structure` VALUES ('556', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18520 INSERT INTO `marc_subfield_structure` VALUES ('556', 'a', 'Information about documentation note', 'Information about documentation note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18521 INSERT INTO `marc_subfield_structure` VALUES ('556', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18522 INSERT INTO `marc_subfield_structure` VALUES ('561', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18523 INSERT INTO `marc_subfield_structure` VALUES ('561', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18524 INSERT INTO `marc_subfield_structure` VALUES ('561', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18525 INSERT INTO `marc_subfield_structure` VALUES ('561', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18526 INSERT INTO `marc_subfield_structure` VALUES ('561', 'a', 'History', 'History', 0, 0, '', 5, '', '', '', NULL, 6, 'VR', '', '');
18527 INSERT INTO `marc_subfield_structure` VALUES ('561', 'b', 'Time of collation [OBSOLETE]', 'Time of collation [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, 6, 'VR', '', '');
18528 INSERT INTO `marc_subfield_structure` VALUES ('562', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18529 INSERT INTO `marc_subfield_structure` VALUES ('562', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'VR', '', '');
18530 INSERT INTO `marc_subfield_structure` VALUES ('562', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18531 INSERT INTO `marc_subfield_structure` VALUES ('562', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18532 INSERT INTO `marc_subfield_structure` VALUES ('562', 'a', 'Identifying markings', 'Identifying markings', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18533 INSERT INTO `marc_subfield_structure` VALUES ('562', 'b', 'Copy identification', 'Copy identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18534 INSERT INTO `marc_subfield_structure` VALUES ('562', 'c', 'Version identification', 'Version identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18535 INSERT INTO `marc_subfield_structure` VALUES ('562', 'd', 'Presentation format', 'Presentation format', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18536 INSERT INTO `marc_subfield_structure` VALUES ('562', 'e', 'Number of copies', 'Number of copies', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18537 INSERT INTO `marc_subfield_structure` VALUES ('563', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18538 INSERT INTO `marc_subfield_structure` VALUES ('563', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'VR', '', '');
18539 INSERT INTO `marc_subfield_structure` VALUES ('563', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18540 INSERT INTO `marc_subfield_structure` VALUES ('563', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18541 INSERT INTO `marc_subfield_structure` VALUES ('563', 'a', 'Binding note', 'Binding note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18542 INSERT INTO `marc_subfield_structure` VALUES ('563', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'VR', '', '');
18543 INSERT INTO `marc_subfield_structure` VALUES ('565', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18544 INSERT INTO `marc_subfield_structure` VALUES ('565', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18545 INSERT INTO `marc_subfield_structure` VALUES ('565', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18546 INSERT INTO `marc_subfield_structure` VALUES ('565', 'a', 'Number of cases/variables', 'Number of cases/variables', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18547 INSERT INTO `marc_subfield_structure` VALUES ('565', 'b', 'Name of variable', 'Name of variable', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18548 INSERT INTO `marc_subfield_structure` VALUES ('565', 'c', 'Unit of analysis', 'Unit of analysis', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18549 INSERT INTO `marc_subfield_structure` VALUES ('565', 'd', 'Universe of data', 'Universe of data', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18550 INSERT INTO `marc_subfield_structure` VALUES ('565', 'e', 'Filing scheme or code', 'Filing scheme or code', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18551 INSERT INTO `marc_subfield_structure` VALUES ('567', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18552 INSERT INTO `marc_subfield_structure` VALUES ('567', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18553 INSERT INTO `marc_subfield_structure` VALUES ('567', 'a', 'Methodology note', 'Methodology note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18554 INSERT INTO `marc_subfield_structure` VALUES ('570', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18555 INSERT INTO `marc_subfield_structure` VALUES ('570', 'a', 'Editor note', 'Editor note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18556 INSERT INTO `marc_subfield_structure` VALUES ('570', 'z', 'Source of note information', 'Source of note information', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18557 INSERT INTO `marc_subfield_structure` VALUES ('580', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18558 INSERT INTO `marc_subfield_structure` VALUES ('580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18559 INSERT INTO `marc_subfield_structure` VALUES ('580', 'a', 'Linking entry complexity note', 'Linking entry complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18560 INSERT INTO `marc_subfield_structure` VALUES ('580', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18561 INSERT INTO `marc_subfield_structure` VALUES ('581', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18562 INSERT INTO `marc_subfield_structure` VALUES ('581', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18563 INSERT INTO `marc_subfield_structure` VALUES ('581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18564 INSERT INTO `marc_subfield_structure` VALUES ('581', 'a', 'Publications about described materials note', 'Publications about described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18565 INSERT INTO `marc_subfield_structure` VALUES ('581', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18566 INSERT INTO `marc_subfield_structure` VALUES ('582', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18567 INSERT INTO `marc_subfield_structure` VALUES ('582', 'a', 'Related computer files note', 'Related computer files note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18568 INSERT INTO `marc_subfield_structure` VALUES ('583', '2', 'Source of term', 'Source of term', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
18569 INSERT INTO `marc_subfield_structure` VALUES ('583', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
18570 INSERT INTO `marc_subfield_structure` VALUES ('583', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
18571 INSERT INTO `marc_subfield_structure` VALUES ('583', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
18572 INSERT INTO `marc_subfield_structure` VALUES ('583', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
18573 INSERT INTO `marc_subfield_structure` VALUES ('583', 'a', 'Action', 'Action', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18574 INSERT INTO `marc_subfield_structure` VALUES ('583', 'b', 'Action identification', 'Action identification', 1, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18575 INSERT INTO `marc_subfield_structure` VALUES ('583', 'c', 'Time/date of action', 'Time/date of action', 1, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18576 INSERT INTO `marc_subfield_structure` VALUES ('583', 'd', 'Action interval', 'Action interval', 1, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18577 INSERT INTO `marc_subfield_structure` VALUES ('583', 'e', 'Contingency for action', 'Contingency for action', 1, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18578 INSERT INTO `marc_subfield_structure` VALUES ('583', 'f', 'Authorization', 'Authorization', 1, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18579 INSERT INTO `marc_subfield_structure` VALUES ('583', 'h', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18580 INSERT INTO `marc_subfield_structure` VALUES ('583', 'i', 'Method of action', 'Method of action', 1, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18581 INSERT INTO `marc_subfield_structure` VALUES ('583', 'j', 'Site of action', 'Site of action', 1, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18582 INSERT INTO `marc_subfield_structure` VALUES ('583', 'k', 'Action agent', 'Action agent', 1, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18583 INSERT INTO `marc_subfield_structure` VALUES ('583', 'l', 'Status', 'Status', 1, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18584 INSERT INTO `marc_subfield_structure` VALUES ('583', 'n', 'Extent', 'Extent', 1, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18585 INSERT INTO `marc_subfield_structure` VALUES ('583', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18586 INSERT INTO `marc_subfield_structure` VALUES ('583', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -1, 'VR', '', '');
18587 INSERT INTO `marc_subfield_structure` VALUES ('583', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', NULL, 4, 'VR', '', '');
18588 INSERT INTO `marc_subfield_structure` VALUES ('583', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', NULL, -1, 'VR', '', '');
18589 INSERT INTO `marc_subfield_structure` VALUES ('584', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
18590 INSERT INTO `marc_subfield_structure` VALUES ('584', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18591 INSERT INTO `marc_subfield_structure` VALUES ('584', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18592 INSERT INTO `marc_subfield_structure` VALUES ('584', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18593 INSERT INTO `marc_subfield_structure` VALUES ('584', 'a', 'Accumulation', 'Accumulation', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18594 INSERT INTO `marc_subfield_structure` VALUES ('584', 'b', 'Frequency of use', 'Frequency of use', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18595 INSERT INTO `marc_subfield_structure` VALUES ('585', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18596 INSERT INTO `marc_subfield_structure` VALUES ('585', '5', 'Institution to which field applies', 'Institution to which field applies', 0, -6, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18597 INSERT INTO `marc_subfield_structure` VALUES ('585', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18598 INSERT INTO `marc_subfield_structure` VALUES ('585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18599 INSERT INTO `marc_subfield_structure` VALUES ('585', 'a', 'Exhibitions note', 'Exhibitions note', 0, 0, '', 5, '', '', '', NULL, -6, 'VR', '', '');
18600 INSERT INTO `marc_subfield_structure` VALUES ('586', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18601 INSERT INTO `marc_subfield_structure` VALUES ('586', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18602 INSERT INTO `marc_subfield_structure` VALUES ('586', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18603 INSERT INTO `marc_subfield_structure` VALUES ('586', 'a', 'Awards note', 'Awards note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'VR', '', '');
18604 INSERT INTO `marc_subfield_structure` VALUES ('590', '6', 'Linkage (RLIN)', 'Linkage (RLIN)', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18605 INSERT INTO `marc_subfield_structure` VALUES ('590', '8', 'Field link and sequence number (RLIN)', 'Field link and sequence number (RLIN)', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18606 INSERT INTO `marc_subfield_structure` VALUES ('590', 'a', 'Local note', 'Local note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18607 INSERT INTO `marc_subfield_structure` VALUES ('590', 'b', 'Provenance (VM) [OBSOLETE]', 'Provenance (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18608 INSERT INTO `marc_subfield_structure` VALUES ('590', 'c', 'Condition of individual reels (VM) [OBSOLETE]', 'Condition of individual reels (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18609 INSERT INTO `marc_subfield_structure` VALUES ('590', 'd', 'Origin of safety copy (VM) [OBSOLETE]', 'Origin of safety copy (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'VR', '', '');
18610 INSERT INTO `marc_subfield_structure` VALUES ('600', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18611 INSERT INTO `marc_subfield_structure` VALUES ('600', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18612 INSERT INTO `marc_subfield_structure` VALUES ('600', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18613 INSERT INTO `marc_subfield_structure` VALUES ('600', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18614 INSERT INTO `marc_subfield_structure` VALUES ('600', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18615 INSERT INTO `marc_subfield_structure` VALUES ('600', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
18616 INSERT INTO `marc_subfield_structure` VALUES ('600', 'a', 'Personal name', 'Personal name', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18617 INSERT INTO `marc_subfield_structure` VALUES ('600', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18618 INSERT INTO `marc_subfield_structure` VALUES ('600', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18619 INSERT INTO `marc_subfield_structure` VALUES ('600', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18620 INSERT INTO `marc_subfield_structure` VALUES ('600', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18621 INSERT INTO `marc_subfield_structure` VALUES ('600', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18622 INSERT INTO `marc_subfield_structure` VALUES ('600', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18623 INSERT INTO `marc_subfield_structure` VALUES ('600', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18624 INSERT INTO `marc_subfield_structure` VALUES ('600', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18625 INSERT INTO `marc_subfield_structure` VALUES ('600', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18626 INSERT INTO `marc_subfield_structure` VALUES ('600', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18627 INSERT INTO `marc_subfield_structure` VALUES ('600', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18628 INSERT INTO `marc_subfield_structure` VALUES ('600', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18629 INSERT INTO `marc_subfield_structure` VALUES ('600', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18630 INSERT INTO `marc_subfield_structure` VALUES ('600', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18631 INSERT INTO `marc_subfield_structure` VALUES ('600', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18632 INSERT INTO `marc_subfield_structure` VALUES ('600', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18633 INSERT INTO `marc_subfield_structure` VALUES ('600', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18634 INSERT INTO `marc_subfield_structure` VALUES ('600', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18635 INSERT INTO `marc_subfield_structure` VALUES ('600', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18636 INSERT INTO `marc_subfield_structure` VALUES ('600', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18637 INSERT INTO `marc_subfield_structure` VALUES ('600', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18638 INSERT INTO `marc_subfield_structure` VALUES ('600', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18639 INSERT INTO `marc_subfield_structure` VALUES ('600', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18640 INSERT INTO `marc_subfield_structure` VALUES ('610', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18641 INSERT INTO `marc_subfield_structure` VALUES ('610', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18642 INSERT INTO `marc_subfield_structure` VALUES ('610', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18643 INSERT INTO `marc_subfield_structure` VALUES ('610', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18644 INSERT INTO `marc_subfield_structure` VALUES ('610', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18645 INSERT INTO `marc_subfield_structure` VALUES ('610', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
18646 INSERT INTO `marc_subfield_structure` VALUES ('610', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18647 INSERT INTO `marc_subfield_structure` VALUES ('610', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18648 INSERT INTO `marc_subfield_structure` VALUES ('610', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18649 INSERT INTO `marc_subfield_structure` VALUES ('610', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18650 INSERT INTO `marc_subfield_structure` VALUES ('610', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18651 INSERT INTO `marc_subfield_structure` VALUES ('610', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18652 INSERT INTO `marc_subfield_structure` VALUES ('610', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18653 INSERT INTO `marc_subfield_structure` VALUES ('610', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18654 INSERT INTO `marc_subfield_structure` VALUES ('610', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18655 INSERT INTO `marc_subfield_structure` VALUES ('610', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18656 INSERT INTO `marc_subfield_structure` VALUES ('610', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18657 INSERT INTO `marc_subfield_structure` VALUES ('610', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18658 INSERT INTO `marc_subfield_structure` VALUES ('610', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18659 INSERT INTO `marc_subfield_structure` VALUES ('610', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18660 INSERT INTO `marc_subfield_structure` VALUES ('610', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18661 INSERT INTO `marc_subfield_structure` VALUES ('610', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18662 INSERT INTO `marc_subfield_structure` VALUES ('610', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18663 INSERT INTO `marc_subfield_structure` VALUES ('610', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18664 INSERT INTO `marc_subfield_structure` VALUES ('610', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18665 INSERT INTO `marc_subfield_structure` VALUES ('610', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18666 INSERT INTO `marc_subfield_structure` VALUES ('610', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18667 INSERT INTO `marc_subfield_structure` VALUES ('610', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18668 INSERT INTO `marc_subfield_structure` VALUES ('611', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18669 INSERT INTO `marc_subfield_structure` VALUES ('611', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18670 INSERT INTO `marc_subfield_structure` VALUES ('611', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18671 INSERT INTO `marc_subfield_structure` VALUES ('611', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18672 INSERT INTO `marc_subfield_structure` VALUES ('611', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18673 INSERT INTO `marc_subfield_structure` VALUES ('611', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
18674 INSERT INTO `marc_subfield_structure` VALUES ('611', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18675 INSERT INTO `marc_subfield_structure` VALUES ('611', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'VR', '', '');
18676 INSERT INTO `marc_subfield_structure` VALUES ('611', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18677 INSERT INTO `marc_subfield_structure` VALUES ('611', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18678 INSERT INTO `marc_subfield_structure` VALUES ('611', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18679 INSERT INTO `marc_subfield_structure` VALUES ('611', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18680 INSERT INTO `marc_subfield_structure` VALUES ('611', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18681 INSERT INTO `marc_subfield_structure` VALUES ('611', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18682 INSERT INTO `marc_subfield_structure` VALUES ('611', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18683 INSERT INTO `marc_subfield_structure` VALUES ('611', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18684 INSERT INTO `marc_subfield_structure` VALUES ('611', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18685 INSERT INTO `marc_subfield_structure` VALUES ('611', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18686 INSERT INTO `marc_subfield_structure` VALUES ('611', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18687 INSERT INTO `marc_subfield_structure` VALUES ('611', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18688 INSERT INTO `marc_subfield_structure` VALUES ('611', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18689 INSERT INTO `marc_subfield_structure` VALUES ('611', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18690 INSERT INTO `marc_subfield_structure` VALUES ('611', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18691 INSERT INTO `marc_subfield_structure` VALUES ('611', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18692 INSERT INTO `marc_subfield_structure` VALUES ('611', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18693 INSERT INTO `marc_subfield_structure` VALUES ('611', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18694 INSERT INTO `marc_subfield_structure` VALUES ('630', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18695 INSERT INTO `marc_subfield_structure` VALUES ('630', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18696 INSERT INTO `marc_subfield_structure` VALUES ('630', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18697 INSERT INTO `marc_subfield_structure` VALUES ('630', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18698 INSERT INTO `marc_subfield_structure` VALUES ('630', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18699 INSERT INTO `marc_subfield_structure` VALUES ('630', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
18700 INSERT INTO `marc_subfield_structure` VALUES ('630', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18701 INSERT INTO `marc_subfield_structure` VALUES ('630', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18702 INSERT INTO `marc_subfield_structure` VALUES ('630', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18703 INSERT INTO `marc_subfield_structure` VALUES ('630', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18704 INSERT INTO `marc_subfield_structure` VALUES ('630', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18705 INSERT INTO `marc_subfield_structure` VALUES ('630', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18706 INSERT INTO `marc_subfield_structure` VALUES ('630', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18707 INSERT INTO `marc_subfield_structure` VALUES ('630', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18708 INSERT INTO `marc_subfield_structure` VALUES ('630', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18709 INSERT INTO `marc_subfield_structure` VALUES ('630', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18710 INSERT INTO `marc_subfield_structure` VALUES ('630', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18711 INSERT INTO `marc_subfield_structure` VALUES ('630', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18712 INSERT INTO `marc_subfield_structure` VALUES ('630', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18713 INSERT INTO `marc_subfield_structure` VALUES ('630', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18714 INSERT INTO `marc_subfield_structure` VALUES ('630', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18715 INSERT INTO `marc_subfield_structure` VALUES ('630', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18716 INSERT INTO `marc_subfield_structure` VALUES ('630', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18717 INSERT INTO `marc_subfield_structure` VALUES ('630', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18718 INSERT INTO `marc_subfield_structure` VALUES ('630', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18719 INSERT INTO `marc_subfield_structure` VALUES ('648', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18720 INSERT INTO `marc_subfield_structure` VALUES ('648', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18721 INSERT INTO `marc_subfield_structure` VALUES ('648', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18722 INSERT INTO `marc_subfield_structure` VALUES ('648', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18723 INSERT INTO `marc_subfield_structure` VALUES ('648', 'a', 'Chronological term', 'Chronological term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18724 INSERT INTO `marc_subfield_structure` VALUES ('648', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18725 INSERT INTO `marc_subfield_structure` VALUES ('648', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18726 INSERT INTO `marc_subfield_structure` VALUES ('648', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18727 INSERT INTO `marc_subfield_structure` VALUES ('648', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18728 INSERT INTO `marc_subfield_structure` VALUES ('650', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, 0, 'VR', '', '');
18729 INSERT INTO `marc_subfield_structure` VALUES ('650', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'VR', '', '');
18730 INSERT INTO `marc_subfield_structure` VALUES ('650', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18731 INSERT INTO `marc_subfield_structure` VALUES ('650', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'VR', '', '');
18732 INSERT INTO `marc_subfield_structure` VALUES ('650', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'VR', '', '');
18733 INSERT INTO `marc_subfield_structure` VALUES ('650', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
18734 INSERT INTO `marc_subfield_structure` VALUES ('650', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 'bibliosubject.subject', 6, '', '', '', 0, 0, 'VR', '''6003'',''600a'',''600b'',''600c'',''600d'',''600e'',''600f'',''600g'',''600h'',''600k'',''600l'',''600m'',''600n'',''600o'',''600p'',''600r'',''600s'',''600t'',''600u'',''600x'',''600z'',''600y'',''600v'',''6103'',''610a'',''610b'',''610c'',''610d'',''610e'',''610f'',''610g'',''610h'',''610k'',''610l'',''610m'',''610n'',''610o'',''610p'',''610r'',''610s'',''610t'',''610u'',''610x'',''610z'',''610y'',''610v'',''6113'',''611a'',''611b'',''611c'',''611d'',''611e'',''611f'',''611g'',''611h'',''611k'',''611l'',''611m'',''611n'',''611o'',''611p'',''611r'',''611s'',''611t'',''611u'',''611x'',''611z'',''611y'',''611v'',''630a'',''630b'',''630c'',''630d'',''630e'',''630f'',''630g'',''630h'',''630k'',''630l'',''630m'',''630n'',''630o'',''630p'',''630r'',''630s'',''630t'',''630x'',''630z'',''630y'',''630v'',''6483'',''648a'',''648x'',''648z'',''648y'',''648v'',''6503'',''650b'',''650c'',''650d'',''650e'',''650x'',''650z'',''650y'',''650v'',''6513'',''651a'',''651b'',''651c'',''651d'',''651e'',''651x'',''651z'',''651y'',''651v'',''653a'',''6543'',''654a'',''654b'',''654x'',''654z'',''654y'',''654v'',''6553'',''655a'',''655b'',''655x'',''655z'',''655y'',''655v'',''6563'',''656a'',''656k'',''656x'',''656z'',''656y'',''656v'',''6573'',''657a'',''657x'',''657z'',''657y'',''657v'',''658a'',''658b'',''658c'',''658d'',''658v''', '');
18735 INSERT INTO `marc_subfield_structure` VALUES ('650', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'VR', '', '');
18736 INSERT INTO `marc_subfield_structure` VALUES ('650', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'VR', '', '');
18737 INSERT INTO `marc_subfield_structure` VALUES ('650', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -1, 'VR', '', '');
18738 INSERT INTO `marc_subfield_structure` VALUES ('650', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -1, 'VR', '', '');
18739 INSERT INTO `marc_subfield_structure` VALUES ('650', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'VR', '', '');
18740 INSERT INTO `marc_subfield_structure` VALUES ('650', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'VR', '', '');
18741 INSERT INTO `marc_subfield_structure` VALUES ('650', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'VR', '', '');
18742 INSERT INTO `marc_subfield_structure` VALUES ('650', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'VR', '', '');
18743 INSERT INTO `marc_subfield_structure` VALUES ('651', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18744 INSERT INTO `marc_subfield_structure` VALUES ('651', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18745 INSERT INTO `marc_subfield_structure` VALUES ('651', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18746 INSERT INTO `marc_subfield_structure` VALUES ('651', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18747 INSERT INTO `marc_subfield_structure` VALUES ('651', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18748 INSERT INTO `marc_subfield_structure` VALUES ('651', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
18749 INSERT INTO `marc_subfield_structure` VALUES ('651', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18750 INSERT INTO `marc_subfield_structure` VALUES ('651', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18751 INSERT INTO `marc_subfield_structure` VALUES ('651', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18752 INSERT INTO `marc_subfield_structure` VALUES ('651', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18753 INSERT INTO `marc_subfield_structure` VALUES ('651', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18754 INSERT INTO `marc_subfield_structure` VALUES ('651', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18755 INSERT INTO `marc_subfield_structure` VALUES ('651', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18756 INSERT INTO `marc_subfield_structure` VALUES ('652', 'a', 'Geographic name of place element', 'Geographic name of place element', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18757 INSERT INTO `marc_subfield_structure` VALUES ('652', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18758 INSERT INTO `marc_subfield_structure` VALUES ('652', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18759 INSERT INTO `marc_subfield_structure` VALUES ('652', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18760 INSERT INTO `marc_subfield_structure` VALUES ('653', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18761 INSERT INTO `marc_subfield_structure` VALUES ('653', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18762 INSERT INTO `marc_subfield_structure` VALUES ('653', 'a', 'Uncontrolled term', 'Uncontrolled term', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'VR', '', '');
18763 INSERT INTO `marc_subfield_structure` VALUES ('654', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18764 INSERT INTO `marc_subfield_structure` VALUES ('654', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18765 INSERT INTO `marc_subfield_structure` VALUES ('654', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18766 INSERT INTO `marc_subfield_structure` VALUES ('654', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18767 INSERT INTO `marc_subfield_structure` VALUES ('654', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18768 INSERT INTO `marc_subfield_structure` VALUES ('654', 'a', 'Focus term', 'Focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18769 INSERT INTO `marc_subfield_structure` VALUES ('654', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18770 INSERT INTO `marc_subfield_structure` VALUES ('654', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18771 INSERT INTO `marc_subfield_structure` VALUES ('654', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18772 INSERT INTO `marc_subfield_structure` VALUES ('654', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18773 INSERT INTO `marc_subfield_structure` VALUES ('654', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18774 INSERT INTO `marc_subfield_structure` VALUES ('654', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18775 INSERT INTO `marc_subfield_structure` VALUES ('654', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18776 INSERT INTO `marc_subfield_structure` VALUES ('655', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18777 INSERT INTO `marc_subfield_structure` VALUES ('655', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18778 INSERT INTO `marc_subfield_structure` VALUES ('655', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18779 INSERT INTO `marc_subfield_structure` VALUES ('655', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18780 INSERT INTO `marc_subfield_structure` VALUES ('655', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18781 INSERT INTO `marc_subfield_structure` VALUES ('655', 'a', 'Genre/form data or focus term', 'Genre/form data or focus term', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18782 INSERT INTO `marc_subfield_structure` VALUES ('655', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18783 INSERT INTO `marc_subfield_structure` VALUES ('655', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18784 INSERT INTO `marc_subfield_structure` VALUES ('655', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18785 INSERT INTO `marc_subfield_structure` VALUES ('655', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18786 INSERT INTO `marc_subfield_structure` VALUES ('655', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18787 INSERT INTO `marc_subfield_structure` VALUES ('655', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18788 INSERT INTO `marc_subfield_structure` VALUES ('656', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18789 INSERT INTO `marc_subfield_structure` VALUES ('656', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18790 INSERT INTO `marc_subfield_structure` VALUES ('656', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18791 INSERT INTO `marc_subfield_structure` VALUES ('656', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18792 INSERT INTO `marc_subfield_structure` VALUES ('656', 'a', 'Occupation', 'Occupation', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18793 INSERT INTO `marc_subfield_structure` VALUES ('656', 'k', 'Form', 'Form', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18794 INSERT INTO `marc_subfield_structure` VALUES ('656', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18795 INSERT INTO `marc_subfield_structure` VALUES ('656', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18796 INSERT INTO `marc_subfield_structure` VALUES ('656', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18797 INSERT INTO `marc_subfield_structure` VALUES ('656', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18798 INSERT INTO `marc_subfield_structure` VALUES ('657', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18799 INSERT INTO `marc_subfield_structure` VALUES ('657', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18800 INSERT INTO `marc_subfield_structure` VALUES ('657', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18801 INSERT INTO `marc_subfield_structure` VALUES ('657', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18802 INSERT INTO `marc_subfield_structure` VALUES ('657', 'a', 'Function', 'Function', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18803 INSERT INTO `marc_subfield_structure` VALUES ('657', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18804 INSERT INTO `marc_subfield_structure` VALUES ('657', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18805 INSERT INTO `marc_subfield_structure` VALUES ('657', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18806 INSERT INTO `marc_subfield_structure` VALUES ('657', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18807 INSERT INTO `marc_subfield_structure` VALUES ('658', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18808 INSERT INTO `marc_subfield_structure` VALUES ('658', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18809 INSERT INTO `marc_subfield_structure` VALUES ('658', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18810 INSERT INTO `marc_subfield_structure` VALUES ('658', 'a', 'Main curriculum objective', 'Main curriculum objective', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18811 INSERT INTO `marc_subfield_structure` VALUES ('658', 'b', 'Subordinate curriculum objective', 'Subordinate curriculum objective', 1, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18812 INSERT INTO `marc_subfield_structure` VALUES ('658', 'c', 'Curriculum code', 'Curriculum code', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18813 INSERT INTO `marc_subfield_structure` VALUES ('658', 'd', 'Correlation factor', 'Correlation factor', 0, 0, '', 6, '', '', '', NULL, -1, 'VR', '', '');
18814 INSERT INTO `marc_subfield_structure` VALUES ('662', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18815 INSERT INTO `marc_subfield_structure` VALUES ('662', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18816 INSERT INTO `marc_subfield_structure` VALUES ('662', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18817 INSERT INTO `marc_subfield_structure` VALUES ('662', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18818 INSERT INTO `marc_subfield_structure` VALUES ('662', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18819 INSERT INTO `marc_subfield_structure` VALUES ('662', 'a', 'Country or larger entity', 'Country or larger entity', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18820 INSERT INTO `marc_subfield_structure` VALUES ('662', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18821 INSERT INTO `marc_subfield_structure` VALUES ('662', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18822 INSERT INTO `marc_subfield_structure` VALUES ('662', 'd', 'City', 'City', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18823 INSERT INTO `marc_subfield_structure` VALUES ('662', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18824 INSERT INTO `marc_subfield_structure` VALUES ('662', 'f', 'City subsection', 'City subsection', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18825 INSERT INTO `marc_subfield_structure` VALUES ('662', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18826 INSERT INTO `marc_subfield_structure` VALUES ('662', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18827 INSERT INTO `marc_subfield_structure` VALUES ('690', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'VR', '', '');
18828 INSERT INTO `marc_subfield_structure` VALUES ('690', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, -6, 'VR', '', '');
18829 INSERT INTO `marc_subfield_structure` VALUES ('690', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'VR', '', '');
18830 INSERT INTO `marc_subfield_structure` VALUES ('690', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'VR', '', '');
18831 INSERT INTO `marc_subfield_structure` VALUES ('690', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'VR', '', '');
18832 INSERT INTO `marc_subfield_structure` VALUES ('690', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
18833 INSERT INTO `marc_subfield_structure` VALUES ('690', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'VR', '', '');
18834 INSERT INTO `marc_subfield_structure` VALUES ('690', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'VR', '', '');
18835 INSERT INTO `marc_subfield_structure` VALUES ('690', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'VR', '', '');
18836 INSERT INTO `marc_subfield_structure` VALUES ('690', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -6, 'VR', '', '');
18837 INSERT INTO `marc_subfield_structure` VALUES ('690', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -6, 'VR', '', '');
18838 INSERT INTO `marc_subfield_structure` VALUES ('690', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'VR', '', '');
18839 INSERT INTO `marc_subfield_structure` VALUES ('690', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'VR', '', '');
18840 INSERT INTO `marc_subfield_structure` VALUES ('690', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'VR', '', '');
18841 INSERT INTO `marc_subfield_structure` VALUES ('690', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'VR', '', '');
18842 INSERT INTO `marc_subfield_structure` VALUES ('691', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'VR', '', '');
18843 INSERT INTO `marc_subfield_structure` VALUES ('691', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18844 INSERT INTO `marc_subfield_structure` VALUES ('691', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18845 INSERT INTO `marc_subfield_structure` VALUES ('691', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18846 INSERT INTO `marc_subfield_structure` VALUES ('691', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18847 INSERT INTO `marc_subfield_structure` VALUES ('691', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
18848 INSERT INTO `marc_subfield_structure` VALUES ('691', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18849 INSERT INTO `marc_subfield_structure` VALUES ('691', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18850 INSERT INTO `marc_subfield_structure` VALUES ('691', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18851 INSERT INTO `marc_subfield_structure` VALUES ('691', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18852 INSERT INTO `marc_subfield_structure` VALUES ('691', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18853 INSERT INTO `marc_subfield_structure` VALUES ('691', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18854 INSERT INTO `marc_subfield_structure` VALUES ('696', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'VR', '', '');
18855 INSERT INTO `marc_subfield_structure` VALUES ('696', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18856 INSERT INTO `marc_subfield_structure` VALUES ('696', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18857 INSERT INTO `marc_subfield_structure` VALUES ('696', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18858 INSERT INTO `marc_subfield_structure` VALUES ('696', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18859 INSERT INTO `marc_subfield_structure` VALUES ('696', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18860 INSERT INTO `marc_subfield_structure` VALUES ('696', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
18861 INSERT INTO `marc_subfield_structure` VALUES ('696', 'a', 'Personal name', 'Personal name', 0, 0, '', 3, '', '', '', NULL, -6, 'VR', '', '');
18862 INSERT INTO `marc_subfield_structure` VALUES ('696', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18863 INSERT INTO `marc_subfield_structure` VALUES ('696', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18864 INSERT INTO `marc_subfield_structure` VALUES ('696', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18865 INSERT INTO `marc_subfield_structure` VALUES ('696', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18866 INSERT INTO `marc_subfield_structure` VALUES ('696', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18867 INSERT INTO `marc_subfield_structure` VALUES ('696', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18868 INSERT INTO `marc_subfield_structure` VALUES ('696', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18869 INSERT INTO `marc_subfield_structure` VALUES ('696', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18870 INSERT INTO `marc_subfield_structure` VALUES ('696', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18871 INSERT INTO `marc_subfield_structure` VALUES ('696', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18872 INSERT INTO `marc_subfield_structure` VALUES ('696', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18873 INSERT INTO `marc_subfield_structure` VALUES ('696', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18874 INSERT INTO `marc_subfield_structure` VALUES ('696', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18875 INSERT INTO `marc_subfield_structure` VALUES ('696', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18876 INSERT INTO `marc_subfield_structure` VALUES ('696', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18877 INSERT INTO `marc_subfield_structure` VALUES ('696', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18878 INSERT INTO `marc_subfield_structure` VALUES ('696', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18879 INSERT INTO `marc_subfield_structure` VALUES ('696', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18880 INSERT INTO `marc_subfield_structure` VALUES ('696', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18881 INSERT INTO `marc_subfield_structure` VALUES ('696', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18882 INSERT INTO `marc_subfield_structure` VALUES ('696', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18883 INSERT INTO `marc_subfield_structure` VALUES ('696', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18884 INSERT INTO `marc_subfield_structure` VALUES ('696', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18885 INSERT INTO `marc_subfield_structure` VALUES ('697', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'VR', '', '');
18886 INSERT INTO `marc_subfield_structure` VALUES ('697', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18887 INSERT INTO `marc_subfield_structure` VALUES ('697', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18888 INSERT INTO `marc_subfield_structure` VALUES ('697', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18889 INSERT INTO `marc_subfield_structure` VALUES ('697', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18890 INSERT INTO `marc_subfield_structure` VALUES ('697', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18891 INSERT INTO `marc_subfield_structure` VALUES ('697', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
18892 INSERT INTO `marc_subfield_structure` VALUES ('697', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18893 INSERT INTO `marc_subfield_structure` VALUES ('697', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18894 INSERT INTO `marc_subfield_structure` VALUES ('697', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18895 INSERT INTO `marc_subfield_structure` VALUES ('697', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18896 INSERT INTO `marc_subfield_structure` VALUES ('697', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18897 INSERT INTO `marc_subfield_structure` VALUES ('697', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18898 INSERT INTO `marc_subfield_structure` VALUES ('697', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18899 INSERT INTO `marc_subfield_structure` VALUES ('697', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18900 INSERT INTO `marc_subfield_structure` VALUES ('697', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18901 INSERT INTO `marc_subfield_structure` VALUES ('697', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18902 INSERT INTO `marc_subfield_structure` VALUES ('697', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18903 INSERT INTO `marc_subfield_structure` VALUES ('697', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18904 INSERT INTO `marc_subfield_structure` VALUES ('697', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18905 INSERT INTO `marc_subfield_structure` VALUES ('697', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18906 INSERT INTO `marc_subfield_structure` VALUES ('697', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18907 INSERT INTO `marc_subfield_structure` VALUES ('697', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18908 INSERT INTO `marc_subfield_structure` VALUES ('697', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18909 INSERT INTO `marc_subfield_structure` VALUES ('697', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18910 INSERT INTO `marc_subfield_structure` VALUES ('697', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18911 INSERT INTO `marc_subfield_structure` VALUES ('697', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18912 INSERT INTO `marc_subfield_structure` VALUES ('697', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18913 INSERT INTO `marc_subfield_structure` VALUES ('697', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
18914 INSERT INTO `marc_subfield_structure` VALUES ('698', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'VR', '', '');
18915 INSERT INTO `marc_subfield_structure` VALUES ('698', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18916 INSERT INTO `marc_subfield_structure` VALUES ('698', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18917 INSERT INTO `marc_subfield_structure` VALUES ('698', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18918 INSERT INTO `marc_subfield_structure` VALUES ('698', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18919 INSERT INTO `marc_subfield_structure` VALUES ('698', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18920 INSERT INTO `marc_subfield_structure` VALUES ('698', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
18921 INSERT INTO `marc_subfield_structure` VALUES ('698', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18922 INSERT INTO `marc_subfield_structure` VALUES ('698', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'VR', '', '');
18923 INSERT INTO `marc_subfield_structure` VALUES ('698', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18924 INSERT INTO `marc_subfield_structure` VALUES ('698', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18925 INSERT INTO `marc_subfield_structure` VALUES ('698', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18926 INSERT INTO `marc_subfield_structure` VALUES ('698', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18927 INSERT INTO `marc_subfield_structure` VALUES ('698', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18928 INSERT INTO `marc_subfield_structure` VALUES ('698', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18929 INSERT INTO `marc_subfield_structure` VALUES ('698', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18930 INSERT INTO `marc_subfield_structure` VALUES ('698', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18931 INSERT INTO `marc_subfield_structure` VALUES ('698', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18932 INSERT INTO `marc_subfield_structure` VALUES ('698', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18933 INSERT INTO `marc_subfield_structure` VALUES ('698', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18934 INSERT INTO `marc_subfield_structure` VALUES ('698', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18935 INSERT INTO `marc_subfield_structure` VALUES ('698', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18936 INSERT INTO `marc_subfield_structure` VALUES ('698', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18937 INSERT INTO `marc_subfield_structure` VALUES ('698', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18938 INSERT INTO `marc_subfield_structure` VALUES ('698', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18939 INSERT INTO `marc_subfield_structure` VALUES ('698', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18940 INSERT INTO `marc_subfield_structure` VALUES ('698', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18941 INSERT INTO `marc_subfield_structure` VALUES ('699', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'VR', '', '');
18942 INSERT INTO `marc_subfield_structure` VALUES ('699', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18943 INSERT INTO `marc_subfield_structure` VALUES ('699', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18944 INSERT INTO `marc_subfield_structure` VALUES ('699', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18945 INSERT INTO `marc_subfield_structure` VALUES ('699', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18946 INSERT INTO `marc_subfield_structure` VALUES ('699', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'VR', '', '');
18947 INSERT INTO `marc_subfield_structure` VALUES ('699', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18948 INSERT INTO `marc_subfield_structure` VALUES ('699', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18949 INSERT INTO `marc_subfield_structure` VALUES ('699', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18950 INSERT INTO `marc_subfield_structure` VALUES ('699', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18951 INSERT INTO `marc_subfield_structure` VALUES ('699', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18952 INSERT INTO `marc_subfield_structure` VALUES ('699', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18953 INSERT INTO `marc_subfield_structure` VALUES ('699', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18954 INSERT INTO `marc_subfield_structure` VALUES ('699', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18955 INSERT INTO `marc_subfield_structure` VALUES ('699', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18956 INSERT INTO `marc_subfield_structure` VALUES ('699', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18957 INSERT INTO `marc_subfield_structure` VALUES ('699', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18958 INSERT INTO `marc_subfield_structure` VALUES ('699', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18959 INSERT INTO `marc_subfield_structure` VALUES ('699', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18960 INSERT INTO `marc_subfield_structure` VALUES ('699', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18961 INSERT INTO `marc_subfield_structure` VALUES ('699', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18962 INSERT INTO `marc_subfield_structure` VALUES ('699', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18963 INSERT INTO `marc_subfield_structure` VALUES ('699', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'VR', '', '');
18964 INSERT INTO `marc_subfield_structure` VALUES ('700', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18965 INSERT INTO `marc_subfield_structure` VALUES ('700', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18966 INSERT INTO `marc_subfield_structure` VALUES ('700', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18967 INSERT INTO `marc_subfield_structure` VALUES ('700', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18968 INSERT INTO `marc_subfield_structure` VALUES ('700', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18969 INSERT INTO `marc_subfield_structure` VALUES ('700', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'VR', '', '');
18970 INSERT INTO `marc_subfield_structure` VALUES ('700', 'a', 'Personal name', 'Personal name', 0, 0, 'additionalauthors.author', 7, '', '', '', NULL, -1, 'VR', '', '');
18971 INSERT INTO `marc_subfield_structure` VALUES ('700', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -1, 'VR', '', '');
18972 INSERT INTO `marc_subfield_structure` VALUES ('700', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -1, 'VR', '', '');
18973 INSERT INTO `marc_subfield_structure` VALUES ('700', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -1, 'VR', '', '');
18974 INSERT INTO `marc_subfield_structure` VALUES ('700', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'VR', '', '');
18975 INSERT INTO `marc_subfield_structure` VALUES ('700', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18976 INSERT INTO `marc_subfield_structure` VALUES ('700', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18977 INSERT INTO `marc_subfield_structure` VALUES ('700', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18978 INSERT INTO `marc_subfield_structure` VALUES ('700', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18979 INSERT INTO `marc_subfield_structure` VALUES ('700', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18980 INSERT INTO `marc_subfield_structure` VALUES ('700', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18981 INSERT INTO `marc_subfield_structure` VALUES ('700', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18982 INSERT INTO `marc_subfield_structure` VALUES ('700', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18983 INSERT INTO `marc_subfield_structure` VALUES ('700', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18984 INSERT INTO `marc_subfield_structure` VALUES ('700', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18985 INSERT INTO `marc_subfield_structure` VALUES ('700', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -1, 'VR', '', '');
18986 INSERT INTO `marc_subfield_structure` VALUES ('700', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18987 INSERT INTO `marc_subfield_structure` VALUES ('700', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18988 INSERT INTO `marc_subfield_structure` VALUES ('700', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18989 INSERT INTO `marc_subfield_structure` VALUES ('700', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18990 INSERT INTO `marc_subfield_structure` VALUES ('700', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18991 INSERT INTO `marc_subfield_structure` VALUES ('705', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18992 INSERT INTO `marc_subfield_structure` VALUES ('705', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18993 INSERT INTO `marc_subfield_structure` VALUES ('705', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18994 INSERT INTO `marc_subfield_structure` VALUES ('705', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18995 INSERT INTO `marc_subfield_structure` VALUES ('705', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18996 INSERT INTO `marc_subfield_structure` VALUES ('705', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18997 INSERT INTO `marc_subfield_structure` VALUES ('705', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18998 INSERT INTO `marc_subfield_structure` VALUES ('705', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
18999 INSERT INTO `marc_subfield_structure` VALUES ('705', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19000 INSERT INTO `marc_subfield_structure` VALUES ('705', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19001 INSERT INTO `marc_subfield_structure` VALUES ('705', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19002 INSERT INTO `marc_subfield_structure` VALUES ('705', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19003 INSERT INTO `marc_subfield_structure` VALUES ('705', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19004 INSERT INTO `marc_subfield_structure` VALUES ('705', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19005 INSERT INTO `marc_subfield_structure` VALUES ('705', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19006 INSERT INTO `marc_subfield_structure` VALUES ('705', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19007 INSERT INTO `marc_subfield_structure` VALUES ('705', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19008 INSERT INTO `marc_subfield_structure` VALUES ('710', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19009 INSERT INTO `marc_subfield_structure` VALUES ('710', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19010 INSERT INTO `marc_subfield_structure` VALUES ('710', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19011 INSERT INTO `marc_subfield_structure` VALUES ('710', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19012 INSERT INTO `marc_subfield_structure` VALUES ('710', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19013 INSERT INTO `marc_subfield_structure` VALUES ('710', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'VR', '', '');
19014 INSERT INTO `marc_subfield_structure` VALUES ('710', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -1, 'VR', '', '');
19015 INSERT INTO `marc_subfield_structure` VALUES ('710', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -1, 'VR', '', '');
19016 INSERT INTO `marc_subfield_structure` VALUES ('710', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -1, 'VR', '', '');
19017 INSERT INTO `marc_subfield_structure` VALUES ('710', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -1, 'VR', '', '');
19018 INSERT INTO `marc_subfield_structure` VALUES ('710', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'VR', '', '');
19019 INSERT INTO `marc_subfield_structure` VALUES ('710', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19020 INSERT INTO `marc_subfield_structure` VALUES ('710', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19021 INSERT INTO `marc_subfield_structure` VALUES ('710', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19022 INSERT INTO `marc_subfield_structure` VALUES ('710', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19023 INSERT INTO `marc_subfield_structure` VALUES ('710', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19024 INSERT INTO `marc_subfield_structure` VALUES ('710', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19025 INSERT INTO `marc_subfield_structure` VALUES ('710', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19026 INSERT INTO `marc_subfield_structure` VALUES ('710', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19027 INSERT INTO `marc_subfield_structure` VALUES ('710', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19028 INSERT INTO `marc_subfield_structure` VALUES ('710', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19029 INSERT INTO `marc_subfield_structure` VALUES ('710', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19030 INSERT INTO `marc_subfield_structure` VALUES ('710', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19031 INSERT INTO `marc_subfield_structure` VALUES ('710', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19032 INSERT INTO `marc_subfield_structure` VALUES ('710', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19033 INSERT INTO `marc_subfield_structure` VALUES ('711', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19034 INSERT INTO `marc_subfield_structure` VALUES ('711', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19035 INSERT INTO `marc_subfield_structure` VALUES ('711', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19036 INSERT INTO `marc_subfield_structure` VALUES ('711', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19037 INSERT INTO `marc_subfield_structure` VALUES ('711', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19038 INSERT INTO `marc_subfield_structure` VALUES ('711', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'VR', '', '');
19039 INSERT INTO `marc_subfield_structure` VALUES ('711', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'VR', '', '');
19040 INSERT INTO `marc_subfield_structure` VALUES ('711', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19041 INSERT INTO `marc_subfield_structure` VALUES ('711', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'VR', '', '');
19042 INSERT INTO `marc_subfield_structure` VALUES ('711', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'VR', '', '');
19043 INSERT INTO `marc_subfield_structure` VALUES ('711', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'VR', '', '');
19044 INSERT INTO `marc_subfield_structure` VALUES ('711', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19045 INSERT INTO `marc_subfield_structure` VALUES ('711', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19046 INSERT INTO `marc_subfield_structure` VALUES ('711', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19047 INSERT INTO `marc_subfield_structure` VALUES ('711', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19048 INSERT INTO `marc_subfield_structure` VALUES ('711', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19049 INSERT INTO `marc_subfield_structure` VALUES ('711', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19050 INSERT INTO `marc_subfield_structure` VALUES ('711', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19051 INSERT INTO `marc_subfield_structure` VALUES ('711', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19052 INSERT INTO `marc_subfield_structure` VALUES ('711', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19053 INSERT INTO `marc_subfield_structure` VALUES ('711', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19054 INSERT INTO `marc_subfield_structure` VALUES ('711', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19055 INSERT INTO `marc_subfield_structure` VALUES ('711', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19056 INSERT INTO `marc_subfield_structure` VALUES ('715', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'VR', '', '');
19057 INSERT INTO `marc_subfield_structure` VALUES ('715', 'a', 'Corporate name or jurisdiction name', 'Corporate name or jurisdiction name', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19058 INSERT INTO `marc_subfield_structure` VALUES ('715', 'b', 'Subordinate unit', 'Subordinate unit', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19059 INSERT INTO `marc_subfield_structure` VALUES ('715', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19060 INSERT INTO `marc_subfield_structure` VALUES ('715', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19061 INSERT INTO `marc_subfield_structure` VALUES ('715', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19062 INSERT INTO `marc_subfield_structure` VALUES ('715', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19063 INSERT INTO `marc_subfield_structure` VALUES ('715', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19064 INSERT INTO `marc_subfield_structure` VALUES ('715', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19065 INSERT INTO `marc_subfield_structure` VALUES ('715', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19066 INSERT INTO `marc_subfield_structure` VALUES ('715', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19067 INSERT INTO `marc_subfield_structure` VALUES ('715', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19068 INSERT INTO `marc_subfield_structure` VALUES ('715', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19069 INSERT INTO `marc_subfield_structure` VALUES ('715', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19070 INSERT INTO `marc_subfield_structure` VALUES ('715', 'u', 'Nonprinting information', 'Nonprinting information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19071 INSERT INTO `marc_subfield_structure` VALUES ('720', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19072 INSERT INTO `marc_subfield_structure` VALUES ('720', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19073 INSERT INTO `marc_subfield_structure` VALUES ('720', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19074 INSERT INTO `marc_subfield_structure` VALUES ('720', 'a', 'Name', 'Name', 0, 0, '', 7, NULL, NULL, '', NULL, -1, 'VR', '', '');
19075 INSERT INTO `marc_subfield_structure` VALUES ('720', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'VR', '', '');
19076 INSERT INTO `marc_subfield_structure` VALUES ('730', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19077 INSERT INTO `marc_subfield_structure` VALUES ('730', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19078 INSERT INTO `marc_subfield_structure` VALUES ('730', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19079 INSERT INTO `marc_subfield_structure` VALUES ('730', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19080 INSERT INTO `marc_subfield_structure` VALUES ('730', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'VR', '', '');
19081 INSERT INTO `marc_subfield_structure` VALUES ('730', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19082 INSERT INTO `marc_subfield_structure` VALUES ('730', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19083 INSERT INTO `marc_subfield_structure` VALUES ('730', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19084 INSERT INTO `marc_subfield_structure` VALUES ('730', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19085 INSERT INTO `marc_subfield_structure` VALUES ('730', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19086 INSERT INTO `marc_subfield_structure` VALUES ('730', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19087 INSERT INTO `marc_subfield_structure` VALUES ('730', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19088 INSERT INTO `marc_subfield_structure` VALUES ('730', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19089 INSERT INTO `marc_subfield_structure` VALUES ('730', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19090 INSERT INTO `marc_subfield_structure` VALUES ('730', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19091 INSERT INTO `marc_subfield_structure` VALUES ('730', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19092 INSERT INTO `marc_subfield_structure` VALUES ('730', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19093 INSERT INTO `marc_subfield_structure` VALUES ('730', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19094 INSERT INTO `marc_subfield_structure` VALUES ('730', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19095 INSERT INTO `marc_subfield_structure` VALUES ('730', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19096 INSERT INTO `marc_subfield_structure` VALUES ('740', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19097 INSERT INTO `marc_subfield_structure` VALUES ('740', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19098 INSERT INTO `marc_subfield_structure` VALUES ('740', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19099 INSERT INTO `marc_subfield_structure` VALUES ('740', 'a', 'Uncontrolled related/analytical title', 'Uncontrolled related/analytical title', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19100 INSERT INTO `marc_subfield_structure` VALUES ('740', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19101 INSERT INTO `marc_subfield_structure` VALUES ('740', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19102 INSERT INTO `marc_subfield_structure` VALUES ('740', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19103 INSERT INTO `marc_subfield_structure` VALUES ('752', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19104 INSERT INTO `marc_subfield_structure` VALUES ('752', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19105 INSERT INTO `marc_subfield_structure` VALUES ('752', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19106 INSERT INTO `marc_subfield_structure` VALUES ('752', 'a', 'Country or larger entity', 'Country or larger entity', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19107 INSERT INTO `marc_subfield_structure` VALUES ('752', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19108 INSERT INTO `marc_subfield_structure` VALUES ('752', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19109 INSERT INTO `marc_subfield_structure` VALUES ('752', 'd', 'City', 'City', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19110 INSERT INTO `marc_subfield_structure` VALUES ('752', 'f', 'City subsection', 'City subsection', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19111 INSERT INTO `marc_subfield_structure` VALUES ('752', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19112 INSERT INTO `marc_subfield_structure` VALUES ('752', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19113 INSERT INTO `marc_subfield_structure` VALUES ('753', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19114 INSERT INTO `marc_subfield_structure` VALUES ('753', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19115 INSERT INTO `marc_subfield_structure` VALUES ('753', 'a', 'Make and model of machine', 'Make and model of machine', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19116 INSERT INTO `marc_subfield_structure` VALUES ('753', 'b', 'Programming language', 'Programming language', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19117 INSERT INTO `marc_subfield_structure` VALUES ('753', 'c', 'Operating system', 'Operating system', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19118 INSERT INTO `marc_subfield_structure` VALUES ('754', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19119 INSERT INTO `marc_subfield_structure` VALUES ('754', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19120 INSERT INTO `marc_subfield_structure` VALUES ('754', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19121 INSERT INTO `marc_subfield_structure` VALUES ('754', 'a', 'Taxonomic name', 'Taxonomic name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19122 INSERT INTO `marc_subfield_structure` VALUES ('754', 'c', 'Taxonomic category', 'Taxonomic category', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19123 INSERT INTO `marc_subfield_structure` VALUES ('754', 'd', 'Common or alternative name', 'Common or alternative name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19124 INSERT INTO `marc_subfield_structure` VALUES ('754', 'x', 'Non-public note', 'Non-public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19125 INSERT INTO `marc_subfield_structure` VALUES ('754', 'z', 'Public note', 'Public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19126 INSERT INTO `marc_subfield_structure` VALUES ('755', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19127 INSERT INTO `marc_subfield_structure` VALUES ('755', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19128 INSERT INTO `marc_subfield_structure` VALUES ('755', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19129 INSERT INTO `marc_subfield_structure` VALUES ('755', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19130 INSERT INTO `marc_subfield_structure` VALUES ('755', 'a', 'Access term', 'Access term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19131 INSERT INTO `marc_subfield_structure` VALUES ('755', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19132 INSERT INTO `marc_subfield_structure` VALUES ('755', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19133 INSERT INTO `marc_subfield_structure` VALUES ('755', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19134 INSERT INTO `marc_subfield_structure` VALUES ('760', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19135 INSERT INTO `marc_subfield_structure` VALUES ('760', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19136 INSERT INTO `marc_subfield_structure` VALUES ('760', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19137 INSERT INTO `marc_subfield_structure` VALUES ('760', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19138 INSERT INTO `marc_subfield_structure` VALUES ('760', 'b', 'Edition', 'Edition', 0, 0, NULL, -6, NULL, NULL, '', NULL, 0, 'VR', '', '');
19139 INSERT INTO `marc_subfield_structure` VALUES ('760', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19140 INSERT INTO `marc_subfield_structure` VALUES ('760', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19141 INSERT INTO `marc_subfield_structure` VALUES ('760', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19142 INSERT INTO `marc_subfield_structure` VALUES ('760', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19143 INSERT INTO `marc_subfield_structure` VALUES ('760', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19144 INSERT INTO `marc_subfield_structure` VALUES ('760', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19145 INSERT INTO `marc_subfield_structure` VALUES ('760', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19146 INSERT INTO `marc_subfield_structure` VALUES ('760', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19147 INSERT INTO `marc_subfield_structure` VALUES ('760', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19148 INSERT INTO `marc_subfield_structure` VALUES ('760', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19149 INSERT INTO `marc_subfield_structure` VALUES ('760', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19150 INSERT INTO `marc_subfield_structure` VALUES ('760', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19151 INSERT INTO `marc_subfield_structure` VALUES ('760', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19152 INSERT INTO `marc_subfield_structure` VALUES ('760', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19153 INSERT INTO `marc_subfield_structure` VALUES ('762', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19154 INSERT INTO `marc_subfield_structure` VALUES ('762', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19155 INSERT INTO `marc_subfield_structure` VALUES ('762', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19156 INSERT INTO `marc_subfield_structure` VALUES ('762', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19157 INSERT INTO `marc_subfield_structure` VALUES ('762', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19158 INSERT INTO `marc_subfield_structure` VALUES ('762', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19159 INSERT INTO `marc_subfield_structure` VALUES ('762', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19160 INSERT INTO `marc_subfield_structure` VALUES ('762', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19161 INSERT INTO `marc_subfield_structure` VALUES ('762', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19162 INSERT INTO `marc_subfield_structure` VALUES ('762', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19163 INSERT INTO `marc_subfield_structure` VALUES ('762', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19164 INSERT INTO `marc_subfield_structure` VALUES ('762', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19165 INSERT INTO `marc_subfield_structure` VALUES ('762', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19166 INSERT INTO `marc_subfield_structure` VALUES ('762', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19167 INSERT INTO `marc_subfield_structure` VALUES ('762', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19168 INSERT INTO `marc_subfield_structure` VALUES ('762', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19169 INSERT INTO `marc_subfield_structure` VALUES ('762', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19170 INSERT INTO `marc_subfield_structure` VALUES ('762', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19171 INSERT INTO `marc_subfield_structure` VALUES ('762', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19172 INSERT INTO `marc_subfield_structure` VALUES ('765', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19173 INSERT INTO `marc_subfield_structure` VALUES ('765', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19174 INSERT INTO `marc_subfield_structure` VALUES ('765', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19175 INSERT INTO `marc_subfield_structure` VALUES ('765', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19176 INSERT INTO `marc_subfield_structure` VALUES ('765', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19177 INSERT INTO `marc_subfield_structure` VALUES ('765', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19178 INSERT INTO `marc_subfield_structure` VALUES ('765', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19179 INSERT INTO `marc_subfield_structure` VALUES ('765', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19180 INSERT INTO `marc_subfield_structure` VALUES ('765', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19181 INSERT INTO `marc_subfield_structure` VALUES ('765', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19182 INSERT INTO `marc_subfield_structure` VALUES ('765', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19183 INSERT INTO `marc_subfield_structure` VALUES ('765', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19184 INSERT INTO `marc_subfield_structure` VALUES ('765', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19185 INSERT INTO `marc_subfield_structure` VALUES ('765', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19186 INSERT INTO `marc_subfield_structure` VALUES ('765', 'q', 'Parallel title (BK SE)  [OBSOLETE]', 'Parallel title (BK SE)  [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19187 INSERT INTO `marc_subfield_structure` VALUES ('765', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19188 INSERT INTO `marc_subfield_structure` VALUES ('765', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19189 INSERT INTO `marc_subfield_structure` VALUES ('765', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19190 INSERT INTO `marc_subfield_structure` VALUES ('765', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19191 INSERT INTO `marc_subfield_structure` VALUES ('765', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19192 INSERT INTO `marc_subfield_structure` VALUES ('765', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19193 INSERT INTO `marc_subfield_structure` VALUES ('765', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19194 INSERT INTO `marc_subfield_structure` VALUES ('765', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19195 INSERT INTO `marc_subfield_structure` VALUES ('767', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19196 INSERT INTO `marc_subfield_structure` VALUES ('767', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19197 INSERT INTO `marc_subfield_structure` VALUES ('767', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19198 INSERT INTO `marc_subfield_structure` VALUES ('767', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19199 INSERT INTO `marc_subfield_structure` VALUES ('767', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19200 INSERT INTO `marc_subfield_structure` VALUES ('767', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19201 INSERT INTO `marc_subfield_structure` VALUES ('767', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19202 INSERT INTO `marc_subfield_structure` VALUES ('767', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19203 INSERT INTO `marc_subfield_structure` VALUES ('767', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19204 INSERT INTO `marc_subfield_structure` VALUES ('767', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19205 INSERT INTO `marc_subfield_structure` VALUES ('767', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19206 INSERT INTO `marc_subfield_structure` VALUES ('767', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19207 INSERT INTO `marc_subfield_structure` VALUES ('767', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19208 INSERT INTO `marc_subfield_structure` VALUES ('767', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19209 INSERT INTO `marc_subfield_structure` VALUES ('767', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19210 INSERT INTO `marc_subfield_structure` VALUES ('767', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19211 INSERT INTO `marc_subfield_structure` VALUES ('767', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19212 INSERT INTO `marc_subfield_structure` VALUES ('767', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19213 INSERT INTO `marc_subfield_structure` VALUES ('767', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19214 INSERT INTO `marc_subfield_structure` VALUES ('767', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19215 INSERT INTO `marc_subfield_structure` VALUES ('767', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19216 INSERT INTO `marc_subfield_structure` VALUES ('767', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19217 INSERT INTO `marc_subfield_structure` VALUES ('767', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19218 INSERT INTO `marc_subfield_structure` VALUES ('770', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19219 INSERT INTO `marc_subfield_structure` VALUES ('770', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19220 INSERT INTO `marc_subfield_structure` VALUES ('770', '8', 'Field link and sequence number', 'Field link and sequence number ', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19221 INSERT INTO `marc_subfield_structure` VALUES ('770', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19222 INSERT INTO `marc_subfield_structure` VALUES ('770', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19223 INSERT INTO `marc_subfield_structure` VALUES ('770', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19224 INSERT INTO `marc_subfield_structure` VALUES ('770', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19225 INSERT INTO `marc_subfield_structure` VALUES ('770', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19226 INSERT INTO `marc_subfield_structure` VALUES ('770', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19227 INSERT INTO `marc_subfield_structure` VALUES ('770', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19228 INSERT INTO `marc_subfield_structure` VALUES ('770', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19229 INSERT INTO `marc_subfield_structure` VALUES ('770', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19230 INSERT INTO `marc_subfield_structure` VALUES ('770', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19231 INSERT INTO `marc_subfield_structure` VALUES ('770', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19232 INSERT INTO `marc_subfield_structure` VALUES ('770', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19233 INSERT INTO `marc_subfield_structure` VALUES ('770', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19234 INSERT INTO `marc_subfield_structure` VALUES ('770', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19235 INSERT INTO `marc_subfield_structure` VALUES ('770', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19236 INSERT INTO `marc_subfield_structure` VALUES ('770', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19237 INSERT INTO `marc_subfield_structure` VALUES ('770', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19238 INSERT INTO `marc_subfield_structure` VALUES ('770', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19239 INSERT INTO `marc_subfield_structure` VALUES ('770', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19240 INSERT INTO `marc_subfield_structure` VALUES ('770', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19241 INSERT INTO `marc_subfield_structure` VALUES ('772', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19242 INSERT INTO `marc_subfield_structure` VALUES ('772', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19243 INSERT INTO `marc_subfield_structure` VALUES ('772', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19244 INSERT INTO `marc_subfield_structure` VALUES ('772', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19245 INSERT INTO `marc_subfield_structure` VALUES ('772', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19246 INSERT INTO `marc_subfield_structure` VALUES ('772', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19247 INSERT INTO `marc_subfield_structure` VALUES ('772', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19248 INSERT INTO `marc_subfield_structure` VALUES ('772', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19249 INSERT INTO `marc_subfield_structure` VALUES ('772', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19250 INSERT INTO `marc_subfield_structure` VALUES ('772', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19251 INSERT INTO `marc_subfield_structure` VALUES ('772', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19252 INSERT INTO `marc_subfield_structure` VALUES ('772', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19253 INSERT INTO `marc_subfield_structure` VALUES ('772', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19254 INSERT INTO `marc_subfield_structure` VALUES ('772', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19255 INSERT INTO `marc_subfield_structure` VALUES ('772', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19256 INSERT INTO `marc_subfield_structure` VALUES ('772', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19257 INSERT INTO `marc_subfield_structure` VALUES ('772', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19258 INSERT INTO `marc_subfield_structure` VALUES ('772', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19259 INSERT INTO `marc_subfield_structure` VALUES ('772', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19260 INSERT INTO `marc_subfield_structure` VALUES ('772', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19261 INSERT INTO `marc_subfield_structure` VALUES ('772', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19262 INSERT INTO `marc_subfield_structure` VALUES ('772', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19263 INSERT INTO `marc_subfield_structure` VALUES ('772', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19264 INSERT INTO `marc_subfield_structure` VALUES ('773', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19265 INSERT INTO `marc_subfield_structure` VALUES ('773', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19266 INSERT INTO `marc_subfield_structure` VALUES ('773', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19267 INSERT INTO `marc_subfield_structure` VALUES ('773', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19268 INSERT INTO `marc_subfield_structure` VALUES ('773', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19269 INSERT INTO `marc_subfield_structure` VALUES ('773', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19270 INSERT INTO `marc_subfield_structure` VALUES ('773', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19271 INSERT INTO `marc_subfield_structure` VALUES ('773', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19272 INSERT INTO `marc_subfield_structure` VALUES ('773', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19273 INSERT INTO `marc_subfield_structure` VALUES ('773', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19274 INSERT INTO `marc_subfield_structure` VALUES ('773', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19275 INSERT INTO `marc_subfield_structure` VALUES ('773', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19276 INSERT INTO `marc_subfield_structure` VALUES ('773', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19277 INSERT INTO `marc_subfield_structure` VALUES ('773', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19278 INSERT INTO `marc_subfield_structure` VALUES ('773', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19279 INSERT INTO `marc_subfield_structure` VALUES ('773', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19280 INSERT INTO `marc_subfield_structure` VALUES ('773', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19281 INSERT INTO `marc_subfield_structure` VALUES ('773', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19282 INSERT INTO `marc_subfield_structure` VALUES ('773', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19283 INSERT INTO `marc_subfield_structure` VALUES ('773', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19284 INSERT INTO `marc_subfield_structure` VALUES ('773', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19285 INSERT INTO `marc_subfield_structure` VALUES ('773', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19286 INSERT INTO `marc_subfield_structure` VALUES ('773', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19287 INSERT INTO `marc_subfield_structure` VALUES ('774', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19288 INSERT INTO `marc_subfield_structure` VALUES ('774', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19289 INSERT INTO `marc_subfield_structure` VALUES ('774', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19290 INSERT INTO `marc_subfield_structure` VALUES ('774', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19291 INSERT INTO `marc_subfield_structure` VALUES ('774', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19292 INSERT INTO `marc_subfield_structure` VALUES ('774', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19293 INSERT INTO `marc_subfield_structure` VALUES ('774', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19294 INSERT INTO `marc_subfield_structure` VALUES ('774', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19295 INSERT INTO `marc_subfield_structure` VALUES ('774', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19296 INSERT INTO `marc_subfield_structure` VALUES ('774', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19297 INSERT INTO `marc_subfield_structure` VALUES ('774', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19298 INSERT INTO `marc_subfield_structure` VALUES ('774', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19299 INSERT INTO `marc_subfield_structure` VALUES ('774', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19300 INSERT INTO `marc_subfield_structure` VALUES ('774', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19301 INSERT INTO `marc_subfield_structure` VALUES ('774', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19302 INSERT INTO `marc_subfield_structure` VALUES ('774', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19303 INSERT INTO `marc_subfield_structure` VALUES ('774', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19304 INSERT INTO `marc_subfield_structure` VALUES ('774', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19305 INSERT INTO `marc_subfield_structure` VALUES ('774', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19306 INSERT INTO `marc_subfield_structure` VALUES ('774', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19307 INSERT INTO `marc_subfield_structure` VALUES ('774', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19308 INSERT INTO `marc_subfield_structure` VALUES ('774', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19309 INSERT INTO `marc_subfield_structure` VALUES ('775', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19310 INSERT INTO `marc_subfield_structure` VALUES ('775', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19311 INSERT INTO `marc_subfield_structure` VALUES ('775', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19312 INSERT INTO `marc_subfield_structure` VALUES ('775', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19313 INSERT INTO `marc_subfield_structure` VALUES ('775', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19314 INSERT INTO `marc_subfield_structure` VALUES ('775', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19315 INSERT INTO `marc_subfield_structure` VALUES ('775', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19316 INSERT INTO `marc_subfield_structure` VALUES ('775', 'e', 'Language code', 'Language code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19317 INSERT INTO `marc_subfield_structure` VALUES ('775', 'f', 'Country code', 'Country code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19318 INSERT INTO `marc_subfield_structure` VALUES ('775', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19319 INSERT INTO `marc_subfield_structure` VALUES ('775', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19320 INSERT INTO `marc_subfield_structure` VALUES ('775', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19321 INSERT INTO `marc_subfield_structure` VALUES ('775', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19322 INSERT INTO `marc_subfield_structure` VALUES ('775', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19323 INSERT INTO `marc_subfield_structure` VALUES ('775', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19324 INSERT INTO `marc_subfield_structure` VALUES ('775', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19325 INSERT INTO `marc_subfield_structure` VALUES ('775', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19326 INSERT INTO `marc_subfield_structure` VALUES ('775', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19327 INSERT INTO `marc_subfield_structure` VALUES ('775', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19328 INSERT INTO `marc_subfield_structure` VALUES ('775', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19329 INSERT INTO `marc_subfield_structure` VALUES ('775', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19330 INSERT INTO `marc_subfield_structure` VALUES ('775', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19331 INSERT INTO `marc_subfield_structure` VALUES ('775', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19332 INSERT INTO `marc_subfield_structure` VALUES ('775', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19333 INSERT INTO `marc_subfield_structure` VALUES ('775', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19334 INSERT INTO `marc_subfield_structure` VALUES ('776', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19335 INSERT INTO `marc_subfield_structure` VALUES ('776', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19336 INSERT INTO `marc_subfield_structure` VALUES ('776', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19337 INSERT INTO `marc_subfield_structure` VALUES ('776', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19338 INSERT INTO `marc_subfield_structure` VALUES ('776', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19339 INSERT INTO `marc_subfield_structure` VALUES ('776', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19340 INSERT INTO `marc_subfield_structure` VALUES ('776', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19341 INSERT INTO `marc_subfield_structure` VALUES ('776', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19342 INSERT INTO `marc_subfield_structure` VALUES ('776', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19343 INSERT INTO `marc_subfield_structure` VALUES ('776', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19344 INSERT INTO `marc_subfield_structure` VALUES ('776', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19345 INSERT INTO `marc_subfield_structure` VALUES ('776', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19346 INSERT INTO `marc_subfield_structure` VALUES ('776', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19347 INSERT INTO `marc_subfield_structure` VALUES ('776', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19348 INSERT INTO `marc_subfield_structure` VALUES ('776', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19349 INSERT INTO `marc_subfield_structure` VALUES ('776', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19350 INSERT INTO `marc_subfield_structure` VALUES ('776', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19351 INSERT INTO `marc_subfield_structure` VALUES ('776', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19352 INSERT INTO `marc_subfield_structure` VALUES ('776', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19353 INSERT INTO `marc_subfield_structure` VALUES ('776', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19354 INSERT INTO `marc_subfield_structure` VALUES ('776', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19355 INSERT INTO `marc_subfield_structure` VALUES ('776', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19356 INSERT INTO `marc_subfield_structure` VALUES ('776', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19357 INSERT INTO `marc_subfield_structure` VALUES ('777', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19358 INSERT INTO `marc_subfield_structure` VALUES ('777', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19359 INSERT INTO `marc_subfield_structure` VALUES ('777', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19360 INSERT INTO `marc_subfield_structure` VALUES ('777', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19361 INSERT INTO `marc_subfield_structure` VALUES ('777', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19362 INSERT INTO `marc_subfield_structure` VALUES ('777', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19363 INSERT INTO `marc_subfield_structure` VALUES ('777', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19364 INSERT INTO `marc_subfield_structure` VALUES ('777', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19365 INSERT INTO `marc_subfield_structure` VALUES ('777', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19366 INSERT INTO `marc_subfield_structure` VALUES ('777', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19367 INSERT INTO `marc_subfield_structure` VALUES ('777', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19368 INSERT INTO `marc_subfield_structure` VALUES ('777', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19369 INSERT INTO `marc_subfield_structure` VALUES ('777', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19370 INSERT INTO `marc_subfield_structure` VALUES ('777', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19371 INSERT INTO `marc_subfield_structure` VALUES ('777', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19372 INSERT INTO `marc_subfield_structure` VALUES ('777', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19373 INSERT INTO `marc_subfield_structure` VALUES ('777', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19374 INSERT INTO `marc_subfield_structure` VALUES ('777', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19375 INSERT INTO `marc_subfield_structure` VALUES ('777', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19376 INSERT INTO `marc_subfield_structure` VALUES ('777', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19377 INSERT INTO `marc_subfield_structure` VALUES ('780', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19378 INSERT INTO `marc_subfield_structure` VALUES ('780', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19379 INSERT INTO `marc_subfield_structure` VALUES ('780', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19380 INSERT INTO `marc_subfield_structure` VALUES ('780', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19381 INSERT INTO `marc_subfield_structure` VALUES ('780', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19382 INSERT INTO `marc_subfield_structure` VALUES ('780', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19383 INSERT INTO `marc_subfield_structure` VALUES ('780', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19384 INSERT INTO `marc_subfield_structure` VALUES ('780', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19385 INSERT INTO `marc_subfield_structure` VALUES ('780', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19386 INSERT INTO `marc_subfield_structure` VALUES ('780', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19387 INSERT INTO `marc_subfield_structure` VALUES ('780', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19388 INSERT INTO `marc_subfield_structure` VALUES ('780', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19389 INSERT INTO `marc_subfield_structure` VALUES ('780', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19390 INSERT INTO `marc_subfield_structure` VALUES ('780', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19391 INSERT INTO `marc_subfield_structure` VALUES ('780', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19392 INSERT INTO `marc_subfield_structure` VALUES ('780', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19393 INSERT INTO `marc_subfield_structure` VALUES ('780', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19394 INSERT INTO `marc_subfield_structure` VALUES ('780', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19395 INSERT INTO `marc_subfield_structure` VALUES ('780', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19396 INSERT INTO `marc_subfield_structure` VALUES ('780', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19397 INSERT INTO `marc_subfield_structure` VALUES ('780', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19398 INSERT INTO `marc_subfield_structure` VALUES ('780', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19399 INSERT INTO `marc_subfield_structure` VALUES ('780', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19400 INSERT INTO `marc_subfield_structure` VALUES ('785', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19401 INSERT INTO `marc_subfield_structure` VALUES ('785', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19402 INSERT INTO `marc_subfield_structure` VALUES ('785', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19403 INSERT INTO `marc_subfield_structure` VALUES ('785', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19404 INSERT INTO `marc_subfield_structure` VALUES ('785', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19405 INSERT INTO `marc_subfield_structure` VALUES ('785', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19406 INSERT INTO `marc_subfield_structure` VALUES ('785', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19407 INSERT INTO `marc_subfield_structure` VALUES ('785', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19408 INSERT INTO `marc_subfield_structure` VALUES ('785', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19409 INSERT INTO `marc_subfield_structure` VALUES ('785', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19410 INSERT INTO `marc_subfield_structure` VALUES ('785', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19411 INSERT INTO `marc_subfield_structure` VALUES ('785', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19412 INSERT INTO `marc_subfield_structure` VALUES ('785', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19413 INSERT INTO `marc_subfield_structure` VALUES ('785', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19414 INSERT INTO `marc_subfield_structure` VALUES ('785', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19415 INSERT INTO `marc_subfield_structure` VALUES ('785', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19416 INSERT INTO `marc_subfield_structure` VALUES ('785', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19417 INSERT INTO `marc_subfield_structure` VALUES ('785', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19418 INSERT INTO `marc_subfield_structure` VALUES ('785', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19419 INSERT INTO `marc_subfield_structure` VALUES ('785', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19420 INSERT INTO `marc_subfield_structure` VALUES ('785', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19421 INSERT INTO `marc_subfield_structure` VALUES ('785', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19422 INSERT INTO `marc_subfield_structure` VALUES ('785', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19423 INSERT INTO `marc_subfield_structure` VALUES ('786', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19424 INSERT INTO `marc_subfield_structure` VALUES ('786', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19425 INSERT INTO `marc_subfield_structure` VALUES ('786', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19426 INSERT INTO `marc_subfield_structure` VALUES ('786', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19427 INSERT INTO `marc_subfield_structure` VALUES ('786', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19428 INSERT INTO `marc_subfield_structure` VALUES ('786', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19429 INSERT INTO `marc_subfield_structure` VALUES ('786', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19430 INSERT INTO `marc_subfield_structure` VALUES ('786', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19431 INSERT INTO `marc_subfield_structure` VALUES ('786', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19432 INSERT INTO `marc_subfield_structure` VALUES ('786', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19433 INSERT INTO `marc_subfield_structure` VALUES ('786', 'j', 'Period of content', 'Period of content', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19434 INSERT INTO `marc_subfield_structure` VALUES ('786', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19435 INSERT INTO `marc_subfield_structure` VALUES ('786', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19436 INSERT INTO `marc_subfield_structure` VALUES ('786', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19437 INSERT INTO `marc_subfield_structure` VALUES ('786', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19438 INSERT INTO `marc_subfield_structure` VALUES ('786', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19439 INSERT INTO `marc_subfield_structure` VALUES ('786', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19440 INSERT INTO `marc_subfield_structure` VALUES ('786', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19441 INSERT INTO `marc_subfield_structure` VALUES ('786', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19442 INSERT INTO `marc_subfield_structure` VALUES ('786', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19443 INSERT INTO `marc_subfield_structure` VALUES ('786', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19444 INSERT INTO `marc_subfield_structure` VALUES ('786', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19445 INSERT INTO `marc_subfield_structure` VALUES ('786', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19446 INSERT INTO `marc_subfield_structure` VALUES ('786', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19447 INSERT INTO `marc_subfield_structure` VALUES ('787', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19448 INSERT INTO `marc_subfield_structure` VALUES ('787', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19449 INSERT INTO `marc_subfield_structure` VALUES ('787', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19450 INSERT INTO `marc_subfield_structure` VALUES ('787', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19451 INSERT INTO `marc_subfield_structure` VALUES ('787', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19452 INSERT INTO `marc_subfield_structure` VALUES ('787', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19453 INSERT INTO `marc_subfield_structure` VALUES ('787', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19454 INSERT INTO `marc_subfield_structure` VALUES ('787', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19455 INSERT INTO `marc_subfield_structure` VALUES ('787', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19456 INSERT INTO `marc_subfield_structure` VALUES ('787', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19457 INSERT INTO `marc_subfield_structure` VALUES ('787', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19458 INSERT INTO `marc_subfield_structure` VALUES ('787', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19459 INSERT INTO `marc_subfield_structure` VALUES ('787', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19460 INSERT INTO `marc_subfield_structure` VALUES ('787', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19461 INSERT INTO `marc_subfield_structure` VALUES ('787', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19462 INSERT INTO `marc_subfield_structure` VALUES ('787', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19463 INSERT INTO `marc_subfield_structure` VALUES ('787', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19464 INSERT INTO `marc_subfield_structure` VALUES ('787', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19465 INSERT INTO `marc_subfield_structure` VALUES ('787', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19466 INSERT INTO `marc_subfield_structure` VALUES ('787', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19467 INSERT INTO `marc_subfield_structure` VALUES ('787', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19468 INSERT INTO `marc_subfield_structure` VALUES ('787', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19469 INSERT INTO `marc_subfield_structure` VALUES ('787', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19470 INSERT INTO `marc_subfield_structure` VALUES ('789', '%', '%', '%', 0, 0, '', 7, '', '', '', 0, -6, 'VR', '', '');
19471 INSERT INTO `marc_subfield_structure` VALUES ('789', '2', '2', '2', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19472 INSERT INTO `marc_subfield_structure` VALUES ('789', '3', '3', '3', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19473 INSERT INTO `marc_subfield_structure` VALUES ('789', '4', '4', '4', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19474 INSERT INTO `marc_subfield_structure` VALUES ('789', '5', '5', '5', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19475 INSERT INTO `marc_subfield_structure` VALUES ('789', '6', '6', '6', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19476 INSERT INTO `marc_subfield_structure` VALUES ('789', '7', '7', '7', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19477 INSERT INTO `marc_subfield_structure` VALUES ('789', '8', '8', '8', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19478 INSERT INTO `marc_subfield_structure` VALUES ('789', '9', '9', '9', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19479 INSERT INTO `marc_subfield_structure` VALUES ('789', 'a', 'a', 'a', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19480 INSERT INTO `marc_subfield_structure` VALUES ('789', 'b', 'b', 'b', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19481 INSERT INTO `marc_subfield_structure` VALUES ('789', 'c', 'c', 'c', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19482 INSERT INTO `marc_subfield_structure` VALUES ('789', 'd', 'd', 'd', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19483 INSERT INTO `marc_subfield_structure` VALUES ('789', 'e', 'e', 'e', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19484 INSERT INTO `marc_subfield_structure` VALUES ('789', 'f', 'f', 'f', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19485 INSERT INTO `marc_subfield_structure` VALUES ('789', 'g', 'g', 'g', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19486 INSERT INTO `marc_subfield_structure` VALUES ('789', 'h', 'h', 'h', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19487 INSERT INTO `marc_subfield_structure` VALUES ('789', 'i', 'i', 'i', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19488 INSERT INTO `marc_subfield_structure` VALUES ('789', 'j', 'j', 'j', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19489 INSERT INTO `marc_subfield_structure` VALUES ('789', 'k', 'k', 'k', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19490 INSERT INTO `marc_subfield_structure` VALUES ('789', 'l', 'l', 'l', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19491 INSERT INTO `marc_subfield_structure` VALUES ('789', 'm', 'm', 'm', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19492 INSERT INTO `marc_subfield_structure` VALUES ('789', 'n', 'n', 'n', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19493 INSERT INTO `marc_subfield_structure` VALUES ('789', 'o', 'o', 'o', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19494 INSERT INTO `marc_subfield_structure` VALUES ('789', 'p', 'p', 'p', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19495 INSERT INTO `marc_subfield_structure` VALUES ('789', 'q', 'q', 'q', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19496 INSERT INTO `marc_subfield_structure` VALUES ('789', 'r', 'r', 'r', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19497 INSERT INTO `marc_subfield_structure` VALUES ('789', 's', 's', 's', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19498 INSERT INTO `marc_subfield_structure` VALUES ('789', 't', 't', 't', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19499 INSERT INTO `marc_subfield_structure` VALUES ('789', 'u', 'u', 'u', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19500 INSERT INTO `marc_subfield_structure` VALUES ('789', 'v', 'v', 'v', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19501 INSERT INTO `marc_subfield_structure` VALUES ('789', 'w', 'w', 'w', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19502 INSERT INTO `marc_subfield_structure` VALUES ('789', 'x', 'x', 'x', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19503 INSERT INTO `marc_subfield_structure` VALUES ('789', 'y', 'y', 'y', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19504 INSERT INTO `marc_subfield_structure` VALUES ('789', 'z', 'z', 'z', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19505 INSERT INTO `marc_subfield_structure` VALUES ('796', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'VR', '', '');
19506 INSERT INTO `marc_subfield_structure` VALUES ('796', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19507 INSERT INTO `marc_subfield_structure` VALUES ('796', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19508 INSERT INTO `marc_subfield_structure` VALUES ('796', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19509 INSERT INTO `marc_subfield_structure` VALUES ('796', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19510 INSERT INTO `marc_subfield_structure` VALUES ('796', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19511 INSERT INTO `marc_subfield_structure` VALUES ('796', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'VR', '', '');
19512 INSERT INTO `marc_subfield_structure` VALUES ('796', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19513 INSERT INTO `marc_subfield_structure` VALUES ('796', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19514 INSERT INTO `marc_subfield_structure` VALUES ('796', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19515 INSERT INTO `marc_subfield_structure` VALUES ('796', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19516 INSERT INTO `marc_subfield_structure` VALUES ('796', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19517 INSERT INTO `marc_subfield_structure` VALUES ('796', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19518 INSERT INTO `marc_subfield_structure` VALUES ('796', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19519 INSERT INTO `marc_subfield_structure` VALUES ('796', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19520 INSERT INTO `marc_subfield_structure` VALUES ('796', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19521 INSERT INTO `marc_subfield_structure` VALUES ('796', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19522 INSERT INTO `marc_subfield_structure` VALUES ('796', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19523 INSERT INTO `marc_subfield_structure` VALUES ('796', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19524 INSERT INTO `marc_subfield_structure` VALUES ('796', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19525 INSERT INTO `marc_subfield_structure` VALUES ('796', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19526 INSERT INTO `marc_subfield_structure` VALUES ('796', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19527 INSERT INTO `marc_subfield_structure` VALUES ('796', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19528 INSERT INTO `marc_subfield_structure` VALUES ('796', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19529 INSERT INTO `marc_subfield_structure` VALUES ('796', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19530 INSERT INTO `marc_subfield_structure` VALUES ('796', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19531 INSERT INTO `marc_subfield_structure` VALUES ('796', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19532 INSERT INTO `marc_subfield_structure` VALUES ('796', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19533 INSERT INTO `marc_subfield_structure` VALUES ('797', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'VR', '', '');
19534 INSERT INTO `marc_subfield_structure` VALUES ('797', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19535 INSERT INTO `marc_subfield_structure` VALUES ('797', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19536 INSERT INTO `marc_subfield_structure` VALUES ('797', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19537 INSERT INTO `marc_subfield_structure` VALUES ('797', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19538 INSERT INTO `marc_subfield_structure` VALUES ('797', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19539 INSERT INTO `marc_subfield_structure` VALUES ('797', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'VR', '', '');
19540 INSERT INTO `marc_subfield_structure` VALUES ('797', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19541 INSERT INTO `marc_subfield_structure` VALUES ('797', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19542 INSERT INTO `marc_subfield_structure` VALUES ('797', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19543 INSERT INTO `marc_subfield_structure` VALUES ('797', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19544 INSERT INTO `marc_subfield_structure` VALUES ('797', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19545 INSERT INTO `marc_subfield_structure` VALUES ('797', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19546 INSERT INTO `marc_subfield_structure` VALUES ('797', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19547 INSERT INTO `marc_subfield_structure` VALUES ('797', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19548 INSERT INTO `marc_subfield_structure` VALUES ('797', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19549 INSERT INTO `marc_subfield_structure` VALUES ('797', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19550 INSERT INTO `marc_subfield_structure` VALUES ('797', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19551 INSERT INTO `marc_subfield_structure` VALUES ('797', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19552 INSERT INTO `marc_subfield_structure` VALUES ('797', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19553 INSERT INTO `marc_subfield_structure` VALUES ('797', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19554 INSERT INTO `marc_subfield_structure` VALUES ('797', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19555 INSERT INTO `marc_subfield_structure` VALUES ('797', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19556 INSERT INTO `marc_subfield_structure` VALUES ('797', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19557 INSERT INTO `marc_subfield_structure` VALUES ('797', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19558 INSERT INTO `marc_subfield_structure` VALUES ('797', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19559 INSERT INTO `marc_subfield_structure` VALUES ('798', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'VR', '', '');
19560 INSERT INTO `marc_subfield_structure` VALUES ('798', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19561 INSERT INTO `marc_subfield_structure` VALUES ('798', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19562 INSERT INTO `marc_subfield_structure` VALUES ('798', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19563 INSERT INTO `marc_subfield_structure` VALUES ('798', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19564 INSERT INTO `marc_subfield_structure` VALUES ('798', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19565 INSERT INTO `marc_subfield_structure` VALUES ('798', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'VR', '', '');
19566 INSERT INTO `marc_subfield_structure` VALUES ('798', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19567 INSERT INTO `marc_subfield_structure` VALUES ('798', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19568 INSERT INTO `marc_subfield_structure` VALUES ('798', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19569 INSERT INTO `marc_subfield_structure` VALUES ('798', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19570 INSERT INTO `marc_subfield_structure` VALUES ('798', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19571 INSERT INTO `marc_subfield_structure` VALUES ('798', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19572 INSERT INTO `marc_subfield_structure` VALUES ('798', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19573 INSERT INTO `marc_subfield_structure` VALUES ('798', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19574 INSERT INTO `marc_subfield_structure` VALUES ('798', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19575 INSERT INTO `marc_subfield_structure` VALUES ('798', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19576 INSERT INTO `marc_subfield_structure` VALUES ('798', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19577 INSERT INTO `marc_subfield_structure` VALUES ('798', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19578 INSERT INTO `marc_subfield_structure` VALUES ('798', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19579 INSERT INTO `marc_subfield_structure` VALUES ('798', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19580 INSERT INTO `marc_subfield_structure` VALUES ('798', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19581 INSERT INTO `marc_subfield_structure` VALUES ('798', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19582 INSERT INTO `marc_subfield_structure` VALUES ('798', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'VR', '', '');
19583 INSERT INTO `marc_subfield_structure` VALUES ('799', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'VR', '', '');
19584 INSERT INTO `marc_subfield_structure` VALUES ('799', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19585 INSERT INTO `marc_subfield_structure` VALUES ('799', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19586 INSERT INTO `marc_subfield_structure` VALUES ('799', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19587 INSERT INTO `marc_subfield_structure` VALUES ('799', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19588 INSERT INTO `marc_subfield_structure` VALUES ('799', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'VR', '', '');
19589 INSERT INTO `marc_subfield_structure` VALUES ('799', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19590 INSERT INTO `marc_subfield_structure` VALUES ('799', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19591 INSERT INTO `marc_subfield_structure` VALUES ('799', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19592 INSERT INTO `marc_subfield_structure` VALUES ('799', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19593 INSERT INTO `marc_subfield_structure` VALUES ('799', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19594 INSERT INTO `marc_subfield_structure` VALUES ('799', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19595 INSERT INTO `marc_subfield_structure` VALUES ('799', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19596 INSERT INTO `marc_subfield_structure` VALUES ('799', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19597 INSERT INTO `marc_subfield_structure` VALUES ('799', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19598 INSERT INTO `marc_subfield_structure` VALUES ('799', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19599 INSERT INTO `marc_subfield_structure` VALUES ('799', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19600 INSERT INTO `marc_subfield_structure` VALUES ('799', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19601 INSERT INTO `marc_subfield_structure` VALUES ('799', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19602 INSERT INTO `marc_subfield_structure` VALUES ('799', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19603 INSERT INTO `marc_subfield_structure` VALUES ('799', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'VR', '', '');
19604 INSERT INTO `marc_subfield_structure` VALUES ('800', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19605 INSERT INTO `marc_subfield_structure` VALUES ('800', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19606 INSERT INTO `marc_subfield_structure` VALUES ('800', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19607 INSERT INTO `marc_subfield_structure` VALUES ('800', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'VR', '', '');
19608 INSERT INTO `marc_subfield_structure` VALUES ('800', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19609 INSERT INTO `marc_subfield_structure` VALUES ('800', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19610 INSERT INTO `marc_subfield_structure` VALUES ('800', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19611 INSERT INTO `marc_subfield_structure` VALUES ('800', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19612 INSERT INTO `marc_subfield_structure` VALUES ('800', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19613 INSERT INTO `marc_subfield_structure` VALUES ('800', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19614 INSERT INTO `marc_subfield_structure` VALUES ('800', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19615 INSERT INTO `marc_subfield_structure` VALUES ('800', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19616 INSERT INTO `marc_subfield_structure` VALUES ('800', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19617 INSERT INTO `marc_subfield_structure` VALUES ('800', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19618 INSERT INTO `marc_subfield_structure` VALUES ('800', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19619 INSERT INTO `marc_subfield_structure` VALUES ('800', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19620 INSERT INTO `marc_subfield_structure` VALUES ('800', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19621 INSERT INTO `marc_subfield_structure` VALUES ('800', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19622 INSERT INTO `marc_subfield_structure` VALUES ('800', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19623 INSERT INTO `marc_subfield_structure` VALUES ('800', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19624 INSERT INTO `marc_subfield_structure` VALUES ('800', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19625 INSERT INTO `marc_subfield_structure` VALUES ('800', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19626 INSERT INTO `marc_subfield_structure` VALUES ('800', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19627 INSERT INTO `marc_subfield_structure` VALUES ('800', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19628 INSERT INTO `marc_subfield_structure` VALUES ('800', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19629 INSERT INTO `marc_subfield_structure` VALUES ('810', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19630 INSERT INTO `marc_subfield_structure` VALUES ('810', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19631 INSERT INTO `marc_subfield_structure` VALUES ('810', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19632 INSERT INTO `marc_subfield_structure` VALUES ('810', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'VR', '', '');
19633 INSERT INTO `marc_subfield_structure` VALUES ('810', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19634 INSERT INTO `marc_subfield_structure` VALUES ('810', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19635 INSERT INTO `marc_subfield_structure` VALUES ('810', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19636 INSERT INTO `marc_subfield_structure` VALUES ('810', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19637 INSERT INTO `marc_subfield_structure` VALUES ('810', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19638 INSERT INTO `marc_subfield_structure` VALUES ('810', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19639 INSERT INTO `marc_subfield_structure` VALUES ('810', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19640 INSERT INTO `marc_subfield_structure` VALUES ('810', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19641 INSERT INTO `marc_subfield_structure` VALUES ('810', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19642 INSERT INTO `marc_subfield_structure` VALUES ('810', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19643 INSERT INTO `marc_subfield_structure` VALUES ('810', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19644 INSERT INTO `marc_subfield_structure` VALUES ('810', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19645 INSERT INTO `marc_subfield_structure` VALUES ('810', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19646 INSERT INTO `marc_subfield_structure` VALUES ('810', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19647 INSERT INTO `marc_subfield_structure` VALUES ('810', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19648 INSERT INTO `marc_subfield_structure` VALUES ('810', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19649 INSERT INTO `marc_subfield_structure` VALUES ('810', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19650 INSERT INTO `marc_subfield_structure` VALUES ('810', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19651 INSERT INTO `marc_subfield_structure` VALUES ('810', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19652 INSERT INTO `marc_subfield_structure` VALUES ('811', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19653 INSERT INTO `marc_subfield_structure` VALUES ('811', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19654 INSERT INTO `marc_subfield_structure` VALUES ('811', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19655 INSERT INTO `marc_subfield_structure` VALUES ('811', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'VR', '', '');
19656 INSERT INTO `marc_subfield_structure` VALUES ('811', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19657 INSERT INTO `marc_subfield_structure` VALUES ('811', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19658 INSERT INTO `marc_subfield_structure` VALUES ('811', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19659 INSERT INTO `marc_subfield_structure` VALUES ('811', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19660 INSERT INTO `marc_subfield_structure` VALUES ('811', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19661 INSERT INTO `marc_subfield_structure` VALUES ('811', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19662 INSERT INTO `marc_subfield_structure` VALUES ('811', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19663 INSERT INTO `marc_subfield_structure` VALUES ('811', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19664 INSERT INTO `marc_subfield_structure` VALUES ('811', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19665 INSERT INTO `marc_subfield_structure` VALUES ('811', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19666 INSERT INTO `marc_subfield_structure` VALUES ('811', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19667 INSERT INTO `marc_subfield_structure` VALUES ('811', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19668 INSERT INTO `marc_subfield_structure` VALUES ('811', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19669 INSERT INTO `marc_subfield_structure` VALUES ('811', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19670 INSERT INTO `marc_subfield_structure` VALUES ('811', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19671 INSERT INTO `marc_subfield_structure` VALUES ('811', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19672 INSERT INTO `marc_subfield_structure` VALUES ('811', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19673 INSERT INTO `marc_subfield_structure` VALUES ('830', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19674 INSERT INTO `marc_subfield_structure` VALUES ('830', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19675 INSERT INTO `marc_subfield_structure` VALUES ('830', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'VR', '', '');
19676 INSERT INTO `marc_subfield_structure` VALUES ('830', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19677 INSERT INTO `marc_subfield_structure` VALUES ('830', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19678 INSERT INTO `marc_subfield_structure` VALUES ('830', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19679 INSERT INTO `marc_subfield_structure` VALUES ('830', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19680 INSERT INTO `marc_subfield_structure` VALUES ('830', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19681 INSERT INTO `marc_subfield_structure` VALUES ('830', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19682 INSERT INTO `marc_subfield_structure` VALUES ('830', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19683 INSERT INTO `marc_subfield_structure` VALUES ('830', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19684 INSERT INTO `marc_subfield_structure` VALUES ('830', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19685 INSERT INTO `marc_subfield_structure` VALUES ('830', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19686 INSERT INTO `marc_subfield_structure` VALUES ('830', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19687 INSERT INTO `marc_subfield_structure` VALUES ('830', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19688 INSERT INTO `marc_subfield_structure` VALUES ('830', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19689 INSERT INTO `marc_subfield_structure` VALUES ('830', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19690 INSERT INTO `marc_subfield_structure` VALUES ('830', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19691 INSERT INTO `marc_subfield_structure` VALUES ('840', 'a', 'Title', 'Title', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19692 INSERT INTO `marc_subfield_structure` VALUES ('840', 'h', 'Medium', 'Medium', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19693 INSERT INTO `marc_subfield_structure` VALUES ('840', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19694 INSERT INTO `marc_subfield_structure` VALUES ('841', 'a', 'Type of record', 'Type of record', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19695 INSERT INTO `marc_subfield_structure` VALUES ('841', 'b', 'Fixed-length data elements', 'Fixed-length data elements', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19696 INSERT INTO `marc_subfield_structure` VALUES ('841', 'e', 'Encoding level', 'Encoding level', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19697 INSERT INTO `marc_subfield_structure` VALUES ('842', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19698 INSERT INTO `marc_subfield_structure` VALUES ('842', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19699 INSERT INTO `marc_subfield_structure` VALUES ('842', 'a', 'Textual physical form designator', 'Textual physical form designator', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19700 INSERT INTO `marc_subfield_structure` VALUES ('843', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19701 INSERT INTO `marc_subfield_structure` VALUES ('843', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19702 INSERT INTO `marc_subfield_structure` VALUES ('843', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19703 INSERT INTO `marc_subfield_structure` VALUES ('843', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19704 INSERT INTO `marc_subfield_structure` VALUES ('843', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19705 INSERT INTO `marc_subfield_structure` VALUES ('843', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19706 INSERT INTO `marc_subfield_structure` VALUES ('843', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19707 INSERT INTO `marc_subfield_structure` VALUES ('843', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19708 INSERT INTO `marc_subfield_structure` VALUES ('843', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19709 INSERT INTO `marc_subfield_structure` VALUES ('843', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19710 INSERT INTO `marc_subfield_structure` VALUES ('843', 'm', 'Dates of publication and/or sequential designation of issues reproduced', 'Dates of publication and/or sequential designation of issues reproduced', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19711 INSERT INTO `marc_subfield_structure` VALUES ('843', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19712 INSERT INTO `marc_subfield_structure` VALUES ('844', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19713 INSERT INTO `marc_subfield_structure` VALUES ('844', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19714 INSERT INTO `marc_subfield_structure` VALUES ('844', 'a', 'Name of unit', 'Name of unit', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19715 INSERT INTO `marc_subfield_structure` VALUES ('845', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19716 INSERT INTO `marc_subfield_structure` VALUES ('845', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19717 INSERT INTO `marc_subfield_structure` VALUES ('845', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19718 INSERT INTO `marc_subfield_structure` VALUES ('845', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19719 INSERT INTO `marc_subfield_structure` VALUES ('845', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19720 INSERT INTO `marc_subfield_structure` VALUES ('845', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19721 INSERT INTO `marc_subfield_structure` VALUES ('845', 'c', 'Authorization', 'Authorization', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19722 INSERT INTO `marc_subfield_structure` VALUES ('845', 'd', 'Authorized users', 'Authorized users', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19723 INSERT INTO `marc_subfield_structure` VALUES ('850', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19724 INSERT INTO `marc_subfield_structure` VALUES ('850', 'a', 'Holding institution', 'Holding institution', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19725 INSERT INTO `marc_subfield_structure` VALUES ('850', 'b', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19726 INSERT INTO `marc_subfield_structure` VALUES ('850', 'd', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19727 INSERT INTO `marc_subfield_structure` VALUES ('850', 'e', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19728 INSERT INTO `marc_subfield_structure` VALUES ('851', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19729 INSERT INTO `marc_subfield_structure` VALUES ('851', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19730 INSERT INTO `marc_subfield_structure` VALUES ('851', 'a', 'Name (custodian or owner)', 'Name (custodian or owner)', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19731 INSERT INTO `marc_subfield_structure` VALUES ('851', 'b', 'Institutional division', 'Institutional division', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19732 INSERT INTO `marc_subfield_structure` VALUES ('851', 'c', 'Street address', 'Street address', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19733 INSERT INTO `marc_subfield_structure` VALUES ('851', 'd', 'Country', 'Country', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19734 INSERT INTO `marc_subfield_structure` VALUES ('851', 'e', 'Location of units', 'Location of units', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19735 INSERT INTO `marc_subfield_structure` VALUES ('851', 'f', 'Item number', 'Item number', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19736 INSERT INTO `marc_subfield_structure` VALUES ('851', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'VR', '', '');
19737 INSERT INTO `marc_subfield_structure` VALUES ('852', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19738 INSERT INTO `marc_subfield_structure` VALUES ('852', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19739 INSERT INTO `marc_subfield_structure` VALUES ('852', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19740 INSERT INTO `marc_subfield_structure` VALUES ('852', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19741 INSERT INTO `marc_subfield_structure` VALUES ('852', 'a', 'Location', 'Location', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19742 INSERT INTO `marc_subfield_structure` VALUES ('852', 'b', 'Sublocation or collection', 'Sublocation or collection', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19743 INSERT INTO `marc_subfield_structure` VALUES ('852', 'c', 'Shelving location', 'Shelving location', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19744 INSERT INTO `marc_subfield_structure` VALUES ('852', 'e', 'Address', 'Address', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19745 INSERT INTO `marc_subfield_structure` VALUES ('852', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19746 INSERT INTO `marc_subfield_structure` VALUES ('852', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19747 INSERT INTO `marc_subfield_structure` VALUES ('852', 'h', 'Classification part', 'Classification part', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19748 INSERT INTO `marc_subfield_structure` VALUES ('852', 'i', 'Item part', 'Item part', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19749 INSERT INTO `marc_subfield_structure` VALUES ('852', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19750 INSERT INTO `marc_subfield_structure` VALUES ('852', 'k', 'Call number prefix', 'Call number prefix', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19751 INSERT INTO `marc_subfield_structure` VALUES ('852', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19752 INSERT INTO `marc_subfield_structure` VALUES ('852', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19753 INSERT INTO `marc_subfield_structure` VALUES ('852', 'n', 'Country code', 'Country code', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19754 INSERT INTO `marc_subfield_structure` VALUES ('852', 'p', 'Piece designation', 'Piece designation', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19755 INSERT INTO `marc_subfield_structure` VALUES ('852', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19756 INSERT INTO `marc_subfield_structure` VALUES ('852', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19757 INSERT INTO `marc_subfield_structure` VALUES ('852', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19758 INSERT INTO `marc_subfield_structure` VALUES ('852', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19759 INSERT INTO `marc_subfield_structure` VALUES ('852', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19760 INSERT INTO `marc_subfield_structure` VALUES ('853', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19761 INSERT INTO `marc_subfield_structure` VALUES ('853', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19762 INSERT INTO `marc_subfield_structure` VALUES ('853', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19763 INSERT INTO `marc_subfield_structure` VALUES ('853', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19764 INSERT INTO `marc_subfield_structure` VALUES ('853', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19765 INSERT INTO `marc_subfield_structure` VALUES ('853', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19766 INSERT INTO `marc_subfield_structure` VALUES ('853', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19767 INSERT INTO `marc_subfield_structure` VALUES ('853', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19768 INSERT INTO `marc_subfield_structure` VALUES ('853', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19769 INSERT INTO `marc_subfield_structure` VALUES ('853', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19770 INSERT INTO `marc_subfield_structure` VALUES ('853', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19771 INSERT INTO `marc_subfield_structure` VALUES ('853', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19772 INSERT INTO `marc_subfield_structure` VALUES ('853', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19773 INSERT INTO `marc_subfield_structure` VALUES ('853', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19774 INSERT INTO `marc_subfield_structure` VALUES ('853', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19775 INSERT INTO `marc_subfield_structure` VALUES ('853', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19776 INSERT INTO `marc_subfield_structure` VALUES ('853', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19777 INSERT INTO `marc_subfield_structure` VALUES ('853', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19778 INSERT INTO `marc_subfield_structure` VALUES ('853', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19779 INSERT INTO `marc_subfield_structure` VALUES ('853', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19780 INSERT INTO `marc_subfield_structure` VALUES ('853', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19781 INSERT INTO `marc_subfield_structure` VALUES ('853', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19782 INSERT INTO `marc_subfield_structure` VALUES ('853', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19783 INSERT INTO `marc_subfield_structure` VALUES ('853', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19784 INSERT INTO `marc_subfield_structure` VALUES ('853', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19785 INSERT INTO `marc_subfield_structure` VALUES ('854', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19786 INSERT INTO `marc_subfield_structure` VALUES ('854', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19787 INSERT INTO `marc_subfield_structure` VALUES ('854', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19788 INSERT INTO `marc_subfield_structure` VALUES ('854', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19789 INSERT INTO `marc_subfield_structure` VALUES ('854', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19790 INSERT INTO `marc_subfield_structure` VALUES ('854', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19791 INSERT INTO `marc_subfield_structure` VALUES ('854', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19792 INSERT INTO `marc_subfield_structure` VALUES ('854', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19793 INSERT INTO `marc_subfield_structure` VALUES ('854', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19794 INSERT INTO `marc_subfield_structure` VALUES ('854', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19795 INSERT INTO `marc_subfield_structure` VALUES ('854', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19796 INSERT INTO `marc_subfield_structure` VALUES ('854', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19797 INSERT INTO `marc_subfield_structure` VALUES ('854', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19798 INSERT INTO `marc_subfield_structure` VALUES ('854', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19799 INSERT INTO `marc_subfield_structure` VALUES ('854', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19800 INSERT INTO `marc_subfield_structure` VALUES ('854', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19801 INSERT INTO `marc_subfield_structure` VALUES ('854', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19802 INSERT INTO `marc_subfield_structure` VALUES ('854', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19803 INSERT INTO `marc_subfield_structure` VALUES ('854', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19804 INSERT INTO `marc_subfield_structure` VALUES ('854', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19805 INSERT INTO `marc_subfield_structure` VALUES ('854', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19806 INSERT INTO `marc_subfield_structure` VALUES ('854', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19807 INSERT INTO `marc_subfield_structure` VALUES ('854', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19808 INSERT INTO `marc_subfield_structure` VALUES ('854', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19809 INSERT INTO `marc_subfield_structure` VALUES ('854', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19810 INSERT INTO `marc_subfield_structure` VALUES ('855', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19811 INSERT INTO `marc_subfield_structure` VALUES ('855', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19812 INSERT INTO `marc_subfield_structure` VALUES ('855', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19813 INSERT INTO `marc_subfield_structure` VALUES ('855', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19814 INSERT INTO `marc_subfield_structure` VALUES ('855', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19815 INSERT INTO `marc_subfield_structure` VALUES ('855', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19816 INSERT INTO `marc_subfield_structure` VALUES ('855', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19817 INSERT INTO `marc_subfield_structure` VALUES ('855', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19818 INSERT INTO `marc_subfield_structure` VALUES ('855', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19819 INSERT INTO `marc_subfield_structure` VALUES ('855', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19820 INSERT INTO `marc_subfield_structure` VALUES ('855', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19821 INSERT INTO `marc_subfield_structure` VALUES ('855', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19822 INSERT INTO `marc_subfield_structure` VALUES ('855', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19823 INSERT INTO `marc_subfield_structure` VALUES ('855', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19824 INSERT INTO `marc_subfield_structure` VALUES ('855', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19825 INSERT INTO `marc_subfield_structure` VALUES ('855', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19826 INSERT INTO `marc_subfield_structure` VALUES ('855', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19827 INSERT INTO `marc_subfield_structure` VALUES ('855', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19828 INSERT INTO `marc_subfield_structure` VALUES ('855', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19829 INSERT INTO `marc_subfield_structure` VALUES ('855', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19830 INSERT INTO `marc_subfield_structure` VALUES ('855', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19831 INSERT INTO `marc_subfield_structure` VALUES ('855', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19832 INSERT INTO `marc_subfield_structure` VALUES ('855', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19833 INSERT INTO `marc_subfield_structure` VALUES ('855', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19834 INSERT INTO `marc_subfield_structure` VALUES ('855', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19835 INSERT INTO `marc_subfield_structure` VALUES ('856', '2', 'Access method', 'Access method', 0, 0, '', 8, '', '', '', 0, -6, 'VR', '', '');
19836 INSERT INTO `marc_subfield_structure` VALUES ('856', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', 0, -6, 'VR', '', '');
19837 INSERT INTO `marc_subfield_structure` VALUES ('856', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', 0, -6, 'VR', '', '');
19838 INSERT INTO `marc_subfield_structure` VALUES ('856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', 0, -6, 'VR', '', '');
19839 INSERT INTO `marc_subfield_structure` VALUES ('856', 'a', 'Host name', 'Host name', 1, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19840 INSERT INTO `marc_subfield_structure` VALUES ('856', 'b', 'Access number', 'Access number', 1, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19841 INSERT INTO `marc_subfield_structure` VALUES ('856', 'c', 'Compression information', 'Compression information', 1, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19842 INSERT INTO `marc_subfield_structure` VALUES ('856', 'd', 'Path', 'Path', 1, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19843 INSERT INTO `marc_subfield_structure` VALUES ('856', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19844 INSERT INTO `marc_subfield_structure` VALUES ('856', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19845 INSERT INTO `marc_subfield_structure` VALUES ('856', 'i', 'Instruction', 'Instruction', 1, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19846 INSERT INTO `marc_subfield_structure` VALUES ('856', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19847 INSERT INTO `marc_subfield_structure` VALUES ('856', 'k', 'Password', 'Password', 0, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19848 INSERT INTO `marc_subfield_structure` VALUES ('856', 'l', 'Logon', 'Logon', 0, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19849 INSERT INTO `marc_subfield_structure` VALUES ('856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19850 INSERT INTO `marc_subfield_structure` VALUES ('856', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19851 INSERT INTO `marc_subfield_structure` VALUES ('856', 'o', 'Operating system', 'Operating system', 0, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19852 INSERT INTO `marc_subfield_structure` VALUES ('856', 'p', 'Port', 'Port', 0, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19853 INSERT INTO `marc_subfield_structure` VALUES ('856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19854 INSERT INTO `marc_subfield_structure` VALUES ('856', 'r', 'Settings', 'Settings', 0, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19855 INSERT INTO `marc_subfield_structure` VALUES ('856', 's', 'File size', 'File size', 1, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19856 INSERT INTO `marc_subfield_structure` VALUES ('856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19857 INSERT INTO `marc_subfield_structure` VALUES ('856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 'biblioitems.url', 8, '', '', '', 1, -1, 'VR', '', '');
19858 INSERT INTO `marc_subfield_structure` VALUES ('856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19859 INSERT INTO `marc_subfield_structure` VALUES ('856', 'w', 'Record control number', 'Record control number', 1, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19860 INSERT INTO `marc_subfield_structure` VALUES ('856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 1, 'VR', '', '');
19861 INSERT INTO `marc_subfield_structure` VALUES ('856', 'y', 'Link text', 'Link text', 1, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19862 INSERT INTO `marc_subfield_structure` VALUES ('856', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, -1, 'VR', '', '');
19863 INSERT INTO `marc_subfield_structure` VALUES ('859', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'VR', '', '');
19864 INSERT INTO `marc_subfield_structure` VALUES ('859', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'VR', '', '');
19865 INSERT INTO `marc_subfield_structure` VALUES ('859', 'd', 'TDC (RLIN)', 'TDC (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'VR', '', '');
19866 INSERT INTO `marc_subfield_structure` VALUES ('859', 'l', 'LIB (RLIN)', 'LIB (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'VR', '', '');
19867 INSERT INTO `marc_subfield_structure` VALUES ('859', 'p', 'PRI (RLIN)', 'PRI (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'VR', '', '');
19868 INSERT INTO `marc_subfield_structure` VALUES ('859', 'r', 'REG (RLIN)', 'REG (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'VR', '', '');
19869 INSERT INTO `marc_subfield_structure` VALUES ('859', 'v', 'VER (RLIN)', 'VER (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'VR', '', '');
19870 INSERT INTO `marc_subfield_structure` VALUES ('859', 'x', 'LDEL (RLIN)', 'LDEL (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'VR', '', '');
19871 INSERT INTO `marc_subfield_structure` VALUES ('866', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19872 INSERT INTO `marc_subfield_structure` VALUES ('866', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19873 INSERT INTO `marc_subfield_structure` VALUES ('866', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'VR', '', '');
19874 INSERT INTO `marc_subfield_structure` VALUES ('866', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'VR', '', '');
19875 INSERT INTO `marc_subfield_structure` VALUES ('866', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'VR', '', '');
19876 INSERT INTO `marc_subfield_structure` VALUES ('867', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19877 INSERT INTO `marc_subfield_structure` VALUES ('867', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19878 INSERT INTO `marc_subfield_structure` VALUES ('867', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'VR', '', '');
19879 INSERT INTO `marc_subfield_structure` VALUES ('867', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'VR', '', '');
19880 INSERT INTO `marc_subfield_structure` VALUES ('867', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'VR', '', '');
19881 INSERT INTO `marc_subfield_structure` VALUES ('868', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19882 INSERT INTO `marc_subfield_structure` VALUES ('868', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19883 INSERT INTO `marc_subfield_structure` VALUES ('868', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'VR', '', '');
19884 INSERT INTO `marc_subfield_structure` VALUES ('868', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'VR', '', '');
19885 INSERT INTO `marc_subfield_structure` VALUES ('868', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'VR', '', '');
19886 INSERT INTO `marc_subfield_structure` VALUES ('870', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19887 INSERT INTO `marc_subfield_structure` VALUES ('870', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19888 INSERT INTO `marc_subfield_structure` VALUES ('870', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19889 INSERT INTO `marc_subfield_structure` VALUES ('870', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19890 INSERT INTO `marc_subfield_structure` VALUES ('870', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19891 INSERT INTO `marc_subfield_structure` VALUES ('870', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19892 INSERT INTO `marc_subfield_structure` VALUES ('870', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19893 INSERT INTO `marc_subfield_structure` VALUES ('870', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19894 INSERT INTO `marc_subfield_structure` VALUES ('870', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19895 INSERT INTO `marc_subfield_structure` VALUES ('870', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19896 INSERT INTO `marc_subfield_structure` VALUES ('870', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19897 INSERT INTO `marc_subfield_structure` VALUES ('870', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19898 INSERT INTO `marc_subfield_structure` VALUES ('870', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19899 INSERT INTO `marc_subfield_structure` VALUES ('870', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19900 INSERT INTO `marc_subfield_structure` VALUES ('870', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19901 INSERT INTO `marc_subfield_structure` VALUES ('870', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19902 INSERT INTO `marc_subfield_structure` VALUES ('870', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19903 INSERT INTO `marc_subfield_structure` VALUES ('871', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19904 INSERT INTO `marc_subfield_structure` VALUES ('871', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19905 INSERT INTO `marc_subfield_structure` VALUES ('871', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19906 INSERT INTO `marc_subfield_structure` VALUES ('871', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19907 INSERT INTO `marc_subfield_structure` VALUES ('871', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19908 INSERT INTO `marc_subfield_structure` VALUES ('871', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19909 INSERT INTO `marc_subfield_structure` VALUES ('871', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19910 INSERT INTO `marc_subfield_structure` VALUES ('871', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19911 INSERT INTO `marc_subfield_structure` VALUES ('871', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19912 INSERT INTO `marc_subfield_structure` VALUES ('871', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19913 INSERT INTO `marc_subfield_structure` VALUES ('871', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19914 INSERT INTO `marc_subfield_structure` VALUES ('871', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19915 INSERT INTO `marc_subfield_structure` VALUES ('871', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19916 INSERT INTO `marc_subfield_structure` VALUES ('871', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19917 INSERT INTO `marc_subfield_structure` VALUES ('871', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19918 INSERT INTO `marc_subfield_structure` VALUES ('871', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19919 INSERT INTO `marc_subfield_structure` VALUES ('872', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19920 INSERT INTO `marc_subfield_structure` VALUES ('872', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19921 INSERT INTO `marc_subfield_structure` VALUES ('872', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19922 INSERT INTO `marc_subfield_structure` VALUES ('872', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19923 INSERT INTO `marc_subfield_structure` VALUES ('872', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19924 INSERT INTO `marc_subfield_structure` VALUES ('872', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19925 INSERT INTO `marc_subfield_structure` VALUES ('872', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19926 INSERT INTO `marc_subfield_structure` VALUES ('872', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19927 INSERT INTO `marc_subfield_structure` VALUES ('872', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19928 INSERT INTO `marc_subfield_structure` VALUES ('872', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19929 INSERT INTO `marc_subfield_structure` VALUES ('872', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19930 INSERT INTO `marc_subfield_structure` VALUES ('872', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19931 INSERT INTO `marc_subfield_structure` VALUES ('872', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19932 INSERT INTO `marc_subfield_structure` VALUES ('872', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19933 INSERT INTO `marc_subfield_structure` VALUES ('872', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19934 INSERT INTO `marc_subfield_structure` VALUES ('872', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19935 INSERT INTO `marc_subfield_structure` VALUES ('872', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
19936 INSERT INTO `marc_subfield_structure` VALUES ('873', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19937 INSERT INTO `marc_subfield_structure` VALUES ('873', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19938 INSERT INTO `marc_subfield_structure` VALUES ('873', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19939 INSERT INTO `marc_subfield_structure` VALUES ('873', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19940 INSERT INTO `marc_subfield_structure` VALUES ('873', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19941 INSERT INTO `marc_subfield_structure` VALUES ('873', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19942 INSERT INTO `marc_subfield_structure` VALUES ('873', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19943 INSERT INTO `marc_subfield_structure` VALUES ('873', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19944 INSERT INTO `marc_subfield_structure` VALUES ('873', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19945 INSERT INTO `marc_subfield_structure` VALUES ('873', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19946 INSERT INTO `marc_subfield_structure` VALUES ('873', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19947 INSERT INTO `marc_subfield_structure` VALUES ('873', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19948 INSERT INTO `marc_subfield_structure` VALUES ('873', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19949 INSERT INTO `marc_subfield_structure` VALUES ('873', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19950 INSERT INTO `marc_subfield_structure` VALUES ('873', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19951 INSERT INTO `marc_subfield_structure` VALUES ('873', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
19952 INSERT INTO `marc_subfield_structure` VALUES ('876', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19953 INSERT INTO `marc_subfield_structure` VALUES ('876', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19954 INSERT INTO `marc_subfield_structure` VALUES ('876', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19955 INSERT INTO `marc_subfield_structure` VALUES ('876', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19956 INSERT INTO `marc_subfield_structure` VALUES ('876', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19957 INSERT INTO `marc_subfield_structure` VALUES ('876', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19958 INSERT INTO `marc_subfield_structure` VALUES ('876', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19959 INSERT INTO `marc_subfield_structure` VALUES ('876', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19960 INSERT INTO `marc_subfield_structure` VALUES ('876', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19961 INSERT INTO `marc_subfield_structure` VALUES ('876', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19962 INSERT INTO `marc_subfield_structure` VALUES ('876', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19963 INSERT INTO `marc_subfield_structure` VALUES ('876', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19964 INSERT INTO `marc_subfield_structure` VALUES ('876', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19965 INSERT INTO `marc_subfield_structure` VALUES ('876', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19966 INSERT INTO `marc_subfield_structure` VALUES ('876', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19967 INSERT INTO `marc_subfield_structure` VALUES ('876', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19968 INSERT INTO `marc_subfield_structure` VALUES ('877', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19969 INSERT INTO `marc_subfield_structure` VALUES ('877', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19970 INSERT INTO `marc_subfield_structure` VALUES ('877', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19971 INSERT INTO `marc_subfield_structure` VALUES ('877', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19972 INSERT INTO `marc_subfield_structure` VALUES ('877', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19973 INSERT INTO `marc_subfield_structure` VALUES ('877', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19974 INSERT INTO `marc_subfield_structure` VALUES ('877', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19975 INSERT INTO `marc_subfield_structure` VALUES ('877', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19976 INSERT INTO `marc_subfield_structure` VALUES ('877', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19977 INSERT INTO `marc_subfield_structure` VALUES ('877', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19978 INSERT INTO `marc_subfield_structure` VALUES ('877', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19979 INSERT INTO `marc_subfield_structure` VALUES ('877', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19980 INSERT INTO `marc_subfield_structure` VALUES ('877', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19981 INSERT INTO `marc_subfield_structure` VALUES ('877', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19982 INSERT INTO `marc_subfield_structure` VALUES ('877', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19983 INSERT INTO `marc_subfield_structure` VALUES ('877', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19984 INSERT INTO `marc_subfield_structure` VALUES ('878', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19985 INSERT INTO `marc_subfield_structure` VALUES ('878', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19986 INSERT INTO `marc_subfield_structure` VALUES ('878', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19987 INSERT INTO `marc_subfield_structure` VALUES ('878', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19988 INSERT INTO `marc_subfield_structure` VALUES ('878', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19989 INSERT INTO `marc_subfield_structure` VALUES ('878', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19990 INSERT INTO `marc_subfield_structure` VALUES ('878', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19991 INSERT INTO `marc_subfield_structure` VALUES ('878', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19992 INSERT INTO `marc_subfield_structure` VALUES ('878', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19993 INSERT INTO `marc_subfield_structure` VALUES ('878', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19994 INSERT INTO `marc_subfield_structure` VALUES ('878', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19995 INSERT INTO `marc_subfield_structure` VALUES ('878', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19996 INSERT INTO `marc_subfield_structure` VALUES ('878', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19997 INSERT INTO `marc_subfield_structure` VALUES ('878', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19998 INSERT INTO `marc_subfield_structure` VALUES ('878', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
19999 INSERT INTO `marc_subfield_structure` VALUES ('878', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
20000 INSERT INTO `marc_subfield_structure` VALUES ('880', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20001 INSERT INTO `marc_subfield_structure` VALUES ('880', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20002 INSERT INTO `marc_subfield_structure` VALUES ('880', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20003 INSERT INTO `marc_subfield_structure` VALUES ('880', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20004 INSERT INTO `marc_subfield_structure` VALUES ('880', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20005 INSERT INTO `marc_subfield_structure` VALUES ('880', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20006 INSERT INTO `marc_subfield_structure` VALUES ('880', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20007 INSERT INTO `marc_subfield_structure` VALUES ('880', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20008 INSERT INTO `marc_subfield_structure` VALUES ('880', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20009 INSERT INTO `marc_subfield_structure` VALUES ('880', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20010 INSERT INTO `marc_subfield_structure` VALUES ('880', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20011 INSERT INTO `marc_subfield_structure` VALUES ('880', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20012 INSERT INTO `marc_subfield_structure` VALUES ('880', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20013 INSERT INTO `marc_subfield_structure` VALUES ('880', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20014 INSERT INTO `marc_subfield_structure` VALUES ('880', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20015 INSERT INTO `marc_subfield_structure` VALUES ('880', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20016 INSERT INTO `marc_subfield_structure` VALUES ('880', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20017 INSERT INTO `marc_subfield_structure` VALUES ('880', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20018 INSERT INTO `marc_subfield_structure` VALUES ('880', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20019 INSERT INTO `marc_subfield_structure` VALUES ('880', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20020 INSERT INTO `marc_subfield_structure` VALUES ('880', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20021 INSERT INTO `marc_subfield_structure` VALUES ('880', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20022 INSERT INTO `marc_subfield_structure` VALUES ('880', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20023 INSERT INTO `marc_subfield_structure` VALUES ('880', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20024 INSERT INTO `marc_subfield_structure` VALUES ('880', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20025 INSERT INTO `marc_subfield_structure` VALUES ('880', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20026 INSERT INTO `marc_subfield_structure` VALUES ('880', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20027 INSERT INTO `marc_subfield_structure` VALUES ('880', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20028 INSERT INTO `marc_subfield_structure` VALUES ('880', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20029 INSERT INTO `marc_subfield_structure` VALUES ('880', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20030 INSERT INTO `marc_subfield_structure` VALUES ('880', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20031 INSERT INTO `marc_subfield_structure` VALUES ('880', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20032 INSERT INTO `marc_subfield_structure` VALUES ('880', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20033 INSERT INTO `marc_subfield_structure` VALUES ('880', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20034 INSERT INTO `marc_subfield_structure` VALUES ('886', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20035 INSERT INTO `marc_subfield_structure` VALUES ('886', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20036 INSERT INTO `marc_subfield_structure` VALUES ('886', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20037 INSERT INTO `marc_subfield_structure` VALUES ('886', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20038 INSERT INTO `marc_subfield_structure` VALUES ('886', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20039 INSERT INTO `marc_subfield_structure` VALUES ('886', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20040 INSERT INTO `marc_subfield_structure` VALUES ('886', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20041 INSERT INTO `marc_subfield_structure` VALUES ('886', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20042 INSERT INTO `marc_subfield_structure` VALUES ('886', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20043 INSERT INTO `marc_subfield_structure` VALUES ('886', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20044 INSERT INTO `marc_subfield_structure` VALUES ('886', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20045 INSERT INTO `marc_subfield_structure` VALUES ('886', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20046 INSERT INTO `marc_subfield_structure` VALUES ('886', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20047 INSERT INTO `marc_subfield_structure` VALUES ('886', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20048 INSERT INTO `marc_subfield_structure` VALUES ('886', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20049 INSERT INTO `marc_subfield_structure` VALUES ('886', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20050 INSERT INTO `marc_subfield_structure` VALUES ('886', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20051 INSERT INTO `marc_subfield_structure` VALUES ('886', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20052 INSERT INTO `marc_subfield_structure` VALUES ('886', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20053 INSERT INTO `marc_subfield_structure` VALUES ('886', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20054 INSERT INTO `marc_subfield_structure` VALUES ('886', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20055 INSERT INTO `marc_subfield_structure` VALUES ('886', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20056 INSERT INTO `marc_subfield_structure` VALUES ('886', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20057 INSERT INTO `marc_subfield_structure` VALUES ('886', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20058 INSERT INTO `marc_subfield_structure` VALUES ('886', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20059 INSERT INTO `marc_subfield_structure` VALUES ('886', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20060 INSERT INTO `marc_subfield_structure` VALUES ('886', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20061 INSERT INTO `marc_subfield_structure` VALUES ('886', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20062 INSERT INTO `marc_subfield_structure` VALUES ('886', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20063 INSERT INTO `marc_subfield_structure` VALUES ('886', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20064 INSERT INTO `marc_subfield_structure` VALUES ('886', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20065 INSERT INTO `marc_subfield_structure` VALUES ('886', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20066 INSERT INTO `marc_subfield_structure` VALUES ('886', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20067 INSERT INTO `marc_subfield_structure` VALUES ('886', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20068 INSERT INTO `marc_subfield_structure` VALUES ('886', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20069 INSERT INTO `marc_subfield_structure` VALUES ('886', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20070 INSERT INTO `marc_subfield_structure` VALUES ('887', '2', 'Source of data', 'Source of data', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20071 INSERT INTO `marc_subfield_structure` VALUES ('887', 'a', 'Content of non-MARC field', 'Content of non-MARC field', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20072 INSERT INTO `marc_subfield_structure` VALUES ('896', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'VR', '', '');
20073 INSERT INTO `marc_subfield_structure` VALUES ('896', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20074 INSERT INTO `marc_subfield_structure` VALUES ('896', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20075 INSERT INTO `marc_subfield_structure` VALUES ('896', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20076 INSERT INTO `marc_subfield_structure` VALUES ('896', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'VR', '', '');
20077 INSERT INTO `marc_subfield_structure` VALUES ('896', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20078 INSERT INTO `marc_subfield_structure` VALUES ('896', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20079 INSERT INTO `marc_subfield_structure` VALUES ('896', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20080 INSERT INTO `marc_subfield_structure` VALUES ('896', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20081 INSERT INTO `marc_subfield_structure` VALUES ('896', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20082 INSERT INTO `marc_subfield_structure` VALUES ('896', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20083 INSERT INTO `marc_subfield_structure` VALUES ('896', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20084 INSERT INTO `marc_subfield_structure` VALUES ('896', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20085 INSERT INTO `marc_subfield_structure` VALUES ('896', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20086 INSERT INTO `marc_subfield_structure` VALUES ('896', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20087 INSERT INTO `marc_subfield_structure` VALUES ('896', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20088 INSERT INTO `marc_subfield_structure` VALUES ('896', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20089 INSERT INTO `marc_subfield_structure` VALUES ('896', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20090 INSERT INTO `marc_subfield_structure` VALUES ('896', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20091 INSERT INTO `marc_subfield_structure` VALUES ('896', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20092 INSERT INTO `marc_subfield_structure` VALUES ('896', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20093 INSERT INTO `marc_subfield_structure` VALUES ('896', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20094 INSERT INTO `marc_subfield_structure` VALUES ('896', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20095 INSERT INTO `marc_subfield_structure` VALUES ('896', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20096 INSERT INTO `marc_subfield_structure` VALUES ('896', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20097 INSERT INTO `marc_subfield_structure` VALUES ('896', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20098 INSERT INTO `marc_subfield_structure` VALUES ('897', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'VR', '', '');
20099 INSERT INTO `marc_subfield_structure` VALUES ('897', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20100 INSERT INTO `marc_subfield_structure` VALUES ('897', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20101 INSERT INTO `marc_subfield_structure` VALUES ('897', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20102 INSERT INTO `marc_subfield_structure` VALUES ('897', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'VR', '', '');
20103 INSERT INTO `marc_subfield_structure` VALUES ('897', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20104 INSERT INTO `marc_subfield_structure` VALUES ('897', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20105 INSERT INTO `marc_subfield_structure` VALUES ('897', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20106 INSERT INTO `marc_subfield_structure` VALUES ('897', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20107 INSERT INTO `marc_subfield_structure` VALUES ('897', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20108 INSERT INTO `marc_subfield_structure` VALUES ('897', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20109 INSERT INTO `marc_subfield_structure` VALUES ('897', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20110 INSERT INTO `marc_subfield_structure` VALUES ('897', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20111 INSERT INTO `marc_subfield_structure` VALUES ('897', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20112 INSERT INTO `marc_subfield_structure` VALUES ('897', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20113 INSERT INTO `marc_subfield_structure` VALUES ('897', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20114 INSERT INTO `marc_subfield_structure` VALUES ('897', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20115 INSERT INTO `marc_subfield_structure` VALUES ('897', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20116 INSERT INTO `marc_subfield_structure` VALUES ('897', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20117 INSERT INTO `marc_subfield_structure` VALUES ('897', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20118 INSERT INTO `marc_subfield_structure` VALUES ('897', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20119 INSERT INTO `marc_subfield_structure` VALUES ('897', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20120 INSERT INTO `marc_subfield_structure` VALUES ('897', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20121 INSERT INTO `marc_subfield_structure` VALUES ('897', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20122 INSERT INTO `marc_subfield_structure` VALUES ('898', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'VR', '', '');
20123 INSERT INTO `marc_subfield_structure` VALUES ('898', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20124 INSERT INTO `marc_subfield_structure` VALUES ('898', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20125 INSERT INTO `marc_subfield_structure` VALUES ('898', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20126 INSERT INTO `marc_subfield_structure` VALUES ('898', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'VR', '', '');
20127 INSERT INTO `marc_subfield_structure` VALUES ('898', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20128 INSERT INTO `marc_subfield_structure` VALUES ('898', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20129 INSERT INTO `marc_subfield_structure` VALUES ('898', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20130 INSERT INTO `marc_subfield_structure` VALUES ('898', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20131 INSERT INTO `marc_subfield_structure` VALUES ('898', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20132 INSERT INTO `marc_subfield_structure` VALUES ('898', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20133 INSERT INTO `marc_subfield_structure` VALUES ('898', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20134 INSERT INTO `marc_subfield_structure` VALUES ('898', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20135 INSERT INTO `marc_subfield_structure` VALUES ('898', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20136 INSERT INTO `marc_subfield_structure` VALUES ('898', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20137 INSERT INTO `marc_subfield_structure` VALUES ('898', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20138 INSERT INTO `marc_subfield_structure` VALUES ('898', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20139 INSERT INTO `marc_subfield_structure` VALUES ('898', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20140 INSERT INTO `marc_subfield_structure` VALUES ('898', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20141 INSERT INTO `marc_subfield_structure` VALUES ('898', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20142 INSERT INTO `marc_subfield_structure` VALUES ('898', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20143 INSERT INTO `marc_subfield_structure` VALUES ('898', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20144 INSERT INTO `marc_subfield_structure` VALUES ('899', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'VR', '', '');
20145 INSERT INTO `marc_subfield_structure` VALUES ('899', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20146 INSERT INTO `marc_subfield_structure` VALUES ('899', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20147 INSERT INTO `marc_subfield_structure` VALUES ('899', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'VR', '', '');
20148 INSERT INTO `marc_subfield_structure` VALUES ('899', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20149 INSERT INTO `marc_subfield_structure` VALUES ('899', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20150 INSERT INTO `marc_subfield_structure` VALUES ('899', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20151 INSERT INTO `marc_subfield_structure` VALUES ('899', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20152 INSERT INTO `marc_subfield_structure` VALUES ('899', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20153 INSERT INTO `marc_subfield_structure` VALUES ('899', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20154 INSERT INTO `marc_subfield_structure` VALUES ('899', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20155 INSERT INTO `marc_subfield_structure` VALUES ('899', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20156 INSERT INTO `marc_subfield_structure` VALUES ('899', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20157 INSERT INTO `marc_subfield_structure` VALUES ('899', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20158 INSERT INTO `marc_subfield_structure` VALUES ('899', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20159 INSERT INTO `marc_subfield_structure` VALUES ('899', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20160 INSERT INTO `marc_subfield_structure` VALUES ('899', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20161 INSERT INTO `marc_subfield_structure` VALUES ('899', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20162 INSERT INTO `marc_subfield_structure` VALUES ('899', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, 5, 'VR', '', '');
20163 INSERT INTO `marc_subfield_structure` VALUES ('89e', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20164 INSERT INTO `marc_subfield_structure` VALUES ('89e', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20165 INSERT INTO `marc_subfield_structure` VALUES ('89e', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20166 INSERT INTO `marc_subfield_structure` VALUES ('89e', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20167 INSERT INTO `marc_subfield_structure` VALUES ('89e', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20168 INSERT INTO `marc_subfield_structure` VALUES ('89e', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20169 INSERT INTO `marc_subfield_structure` VALUES ('89e', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20170 INSERT INTO `marc_subfield_structure` VALUES ('89e', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20171 INSERT INTO `marc_subfield_structure` VALUES ('89e', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20172 INSERT INTO `marc_subfield_structure` VALUES ('89e', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20173 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20174 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20175 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20176 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20177 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20178 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20179 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20180 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20181 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20182 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20183 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20184 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20185 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20186 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20187 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20188 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20189 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20190 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20191 INSERT INTO `marc_subfield_structure` VALUES ('89e', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20192 INSERT INTO `marc_subfield_structure` VALUES ('89e', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20193 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20194 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20195 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20196 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20197 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20198 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'VR', '', '');
20199 INSERT INTO `marc_subfield_structure` VALUES ('900', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20200 INSERT INTO `marc_subfield_structure` VALUES ('900', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20201 INSERT INTO `marc_subfield_structure` VALUES ('900', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20202 INSERT INTO `marc_subfield_structure` VALUES ('900', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20203 INSERT INTO `marc_subfield_structure` VALUES ('900', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20204 INSERT INTO `marc_subfield_structure` VALUES ('900', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20205 INSERT INTO `marc_subfield_structure` VALUES ('900', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20206 INSERT INTO `marc_subfield_structure` VALUES ('900', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20207 INSERT INTO `marc_subfield_structure` VALUES ('900', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20208 INSERT INTO `marc_subfield_structure` VALUES ('900', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20209 INSERT INTO `marc_subfield_structure` VALUES ('900', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20210 INSERT INTO `marc_subfield_structure` VALUES ('900', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20211 INSERT INTO `marc_subfield_structure` VALUES ('900', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20212 INSERT INTO `marc_subfield_structure` VALUES ('900', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20213 INSERT INTO `marc_subfield_structure` VALUES ('900', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20214 INSERT INTO `marc_subfield_structure` VALUES ('900', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20215 INSERT INTO `marc_subfield_structure` VALUES ('900', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20216 INSERT INTO `marc_subfield_structure` VALUES ('900', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20217 INSERT INTO `marc_subfield_structure` VALUES ('901', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20218 INSERT INTO `marc_subfield_structure` VALUES ('901', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20219 INSERT INTO `marc_subfield_structure` VALUES ('901', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20220 INSERT INTO `marc_subfield_structure` VALUES ('901', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20221 INSERT INTO `marc_subfield_structure` VALUES ('901', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20222 INSERT INTO `marc_subfield_structure` VALUES ('901', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20223 INSERT INTO `marc_subfield_structure` VALUES ('901', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20224 INSERT INTO `marc_subfield_structure` VALUES ('901', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20225 INSERT INTO `marc_subfield_structure` VALUES ('901', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20226 INSERT INTO `marc_subfield_structure` VALUES ('901', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20227 INSERT INTO `marc_subfield_structure` VALUES ('901', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20228 INSERT INTO `marc_subfield_structure` VALUES ('901', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20229 INSERT INTO `marc_subfield_structure` VALUES ('901', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20230 INSERT INTO `marc_subfield_structure` VALUES ('901', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20231 INSERT INTO `marc_subfield_structure` VALUES ('901', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20232 INSERT INTO `marc_subfield_structure` VALUES ('901', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20233 INSERT INTO `marc_subfield_structure` VALUES ('901', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20234 INSERT INTO `marc_subfield_structure` VALUES ('901', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20235 INSERT INTO `marc_subfield_structure` VALUES ('901', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20236 INSERT INTO `marc_subfield_structure` VALUES ('901', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20237 INSERT INTO `marc_subfield_structure` VALUES ('901', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20238 INSERT INTO `marc_subfield_structure` VALUES ('901', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20239 INSERT INTO `marc_subfield_structure` VALUES ('901', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20240 INSERT INTO `marc_subfield_structure` VALUES ('901', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20241 INSERT INTO `marc_subfield_structure` VALUES ('901', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20242 INSERT INTO `marc_subfield_structure` VALUES ('901', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20243 INSERT INTO `marc_subfield_structure` VALUES ('901', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20244 INSERT INTO `marc_subfield_structure` VALUES ('901', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20245 INSERT INTO `marc_subfield_structure` VALUES ('901', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20246 INSERT INTO `marc_subfield_structure` VALUES ('901', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20247 INSERT INTO `marc_subfield_structure` VALUES ('901', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20248 INSERT INTO `marc_subfield_structure` VALUES ('901', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20249 INSERT INTO `marc_subfield_structure` VALUES ('901', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20250 INSERT INTO `marc_subfield_structure` VALUES ('901', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20251 INSERT INTO `marc_subfield_structure` VALUES ('901', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20252 INSERT INTO `marc_subfield_structure` VALUES ('901', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20253 INSERT INTO `marc_subfield_structure` VALUES ('902', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20254 INSERT INTO `marc_subfield_structure` VALUES ('902', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20255 INSERT INTO `marc_subfield_structure` VALUES ('902', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20256 INSERT INTO `marc_subfield_structure` VALUES ('902', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20257 INSERT INTO `marc_subfield_structure` VALUES ('902', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20258 INSERT INTO `marc_subfield_structure` VALUES ('902', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20259 INSERT INTO `marc_subfield_structure` VALUES ('902', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20260 INSERT INTO `marc_subfield_structure` VALUES ('902', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20261 INSERT INTO `marc_subfield_structure` VALUES ('902', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20262 INSERT INTO `marc_subfield_structure` VALUES ('902', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20263 INSERT INTO `marc_subfield_structure` VALUES ('902', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20264 INSERT INTO `marc_subfield_structure` VALUES ('902', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20265 INSERT INTO `marc_subfield_structure` VALUES ('902', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20266 INSERT INTO `marc_subfield_structure` VALUES ('902', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20267 INSERT INTO `marc_subfield_structure` VALUES ('902', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20268 INSERT INTO `marc_subfield_structure` VALUES ('902', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20269 INSERT INTO `marc_subfield_structure` VALUES ('902', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20270 INSERT INTO `marc_subfield_structure` VALUES ('902', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20271 INSERT INTO `marc_subfield_structure` VALUES ('902', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20272 INSERT INTO `marc_subfield_structure` VALUES ('902', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20273 INSERT INTO `marc_subfield_structure` VALUES ('902', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20274 INSERT INTO `marc_subfield_structure` VALUES ('902', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20275 INSERT INTO `marc_subfield_structure` VALUES ('902', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20276 INSERT INTO `marc_subfield_structure` VALUES ('902', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20277 INSERT INTO `marc_subfield_structure` VALUES ('902', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20278 INSERT INTO `marc_subfield_structure` VALUES ('902', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20279 INSERT INTO `marc_subfield_structure` VALUES ('902', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20280 INSERT INTO `marc_subfield_structure` VALUES ('902', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20281 INSERT INTO `marc_subfield_structure` VALUES ('902', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20282 INSERT INTO `marc_subfield_structure` VALUES ('902', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20283 INSERT INTO `marc_subfield_structure` VALUES ('902', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20284 INSERT INTO `marc_subfield_structure` VALUES ('902', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20285 INSERT INTO `marc_subfield_structure` VALUES ('902', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20286 INSERT INTO `marc_subfield_structure` VALUES ('902', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20287 INSERT INTO `marc_subfield_structure` VALUES ('902', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20288 INSERT INTO `marc_subfield_structure` VALUES ('902', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20289 INSERT INTO `marc_subfield_structure` VALUES ('903', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20290 INSERT INTO `marc_subfield_structure` VALUES ('903', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20291 INSERT INTO `marc_subfield_structure` VALUES ('903', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20292 INSERT INTO `marc_subfield_structure` VALUES ('903', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20293 INSERT INTO `marc_subfield_structure` VALUES ('903', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20294 INSERT INTO `marc_subfield_structure` VALUES ('903', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20295 INSERT INTO `marc_subfield_structure` VALUES ('903', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20296 INSERT INTO `marc_subfield_structure` VALUES ('903', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20297 INSERT INTO `marc_subfield_structure` VALUES ('903', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20298 INSERT INTO `marc_subfield_structure` VALUES ('903', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20299 INSERT INTO `marc_subfield_structure` VALUES ('903', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20300 INSERT INTO `marc_subfield_structure` VALUES ('903', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20301 INSERT INTO `marc_subfield_structure` VALUES ('903', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20302 INSERT INTO `marc_subfield_structure` VALUES ('903', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20303 INSERT INTO `marc_subfield_structure` VALUES ('903', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20304 INSERT INTO `marc_subfield_structure` VALUES ('903', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20305 INSERT INTO `marc_subfield_structure` VALUES ('903', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20306 INSERT INTO `marc_subfield_structure` VALUES ('903', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20307 INSERT INTO `marc_subfield_structure` VALUES ('903', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20308 INSERT INTO `marc_subfield_structure` VALUES ('903', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20309 INSERT INTO `marc_subfield_structure` VALUES ('903', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20310 INSERT INTO `marc_subfield_structure` VALUES ('903', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20311 INSERT INTO `marc_subfield_structure` VALUES ('903', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20312 INSERT INTO `marc_subfield_structure` VALUES ('903', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20313 INSERT INTO `marc_subfield_structure` VALUES ('903', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20314 INSERT INTO `marc_subfield_structure` VALUES ('903', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20315 INSERT INTO `marc_subfield_structure` VALUES ('903', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20316 INSERT INTO `marc_subfield_structure` VALUES ('903', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20317 INSERT INTO `marc_subfield_structure` VALUES ('903', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20318 INSERT INTO `marc_subfield_structure` VALUES ('903', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20319 INSERT INTO `marc_subfield_structure` VALUES ('903', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20320 INSERT INTO `marc_subfield_structure` VALUES ('903', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20321 INSERT INTO `marc_subfield_structure` VALUES ('903', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20322 INSERT INTO `marc_subfield_structure` VALUES ('903', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20323 INSERT INTO `marc_subfield_structure` VALUES ('903', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20324 INSERT INTO `marc_subfield_structure` VALUES ('903', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20325 INSERT INTO `marc_subfield_structure` VALUES ('904', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20326 INSERT INTO `marc_subfield_structure` VALUES ('904', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20327 INSERT INTO `marc_subfield_structure` VALUES ('904', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20328 INSERT INTO `marc_subfield_structure` VALUES ('904', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20329 INSERT INTO `marc_subfield_structure` VALUES ('904', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20330 INSERT INTO `marc_subfield_structure` VALUES ('904', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20331 INSERT INTO `marc_subfield_structure` VALUES ('904', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20332 INSERT INTO `marc_subfield_structure` VALUES ('904', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20333 INSERT INTO `marc_subfield_structure` VALUES ('904', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20334 INSERT INTO `marc_subfield_structure` VALUES ('904', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20335 INSERT INTO `marc_subfield_structure` VALUES ('904', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20336 INSERT INTO `marc_subfield_structure` VALUES ('904', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20337 INSERT INTO `marc_subfield_structure` VALUES ('904', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20338 INSERT INTO `marc_subfield_structure` VALUES ('904', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20339 INSERT INTO `marc_subfield_structure` VALUES ('904', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20340 INSERT INTO `marc_subfield_structure` VALUES ('904', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20341 INSERT INTO `marc_subfield_structure` VALUES ('904', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20342 INSERT INTO `marc_subfield_structure` VALUES ('904', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20343 INSERT INTO `marc_subfield_structure` VALUES ('904', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20344 INSERT INTO `marc_subfield_structure` VALUES ('904', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20345 INSERT INTO `marc_subfield_structure` VALUES ('904', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20346 INSERT INTO `marc_subfield_structure` VALUES ('904', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20347 INSERT INTO `marc_subfield_structure` VALUES ('904', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20348 INSERT INTO `marc_subfield_structure` VALUES ('904', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20349 INSERT INTO `marc_subfield_structure` VALUES ('904', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20350 INSERT INTO `marc_subfield_structure` VALUES ('904', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20351 INSERT INTO `marc_subfield_structure` VALUES ('904', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20352 INSERT INTO `marc_subfield_structure` VALUES ('904', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20353 INSERT INTO `marc_subfield_structure` VALUES ('904', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20354 INSERT INTO `marc_subfield_structure` VALUES ('904', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20355 INSERT INTO `marc_subfield_structure` VALUES ('904', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20356 INSERT INTO `marc_subfield_structure` VALUES ('904', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20357 INSERT INTO `marc_subfield_structure` VALUES ('904', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20358 INSERT INTO `marc_subfield_structure` VALUES ('904', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20359 INSERT INTO `marc_subfield_structure` VALUES ('904', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20360 INSERT INTO `marc_subfield_structure` VALUES ('904', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20361 INSERT INTO `marc_subfield_structure` VALUES ('905', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20362 INSERT INTO `marc_subfield_structure` VALUES ('905', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20363 INSERT INTO `marc_subfield_structure` VALUES ('905', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20364 INSERT INTO `marc_subfield_structure` VALUES ('905', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20365 INSERT INTO `marc_subfield_structure` VALUES ('905', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20366 INSERT INTO `marc_subfield_structure` VALUES ('905', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20367 INSERT INTO `marc_subfield_structure` VALUES ('905', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20368 INSERT INTO `marc_subfield_structure` VALUES ('905', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20369 INSERT INTO `marc_subfield_structure` VALUES ('905', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20370 INSERT INTO `marc_subfield_structure` VALUES ('905', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20371 INSERT INTO `marc_subfield_structure` VALUES ('905', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20372 INSERT INTO `marc_subfield_structure` VALUES ('905', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20373 INSERT INTO `marc_subfield_structure` VALUES ('905', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20374 INSERT INTO `marc_subfield_structure` VALUES ('905', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20375 INSERT INTO `marc_subfield_structure` VALUES ('905', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20376 INSERT INTO `marc_subfield_structure` VALUES ('905', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20377 INSERT INTO `marc_subfield_structure` VALUES ('905', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20378 INSERT INTO `marc_subfield_structure` VALUES ('905', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20379 INSERT INTO `marc_subfield_structure` VALUES ('905', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20380 INSERT INTO `marc_subfield_structure` VALUES ('905', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20381 INSERT INTO `marc_subfield_structure` VALUES ('905', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20382 INSERT INTO `marc_subfield_structure` VALUES ('905', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20383 INSERT INTO `marc_subfield_structure` VALUES ('905', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20384 INSERT INTO `marc_subfield_structure` VALUES ('905', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20385 INSERT INTO `marc_subfield_structure` VALUES ('905', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20386 INSERT INTO `marc_subfield_structure` VALUES ('905', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20387 INSERT INTO `marc_subfield_structure` VALUES ('905', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20388 INSERT INTO `marc_subfield_structure` VALUES ('905', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20389 INSERT INTO `marc_subfield_structure` VALUES ('905', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20390 INSERT INTO `marc_subfield_structure` VALUES ('905', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20391 INSERT INTO `marc_subfield_structure` VALUES ('905', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20392 INSERT INTO `marc_subfield_structure` VALUES ('905', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20393 INSERT INTO `marc_subfield_structure` VALUES ('905', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20394 INSERT INTO `marc_subfield_structure` VALUES ('905', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20395 INSERT INTO `marc_subfield_structure` VALUES ('905', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20396 INSERT INTO `marc_subfield_structure` VALUES ('905', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20397 INSERT INTO `marc_subfield_structure` VALUES ('906', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20398 INSERT INTO `marc_subfield_structure` VALUES ('906', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20399 INSERT INTO `marc_subfield_structure` VALUES ('906', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20400 INSERT INTO `marc_subfield_structure` VALUES ('906', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20401 INSERT INTO `marc_subfield_structure` VALUES ('906', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20402 INSERT INTO `marc_subfield_structure` VALUES ('906', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20403 INSERT INTO `marc_subfield_structure` VALUES ('906', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20404 INSERT INTO `marc_subfield_structure` VALUES ('906', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20405 INSERT INTO `marc_subfield_structure` VALUES ('906', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20406 INSERT INTO `marc_subfield_structure` VALUES ('906', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20407 INSERT INTO `marc_subfield_structure` VALUES ('906', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20408 INSERT INTO `marc_subfield_structure` VALUES ('906', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20409 INSERT INTO `marc_subfield_structure` VALUES ('906', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20410 INSERT INTO `marc_subfield_structure` VALUES ('906', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20411 INSERT INTO `marc_subfield_structure` VALUES ('906', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20412 INSERT INTO `marc_subfield_structure` VALUES ('906', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20413 INSERT INTO `marc_subfield_structure` VALUES ('906', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20414 INSERT INTO `marc_subfield_structure` VALUES ('906', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20415 INSERT INTO `marc_subfield_structure` VALUES ('906', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20416 INSERT INTO `marc_subfield_structure` VALUES ('906', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20417 INSERT INTO `marc_subfield_structure` VALUES ('906', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20418 INSERT INTO `marc_subfield_structure` VALUES ('906', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20419 INSERT INTO `marc_subfield_structure` VALUES ('906', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20420 INSERT INTO `marc_subfield_structure` VALUES ('906', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20421 INSERT INTO `marc_subfield_structure` VALUES ('906', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20422 INSERT INTO `marc_subfield_structure` VALUES ('906', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20423 INSERT INTO `marc_subfield_structure` VALUES ('906', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20424 INSERT INTO `marc_subfield_structure` VALUES ('906', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20425 INSERT INTO `marc_subfield_structure` VALUES ('906', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20426 INSERT INTO `marc_subfield_structure` VALUES ('906', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20427 INSERT INTO `marc_subfield_structure` VALUES ('906', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20428 INSERT INTO `marc_subfield_structure` VALUES ('906', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20429 INSERT INTO `marc_subfield_structure` VALUES ('906', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20430 INSERT INTO `marc_subfield_structure` VALUES ('906', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20431 INSERT INTO `marc_subfield_structure` VALUES ('906', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20432 INSERT INTO `marc_subfield_structure` VALUES ('906', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20433 INSERT INTO `marc_subfield_structure` VALUES ('907', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20434 INSERT INTO `marc_subfield_structure` VALUES ('907', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20435 INSERT INTO `marc_subfield_structure` VALUES ('907', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20436 INSERT INTO `marc_subfield_structure` VALUES ('907', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20437 INSERT INTO `marc_subfield_structure` VALUES ('907', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20438 INSERT INTO `marc_subfield_structure` VALUES ('907', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20439 INSERT INTO `marc_subfield_structure` VALUES ('907', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20440 INSERT INTO `marc_subfield_structure` VALUES ('907', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20441 INSERT INTO `marc_subfield_structure` VALUES ('907', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20442 INSERT INTO `marc_subfield_structure` VALUES ('907', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20443 INSERT INTO `marc_subfield_structure` VALUES ('907', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20444 INSERT INTO `marc_subfield_structure` VALUES ('907', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20445 INSERT INTO `marc_subfield_structure` VALUES ('907', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20446 INSERT INTO `marc_subfield_structure` VALUES ('907', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20447 INSERT INTO `marc_subfield_structure` VALUES ('907', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20448 INSERT INTO `marc_subfield_structure` VALUES ('907', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20449 INSERT INTO `marc_subfield_structure` VALUES ('907', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20450 INSERT INTO `marc_subfield_structure` VALUES ('907', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20451 INSERT INTO `marc_subfield_structure` VALUES ('907', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20452 INSERT INTO `marc_subfield_structure` VALUES ('907', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20453 INSERT INTO `marc_subfield_structure` VALUES ('907', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20454 INSERT INTO `marc_subfield_structure` VALUES ('907', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20455 INSERT INTO `marc_subfield_structure` VALUES ('907', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20456 INSERT INTO `marc_subfield_structure` VALUES ('907', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20457 INSERT INTO `marc_subfield_structure` VALUES ('907', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20458 INSERT INTO `marc_subfield_structure` VALUES ('907', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20459 INSERT INTO `marc_subfield_structure` VALUES ('907', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20460 INSERT INTO `marc_subfield_structure` VALUES ('907', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20461 INSERT INTO `marc_subfield_structure` VALUES ('907', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20462 INSERT INTO `marc_subfield_structure` VALUES ('907', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20463 INSERT INTO `marc_subfield_structure` VALUES ('907', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20464 INSERT INTO `marc_subfield_structure` VALUES ('907', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20465 INSERT INTO `marc_subfield_structure` VALUES ('907', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20466 INSERT INTO `marc_subfield_structure` VALUES ('907', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20467 INSERT INTO `marc_subfield_structure` VALUES ('907', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20468 INSERT INTO `marc_subfield_structure` VALUES ('907', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20469 INSERT INTO `marc_subfield_structure` VALUES ('908', 'a', 'Put command parameter', 'Put command parameter', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20470 INSERT INTO `marc_subfield_structure` VALUES ('910', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20471 INSERT INTO `marc_subfield_structure` VALUES ('910', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20472 INSERT INTO `marc_subfield_structure` VALUES ('910', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20473 INSERT INTO `marc_subfield_structure` VALUES ('910', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20474 INSERT INTO `marc_subfield_structure` VALUES ('910', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20475 INSERT INTO `marc_subfield_structure` VALUES ('910', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20476 INSERT INTO `marc_subfield_structure` VALUES ('910', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20477 INSERT INTO `marc_subfield_structure` VALUES ('910', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20478 INSERT INTO `marc_subfield_structure` VALUES ('910', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20479 INSERT INTO `marc_subfield_structure` VALUES ('910', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20480 INSERT INTO `marc_subfield_structure` VALUES ('910', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20481 INSERT INTO `marc_subfield_structure` VALUES ('910', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20482 INSERT INTO `marc_subfield_structure` VALUES ('910', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20483 INSERT INTO `marc_subfield_structure` VALUES ('910', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20484 INSERT INTO `marc_subfield_structure` VALUES ('910', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20485 INSERT INTO `marc_subfield_structure` VALUES ('910', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20486 INSERT INTO `marc_subfield_structure` VALUES ('91o', 'a', 'User-option data', 'User-option data', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20487 INSERT INTO `marc_subfield_structure` VALUES ('91r', 'a', 'RLG standards note', 'RLG standards note', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20488 INSERT INTO `marc_subfield_structure` VALUES ('911', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20489 INSERT INTO `marc_subfield_structure` VALUES ('911', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20490 INSERT INTO `marc_subfield_structure` VALUES ('911', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20491 INSERT INTO `marc_subfield_structure` VALUES ('911', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20492 INSERT INTO `marc_subfield_structure` VALUES ('911', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20493 INSERT INTO `marc_subfield_structure` VALUES ('911', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20494 INSERT INTO `marc_subfield_structure` VALUES ('911', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20495 INSERT INTO `marc_subfield_structure` VALUES ('911', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20496 INSERT INTO `marc_subfield_structure` VALUES ('911', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20497 INSERT INTO `marc_subfield_structure` VALUES ('911', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20498 INSERT INTO `marc_subfield_structure` VALUES ('911', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20499 INSERT INTO `marc_subfield_structure` VALUES ('911', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20500 INSERT INTO `marc_subfield_structure` VALUES ('911', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20501 INSERT INTO `marc_subfield_structure` VALUES ('911', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20502 INSERT INTO `marc_subfield_structure` VALUES ('911', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20503 INSERT INTO `marc_subfield_structure` VALUES ('911', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20504 INSERT INTO `marc_subfield_structure` VALUES ('911', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20505 INSERT INTO `marc_subfield_structure` VALUES ('930', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20506 INSERT INTO `marc_subfield_structure` VALUES ('930', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20507 INSERT INTO `marc_subfield_structure` VALUES ('930', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20508 INSERT INTO `marc_subfield_structure` VALUES ('930', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20509 INSERT INTO `marc_subfield_structure` VALUES ('930', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20510 INSERT INTO `marc_subfield_structure` VALUES ('930', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20511 INSERT INTO `marc_subfield_structure` VALUES ('930', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20512 INSERT INTO `marc_subfield_structure` VALUES ('930', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20513 INSERT INTO `marc_subfield_structure` VALUES ('930', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20514 INSERT INTO `marc_subfield_structure` VALUES ('930', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20515 INSERT INTO `marc_subfield_structure` VALUES ('930', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20516 INSERT INTO `marc_subfield_structure` VALUES ('930', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20517 INSERT INTO `marc_subfield_structure` VALUES ('930', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20518 INSERT INTO `marc_subfield_structure` VALUES ('930', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20519 INSERT INTO `marc_subfield_structure` VALUES ('930', 's', 'Version', 'Version', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20520 INSERT INTO `marc_subfield_structure` VALUES ('930', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20521 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'a', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'VR', '', '');
20522 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'b', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'VR', '', '');
20523 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'c', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'VR', '', '');
20524 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'd', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'VR', '', '');
20525 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'e', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'VR', '', '');
20526 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'f', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'VR', '', '');
20527 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'g', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'VR', '', '');
20528 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'h', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'VR', '', '');
20529 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'i', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'VR', '', '');
20530 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'k', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'VR', '', '');
20531 INSERT INTO `marc_subfield_structure` VALUES ('936', 'a', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20532 INSERT INTO `marc_subfield_structure` VALUES ('940', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20533 INSERT INTO `marc_subfield_structure` VALUES ('940', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20534 INSERT INTO `marc_subfield_structure` VALUES ('940', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', 1, -6, 'VR', '', '');
20535 INSERT INTO `marc_subfield_structure` VALUES ('940', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20536 INSERT INTO `marc_subfield_structure` VALUES ('940', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20537 INSERT INTO `marc_subfield_structure` VALUES ('940', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20538 INSERT INTO `marc_subfield_structure` VALUES ('940', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20539 INSERT INTO `marc_subfield_structure` VALUES ('940', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20540 INSERT INTO `marc_subfield_structure` VALUES ('940', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20541 INSERT INTO `marc_subfield_structure` VALUES ('940', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20542 INSERT INTO `marc_subfield_structure` VALUES ('940', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20543 INSERT INTO `marc_subfield_structure` VALUES ('940', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20544 INSERT INTO `marc_subfield_structure` VALUES ('940', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20545 INSERT INTO `marc_subfield_structure` VALUES ('940', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20546 INSERT INTO `marc_subfield_structure` VALUES ('940', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20547 INSERT INTO `marc_subfield_structure` VALUES ('941', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20548 INSERT INTO `marc_subfield_structure` VALUES ('941', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'VR', '', '');
20549 INSERT INTO `marc_subfield_structure` VALUES ('943', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20550 INSERT INTO `marc_subfield_structure` VALUES ('943', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20551 INSERT INTO `marc_subfield_structure` VALUES ('943', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 9, '', '', '', 1, 5, 'VR', '', '130');
20552 INSERT INTO `marc_subfield_structure` VALUES ('943', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20553 INSERT INTO `marc_subfield_structure` VALUES ('943', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20554 INSERT INTO `marc_subfield_structure` VALUES ('943', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20555 INSERT INTO `marc_subfield_structure` VALUES ('943', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20556 INSERT INTO `marc_subfield_structure` VALUES ('943', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20557 INSERT INTO `marc_subfield_structure` VALUES ('943', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20558 INSERT INTO `marc_subfield_structure` VALUES ('943', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20559 INSERT INTO `marc_subfield_structure` VALUES ('943', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20560 INSERT INTO `marc_subfield_structure` VALUES ('943', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20561 INSERT INTO `marc_subfield_structure` VALUES ('943', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20562 INSERT INTO `marc_subfield_structure` VALUES ('943', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20563 INSERT INTO `marc_subfield_structure` VALUES ('943', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20564 INSERT INTO `marc_subfield_structure` VALUES ('945', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20565 INSERT INTO `marc_subfield_structure` VALUES ('945', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20566 INSERT INTO `marc_subfield_structure` VALUES ('945', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20567 INSERT INTO `marc_subfield_structure` VALUES ('945', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20568 INSERT INTO `marc_subfield_structure` VALUES ('945', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20569 INSERT INTO `marc_subfield_structure` VALUES ('945', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20570 INSERT INTO `marc_subfield_structure` VALUES ('945', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20571 INSERT INTO `marc_subfield_structure` VALUES ('945', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20572 INSERT INTO `marc_subfield_structure` VALUES ('945', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20573 INSERT INTO `marc_subfield_structure` VALUES ('945', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20574 INSERT INTO `marc_subfield_structure` VALUES ('945', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20575 INSERT INTO `marc_subfield_structure` VALUES ('945', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20576 INSERT INTO `marc_subfield_structure` VALUES ('945', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20577 INSERT INTO `marc_subfield_structure` VALUES ('945', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20578 INSERT INTO `marc_subfield_structure` VALUES ('945', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20579 INSERT INTO `marc_subfield_structure` VALUES ('945', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20580 INSERT INTO `marc_subfield_structure` VALUES ('945', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20581 INSERT INTO `marc_subfield_structure` VALUES ('945', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20582 INSERT INTO `marc_subfield_structure` VALUES ('945', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20583 INSERT INTO `marc_subfield_structure` VALUES ('945', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20584 INSERT INTO `marc_subfield_structure` VALUES ('945', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20585 INSERT INTO `marc_subfield_structure` VALUES ('945', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20586 INSERT INTO `marc_subfield_structure` VALUES ('945', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20587 INSERT INTO `marc_subfield_structure` VALUES ('945', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20588 INSERT INTO `marc_subfield_structure` VALUES ('945', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20589 INSERT INTO `marc_subfield_structure` VALUES ('945', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20590 INSERT INTO `marc_subfield_structure` VALUES ('945', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20591 INSERT INTO `marc_subfield_structure` VALUES ('945', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20592 INSERT INTO `marc_subfield_structure` VALUES ('945', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20593 INSERT INTO `marc_subfield_structure` VALUES ('945', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20594 INSERT INTO `marc_subfield_structure` VALUES ('945', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20595 INSERT INTO `marc_subfield_structure` VALUES ('945', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20596 INSERT INTO `marc_subfield_structure` VALUES ('945', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20597 INSERT INTO `marc_subfield_structure` VALUES ('945', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20598 INSERT INTO `marc_subfield_structure` VALUES ('945', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20599 INSERT INTO `marc_subfield_structure` VALUES ('945', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20600 INSERT INTO `marc_subfield_structure` VALUES ('94c', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20601 INSERT INTO `marc_subfield_structure` VALUES ('94c', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20602 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'a', 'Title', 'Title', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20603 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20604 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20605 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20606 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20607 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20608 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20609 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20610 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'k', 'Form', 'Form', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20611 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20612 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20613 INSERT INTO `marc_subfield_structure` VALUES ('94c', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20614 INSERT INTO `marc_subfield_structure` VALUES ('946', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20615 INSERT INTO `marc_subfield_structure` VALUES ('946', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20616 INSERT INTO `marc_subfield_structure` VALUES ('946', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20617 INSERT INTO `marc_subfield_structure` VALUES ('946', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20618 INSERT INTO `marc_subfield_structure` VALUES ('946', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20619 INSERT INTO `marc_subfield_structure` VALUES ('946', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20620 INSERT INTO `marc_subfield_structure` VALUES ('946', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20621 INSERT INTO `marc_subfield_structure` VALUES ('946', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20622 INSERT INTO `marc_subfield_structure` VALUES ('946', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20623 INSERT INTO `marc_subfield_structure` VALUES ('946', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20624 INSERT INTO `marc_subfield_structure` VALUES ('946', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20625 INSERT INTO `marc_subfield_structure` VALUES ('946', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20626 INSERT INTO `marc_subfield_structure` VALUES ('946', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20627 INSERT INTO `marc_subfield_structure` VALUES ('946', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20628 INSERT INTO `marc_subfield_structure` VALUES ('946', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20629 INSERT INTO `marc_subfield_structure` VALUES ('946', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20630 INSERT INTO `marc_subfield_structure` VALUES ('946', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20631 INSERT INTO `marc_subfield_structure` VALUES ('946', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20632 INSERT INTO `marc_subfield_structure` VALUES ('946', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20633 INSERT INTO `marc_subfield_structure` VALUES ('946', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20634 INSERT INTO `marc_subfield_structure` VALUES ('946', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20635 INSERT INTO `marc_subfield_structure` VALUES ('946', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20636 INSERT INTO `marc_subfield_structure` VALUES ('946', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20637 INSERT INTO `marc_subfield_structure` VALUES ('946', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20638 INSERT INTO `marc_subfield_structure` VALUES ('946', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20639 INSERT INTO `marc_subfield_structure` VALUES ('946', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20640 INSERT INTO `marc_subfield_structure` VALUES ('946', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20641 INSERT INTO `marc_subfield_structure` VALUES ('946', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20642 INSERT INTO `marc_subfield_structure` VALUES ('946', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20643 INSERT INTO `marc_subfield_structure` VALUES ('946', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20644 INSERT INTO `marc_subfield_structure` VALUES ('946', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20645 INSERT INTO `marc_subfield_structure` VALUES ('946', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20646 INSERT INTO `marc_subfield_structure` VALUES ('946', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20647 INSERT INTO `marc_subfield_structure` VALUES ('946', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20648 INSERT INTO `marc_subfield_structure` VALUES ('946', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20649 INSERT INTO `marc_subfield_structure` VALUES ('946', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20650 INSERT INTO `marc_subfield_structure` VALUES ('947', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20651 INSERT INTO `marc_subfield_structure` VALUES ('947', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20652 INSERT INTO `marc_subfield_structure` VALUES ('947', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20653 INSERT INTO `marc_subfield_structure` VALUES ('947', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20654 INSERT INTO `marc_subfield_structure` VALUES ('947', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20655 INSERT INTO `marc_subfield_structure` VALUES ('947', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20656 INSERT INTO `marc_subfield_structure` VALUES ('947', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20657 INSERT INTO `marc_subfield_structure` VALUES ('947', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20658 INSERT INTO `marc_subfield_structure` VALUES ('947', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20659 INSERT INTO `marc_subfield_structure` VALUES ('947', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20660 INSERT INTO `marc_subfield_structure` VALUES ('947', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20661 INSERT INTO `marc_subfield_structure` VALUES ('947', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20662 INSERT INTO `marc_subfield_structure` VALUES ('947', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20663 INSERT INTO `marc_subfield_structure` VALUES ('947', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20664 INSERT INTO `marc_subfield_structure` VALUES ('947', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20665 INSERT INTO `marc_subfield_structure` VALUES ('947', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20666 INSERT INTO `marc_subfield_structure` VALUES ('947', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20667 INSERT INTO `marc_subfield_structure` VALUES ('947', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20668 INSERT INTO `marc_subfield_structure` VALUES ('947', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20669 INSERT INTO `marc_subfield_structure` VALUES ('947', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20670 INSERT INTO `marc_subfield_structure` VALUES ('947', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20671 INSERT INTO `marc_subfield_structure` VALUES ('947', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20672 INSERT INTO `marc_subfield_structure` VALUES ('947', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20673 INSERT INTO `marc_subfield_structure` VALUES ('947', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20674 INSERT INTO `marc_subfield_structure` VALUES ('947', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20675 INSERT INTO `marc_subfield_structure` VALUES ('947', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20676 INSERT INTO `marc_subfield_structure` VALUES ('947', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20677 INSERT INTO `marc_subfield_structure` VALUES ('947', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20678 INSERT INTO `marc_subfield_structure` VALUES ('947', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20679 INSERT INTO `marc_subfield_structure` VALUES ('947', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20680 INSERT INTO `marc_subfield_structure` VALUES ('947', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20681 INSERT INTO `marc_subfield_structure` VALUES ('947', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20682 INSERT INTO `marc_subfield_structure` VALUES ('947', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20683 INSERT INTO `marc_subfield_structure` VALUES ('947', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20684 INSERT INTO `marc_subfield_structure` VALUES ('947', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20685 INSERT INTO `marc_subfield_structure` VALUES ('947', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20686 INSERT INTO `marc_subfield_structure` VALUES ('948', '0', '0 (OCLC)', '0 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20687 INSERT INTO `marc_subfield_structure` VALUES ('948', '1', '1 (OCLC)', '1 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20688 INSERT INTO `marc_subfield_structure` VALUES ('948', '2', '2 (OCLC)', '2 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20689 INSERT INTO `marc_subfield_structure` VALUES ('948', '3', '3 (OCLC)', '3 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20690 INSERT INTO `marc_subfield_structure` VALUES ('948', '4', '4 (OCLC)', '4 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20691 INSERT INTO `marc_subfield_structure` VALUES ('948', '5', '5 (OCLC)', '5 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20692 INSERT INTO `marc_subfield_structure` VALUES ('948', '6', '6 (OCLC)', '6 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20693 INSERT INTO `marc_subfield_structure` VALUES ('948', '7', '7 (OCLC)', '7 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20694 INSERT INTO `marc_subfield_structure` VALUES ('948', '8', '8 (OCLC)', '8 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20695 INSERT INTO `marc_subfield_structure` VALUES ('948', '9', '9 (OCLC)', '9 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20696 INSERT INTO `marc_subfield_structure` VALUES ('948', 'a', 'Series part designator, SPT (RLIN)', 'Series part designator, SPT (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20697 INSERT INTO `marc_subfield_structure` VALUES ('948', 'b', 'b (OCLC)', 'b (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20698 INSERT INTO `marc_subfield_structure` VALUES ('948', 'c', 'c (OCLC)', 'c (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20699 INSERT INTO `marc_subfield_structure` VALUES ('948', 'd', 'd (OCLC)', 'd (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20700 INSERT INTO `marc_subfield_structure` VALUES ('948', 'e', 'e (OCLC)', 'e (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20701 INSERT INTO `marc_subfield_structure` VALUES ('948', 'f', 'f (OCLC)', 'f (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20702 INSERT INTO `marc_subfield_structure` VALUES ('948', 'g', 'g (OCLC)', 'g (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20703 INSERT INTO `marc_subfield_structure` VALUES ('948', 'h', 'h (OCLC)', 'h (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20704 INSERT INTO `marc_subfield_structure` VALUES ('948', 'i', 'i (OCLC)', 'i (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20705 INSERT INTO `marc_subfield_structure` VALUES ('948', 'j', 'j (OCLC)', 'j (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20706 INSERT INTO `marc_subfield_structure` VALUES ('948', 'k', 'k (OCLC)', 'k (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20707 INSERT INTO `marc_subfield_structure` VALUES ('948', 'l', 'l (OCLC)', 'l (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20708 INSERT INTO `marc_subfield_structure` VALUES ('948', 'm', 'm (OCLC)', 'm (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20709 INSERT INTO `marc_subfield_structure` VALUES ('948', 'n', 'n (OCLC)', 'n (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20710 INSERT INTO `marc_subfield_structure` VALUES ('948', 'o', 'o (OCLC)', 'o (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20711 INSERT INTO `marc_subfield_structure` VALUES ('948', 'p', 'p (OCLC)', 'p (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20712 INSERT INTO `marc_subfield_structure` VALUES ('948', 'q', 'q (OCLC)', 'q (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20713 INSERT INTO `marc_subfield_structure` VALUES ('948', 'r', 'r (OCLC)', 'r (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20714 INSERT INTO `marc_subfield_structure` VALUES ('948', 's', 's (OCLC)', 's (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20715 INSERT INTO `marc_subfield_structure` VALUES ('948', 't', 't (OCLC)', 't (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20716 INSERT INTO `marc_subfield_structure` VALUES ('948', 'u', 'u (OCLC)', 'u (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20717 INSERT INTO `marc_subfield_structure` VALUES ('948', 'v', 'v (OCLC)', 'v (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20718 INSERT INTO `marc_subfield_structure` VALUES ('948', 'w', 'w (OCLC)', 'w (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20719 INSERT INTO `marc_subfield_structure` VALUES ('948', 'x', 'x (OCLC)', 'x (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20720 INSERT INTO `marc_subfield_structure` VALUES ('948', 'y', 'y (OCLC)', 'y (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20721 INSERT INTO `marc_subfield_structure` VALUES ('948', 'z', 'z (OCLC)', 'z (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20722 INSERT INTO `marc_subfield_structure` VALUES ('949', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20723 INSERT INTO `marc_subfield_structure` VALUES ('949', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20724 INSERT INTO `marc_subfield_structure` VALUES ('949', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20725 INSERT INTO `marc_subfield_structure` VALUES ('949', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20726 INSERT INTO `marc_subfield_structure` VALUES ('949', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20727 INSERT INTO `marc_subfield_structure` VALUES ('949', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20728 INSERT INTO `marc_subfield_structure` VALUES ('949', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20729 INSERT INTO `marc_subfield_structure` VALUES ('949', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20730 INSERT INTO `marc_subfield_structure` VALUES ('949', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20731 INSERT INTO `marc_subfield_structure` VALUES ('949', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20732 INSERT INTO `marc_subfield_structure` VALUES ('949', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20733 INSERT INTO `marc_subfield_structure` VALUES ('949', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20734 INSERT INTO `marc_subfield_structure` VALUES ('949', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20735 INSERT INTO `marc_subfield_structure` VALUES ('949', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20736 INSERT INTO `marc_subfield_structure` VALUES ('949', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20737 INSERT INTO `marc_subfield_structure` VALUES ('949', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20738 INSERT INTO `marc_subfield_structure` VALUES ('949', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20739 INSERT INTO `marc_subfield_structure` VALUES ('949', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20740 INSERT INTO `marc_subfield_structure` VALUES ('949', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20741 INSERT INTO `marc_subfield_structure` VALUES ('949', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20742 INSERT INTO `marc_subfield_structure` VALUES ('949', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20743 INSERT INTO `marc_subfield_structure` VALUES ('949', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20744 INSERT INTO `marc_subfield_structure` VALUES ('949', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20745 INSERT INTO `marc_subfield_structure` VALUES ('949', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20746 INSERT INTO `marc_subfield_structure` VALUES ('949', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20747 INSERT INTO `marc_subfield_structure` VALUES ('949', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20748 INSERT INTO `marc_subfield_structure` VALUES ('949', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20749 INSERT INTO `marc_subfield_structure` VALUES ('949', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20750 INSERT INTO `marc_subfield_structure` VALUES ('949', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20751 INSERT INTO `marc_subfield_structure` VALUES ('949', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20752 INSERT INTO `marc_subfield_structure` VALUES ('949', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20753 INSERT INTO `marc_subfield_structure` VALUES ('949', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20754 INSERT INTO `marc_subfield_structure` VALUES ('949', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20755 INSERT INTO `marc_subfield_structure` VALUES ('949', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20756 INSERT INTO `marc_subfield_structure` VALUES ('949', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20757 INSERT INTO `marc_subfield_structure` VALUES ('949', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20758 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'a', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20759 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'b', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20760 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'c', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20761 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'd', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20762 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'e', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20763 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'a', 'ATC', 'ATC', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20764 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'b', 'SNR', 'SNR', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20765 INSERT INTO `marc_subfield_structure` VALUES ('950', 'a', 'Classification number, LCAL (RLIN)', 'Classification number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20766 INSERT INTO `marc_subfield_structure` VALUES ('950', 'b', 'Book number/undivided call number, LCAL (RLIN)', 'Book number/undivided call number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20767 INSERT INTO `marc_subfield_structure` VALUES ('950', 'd', 'Additional free-text stamp above the call number, LCAL (RLIN)', 'Additional free-text stamp above the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20768 INSERT INTO `marc_subfield_structure` VALUES ('950', 'e', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20769 INSERT INTO `marc_subfield_structure` VALUES ('950', 'f', 'Location-level footnote, LFNT (RLIN)', 'Location-level footnote, LFNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20770 INSERT INTO `marc_subfield_structure` VALUES ('950', 'h', 'Location-level output transaction history, LHST (RLIN)', 'Location-level output transaction history, LHST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20771 INSERT INTO `marc_subfield_structure` VALUES ('950', 'i', 'Location-level extra card request, LEXT (RLIN)', 'Location-level extra card request, LEXT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20772 INSERT INTO `marc_subfield_structure` VALUES ('950', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20773 INSERT INTO `marc_subfield_structure` VALUES ('950', 'n', 'Location-level additional note, LANT (RLIN)', 'Location-level additional note, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20774 INSERT INTO `marc_subfield_structure` VALUES ('950', 'p', 'Location-level pathfinder, LPTH (RLIN)', 'Location-level pathfinder, LPTH (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20775 INSERT INTO `marc_subfield_structure` VALUES ('950', 't', 'Location-level field suppression, LFSP (RLIN)', 'Location-level field suppression, LFSP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20776 INSERT INTO `marc_subfield_structure` VALUES ('950', 'u', 'Non-printing notes, LANT (RLIN)', 'Non-printing notes, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20777 INSERT INTO `marc_subfield_structure` VALUES ('950', 'v', 'Volumes, LVOL (RLIN)', 'Volumes, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20778 INSERT INTO `marc_subfield_structure` VALUES ('950', 'w', 'Subscription status code, LANT (RLIN)', 'Subscription status code, LANT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20779 INSERT INTO `marc_subfield_structure` VALUES ('950', 'y', 'Date, LVOL (RLIN)', 'Date, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20780 INSERT INTO `marc_subfield_structure` VALUES ('950', 'z', 'Retention, LVOL (RLIN)', 'Retention, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20781 INSERT INTO `marc_subfield_structure` VALUES ('951', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
20782 INSERT INTO `marc_subfield_structure` VALUES ('951', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
20783 INSERT INTO `marc_subfield_structure` VALUES ('951', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
20784 INSERT INTO `marc_subfield_structure` VALUES ('951', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
20785 INSERT INTO `marc_subfield_structure` VALUES ('951', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
20786 INSERT INTO `marc_subfield_structure` VALUES ('951', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
20787 INSERT INTO `marc_subfield_structure` VALUES ('951', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
20788 INSERT INTO `marc_subfield_structure` VALUES ('951', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
20789 INSERT INTO `marc_subfield_structure` VALUES ('951', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
20790 INSERT INTO `marc_subfield_structure` VALUES ('951', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'VR', '', '');
20791 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'a', 'Record ID (RLIN)', 'Record ID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20792 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'b', 'Institution name (RLIN)', 'Institution name (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20793 INSERT INTO `marc_subfield_structure` VALUES ('95r', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'VR', '', '');
20794 INSERT INTO `marc_subfield_structure` VALUES ('95r', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'VR', '', '');
20795 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'a', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'VR', '', '');
20796 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'b', 'State, province, territory', 'State, province, territory', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'VR', '', '');
20797 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'c', 'County, region, islands area', 'County, region, islands area', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'VR', '', '');
20798 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'd', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'VR', '', '');
20799 INSERT INTO `marc_subfield_structure` VALUES ('955', 'a', 'Classification number, CCAL (RLIN)', 'Classification number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20800 INSERT INTO `marc_subfield_structure` VALUES ('955', 'b', 'Book number/undivided call number, CCAL (RLIN)', 'Book number/undivided call number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20801 INSERT INTO `marc_subfield_structure` VALUES ('955', 'c', 'Copy information and material description, CCAL + MDES (RLIN)', 'Copy information and material description, CCAL + MDES (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20802 INSERT INTO `marc_subfield_structure` VALUES ('955', 'h', 'Copy status--for earlier dates, CST (RLIN)', 'Copy status--for earlier dates, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20803 INSERT INTO `marc_subfield_structure` VALUES ('955', 'i', 'Copy status, CST (RLIN)', 'Copy status, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20804 INSERT INTO `marc_subfield_structure` VALUES ('955', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20805 INSERT INTO `marc_subfield_structure` VALUES ('955', 'q', 'Aquisitions control number, HNT (RLIN)', 'Aquisitions control number, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20806 INSERT INTO `marc_subfield_structure` VALUES ('955', 'r', 'Circulation control number, HNT (RLIN)', 'Circulation control number, HNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20807 INSERT INTO `marc_subfield_structure` VALUES ('955', 's', 'Shelflist note, HNT (RLIN)', 'Shelflist note, HNT (RLIN)', 1, 0, '', 9, '', '', '', 1, 5, 'VR', '', '');
20808 INSERT INTO `marc_subfield_structure` VALUES ('955', 'u', 'Non-printing notes, HNT (RLIN)', 'Non-printing notes, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20809 INSERT INTO `marc_subfield_structure` VALUES ('956', '2', 'Access method', 'Access method', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20810 INSERT INTO `marc_subfield_structure` VALUES ('956', '3', 'Materials specified', 'Materials specified', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20811 INSERT INTO `marc_subfield_structure` VALUES ('956', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20812 INSERT INTO `marc_subfield_structure` VALUES ('956', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20813 INSERT INTO `marc_subfield_structure` VALUES ('956', 'a', 'Host name', 'Host name', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20814 INSERT INTO `marc_subfield_structure` VALUES ('956', 'b', 'Access number', 'Access number', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20815 INSERT INTO `marc_subfield_structure` VALUES ('956', 'c', 'Compression information', 'Compression information', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20816 INSERT INTO `marc_subfield_structure` VALUES ('956', 'd', 'Path', 'Path', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20817 INSERT INTO `marc_subfield_structure` VALUES ('956', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20818 INSERT INTO `marc_subfield_structure` VALUES ('956', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20819 INSERT INTO `marc_subfield_structure` VALUES ('956', 'i', 'Instruction', 'Instruction', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20820 INSERT INTO `marc_subfield_structure` VALUES ('956', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20821 INSERT INTO `marc_subfield_structure` VALUES ('956', 'k', 'Password', 'Password', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20822 INSERT INTO `marc_subfield_structure` VALUES ('956', 'l', 'Logon', 'Logon', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20823 INSERT INTO `marc_subfield_structure` VALUES ('956', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20824 INSERT INTO `marc_subfield_structure` VALUES ('956', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20825 INSERT INTO `marc_subfield_structure` VALUES ('956', 'o', 'Operating system', 'Operating system', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20826 INSERT INTO `marc_subfield_structure` VALUES ('956', 'p', 'Port', 'Port', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20827 INSERT INTO `marc_subfield_structure` VALUES ('956', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20828 INSERT INTO `marc_subfield_structure` VALUES ('956', 'r', 'Settings', 'Settings', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20829 INSERT INTO `marc_subfield_structure` VALUES ('956', 's', 'File size', 'File size', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20830 INSERT INTO `marc_subfield_structure` VALUES ('956', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20831 INSERT INTO `marc_subfield_structure` VALUES ('956', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -6, 'VR', '', '');
20832 INSERT INTO `marc_subfield_structure` VALUES ('956', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20833 INSERT INTO `marc_subfield_structure` VALUES ('956', 'w', 'Record control number', 'Record control number', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20834 INSERT INTO `marc_subfield_structure` VALUES ('956', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', 0, 6, 'VR', '', '');
20835 INSERT INTO `marc_subfield_structure` VALUES ('956', 'y', 'Link text', 'Link text', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20836 INSERT INTO `marc_subfield_structure` VALUES ('956', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20837 INSERT INTO `marc_subfield_structure` VALUES ('960', '3', 'Materials specified, MATL', 'Materials specified, MATL', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20838 INSERT INTO `marc_subfield_structure` VALUES ('960', 'a', 'Physical location, PLOC (RLIN)', 'Physical location, PLOC (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20839 INSERT INTO `marc_subfield_structure` VALUES ('967', 'a', 'GNR (RLIN)', 'GNR (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20840 INSERT INTO `marc_subfield_structure` VALUES ('967', 'c', 'PSI (RLIN)', 'PSI (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20841 INSERT INTO `marc_subfield_structure` VALUES ('980', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20842 INSERT INTO `marc_subfield_structure` VALUES ('980', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20843 INSERT INTO `marc_subfield_structure` VALUES ('980', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20844 INSERT INTO `marc_subfield_structure` VALUES ('980', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20845 INSERT INTO `marc_subfield_structure` VALUES ('980', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20846 INSERT INTO `marc_subfield_structure` VALUES ('980', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20847 INSERT INTO `marc_subfield_structure` VALUES ('980', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20848 INSERT INTO `marc_subfield_structure` VALUES ('980', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20849 INSERT INTO `marc_subfield_structure` VALUES ('980', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20850 INSERT INTO `marc_subfield_structure` VALUES ('980', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20851 INSERT INTO `marc_subfield_structure` VALUES ('980', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20852 INSERT INTO `marc_subfield_structure` VALUES ('980', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20853 INSERT INTO `marc_subfield_structure` VALUES ('980', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20854 INSERT INTO `marc_subfield_structure` VALUES ('980', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20855 INSERT INTO `marc_subfield_structure` VALUES ('980', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20856 INSERT INTO `marc_subfield_structure` VALUES ('980', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20857 INSERT INTO `marc_subfield_structure` VALUES ('980', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20858 INSERT INTO `marc_subfield_structure` VALUES ('980', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20859 INSERT INTO `marc_subfield_structure` VALUES ('980', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20860 INSERT INTO `marc_subfield_structure` VALUES ('980', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20861 INSERT INTO `marc_subfield_structure` VALUES ('980', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20862 INSERT INTO `marc_subfield_structure` VALUES ('980', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20863 INSERT INTO `marc_subfield_structure` VALUES ('980', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20864 INSERT INTO `marc_subfield_structure` VALUES ('980', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20865 INSERT INTO `marc_subfield_structure` VALUES ('981', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20866 INSERT INTO `marc_subfield_structure` VALUES ('981', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20867 INSERT INTO `marc_subfield_structure` VALUES ('981', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20868 INSERT INTO `marc_subfield_structure` VALUES ('981', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20869 INSERT INTO `marc_subfield_structure` VALUES ('981', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20870 INSERT INTO `marc_subfield_structure` VALUES ('981', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20871 INSERT INTO `marc_subfield_structure` VALUES ('981', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20872 INSERT INTO `marc_subfield_structure` VALUES ('981', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20873 INSERT INTO `marc_subfield_structure` VALUES ('981', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20874 INSERT INTO `marc_subfield_structure` VALUES ('981', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20875 INSERT INTO `marc_subfield_structure` VALUES ('981', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20876 INSERT INTO `marc_subfield_structure` VALUES ('981', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20877 INSERT INTO `marc_subfield_structure` VALUES ('981', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20878 INSERT INTO `marc_subfield_structure` VALUES ('981', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20879 INSERT INTO `marc_subfield_structure` VALUES ('981', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20880 INSERT INTO `marc_subfield_structure` VALUES ('981', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20881 INSERT INTO `marc_subfield_structure` VALUES ('981', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20882 INSERT INTO `marc_subfield_structure` VALUES ('981', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20883 INSERT INTO `marc_subfield_structure` VALUES ('981', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20884 INSERT INTO `marc_subfield_structure` VALUES ('981', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20885 INSERT INTO `marc_subfield_structure` VALUES ('981', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20886 INSERT INTO `marc_subfield_structure` VALUES ('981', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20887 INSERT INTO `marc_subfield_structure` VALUES ('982', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20888 INSERT INTO `marc_subfield_structure` VALUES ('982', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20889 INSERT INTO `marc_subfield_structure` VALUES ('982', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20890 INSERT INTO `marc_subfield_structure` VALUES ('982', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20891 INSERT INTO `marc_subfield_structure` VALUES ('982', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20892 INSERT INTO `marc_subfield_structure` VALUES ('982', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20893 INSERT INTO `marc_subfield_structure` VALUES ('982', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20894 INSERT INTO `marc_subfield_structure` VALUES ('982', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20895 INSERT INTO `marc_subfield_structure` VALUES ('982', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20896 INSERT INTO `marc_subfield_structure` VALUES ('982', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20897 INSERT INTO `marc_subfield_structure` VALUES ('982', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20898 INSERT INTO `marc_subfield_structure` VALUES ('982', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20899 INSERT INTO `marc_subfield_structure` VALUES ('982', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20900 INSERT INTO `marc_subfield_structure` VALUES ('982', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20901 INSERT INTO `marc_subfield_structure` VALUES ('982', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20902 INSERT INTO `marc_subfield_structure` VALUES ('982', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20903 INSERT INTO `marc_subfield_structure` VALUES ('982', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20904 INSERT INTO `marc_subfield_structure` VALUES ('982', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20905 INSERT INTO `marc_subfield_structure` VALUES ('982', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20906 INSERT INTO `marc_subfield_structure` VALUES ('982', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'VR', '', '');
20907 INSERT INTO `marc_subfield_structure` VALUES ('983', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20908 INSERT INTO `marc_subfield_structure` VALUES ('983', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20909 INSERT INTO `marc_subfield_structure` VALUES ('983', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20910 INSERT INTO `marc_subfield_structure` VALUES ('983', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20911 INSERT INTO `marc_subfield_structure` VALUES ('983', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20912 INSERT INTO `marc_subfield_structure` VALUES ('983', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20913 INSERT INTO `marc_subfield_structure` VALUES ('983', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20914 INSERT INTO `marc_subfield_structure` VALUES ('983', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20915 INSERT INTO `marc_subfield_structure` VALUES ('983', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20916 INSERT INTO `marc_subfield_structure` VALUES ('983', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20917 INSERT INTO `marc_subfield_structure` VALUES ('983', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20918 INSERT INTO `marc_subfield_structure` VALUES ('983', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20919 INSERT INTO `marc_subfield_structure` VALUES ('983', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20920 INSERT INTO `marc_subfield_structure` VALUES ('983', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20921 INSERT INTO `marc_subfield_structure` VALUES ('983', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20922 INSERT INTO `marc_subfield_structure` VALUES ('983', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20923 INSERT INTO `marc_subfield_structure` VALUES ('983', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20924 INSERT INTO `marc_subfield_structure` VALUES ('984', 'a', 'Holding library identification number', 'Holding library identification number', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20925 INSERT INTO `marc_subfield_structure` VALUES ('984', 'b', 'Physical description codes', 'Physical description codes', 1, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20926 INSERT INTO `marc_subfield_structure` VALUES ('984', 'c', 'Call number', 'Call number', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20927 INSERT INTO `marc_subfield_structure` VALUES ('984', 'd', 'Volume or other numbering', 'Volume or other numbering', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20928 INSERT INTO `marc_subfield_structure` VALUES ('984', 'e', 'Dates', 'Dates', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20929 INSERT INTO `marc_subfield_structure` VALUES ('984', 'f', 'Completeness note', 'Completeness note', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20930 INSERT INTO `marc_subfield_structure` VALUES ('984', 'g', 'Referral note', 'Referral note', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20931 INSERT INTO `marc_subfield_structure` VALUES ('984', 'h', 'Retention note', 'Retention note', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20932 INSERT INTO `marc_subfield_structure` VALUES ('987', 'a', 'Romanization/conversion identifier', 'Romanization/conversion identifier', 0, 0, '', 9, '', '', '', NULL, -6, 'VR', '', '');
20933 INSERT INTO `marc_subfield_structure` VALUES ('987', 'b', 'Agency that converted, created or reviewed', 'Agency that converted, created or reviewed', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20934 INSERT INTO `marc_subfield_structure` VALUES ('987', 'c', 'Date of conversion or review', 'Date of conversion or review', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20935 INSERT INTO `marc_subfield_structure` VALUES ('987', 'd', 'Status code', 'Status code ', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20936 INSERT INTO `marc_subfield_structure` VALUES ('987', 'e', 'Version of conversion program used', 'Version of conversion program used', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20937 INSERT INTO `marc_subfield_structure` VALUES ('987', 'f', 'Note', 'Note', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20938 INSERT INTO `marc_subfield_structure` VALUES ('990', 'a', 'Link information for 9XX fields', 'Link information for 9XX fields', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20939 INSERT INTO `marc_subfield_structure` VALUES ('990', 'b', 'Link information for field corresponding to 9XX field', 'Link information for field corresponding to 9XX field', 1, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20940 INSERT INTO `marc_subfield_structure` VALUES ('995', 'a', 'Origine du document, texte libre', 'Origine du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20941 INSERT INTO `marc_subfield_structure` VALUES ('995', 'b', 'Origine du document, donn&eacute;e cod&eacute;e', '', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20942 INSERT INTO `marc_subfield_structure` VALUES ('995', 'c', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20943 INSERT INTO `marc_subfield_structure` VALUES ('995', 'd', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20944 INSERT INTO `marc_subfield_structure` VALUES ('995', 'e', 'Genre d&eacute;taill&eacute;', 'Genre d&eacute;taill&eacute;', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20945 INSERT INTO `marc_subfield_structure` VALUES ('995', 'f', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20946 INSERT INTO `marc_subfield_structure` VALUES ('995', 'g', 'Code &agrave; barres, pr&eacute;fixe', 'Code &agrave; barres, pr&eacute;fixe', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20947 INSERT INTO `marc_subfield_structure` VALUES ('995', 'h', 'Code &agrave; barres, incr&eacute;mentation', 'Code &agrave; barres, incr&eacute;mentation', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20948 INSERT INTO `marc_subfield_structure` VALUES ('995', 'i', 'Code &agrave; barres, suffixe', 'Code &agrave; barres, suffixe', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20949 INSERT INTO `marc_subfield_structure` VALUES ('995', 'j', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20950 INSERT INTO `marc_subfield_structure` VALUES ('995', 'k', 'Cote', 'Cote', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20951 INSERT INTO `marc_subfield_structure` VALUES ('995', 'l', 'Volumaison', 'Volumaison', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20952 INSERT INTO `marc_subfield_structure` VALUES ('995', 'm', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20953 INSERT INTO `marc_subfield_structure` VALUES ('995', 'n', 'Date de restitution pr&eacute;vue', 'Date de restitution pr&eacute;vue', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20954 INSERT INTO `marc_subfield_structure` VALUES ('995', 'o', 'Cat&eacute;gorie de circulation', 'Cat&eacute;gorie de circulation', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20955 INSERT INTO `marc_subfield_structure` VALUES ('995', 'p', 'P&eacute;riodique', 'P&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20956 INSERT INTO `marc_subfield_structure` VALUES ('995', 'q', 'Public vis&eacute; (selon l\'&acirc;ge)', 'Public vis&eacute; (selon l\'&acirc;ge)', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20957 INSERT INTO `marc_subfield_structure` VALUES ('995', 'r', 'Type de document et support mat&eacute;riel', 'Type de document et support mat&eacute;riel', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20958 INSERT INTO `marc_subfield_structure` VALUES ('995', 's', 'Él&eacute;ment de tri', 'Él&eacute;ment de tri', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20959 INSERT INTO `marc_subfield_structure` VALUES ('995', 't', 'Genre', 'Genre', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20960 INSERT INTO `marc_subfield_structure` VALUES ('995', 'u', 'Note sur l\'exemplaire', 'Note sur l\'exemplaire', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20961 INSERT INTO `marc_subfield_structure` VALUES ('995', 'v', 'Note sur le num&eacute;ro de p&eacute;riodique', 'Note sur le num&eacute;ro de p&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20962 INSERT INTO `marc_subfield_structure` VALUES ('995', 'w', 'Établissement cible du document, texte libre', 'Établissement cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20963 INSERT INTO `marc_subfield_structure` VALUES ('995', 'x', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20964 INSERT INTO `marc_subfield_structure` VALUES ('995', 'y', 'Ensemble cible du document , texte libre', 'Ensemble cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20965 INSERT INTO `marc_subfield_structure` VALUES ('995', 'z', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'VR', '', '');
20966 INSERT INTO `marc_subfield_structure` VALUES ('998', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20967 INSERT INTO `marc_subfield_structure` VALUES ('998', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20968 INSERT INTO `marc_subfield_structure` VALUES ('998', 'd', 'First date, FD (RLIN)', 'First Date, FD (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'VR', '', '');
20969 INSERT INTO `marc_subfield_structure` VALUES ('998', 'i', 'RINS (RLIN)', 'RINS (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20970 INSERT INTO `marc_subfield_structure` VALUES ('998', 'l', 'LI (RLIN)', 'LI (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20971 INSERT INTO `marc_subfield_structure` VALUES ('998', 'n', 'NUC (RLIN)', 'NUC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20972 INSERT INTO `marc_subfield_structure` VALUES ('998', 'p', 'PROC (RLIN)', 'PROC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20973 INSERT INTO `marc_subfield_structure` VALUES ('998', 's', 'CC (RLIN)', 'CC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20974 INSERT INTO `marc_subfield_structure` VALUES ('998', 't', 'RTYP (RLIN)', 'RTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20975 INSERT INTO `marc_subfield_structure` VALUES ('998', 'w', 'PLINK (RLIN)', 'PLINK (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20976 INSERT INTO `marc_subfield_structure` VALUES ('999', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
20977 INSERT INTO `marc_subfield_structure` VALUES ('999', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'VR', '', '');
20978 INSERT INTO `marc_subfield_structure` VALUES ('999', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
20979 INSERT INTO `marc_subfield_structure` VALUES ('999', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
20980 INSERT INTO `marc_subfield_structure` VALUES ('999', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
20981 INSERT INTO `marc_subfield_structure` VALUES ('999', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
20982 INSERT INTO `marc_subfield_structure` VALUES ('999', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
20983 INSERT INTO `marc_subfield_structure` VALUES ('999', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
20984 INSERT INTO `marc_subfield_structure` VALUES ('999', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
20985 INSERT INTO `marc_subfield_structure` VALUES ('999', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
20986 INSERT INTO `marc_subfield_structure` VALUES ('999', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
20987 INSERT INTO `marc_subfield_structure` VALUES ('999', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
20988 INSERT INTO `marc_subfield_structure` VALUES ('999', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'VR', '', '');
20989 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'a', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20990 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'd', 'UAD (RLIN)', 'UAD (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20991 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'f', 'FPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20992 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'h', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20993 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'i', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20994 INSERT INTO `marc_subfield_structure` VALUES ('u01', 's', 'UST (RLIN)', 'UST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20995 INSERT INTO `marc_subfield_structure` VALUES ('u01', 't', 'UTYP (RLIN)', 'UTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20996 INSERT INTO `marc_subfield_structure` VALUES ('u02', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20997 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20998 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'b', 'Additional codes following the standard number', 'Additional codes following the standard number', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
20999 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21000 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21001 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'n', 'LSI', 'LSI', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21002 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'o', 'SID', 'SID', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21003 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'p', 'DP', 'DP', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21004 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'r', 'RUSH', 'RUSH', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21005 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'a', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21006 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'b', 'SID', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21007 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'c', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21008 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'd', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21009 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'e', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21010 INSERT INTO `marc_subfield_structure` VALUES ('u10', 's', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21011 INSERT INTO `marc_subfield_structure` VALUES ('u11', 'a', 'Department report request, DRR (DRRH for earlier occurrences)', 'DRR (DRRH for earlier occurrences)', 1, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21012 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'a', 'SUPN', 'SUPN', 1, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21013 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'b', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21014 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'c', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21015 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'd', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21016 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'e', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21017 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'x', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21018 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'a', 'SHIP', 'SHIP', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21019 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'b', 'BILL', 'BILL', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21020 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'c', 'DAC', 'DAC', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21021 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'n', 'LSAC', 'LSAC', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21022 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'a', 'SICO', 'SICO', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21023 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'b', 'SICO', 'SICO', 1, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21024 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'c', 'SCAT', 'SCAT', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21025 INSERT INTO `marc_subfield_structure` VALUES ('u25', 'a', 'Supplier report(s), SRPT', 'Supplier report(s), SRPT', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21026 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'a', 'NCC [OBSOLETE]', 'NCC [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21027 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'i', 'ICI', 'ICI', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21028 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'm', 'MCI', 'MCI', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21029 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'a', 'NCC', 'NCC', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21030 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'b', 'NCS', 'NCS', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21031 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'a', 'ICL', 'ICL', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21032 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'd', 'ICAD', 'ICAD', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21033 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'a', 'EPCL', 'EPCL', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21034 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'r', 'ERI', 'ERI', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21035 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'd', 'EPDT [OBSOLETE]', 'EPDT [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21036 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'f', 'EFRQ', 'EFRQ', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21037 INSERT INTO `marc_subfield_structure` VALUES ('u40', 's', 'EPST', 'EPST', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21038 INSERT INTO `marc_subfield_structure` VALUES ('u40', 't', 'ETYP', 'ETYP', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21039 INSERT INTO `marc_subfield_structure` VALUES ('u50', 'a', 'Acquisitions notes, AQNT', 'Acquisitions notes, AQNT', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21040 INSERT INTO `marc_subfield_structure` VALUES ('u51', 'a', 'Selection notes, SLNT', 'Selection notes, SLNT', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21041 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'a', 'INT', 'INT', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21042 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'b', 'INT', 'NT', 1, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21043 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'a', 'CLNT', 'CLNT', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21044 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'b', 'CLNT', 'CLNT', 1, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21045 INSERT INTO `marc_subfield_structure` VALUES ('u54', 'a', 'Notes to serials department, SRNT', 'Notes to serials department, SRNT', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21046 INSERT INTO `marc_subfield_structure` VALUES ('u55', 'a', 'Cataloging notes, CTNT', 'Cataloging notes, CTNT', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21047 INSERT INTO `marc_subfield_structure` VALUES ('u5f', 'a', 'Accounting notes, ACNT', 'Accounting notes, ACNT', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21048 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'a', 'QTY', 'QTY', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21049 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'b', 'MAT', 'MAT', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21050 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'l', 'MLOC', 'MLOC', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21051 INSERT INTO `marc_subfield_structure` VALUES ('u71', 'a', 'Fund account, FUND', 'Fund account, FUND', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21052 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'a', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21053 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'c', 'CIRC', 'CIRC', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21054 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'h', 'IPST', 'IPST', 1, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21055 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'i', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21056 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'l', 'SLOC', 'SLOC', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21057 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'a', 'LPRI', 'LPRI', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21058 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'b', 'CURR', 'CURR', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21059 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'k', 'CVRT [OBSOLETE]', 'CVRT [OBSOLETE]', 1, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21060 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'p', 'LPD', 'LPD', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21061 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'r', 'EDRT', 'EDRT', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21062 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'h', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21063 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'i', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21064 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'a', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21065 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'b', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21066 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'c', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21067 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'd', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21068 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'e', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21069 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'f', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21070 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'g', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21071 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'h', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21072 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'n', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'VR', '', '');
21073
21074
21075
21076 -- *******************************************************
21077
21078
21079 -- **************************************************************************
21080 -- SIMPLE 3D ARTIFACTS KOHA RECORD AND HOLDINGS MANAGEMENT FIELDS/SUBFIELDS. 
21081 -- **************************************************************************
21082
21083 -- These ought to be adjusted for different less conflicting and more 
21084 -- rationally chosen fields and subfields but I had left that for last. 
21085
21086 -- ADJUST ME
21087 -- Use values from your dump of marc_tag_structure and marc_subfield_structure 
21088 -- to provide support for your Koha database.
21089
21090
21091 -- ******************************************************
21092
21093
21094 -- Current Record ID Field/Subfields 
21095
21096
21097 INSERT INTO `marc_tag_structure` VALUES ('090', 'SYSTEM CONTROL NUMBERS (KOHA)', 'SYSTEM CONTROL NUMBERS (KOHA)', 1, 0, '', 'AR');
21098
21099 INSERT INTO `marc_subfield_structure` VALUES ('090', 'a', 'Item type [OBSOLETE]', 'Item type [OBSOLETE]', 0, 0, NULL, -1, NULL, NULL, '', NULL, -5, 'AR', '', '');
21100 INSERT INTO `marc_subfield_structure` VALUES ('090', 'b', 'Koha Dewey Subclass [OBSOLETE]', 'Koha Dewey Subclass [OBSOLETE]', 0, 0, NULL, 0, NULL, NULL, '', NULL, -5, 'AR', '', '');
21101 INSERT INTO `marc_subfield_structure` VALUES ('090', 'c', 'Koha biblionumber', 'Koha biblionumber', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, -5, 'AR', '', '');
21102 INSERT INTO `marc_subfield_structure` VALUES ('090', 'd', 'Koha biblioitemnumber', 'Koha biblioitemnumber', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, -5, 'AR', '', '');
21103
21104
21105 -- ******************************************************
21106
21107
21108 -- Current primary biblioitems Field/Subfields 
21109
21110
21111 INSERT INTO `marc_tag_structure` VALUES ('942', 'ADDED ENTRY ELEMENTS (KOHA)', 'ADDED ENTRY ELEMENTS (KOHA)', 0, 0, '', 'AR');
21112
21113 INSERT INTO `marc_subfield_structure` VALUES ('942', 'a', 'Institution code [OBSOLETE]', 'Institution code [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -5, 'AR', '', '');
21114 INSERT INTO `marc_subfield_structure` VALUES ('942', 'c', 'Item type', 'Item type', 0, 1, 'biblioitems.itemtype', 9, 'itemtypes', '', '', NULL, 0, 'AR', '', '');
21115 INSERT INTO `marc_subfield_structure` VALUES ('942', 'j', 'Location (call number prefix code)', 'Location (call number prefix code)', 0, 0, 'biblioitems.classification', 9, '', '', '', NULL, -6, 'AR', '', '');
21116 INSERT INTO `marc_subfield_structure` VALUES ('942', 'k', 'Classification base (DDC to decimal or LCC letter class padded after single letter classes with trailing 0', 'Classification base', 0, 0, 'biblioitems.dewey', 9, '', '', '', NULL, -6, 'AR', '', '');
21117 INSERT INTO `marc_subfield_structure` VALUES ('942', 'l', 'Classification subclass (DDC after decimal or LCC number after letters', 'Classification subclass', 0, 0, 'biblioitems.subclass', 9, '', '', '', NULL, -6, 'AR', '', '');
21118
21119
21120 -- ******************************************************
21121
21122
21123 -- Recommended items Field/Subfields 
21124
21125
21126 -- INSERT INTO `marc_tag_structure` VALUES ('95k', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', '');
21127
21128 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '0', 'Item status (withdrawn) (similar to 876-8 $j)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'AR', '', '');
21129 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '1', 'Item status (lost) (similar to 876-8 $j)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'AR', '', '');
21130 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '2', 'Source of classification or shelving scheme (similar to 852 $2)', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21131 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '3', 'Materials specified (similar to 852, 876-8 $3)', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'AR', '', '');
21132 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '4', 'Use restrictions (similar to 506 $a, 876-8 $h)', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'AR', '', '');
21133 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '6', 'Linkage (similar to 852, 876-8 $6)', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'AR', '', '');
21134 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '8', 'Sequence number (similar to 852, 876-8 $8)', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21135 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '9', 'Koha itemnumber (autogenerated similar to 852, 876-8 $3 $8 $t combined)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, 'AR', '', '');
21136 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'a', 'Location (homebranch) (similar to 852 $a)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, '', '', '');
21137 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'b', 'Sublocation or collection (holdingbranch) (similar to 852 $b)', 'Sublocation or collection (holdingbranch)', 1, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'AR', '', '');
21138 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'c', 'Shelving location (similar to 852 $c, 876-8 $l)', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'AR', '', '');
21139 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'd', 'Date acquired (similar to 541, 876-8 $d)', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, 'AR', '', '');
21140 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'e', 'Source of acquisition (similar to 541 $a, 876-8 $e)', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'AR', '', '');
21141 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'f', 'Coded location qualifier (similar to 852 $f)', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21142 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'g', 'Non-coded location qualifier (similar to 852 $g)', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21143 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'h', 'Classification part (similar to 852 $h)', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21144 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'i', 'Item part (similar to 852 $i)', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21145 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'j', 'Shelving control number (similar to 852 $j)', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21146 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'k', 'Call number prefix (similar to 852 $k)', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21147 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'l', 'Shelving form of title (similar to 852 $l)', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21148 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'm', 'Call number suffix (similar to 852 $m)', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21149 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'n', 'Country code (similar to 852 $n)', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21150 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'o', 'Call number (similar to 852 $k $h $i $m combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'AR', '', '');
21151 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'p', 'Piece designation (barcode) (similar to 852, 876-8 $p)', 'Piece designation (barcode)', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, 'AR', '', '');
21152 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'q', 'Piece physical condition (similar to 562 $a, 852 $q)', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21153 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'r', 'Invalid or canceled piece designation (canceled barcode) (similar to 876-8 $r)', 'Invalid or canceled piece designation (canceled barcode)', 1, 0, '', 10, '', '', '', NULL, -1, 'AR', '', '');
21154 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 's', 'Copyright article-fee code (similar to 018 $a, 852 $s)', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21155 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 't', 'Copy number (similar to 852, 876-8 $t)', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21156 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'u', 'Cost, normal purchase price (similar to 541 $h, 876-8 $c)', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'AR', '', '');
21157 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'v', 'Cost, replacement price (similar to 365 $b, 876-8 $c)', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'AR', '', '');
21158 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'w', 'Price effective from (similar to 365 $f)', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'AR', '', '');
21159 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'x', 'Nonpublic note (similar to 852, 876-8 $x)', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'AR', '', '');
21160 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'y', 'Use restrictions (not for loan) (similar to 506 $a, 876-8 $h)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'AR', '', '');
21161 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'z', 'Public note (similar to 852, 876-8 $z)', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'AR', '', '');
21162
21163
21164
21165 -- Current items Field/Subfields 
21166
21167
21168 INSERT INTO `marc_tag_structure` VALUES ('952', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', 'AR');
21169
21170 INSERT INTO `marc_subfield_structure` VALUES ('952', '0', 'Item status (withdrawn)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'AR', '', '');
21171 INSERT INTO `marc_subfield_structure` VALUES ('952', '1', 'Item status (lost)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'AR', '', '');
21172 INSERT INTO `marc_subfield_structure` VALUES ('952', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21173 INSERT INTO `marc_subfield_structure` VALUES ('952', '3', 'Materials specified', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'AR', '', '');
21174 INSERT INTO `marc_subfield_structure` VALUES ('952', '4', 'Use restrictions', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'AR', '', '');
21175 INSERT INTO `marc_subfield_structure` VALUES ('952', '6', 'Linkage', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'AR', '', '');
21176 INSERT INTO `marc_subfield_structure` VALUES ('952', '8', 'Sequence number', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21177 INSERT INTO `marc_subfield_structure` VALUES ('952', '9', 'Cost, normal purchase price', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'AR', '', '');
21178 INSERT INTO `marc_subfield_structure` VALUES ('952', 'a', 'Canceled barcode', 'Canceled barcode', 1, 0, '', 10, '', '', '', NULL, -1, 'AR', '', '');
21179 INSERT INTO `marc_subfield_structure` VALUES ('952', 'b', 'Location (homebranch)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, 'AR', '', '');
21180 INSERT INTO `marc_subfield_structure` VALUES ('952', 'c', 'Shelving location', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'AR', '', '');
21181 INSERT INTO `marc_subfield_structure` VALUES ('952', 'd', 'Sublocation or collection (holdingbranch)', 'Sublocation or collection (holdingbranch)', 0, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'AR', '''952b''', '');
21182 INSERT INTO `marc_subfield_structure` VALUES ('952', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'AR', '', '');
21183 INSERT INTO `marc_subfield_structure` VALUES ('952', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21184 INSERT INTO `marc_subfield_structure` VALUES ('952', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21185 INSERT INTO `marc_subfield_structure` VALUES ('952', 'h', 'Classification part', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21186 INSERT INTO `marc_subfield_structure` VALUES ('952', 'i', 'Item part', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21187 INSERT INTO `marc_subfield_structure` VALUES ('952', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21188 INSERT INTO `marc_subfield_structure` VALUES ('952', 'k', 'Call number (combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'AR', '', '');
21189 INSERT INTO `marc_subfield_structure` VALUES ('952', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21190 INSERT INTO `marc_subfield_structure` VALUES ('952', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21191 INSERT INTO `marc_subfield_structure` VALUES ('952', 'n', 'Country code', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21192 INSERT INTO `marc_subfield_structure` VALUES ('952', 'o', 'Call number prefix', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21193 INSERT INTO `marc_subfield_structure` VALUES ('952', 'p', 'Barcode', 'Barcode', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, 'AR', '', '');
21194 INSERT INTO `marc_subfield_structure` VALUES ('952', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21195 INSERT INTO `marc_subfield_structure` VALUES ('952', 'r', 'Cost, replacement price', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'AR', '', '');
21196 INSERT INTO `marc_subfield_structure` VALUES ('952', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21197 INSERT INTO `marc_subfield_structure` VALUES ('952', 't', 'Copy number', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'AR', '', '');
21198 INSERT INTO `marc_subfield_structure` VALUES ('952', 'u', 'Koha itemnumber (autogenerated)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, 'AR', '', '');
21199 INSERT INTO `marc_subfield_structure` VALUES ('952', 'v', 'Date acquired', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, 'AR', '', '');
21200 INSERT INTO `marc_subfield_structure` VALUES ('952', 'w', 'Price effective from', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'AR', '', '');
21201 INSERT INTO `marc_subfield_structure` VALUES ('952', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'AR', '', '');
21202 INSERT INTO `marc_subfield_structure` VALUES ('952', 'y', 'Use restrictions (not for loan)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'AR', '', '');
21203 INSERT INTO `marc_subfield_structure` VALUES ('952', 'z', 'Public note', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'AR', '', '');
21204
21205
21206 -- *******************************************************
21207
21208
21209
21210 -- ****************************************************************************
21211 -- SIMPLE 3D ARTIFACTS MARC 21 FIELDS/SUBFIELDS AND COMMMONLY USED EXTENSIONS. 
21212 -- ****************************************************************************
21213
21214
21215 -- A Few local use codes need specifying.  Several seealso, plugin, and 
21216 -- authority framework columns need improving.  $9 for authority record linking 
21217 -- needs to be added where not already provided by RLIN specifications. 
21218 -- Needs checking for errors but probably tolerable for use on a production. 
21219 -- A server can be upgraded easily from later versions of this file.
21220 --                                                                          
21221 -- In the absense of more column support for qualifying the relative 
21222 -- importance of subfields to the record editor, some modest modification of 
21223 -- the default framework is needed setting the not-useful non-Koha holdings 
21224 -- subfields to not managed in Koha.
21225
21226 -- MARC fields including letters as part of the field identifier are from RLIN
21227 -- and should be expected to remain along with RLIN $% subfields.  RLIN has 
21228 -- been using letters in fields because there are not enough local use number 
21229 -- fields which have not already been specified for very large union catalogue 
21230 -- networks such as RLIN itself.
21231
21232
21233 -- Fields ending in c, o, or r are temporary placeholders for information from
21234 -- a numeric value until a non-conflicting way to treat the content under the
21235 -- proper original numeric field is adopted.  090 for LC call numbers is much 
21236 -- too common and important so 999 is also provided as a temporary place 
21237 -- holder until all Koha code for finding control fields has been changed from 
21238 -- a numeric test of < 10 to a regular expression match of m/^00/ to prevent 
21239 -- mistaken matching of fields with letters such as 09o if they were control 
21240 -- fields.
21241
21242 INSERT INTO `marc_tag_structure` VALUES ('000', 'LEADER', 'LEADER', 0, 1, '', 'AR');
21243 INSERT INTO `marc_tag_structure` VALUES ('001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 0, '', 'AR');
21244 INSERT INTO `marc_tag_structure` VALUES ('003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 0, '', 'AR');
21245 INSERT INTO `marc_tag_structure` VALUES ('005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 0, '', 'AR');
21246 INSERT INTO `marc_tag_structure` VALUES ('006', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 1, 0, '', 'AR');
21247 INSERT INTO `marc_tag_structure` VALUES ('007', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 1, 0, '', 'AR');
21248 INSERT INTO `marc_tag_structure` VALUES ('008', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 0, 1, '', 'AR');
21249 INSERT INTO `marc_tag_structure` VALUES ('009', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 1, 0, '', 'AR');
21250 INSERT INTO `marc_tag_structure` VALUES ('010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, '', 'AR');
21251 INSERT INTO `marc_tag_structure` VALUES ('011', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 0, 0, '', 'AR');
21252 INSERT INTO `marc_tag_structure` VALUES ('013', 'PATENT CONTROL INFORMATION', 'PATENT CONTROL INFORMATION', 1, 0, '', 'AR');
21253 INSERT INTO `marc_tag_structure` VALUES ('015', 'NATIONAL BIBLIOGRAPHY NUMBER', 'NATIONAL BIBLIOGRAPHY NUMBER', 1, 0, '', 'AR');
21254 INSERT INTO `marc_tag_structure` VALUES ('016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, '', 'AR');
21255 INSERT INTO `marc_tag_structure` VALUES ('017', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 1, 0, '', 'AR');
21256 INSERT INTO `marc_tag_structure` VALUES ('018', 'COPYRIGHT ARTICLE-FEE CODE', 'COPYRIGHT ARTICLE-FEE CODE', 0, 0, '', 'AR');
21257 INSERT INTO `marc_tag_structure` VALUES ('01e', 'CODED FIELD ERROR (RLIN)', 'CODED FIELD ERROR (RLIN)', 1, 0, '', 'AR');
21258 INSERT INTO `marc_tag_structure` VALUES ('020', 'ISBN', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL, 'AR');
21259 INSERT INTO `marc_tag_structure` VALUES ('022', 'INTERNATIONAL STANDARD SERIAL NUMBER', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL, 'AR');
21260 INSERT INTO `marc_tag_structure` VALUES ('023', 'STANDARD FILM NUMBER (VM) [DELETED]', 'STANDARD FILM NUMBER (VM) [DELETED]', 1, 0, NULL, 'AR');
21261 INSERT INTO `marc_tag_structure` VALUES ('024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL, 'AR');
21262 INSERT INTO `marc_tag_structure` VALUES ('025', 'OVERSEAS ACQUISITION NUMBER', 'OVERSEAS ACQUISITION NUMBER', 1, 0, '', 'AR');
21263 INSERT INTO `marc_tag_structure` VALUES ('026', 'FINGERPRINT IDENTIFIER', 'FINGERPRINT IDENTIFIER', 1, 0, '', 'AR');
21264 INSERT INTO `marc_tag_structure` VALUES ('027', 'STANDARD TECHNICAL REPORT NUMBER', 'STANDARD TECHNICAL REPORT NUMBER', 1, 0, '', 'AR');
21265 INSERT INTO `marc_tag_structure` VALUES ('028', 'IDENTIFICATION NUMBER--PUBLISHER NUMBER', 'PUBLISHER NUMBER', 1, 0, NULL, 'AR');
21266 INSERT INTO `marc_tag_structure` VALUES ('029', 'OTHER SYSTEM CONTROL NUMBER (OCLC)', ' (OCLC)', 1, 0, '', 'AR');
21267 INSERT INTO `marc_tag_structure` VALUES ('030', 'CODEN DESIGNATION', 'CODEN DESIGNATION', 1, 0, '', 'AR');
21268 INSERT INTO `marc_tag_structure` VALUES ('031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, '', 'AR');
21269 INSERT INTO `marc_tag_structure` VALUES ('032', 'POSTAL REGISTRATION NUMBER', 'POSTAL REGISTRATION NUMBER', 1, 0, '', 'AR');
21270 INSERT INTO `marc_tag_structure` VALUES ('033', 'DATE/TIME AND PLACE OF AN EVENT', 'DATE/TIME AND PLACE OF AN EVENT', 1, 0, '', 'AR');
21271 INSERT INTO `marc_tag_structure` VALUES ('034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, '', 'AR');
21272 INSERT INTO `marc_tag_structure` VALUES ('035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL, 'AR');
21273 INSERT INTO `marc_tag_structure` VALUES ('036', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 0, 0, '', 'AR');
21274 INSERT INTO `marc_tag_structure` VALUES ('037', 'PUBLICATION, DISTRIBUTION DETAILS--SOURCE OF ACQUISITION', 'SOURCE OF ACQUISITION', 1, 0, NULL, 'AR');
21275 INSERT INTO `marc_tag_structure` VALUES ('038', 'RECORD CONTENT LICENSOR', 'RECORD CONTENT LICENSOR', 0, 0, '', 'AR');
21276 INSERT INTO `marc_tag_structure` VALUES ('039', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 0, 0, '', 'AR');
21277 INSERT INTO `marc_tag_structure` VALUES ('040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 0, NULL, 'AR');
21278 INSERT INTO `marc_tag_structure` VALUES ('041', 'LANGUAGE CODE', 'LANGUAGE CODE', 1, 0, '', 'AR');
21279 INSERT INTO `marc_tag_structure` VALUES ('042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, '', 'AR');
21280 INSERT INTO `marc_tag_structure` VALUES ('043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL, 'AR');
21281 INSERT INTO `marc_tag_structure` VALUES ('044', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 0, 0, '', 'AR');
21282 INSERT INTO `marc_tag_structure` VALUES ('045', 'TIME PERIOD OF CONTENT', 'TIME PERIOD OF CONTENT', 0, 0, '', 'AR');
21283 INSERT INTO `marc_tag_structure` VALUES ('046', 'SPECIAL CODED DATES', 'SPECIAL CODED DATES', 1, 0, '', 'AR');
21284 INSERT INTO `marc_tag_structure` VALUES ('047', 'FORM OF MUSICAL COMPOSITION CODE', 'FORM OF MUSICAL COMPOSITION CODE', 0, 0, '', 'AR');
21285 INSERT INTO `marc_tag_structure` VALUES ('048', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 1, 0, '', 'AR');
21286 INSERT INTO `marc_tag_structure` VALUES ('049', 'LOCAL HOLDINGS (OCLC)', 'LOCAL HOLDINGS (OCLC)', 0, 0, '', 'AR');
21287 INSERT INTO `marc_tag_structure` VALUES ('050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL, 'AR');
21288 INSERT INTO `marc_tag_structure` VALUES ('051', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 1, 0, NULL, 'AR');
21289 INSERT INTO `marc_tag_structure` VALUES ('052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL, 'AR');
21290 INSERT INTO `marc_tag_structure` VALUES ('055', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 1, 0, NULL, 'AR');
21291 INSERT INTO `marc_tag_structure` VALUES ('060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL, 'AR');
21292 INSERT INTO `marc_tag_structure` VALUES ('061', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 1, 0, NULL, 'AR');
21293 INSERT INTO `marc_tag_structure` VALUES ('066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL, 'AR');
21294 INSERT INTO `marc_tag_structure` VALUES ('070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL, 'AR');
21295 INSERT INTO `marc_tag_structure` VALUES ('071', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 1, 0, NULL, 'AR');
21296 INSERT INTO `marc_tag_structure` VALUES ('072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL, 'AR');
21297 INSERT INTO `marc_tag_structure` VALUES ('074', 'GPO ITEM NUMBER', 'GPO ITEM NUMBER', 1, 0, NULL, 'AR');
21298 INSERT INTO `marc_tag_structure` VALUES ('080', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'AR');
21299 INSERT INTO `marc_tag_structure` VALUES ('082', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'AR');
21300 INSERT INTO `marc_tag_structure` VALUES ('084', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL, 'AR');
21301 INSERT INTO `marc_tag_structure` VALUES ('086', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL, 'AR');
21302 INSERT INTO `marc_tag_structure` VALUES ('087', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 1, 0, NULL, 'AR');
21303 INSERT INTO `marc_tag_structure` VALUES ('088', 'REPORT NUMBER', 'REPORT NUMBER', 1, 0, NULL, 'AR');
21304 INSERT INTO `marc_tag_structure` VALUES ('09o', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'AR');
21305 INSERT INTO `marc_tag_structure` VALUES ('091', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 0, 0, '', 'AR');
21306 INSERT INTO `marc_tag_structure` VALUES ('092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, '', 'AR');
21307 INSERT INTO `marc_tag_structure` VALUES ('096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, '', 'AR');
21308 INSERT INTO `marc_tag_structure` VALUES ('098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, '', 'AR');
21309 INSERT INTO `marc_tag_structure` VALUES ('099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, '', 'AR');
21310 INSERT INTO `marc_tag_structure` VALUES ('100', 'MAIN ENTRY--AUTHOR/DEVELOPER--PERSONAL NAME', 'MAIN ENTRY--PERSONAL NAME', 0, 0, NULL, 'AR');
21311 INSERT INTO `marc_tag_structure` VALUES ('110', 'MAIN ENTRY--AUTHOR/DEVELOPER--CORPORATE NAME', 'MAIN ENTRY--CORPORATE NAME', 0, 0, NULL, 'AR');
21312 INSERT INTO `marc_tag_structure` VALUES ('111', 'MAIN ENTRY--MEETING NAME', 'MAIN ENTRY--MEETING NAME', 0, 0, NULL, 'AR');
21313 INSERT INTO `marc_tag_structure` VALUES ('130', 'MAIN ENTRY--UNIFORM TITLE', 'MAIN ENTRY--UNIFORM TITLE', 0, 0, NULL, 'AR');
21314 INSERT INTO `marc_tag_structure` VALUES ('210', 'ABBREVIATED TITLE', 'ABBREVIATED TITLE', 1, 0, NULL, 'AR');
21315 INSERT INTO `marc_tag_structure` VALUES ('211', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 1, 0, NULL, 'AR');
21316 INSERT INTO `marc_tag_structure` VALUES ('212', 'VARIANT ACCESS TITLE [OBSOLETE]', 'VARIANT ACCESS TITLE [OBSOLETE]', 1, 0, NULL, 'AR');
21317 INSERT INTO `marc_tag_structure` VALUES ('214', 'AUGMENTED TITLE [OBSOLETE]', 'AUGMENTED TITLE [OBSOLETE]', 1, 0, NULL, 'AR');
21318 INSERT INTO `marc_tag_structure` VALUES ('222', 'KEY TITLE', 'KEY TITLE', 1, 0, NULL, 'AR');
21319 INSERT INTO `marc_tag_structure` VALUES ('240', 'UNIFORM TITLE', 'UNIFORM TITLE', 0, 0, 'Unititle', 'AR');
21320 INSERT INTO `marc_tag_structure` VALUES ('241', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 0, 0, '', 'AR');
21321 INSERT INTO `marc_tag_structure` VALUES ('242', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 1, 0, NULL, 'AR');
21322 INSERT INTO `marc_tag_structure` VALUES ('243', 'COLLECTIVE UNIFORM TITLE', 'COLLECTIVE UNIFORM TITLE', 0, 0, '', 'AR');
21323 INSERT INTO `marc_tag_structure` VALUES ('245', 'TITLE', 'TITLE STATEMENT', 0, 1, '', 'AR');
21324 INSERT INTO `marc_tag_structure` VALUES ('246', 'VARYING FORM OF TITLE', 'VARYING FORM OF TITLE', 1, 0, NULL, 'AR');
21325 INSERT INTO `marc_tag_structure` VALUES ('247', 'FORMER TITLE', 'FORMER TITLE', 1, 0, NULL, 'AR');
21326 INSERT INTO `marc_tag_structure` VALUES ('250', 'EDITION STATEMENT', 'EDITION STATEMENT', 0, 0, NULL, 'AR');
21327 INSERT INTO `marc_tag_structure` VALUES ('254', 'MUSICAL PRESENTATION STATEMENT', 'MUSICAL PRESENTATION STATEMENT', 0, 0, NULL, 'AR');
21328 INSERT INTO `marc_tag_structure` VALUES ('255', 'CARTOGRAPHIC MATHEMATICAL DATA', 'CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL, 'AR');
21329 INSERT INTO `marc_tag_structure` VALUES ('256', 'COMPUTER FILE CHARACTERISTICS', 'COMPUTER FILE CHARACTERISTICS', 0, 0, NULL, 'AR');
21330 INSERT INTO `marc_tag_structure` VALUES ('257', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 0, 0, NULL, 'AR');
21331 INSERT INTO `marc_tag_structure` VALUES ('258', 'PHILATELIC ISSUE DATE', 'PHILATELIC ISSUE DATE', 1, 0, NULL, 'AR');
21332 INSERT INTO `marc_tag_structure` VALUES ('260', 'PUBLISHER--PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 'PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 1, 0, NULL, 'AR');
21333 INSERT INTO `marc_tag_structure` VALUES ('261', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, NULL, 'AR');
21334 INSERT INTO `marc_tag_structure` VALUES ('262', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 0, 0, NULL, 'AR');
21335 INSERT INTO `marc_tag_structure` VALUES ('263', 'PROJECTED PUBLICATION DATE', 'PROJECTED PUBLICATION DATE', 0, 0, NULL, 'AR');
21336 INSERT INTO `marc_tag_structure` VALUES ('265', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 0, 0, NULL, 'AR');
21337 INSERT INTO `marc_tag_structure` VALUES ('270', 'PUBLICATION, DISTRIBUTION DETAILS--ADDRESS', 'ADDRESS', 1, 0, NULL, 'AR');
21338 INSERT INTO `marc_tag_structure` VALUES ('300', 'PHYSICAL DESCRIPTION', 'PHYSICAL DESCRIPTION', 1, 1, NULL, 'AR');
21339 INSERT INTO `marc_tag_structure` VALUES ('301', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 0, 0, NULL, 'AR');
21340 INSERT INTO `marc_tag_structure` VALUES ('302', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 0, 0, NULL, 'AR');
21341 INSERT INTO `marc_tag_structure` VALUES ('303', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'AR');
21342 INSERT INTO `marc_tag_structure` VALUES ('304', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'AR');
21343 INSERT INTO `marc_tag_structure` VALUES ('305', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 0, 0, NULL, 'AR');
21344 INSERT INTO `marc_tag_structure` VALUES ('306', 'RUN TIME', 'PLAYING TIME', 0, 0, NULL, 'AR');
21345 INSERT INTO `marc_tag_structure` VALUES ('307', 'HOURS, ETC.', 'HOURS, ETC.', 1, 0, NULL, 'AR');
21346 INSERT INTO `marc_tag_structure` VALUES ('308', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 1, 0, NULL, 'AR');
21347 INSERT INTO `marc_tag_structure` VALUES ('310', 'CURRENT PUBLICATION FREQUENCY', 'CURRENT PUBLICATION FREQUENCY', 0, 0, NULL, 'AR');
21348 INSERT INTO `marc_tag_structure` VALUES ('315', 'FREQUENCY (CF MP) [OBSOLETE]', 'FREQUENCY (CF MP) [OBSOLETE]', 0, 0, NULL, 'AR');
21349 INSERT INTO `marc_tag_structure` VALUES ('321', 'FORMER PUBLICATION FREQUENCY', 'FORMER PUBLICATION FREQUENCY', 1, 0, NULL, 'AR');
21350 INSERT INTO `marc_tag_structure` VALUES ('340', 'PHYSICAL MEDIUM', 'PHYSICAL MEDIUM', 1, 0, NULL, 'AR');
21351 INSERT INTO `marc_tag_structure` VALUES ('342', 'GEOSPATIAL REFERENCE DATA', 'GEOSPATIAL REFERENCE DATA', 1, 0, NULL, 'AR');
21352 INSERT INTO `marc_tag_structure` VALUES ('343', 'PLANAR COORDINATE DATA', 'PLANAR COORDINATE DATA', 1, 0, NULL, 'AR');
21353 INSERT INTO `marc_tag_structure` VALUES ('350', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 1, 0, NULL, 'AR');
21354 INSERT INTO `marc_tag_structure` VALUES ('351', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 1, 0, NULL, 'AR');
21355 INSERT INTO `marc_tag_structure` VALUES ('352', 'DIGITAL GRAPHIC REPRESENTATION', 'DIGITAL GRAPHIC REPRESENTATION', 1, 0, NULL, 'AR');
21356 INSERT INTO `marc_tag_structure` VALUES ('355', 'SECURITY CLASSIFICATION CONTROL', 'SECURITY CLASSIFICATION CONTROL', 1, 0, NULL, 'AR');
21357 INSERT INTO `marc_tag_structure` VALUES ('357', 'ORIGINATOR DISSEMINATION CONTROL', 'ORIGINATOR DISSEMINATION CONTROL', 0, 0, NULL, 'AR');
21358 INSERT INTO `marc_tag_structure` VALUES ('359', 'RENTAL PRICE (VM) [OBSOLETE]', 'RENTAL PRICE (VM) [OBSOLETE]', 0, 0, NULL, 'AR');
21359 INSERT INTO `marc_tag_structure` VALUES ('362', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 1, 0, NULL, 'AR');
21360 INSERT INTO `marc_tag_structure` VALUES ('365', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE PRICE', 'TRADE PRICE', 1, 0, NULL, 'AR');
21361 INSERT INTO `marc_tag_structure` VALUES ('366', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE AVAILABILITY INFORMATION', 'TRADE AVAILABILITY INFORMATION', 1, 0, NULL, 'AR');
21362 INSERT INTO `marc_tag_structure` VALUES ('400', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'AR');
21363 INSERT INTO `marc_tag_structure` VALUES ('410', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'AR');
21364 INSERT INTO `marc_tag_structure` VALUES ('411', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'AR');
21365 INSERT INTO `marc_tag_structure` VALUES ('440', 'SERIES--TITLE', 'SERIES STATEMENT/ADDED ENTRY--TITLE', 1, 0, NULL, 'AR');
21366 INSERT INTO `marc_tag_structure` VALUES ('490', 'SERIES STATEMENT', 'SERIES STATEMENT', 1, 0, '', 'AR');
21367 INSERT INTO `marc_tag_structure` VALUES ('500', 'GENERAL NOTE', 'GENERAL NOTE', 1, 0, NULL, 'AR');
21368 INSERT INTO `marc_tag_structure` VALUES ('501', 'WITH NOTE', 'WITH NOTE', 1, 0, NULL, 'AR');
21369 INSERT INTO `marc_tag_structure` VALUES ('502', 'DISSERTATION NOTE', 'DISSERTATION NOTE', 1, 0, NULL, 'AR');
21370 INSERT INTO `marc_tag_structure` VALUES ('503', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 1, 0, NULL, 'AR');
21371 INSERT INTO `marc_tag_structure` VALUES ('504', 'BIBLIOGRAPHY, ETC. NOTE', 'BIBLIOGRAPHY, ETC. NOTE', 1, 0, NULL, 'AR');
21372 INSERT INTO `marc_tag_structure` VALUES ('505', 'FORMATTED CONTENTS NOTE', 'FORMATTED CONTENTS NOTE', 1, 0, NULL, 'AR');
21373 INSERT INTO `marc_tag_structure` VALUES ('506', 'RESTRICTIONS ON ACCESS NOTE', 'RESTRICTIONS ON ACCESS NOTE', 1, 0, NULL, 'AR');
21374 INSERT INTO `marc_tag_structure` VALUES ('507', 'SCALE NOTE FOR GRAPHIC MATERIAL', 'SCALE NOTE FOR GRAPHIC MATERIAL', 0, 0, NULL, 'AR');
21375 INSERT INTO `marc_tag_structure` VALUES ('508', 'CREATION/PRODUCTION CREDITS NOTE', 'CREATION/PRODUCTION CREDITS NOTE', 1, 0, NULL, 'AR');
21376 INSERT INTO `marc_tag_structure` VALUES ('509', 'INFORMAL NOTES (RLIN)', 'INFORMAL NOTES (RLIN)', 0, 0, NULL, 'AR');
21377 INSERT INTO `marc_tag_structure` VALUES ('510', 'CITATION/REFERENCES NOTE', 'CITATION/REFERENCES NOTE', 1, 0, NULL, 'AR');
21378 INSERT INTO `marc_tag_structure` VALUES ('511', 'PARTICIPANT OR PERFORMER NOTE', 'PARTICIPANT OR PERFORMER NOTE', 1, 0, NULL, 'AR');
21379 INSERT INTO `marc_tag_structure` VALUES ('512', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'AR');
21380 INSERT INTO `marc_tag_structure` VALUES ('513', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 1, 0, NULL, 'AR');
21381 INSERT INTO `marc_tag_structure` VALUES ('514', 'DATA QUALITY NOTE', 'DATA QUALITY NOTE', 0, 0, NULL, 'AR');
21382 INSERT INTO `marc_tag_structure` VALUES ('515', 'NUMBERING PECULIARITIES NOTE', 'NUMBERING PECULIARITIES NOTE', 1, 0, NULL, 'AR');
21383 INSERT INTO `marc_tag_structure` VALUES ('516', 'TYPE OF COMPUTER FILE OR DATA NOTE', 'TYPE OF COMPUTER FILE OR DATA NOTE', 1, 0, NULL, 'AR');
21384 INSERT INTO `marc_tag_structure` VALUES ('517', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 0, 0, NULL, 'AR');
21385 INSERT INTO `marc_tag_structure` VALUES ('518', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 1, 0, NULL, 'AR');
21386 INSERT INTO `marc_tag_structure` VALUES ('520', 'SUMMARY, ETC.', 'SUMMARY, ETC.', 1, 0, NULL, 'AR');
21387 INSERT INTO `marc_tag_structure` VALUES ('521', 'GRADE LEVEL/TARGET AUDIENCE NOTE', 'TARGET AUDIENCE NOTE', 1, 0, NULL, 'AR');
21388 INSERT INTO `marc_tag_structure` VALUES ('522', 'GEOGRAPHIC DETAILS/GEOGRAPHIC COVERAGE NOTE', 'GEOGRAPHIC COVERAGE NOTE', 1, 0, NULL, 'AR');
21389 INSERT INTO `marc_tag_structure` VALUES ('523', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'AR');
21390 INSERT INTO `marc_tag_structure` VALUES ('524', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'AR');
21391 INSERT INTO `marc_tag_structure` VALUES ('525', 'SUPPLEMENT NOTE', 'SUPPLEMENT NOTE', 0, 0, NULL, 'AR');
21392 INSERT INTO `marc_tag_structure` VALUES ('526', 'STUDY PROGRAM INFORMATION NOTE', 'STUDY PROGRAM INFORMATION NOTE', 0, 0, NULL, 'AR');
21393 INSERT INTO `marc_tag_structure` VALUES ('527', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 1, 0, NULL, 'AR');
21394 INSERT INTO `marc_tag_structure` VALUES ('530', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 1, 0, NULL, 'AR');
21395 INSERT INTO `marc_tag_structure` VALUES ('533', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'AR');
21396 INSERT INTO `marc_tag_structure` VALUES ('534', 'ORIGINAL VERSION NOTE', 'ORIGINAL VERSION NOTE', 1, 0, NULL, 'AR');
21397 INSERT INTO `marc_tag_structure` VALUES ('535', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 1, 0, NULL, 'AR');
21398 INSERT INTO `marc_tag_structure` VALUES ('536', 'FUNDING INFORMATION NOTE', 'FUNDING INFORMATION NOTE', 1, 0, NULL, 'AR');
21399 INSERT INTO `marc_tag_structure` VALUES ('537', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'AR');
21400 INSERT INTO `marc_tag_structure` VALUES ('538', 'SYSTEM DETAILS NOTE', 'SYSTEM DETAILS NOTE', 1, 0, NULL, 'AR');
21401 INSERT INTO `marc_tag_structure` VALUES ('540', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'AR');
21402 INSERT INTO `marc_tag_structure` VALUES ('541', 'ACQUISITION INFO--IMMEDIATE SOURCE OF ACQUISITION NOTE', 'IMMEDIATE SOURCE OF ACQUISITION NOTE', 1, 0, NULL, 'AR');
21403 INSERT INTO `marc_tag_structure` VALUES ('543', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 1, 0, NULL, 'AR');
21404 INSERT INTO `marc_tag_structure` VALUES ('544', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 1, 0, NULL, 'AR');
21405 INSERT INTO `marc_tag_structure` VALUES ('546', 'LANGUAGE/TRANSLATION INFO', 'LANGUAGE NOTE', 1, 0, NULL, 'AR');
21406 INSERT INTO `marc_tag_structure` VALUES ('547', 'FORMER TITLE COMPLEXITY NOTE', 'FORMER TITLE COMPLEXITY NOTE', 1, 0, NULL, 'AR');
21407 INSERT INTO `marc_tag_structure` VALUES ('550', 'ISSUING BODY NOTE', 'ISSUING BODY NOTE', 1, 0, NULL, 'AR');
21408 INSERT INTO `marc_tag_structure` VALUES ('552', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 1, 0, NULL, 'AR');
21409 INSERT INTO `marc_tag_structure` VALUES ('555', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 1, 0, NULL, 'AR');
21410 INSERT INTO `marc_tag_structure` VALUES ('556', 'INFORMATION ABOUT DOCUMENTATION NOTE', 'INFORMATION ABOUT DOCUMENTATION NOTE', 1, 0, NULL, 'AR');
21411 INSERT INTO `marc_tag_structure` VALUES ('561', 'OWNERSHIP AND CUSTODIAL HISTORY', 'OWNERSHIP AND CUSTODIAL HISTORY', 1, 0, NULL, 'AR');
21412 INSERT INTO `marc_tag_structure` VALUES ('562', 'COPY AND VERSION IDENTIFICATION NOTE', 'COPY AND VERSION IDENTIFICATION NOTE', 1, 0, NULL, 'AR');
21413 INSERT INTO `marc_tag_structure` VALUES ('563', 'BINDING INFORMATION', 'BINDING INFORMATION', 1, 0, NULL, 'AR');
21414 INSERT INTO `marc_tag_structure` VALUES ('565', 'CASE FILE CHARACTERISTICS NOTE', 'CASE FILE CHARACTERISTICS NOTE', 1, 0, NULL, 'AR');
21415 INSERT INTO `marc_tag_structure` VALUES ('567', 'METHODOLOGY NOTE', 'METHODOLOGY NOTE', 1, 0, NULL, 'AR');
21416 INSERT INTO `marc_tag_structure` VALUES ('570', 'EDITOR NOTE (SE) [OBSOLETE]', 'EDITOR NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'AR');
21417 INSERT INTO `marc_tag_structure` VALUES ('580', 'LINKING ENTRY COMPLEXITY NOTE', 'LINKING ENTRY COMPLEXITY NOTE', 1, 0, NULL, 'AR');
21418 INSERT INTO `marc_tag_structure` VALUES ('581', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'AR');
21419 INSERT INTO `marc_tag_structure` VALUES ('582', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 1, 0, NULL, 'AR');
21420 INSERT INTO `marc_tag_structure` VALUES ('583', 'ACQUISITION INFO--ACTION NOTE', 'ACTION NOTE', 1, 0, NULL, 'AR');
21421 INSERT INTO `marc_tag_structure` VALUES ('584', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 1, 0, NULL, 'AR');
21422 INSERT INTO `marc_tag_structure` VALUES ('585', 'EXHIBITIONS NOTE', 'EXHIBITIONS NOTE', 1, 0, NULL, 'AR');
21423 INSERT INTO `marc_tag_structure` VALUES ('586', 'AWARDS', 'AWARDS NOTE', 1, 0, NULL, 'AR');
21424 INSERT INTO `marc_tag_structure` VALUES ('590', 'LOCAL NOTE (RLIN)', 'LOCAL NOTE (RLIN)', 1, 0, NULL, 'AR');
21425 INSERT INTO `marc_tag_structure` VALUES ('600', 'SUBJECT--PERSONAL NAME', 'SUBJECT ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'AR');
21426 INSERT INTO `marc_tag_structure` VALUES ('610', 'SUBJECT--CORPORATE NAME', 'SUBJECT ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'AR');
21427 INSERT INTO `marc_tag_structure` VALUES ('611', 'SUBJECT--MEETING NAME', 'SUBJECT ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'AR');
21428 INSERT INTO `marc_tag_structure` VALUES ('630', 'SUBJECT--UNIFORM TITLE', 'SUBJECT ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'AR');
21429 INSERT INTO `marc_tag_structure` VALUES ('648', 'SUBJECT--CHRONOLOGICAL TERM', 'SUBJECT ADDED ENTRY--CHRONOLOGICAL TERM', 1, 0, NULL, 'AR');
21430 INSERT INTO `marc_tag_structure` VALUES ('650', 'SUBJECT--TOPIC', 'SUBJECT ADDED ENTRY--TOPICAL TERM', 1, 0, NULL, 'AR');
21431 INSERT INTO `marc_tag_structure` VALUES ('651', 'SUBJECT--GEOGRAPHIC NAME', 'SUBJECT ADDED ENTRY--GEOGRAPHIC NAME', 1, 0, NULL, 'AR');
21432 INSERT INTO `marc_tag_structure` VALUES ('652', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 1, 0, NULL, 'AR');
21433 INSERT INTO `marc_tag_structure` VALUES ('653', 'SUBJECT--UNCONTROLLED', 'INDEX TERM--UNCONTROLLED', 1, 0, NULL, 'AR');
21434 INSERT INTO `marc_tag_structure` VALUES ('654', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 1, 0, NULL, 'AR');
21435 INSERT INTO `marc_tag_structure` VALUES ('655', 'SUBJECT--GENRE/FORM', 'INDEX TERM--GENRE/FORM', 1, 0, NULL, 'AR');
21436 INSERT INTO `marc_tag_structure` VALUES ('656', 'SUBJECT--OCCUPATION', 'INDEX TERM--OCCUPATION', 1, 0, NULL, 'AR');
21437 INSERT INTO `marc_tag_structure` VALUES ('657', 'SUBJECT--FUNCTION', 'INDEX TERM--FUNCTION', 1, 0, NULL, 'AR');
21438 INSERT INTO `marc_tag_structure` VALUES ('658', 'SUBJECT--CURRICULUM OBJECTIVE', 'INDEX TERM--CURRICULUM OBJECTIVE', 1, 0, NULL, 'AR');
21439 INSERT INTO `marc_tag_structure` VALUES ('662', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'AR');
21440 INSERT INTO `marc_tag_structure` VALUES ('690', 'LOCAL SUBJECT--TOPICAL TERM (OCLC, RLIN)', 'LOCAL SUBJECT ADDED ENTRY--TOPICAL TERM (OCLC, RLIN)', 1, 0, '', 'AR');
21441 INSERT INTO `marc_tag_structure` VALUES ('691', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 1, 0, '', 'AR');
21442 INSERT INTO `marc_tag_structure` VALUES ('696', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'AR');
21443 INSERT INTO `marc_tag_structure` VALUES ('697', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'AR');
21444 INSERT INTO `marc_tag_structure` VALUES ('698', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'AR');
21445 INSERT INTO `marc_tag_structure` VALUES ('699', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'AR');
21446 INSERT INTO `marc_tag_structure` VALUES ('700', 'ADDED ENTRY--PERSONAL NAME', 'ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'AR');
21447 INSERT INTO `marc_tag_structure` VALUES ('705', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'AR');
21448 INSERT INTO `marc_tag_structure` VALUES ('710', 'ADDED ENTRY--CORPORATE NAME', 'ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'AR');
21449 INSERT INTO `marc_tag_structure` VALUES ('711', 'ADDED ENTRY--MEETING NAME', 'ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'AR');
21450 INSERT INTO `marc_tag_structure` VALUES ('715', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'AR');
21451 INSERT INTO `marc_tag_structure` VALUES ('720', 'ADDED ENTRY--UNCONTROLLED NAME', 'ADDED ENTRY--UNCONTROLLED NAME', 1, 0, NULL, 'AR');
21452 INSERT INTO `marc_tag_structure` VALUES ('730', 'ADDED ENTRY--UNIFORM TITLE', 'ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'AR');
21453 INSERT INTO `marc_tag_structure` VALUES ('740', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 1, 0, NULL, 'AR');
21454 INSERT INTO `marc_tag_structure` VALUES ('752', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'AR');
21455 INSERT INTO `marc_tag_structure` VALUES ('753', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 1, 0, NULL, 'AR');
21456 INSERT INTO `marc_tag_structure` VALUES ('754', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 1, 0, NULL, 'AR');
21457 INSERT INTO `marc_tag_structure` VALUES ('755', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 1, 0, NULL, 'AR');
21458 INSERT INTO `marc_tag_structure` VALUES ('760', 'MAIN SERIES ENTRY', 'MAIN SERIES ENTRY', 1, 0, NULL, 'AR');
21459 INSERT INTO `marc_tag_structure` VALUES ('762', 'SUBSERIES ENTRY', 'SUBSERIES ENTRY', 1, 0, NULL, 'AR');
21460 INSERT INTO `marc_tag_structure` VALUES ('765', 'ORIGINAL LANGUAGE ENTRY', 'ORIGINAL LANGUAGE ENTRY', 1, 0, NULL, 'AR');
21461 INSERT INTO `marc_tag_structure` VALUES ('767', 'TRANSLATION ENTRY', 'TRANSLATION ENTRY', 1, 0, NULL, 'AR');
21462 INSERT INTO `marc_tag_structure` VALUES ('770', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 1, 0, NULL, 'AR');
21463 INSERT INTO `marc_tag_structure` VALUES ('772', 'SUPPLEMENT PARENT ENTRY', 'SUPPLEMENT PARENT ENTRY', 1, 0, NULL, 'AR');
21464 INSERT INTO `marc_tag_structure` VALUES ('773', 'HOST ITEM ENTRY', 'HOST ITEM ENTRY', 1, 0, NULL, 'AR');
21465 INSERT INTO `marc_tag_structure` VALUES ('774', 'CONSTITUENT UNIT ENTRY', 'CONSTITUENT UNIT ENTRY', 1, 0, NULL, 'AR');
21466 INSERT INTO `marc_tag_structure` VALUES ('775', 'OTHER EDITION ENTRY', 'OTHER EDITION ENTRY', 1, 0, NULL, 'AR');
21467 INSERT INTO `marc_tag_structure` VALUES ('776', 'ADDITIONAL PHYSICAL FORM ENTRY', 'ADDITIONAL PHYSICAL FORM ENTRY', 1, 0, NULL, 'AR');
21468 INSERT INTO `marc_tag_structure` VALUES ('777', 'ISSUED WITH ENTRY', 'ISSUED WITH ENTRY', 1, 0, NULL, 'AR');
21469 INSERT INTO `marc_tag_structure` VALUES ('780', 'PRECEDING ENTRY', 'PRECEDING ENTRY', 1, 0, NULL, 'AR');
21470 INSERT INTO `marc_tag_structure` VALUES ('785', 'SUCCEEDING ENTRY', 'SUCCEEDING ENTRY', 1, 0, NULL, 'AR');
21471 INSERT INTO `marc_tag_structure` VALUES ('786', 'DATA SOURCE ENTRY', 'DATA SOURCE ENTRY', 1, 0, NULL, 'AR');
21472 INSERT INTO `marc_tag_structure` VALUES ('787', 'NONSPECIFIC RELATIONSHIP ENTRY', 'NONSPECIFIC RELATIONSHIP ENTRY', 1, 0, NULL, 'AR');
21473 INSERT INTO `marc_tag_structure` VALUES ('789', 'COMPONENT ITEM ENTRY (RLIN)', 'COMPONENT ITEM ENTRY (RLIN)', 1, 0, '', 'AR');
21474 INSERT INTO `marc_tag_structure` VALUES ('796', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'AR');
21475 INSERT INTO `marc_tag_structure` VALUES ('797', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'AR');
21476 INSERT INTO `marc_tag_structure` VALUES ('798', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'AR');
21477 INSERT INTO `marc_tag_structure` VALUES ('799', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'AR');
21478 INSERT INTO `marc_tag_structure` VALUES ('800', 'SERIES ADDED ENTRY--PERSONAL NAME', 'SERIES ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'AR');
21479 INSERT INTO `marc_tag_structure` VALUES ('810', 'SERIES ADDED ENTRY--CORPORATE NAME', 'SERIES ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'AR');
21480 INSERT INTO `marc_tag_structure` VALUES ('811', 'SERIES ADDED ENTRY--MEETING NAME', 'SERIES ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'AR');
21481 INSERT INTO `marc_tag_structure` VALUES ('830', 'SERIES ADDED ENTRY--UNIFORM TITLE', 'SERIES ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'AR');
21482 INSERT INTO `marc_tag_structure` VALUES ('840', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 1, 0, NULL, 'AR');
21483 INSERT INTO `marc_tag_structure` VALUES ('841', 'HOLDINGS CODED DATA VALUES', 'HOLDINGS CODED DATA VALUES', 0, 0, NULL, 'AR');
21484 INSERT INTO `marc_tag_structure` VALUES ('842', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 0, 0, NULL, 'AR');
21485 INSERT INTO `marc_tag_structure` VALUES ('843', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'AR');
21486 INSERT INTO `marc_tag_structure` VALUES ('844', 'NAME OF UNIT', 'NAME OF UNIT', 0, 0, NULL, 'AR');
21487 INSERT INTO `marc_tag_structure` VALUES ('845', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'AR');
21488 INSERT INTO `marc_tag_structure` VALUES ('850', 'HOLDING INSTITUTION', 'HOLDING INSTITUTION', 1, 0, NULL, 'AR');
21489 INSERT INTO `marc_tag_structure` VALUES ('851', 'LOCATION [OBSOLETE]', 'LOCATION [OBSOLETE]', 1, 0, NULL, 'AR');
21490 INSERT INTO `marc_tag_structure` VALUES ('852', 'LOCATION/CALL NUMBER', 'LOCATION/CALL NUMBER', 1, 0, NULL, 'AR');
21491 INSERT INTO `marc_tag_structure` VALUES ('853', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'AR');
21492 INSERT INTO `marc_tag_structure` VALUES ('854', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'AR');
21493 INSERT INTO `marc_tag_structure` VALUES ('855', 'CAPTIONS AND PATTERN--INDEXES', 'CAPTIONS AND PATTERN--INDEXES', 1, 0, NULL, 'AR');
21494 INSERT INTO `marc_tag_structure` VALUES ('856', 'URL/ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL, 'AR');
21495 INSERT INTO `marc_tag_structure` VALUES ('859', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'AR');
21496 INSERT INTO `marc_tag_structure` VALUES ('863', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'AR');
21497 INSERT INTO `marc_tag_structure` VALUES ('864', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'AR');
21498 INSERT INTO `marc_tag_structure` VALUES ('865', 'ENUMERATION AND CHRONOLOGY--INDEXES', 'ENUMERATION AND CHRONOLOGY--INDEXES', 1, 0, NULL, 'AR');
21499 INSERT INTO `marc_tag_structure` VALUES ('866', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'AR');
21500 INSERT INTO `marc_tag_structure` VALUES ('867', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'AR');
21501 INSERT INTO `marc_tag_structure` VALUES ('868', 'TEXTUAL HOLDINGS--INDEXES', 'TEXTUAL HOLDINGS--INDEXES', 1, 0, NULL, 'AR');
21502 INSERT INTO `marc_tag_structure` VALUES ('870', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 1, 0, NULL, 'AR');
21503 INSERT INTO `marc_tag_structure` VALUES ('871', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 1, 0, NULL, 'AR');
21504 INSERT INTO `marc_tag_structure` VALUES ('872', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 1, 0, NULL, 'AR');
21505 INSERT INTO `marc_tag_structure` VALUES ('873', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 1, 0, NULL, 'AR');
21506 INSERT INTO `marc_tag_structure` VALUES ('876', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'AR');
21507 INSERT INTO `marc_tag_structure` VALUES ('877', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'AR');
21508 INSERT INTO `marc_tag_structure` VALUES ('878', 'ITEM INFORMATION--INDEXES', 'ITEM INFORMATION--INDEXES', 1, 0, NULL, 'AR');
21509 INSERT INTO `marc_tag_structure` VALUES ('880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL, 'AR');
21510 INSERT INTO `marc_tag_structure` VALUES ('886', 'FOREIGN MARC INFORMATION FIELD', 'FOREIGN MARC INFORMATION FIELD', 1, 0, NULL, 'AR');
21511 INSERT INTO `marc_tag_structure` VALUES ('887', 'NON-MARC INFORMATION FIELD', 'NON-MARC INFORMATION FIELD', 1, 0, NULL, 'AR');
21512 INSERT INTO `marc_tag_structure` VALUES ('896', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'AR');
21513 INSERT INTO `marc_tag_structure` VALUES ('897', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'AR');
21514 INSERT INTO `marc_tag_structure` VALUES ('898', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'AR');
21515 INSERT INTO `marc_tag_structure` VALUES ('899', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'AR');
21516 INSERT INTO `marc_tag_structure` VALUES ('89e', 'ERRONEOUS FIELD, ERR (RLIN)', 'ERRONEOUS FIELD, ERR (RLIN)', 1, 0, '', 'AR');
21517 INSERT INTO `marc_tag_structure` VALUES ('900', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 1, 0, '', 'AR');
21518 INSERT INTO `marc_tag_structure` VALUES ('901', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 1, 0, '', 'AR');
21519 INSERT INTO `marc_tag_structure` VALUES ('902', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 1, 0, '', 'AR');
21520 INSERT INTO `marc_tag_structure` VALUES ('903', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 1, 0, '', 'AR');
21521 INSERT INTO `marc_tag_structure` VALUES ('904', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 1, 0, '', 'AR');
21522 INSERT INTO `marc_tag_structure` VALUES ('905', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 1, 0, '', 'AR');
21523 INSERT INTO `marc_tag_structure` VALUES ('906', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 1, 0, '', 'AR');
21524 INSERT INTO `marc_tag_structure` VALUES ('907', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 1, 0, '', 'AR');
21525 INSERT INTO `marc_tag_structure` VALUES ('908', 'PUT COMMAND PARAMETER (RLIN)', 'PUT COMMAND PARAMETER (RLIN)', 0, 0, '', 'AR');
21526 INSERT INTO `marc_tag_structure` VALUES ('910', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 1, 0, '', 'AR');
21527 INSERT INTO `marc_tag_structure` VALUES ('91o', 'USER-OPTION DATA (COLC)', 'USER-OPTION DATA (OCLC)', 0, 0, '', 'AR');
21528 INSERT INTO `marc_tag_structure` VALUES ('91r', 'RLG STANDARDS NOTE (RLIN)', 'RLG STANDARDS NOTE (RLIN)', 1, 0, '', 'AR');
21529 INSERT INTO `marc_tag_structure` VALUES ('911', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 1, 0, '', 'AR');
21530 INSERT INTO `marc_tag_structure` VALUES ('930', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 1, 0, '', 'AR');
21531 INSERT INTO `marc_tag_structure` VALUES ('93r', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 1, 0, '', 'AR');
21532 INSERT INTO `marc_tag_structure` VALUES ('936', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 0, 0, '', 'AR');
21533 INSERT INTO `marc_tag_structure` VALUES ('940', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'AR');
21534 INSERT INTO `marc_tag_structure` VALUES ('941', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'AR');
21535 INSERT INTO `marc_tag_structure` VALUES ('943', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'AR');
21536 INSERT INTO `marc_tag_structure` VALUES ('945', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'AR');
21537 INSERT INTO `marc_tag_structure` VALUES ('94c', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'AR');
21538 INSERT INTO `marc_tag_structure` VALUES ('946', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'AR');
21539 INSERT INTO `marc_tag_structure` VALUES ('947', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'AR');
21540 INSERT INTO `marc_tag_structure` VALUES ('948', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 1, 0, '', 'AR');
21541 INSERT INTO `marc_tag_structure` VALUES ('949', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'AR');
21542 INSERT INTO `marc_tag_structure` VALUES ('94a', 'ANALYSIS TREATMENT NOTE (RLIN)', 'ANALYSIS TREATMENT NOTE (RLIN)', 1, 0, '', 'AR');
21543 INSERT INTO `marc_tag_structure` VALUES ('94b', 'TREATMENT CODES (RLIN)', 'TREATMENT CODES (RLIN)', 1, 0, '', 'AR');
21544 INSERT INTO `marc_tag_structure` VALUES ('950', 'LOCAL HOLDINGS (RLIN)', 'LOCAL HOLDINGS (RLIN)', 1, 0, '', 'AR');
21545 INSERT INTO `marc_tag_structure` VALUES ('951', 'EQUIVALENCE OR CROSS-REFERENCE--GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'AR');
21546 INSERT INTO `marc_tag_structure` VALUES ('95c', 'EQUIVALENCE OR CROSS-REFERENCE--HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'AR');
21547 INSERT INTO `marc_tag_structure` VALUES ('95r', 'CLUSTER MEMBER (RLIN)', 'CLUSTER MEMBER (RLIN)', 1, 0, '', 'AR');
21548 INSERT INTO `marc_tag_structure` VALUES ('955', 'COPY-LEVEL INFORMATION (RLIN)', 'COPY-LEVEL INFORMATION (RLIN)', 1, 0, '', 'AR');
21549 INSERT INTO `marc_tag_structure` VALUES ('956', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 1, 0, '', 'AR');
21550 INSERT INTO `marc_tag_structure` VALUES ('960', 'PHYSICAL LOCATION (RLIN)', 'PHYSICAL LOCATION (RLIN)', 1, 0, '', 'AR');
21551 INSERT INTO `marc_tag_structure` VALUES ('967', 'ADDITIONAL ESTC CODES (RLIN)', 'ADDITIONAL ESTC CODES (RLIN)', 1, 0, '', 'AR');
21552 INSERT INTO `marc_tag_structure` VALUES ('980', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'AR');
21553 INSERT INTO `marc_tag_structure` VALUES ('981', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'AR');
21554 INSERT INTO `marc_tag_structure` VALUES ('982', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'AR');
21555 INSERT INTO `marc_tag_structure` VALUES ('983', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--TITLE/UNIFORM TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE--SERIES STATEMENT-TITLE/UNIFORM TITLE [LOCAL, CANADA]', 1, 0, '', 'AR');
21556 INSERT INTO `marc_tag_structure` VALUES ('984', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 1, 0, '', 'AR');
21557 INSERT INTO `marc_tag_structure` VALUES ('987', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 1, 0, '', 'AR');
21558 INSERT INTO `marc_tag_structure` VALUES ('990', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 1, 0, '', 'AR');
21559 INSERT INTO `marc_tag_structure` VALUES ('995', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 1, 0, '', 'AR');
21560 INSERT INTO `marc_tag_structure` VALUES ('998', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'AR');
21561 INSERT INTO `marc_tag_structure` VALUES ('999', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'AR');
21562 INSERT INTO `marc_tag_structure` VALUES ('b99', 'PRIVATE LOCAL INFORMATION (RLIN)', 'PRIVATE LOCAL INFORMATION (RLIN)', 1, 0, '', 'AR');
21563 INSERT INTO `marc_tag_structure` VALUES ('u01', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 0, 0, '', 'AR');
21564 INSERT INTO `marc_tag_structure` VALUES ('u02', 'STANDARD NUMBER (RLIN)', 'STANDARD NUMBER (RLIN)', 0, 0, '', 'AR');
21565 INSERT INTO `marc_tag_structure` VALUES ('u08', 'CODED INFORMATION (RLIN)', 'CODED INFORMATION (RLIN)', 0, 0, '', 'AR');
21566 INSERT INTO `marc_tag_structure` VALUES ('u10', 'REQUESTER IDENTIFICATION (RLIN)', 'REQUESTER IDENTIFICATION (RLIN)', 1, 0, '', 'AR');
21567 INSERT INTO `marc_tag_structure` VALUES ('u11', 'DEPARTMENT REPORT REQUEST (RLIN)', 'DEPARTMENT REPORT REQUEST (RLIN)', 1, 0, '', 'AR');
21568 INSERT INTO `marc_tag_structure` VALUES ('u20', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 0, 0, '', 'AR');
21569 INSERT INTO `marc_tag_structure` VALUES ('u21', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 0, 0, '', 'AR');
21570 INSERT INTO `marc_tag_structure` VALUES ('u22', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 0, 0, '', 'AR');
21571 INSERT INTO `marc_tag_structure` VALUES ('u25', 'SUPPLIER REPORT(S) (RLIN)', 'SUPPLIER REPORT(S) (RLIN)', 0, 0, '', 'AR');
21572 INSERT INTO `marc_tag_structure` VALUES ('u30', 'INTERVALS (RLIN)', 'INTERVALS (RLIN)', 0, 0, '', 'AR');
21573 INSERT INTO `marc_tag_structure` VALUES ('u31', 'CLAIM COUNTS (RLIN)', 'CLAIM COUNTS (RLIN)', 0, 0, '', 'AR');
21574 INSERT INTO `marc_tag_structure` VALUES ('u33', 'INVOICE CLAIM (RLIN)', 'INVOICE CLAIM (RLIN)', 0, 0, '', 'AR');
21575 INSERT INTO `marc_tag_structure` VALUES ('u34', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 0, 0, '', 'AR');
21576 INSERT INTO `marc_tag_structure` VALUES ('u40', 'EXTENDED PROCUREMENT CODES (RLIN)', 'EXTENDED PROCUREMENT CODES (RLIN)', 0, 0, '', 'AR');
21577 INSERT INTO `marc_tag_structure` VALUES ('u50', 'ACQUISITIONS NOTES (RLIN)', 'ACQUISITIONS NOTES (RLIN)', 0, 0, '', 'AR');
21578 INSERT INTO `marc_tag_structure` VALUES ('u51', 'SELECTION NOTES (RLIN)', 'SELECTION NOTES (RLIN)', 0, 0, '', 'AR');
21579 INSERT INTO `marc_tag_structure` VALUES ('u52', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 0, 0, '', 'AR');
21580 INSERT INTO `marc_tag_structure` VALUES ('u53', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 0, 0, '', 'AR');
21581 INSERT INTO `marc_tag_structure` VALUES ('u54', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 0, 0, '', 'AR');
21582 INSERT INTO `marc_tag_structure` VALUES ('u55', 'CATALOGING NOTES (RLIN)', 'CATALOGING NOTES (RLIN)', 0, 0, '', 'AR');
21583 INSERT INTO `marc_tag_structure` VALUES ('u5f', 'ACCOUNTING NOTES (RLIN)', 'ACCOUNTING NOTES (RLIN)', 0, 0, '', 'AR');
21584 INSERT INTO `marc_tag_structure` VALUES ('u70', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 0, 0, '', 'AR');
21585 INSERT INTO `marc_tag_structure` VALUES ('u71', 'FUND ACCOUNT (RLIN)', 'FUND ACCOUNT (RLIN)', 0, 0, '', 'AR');
21586 INSERT INTO `marc_tag_structure` VALUES ('u75', 'ITEM DETAILS (RLIN)', 'ITEM DETAILS (RLIN)', 1, 0, '', 'AR');
21587 INSERT INTO `marc_tag_structure` VALUES ('u7f', 'PRICE INFORMATION (RLIN)', 'PRICE INFORMATION (RLIN)', 1, 0, '', 'AR');
21588 INSERT INTO `marc_tag_structure` VALUES ('u90', 'TAPE OUTPUT, TAPE (RLIN)', 'TAPE OUTPUT, TAPE (RLIN)', 0, 0, '', 'AR');
21589 INSERT INTO `marc_tag_structure` VALUES ('ufi', 'FISCAL INFORMATION, FI (RLIN)', 'FISCAL INFORMATION, FI (RLIN)', 1, 0, '', 'AR');
21590
21591
21592
21593 INSERT INTO `marc_subfield_structure` VALUES ('000', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_leader.pl', 0, 0, 'AR', '', '');
21594 INSERT INTO `marc_subfield_structure` VALUES ('001', '@', 'control field', 'control field', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21595 INSERT INTO `marc_subfield_structure` VALUES ('003', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_003.pl', 0, -6, 'AR', '', '');
21596 INSERT INTO `marc_subfield_structure` VALUES ('005', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_005.pl', 0, -1, 'AR', '', '');
21597 INSERT INTO `marc_subfield_structure` VALUES ('006', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_006.pl', 0, -1, 'AR', '', '');
21598 INSERT INTO `marc_subfield_structure` VALUES ('007', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_007.pl', 0, 0, 'AR', '', '');
21599 INSERT INTO `marc_subfield_structure` VALUES ('008', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_field_008.pl', 0, 0, 'AR', '', '');
21600 INSERT INTO `marc_subfield_structure` VALUES ('009', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21601 INSERT INTO `marc_subfield_structure` VALUES ('010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', NULL, 0, -6, 'AR', '', '');
21602 INSERT INTO `marc_subfield_structure` VALUES ('010', 'a', 'LC control number', 'LC control number', 0, 0, 'biblioitems.lccn', 0, '', '', '', 0, -6, 'AR', '', '');
21603 INSERT INTO `marc_subfield_structure` VALUES ('010', 'b', 'NUCMC control number', 'NUCMC control number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21604 INSERT INTO `marc_subfield_structure` VALUES ('010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21605 INSERT INTO `marc_subfield_structure` VALUES ('011', 'a', 'LC control number', 'LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21606 INSERT INTO `marc_subfield_structure` VALUES ('013', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'AR', '', '');
21607 INSERT INTO `marc_subfield_structure` VALUES ('013', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21608 INSERT INTO `marc_subfield_structure` VALUES ('013', 'a', 'Number', 'Number', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21609 INSERT INTO `marc_subfield_structure` VALUES ('013', 'b', 'Country', 'Country', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21610 INSERT INTO `marc_subfield_structure` VALUES ('013', 'c', 'Type of number', 'Type of number', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21611 INSERT INTO `marc_subfield_structure` VALUES ('013', 'd', 'Date', 'Date', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21612 INSERT INTO `marc_subfield_structure` VALUES ('013', 'e', 'Status', 'Status', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21613 INSERT INTO `marc_subfield_structure` VALUES ('013', 'f', 'Party to document', 'Party to document', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21614 INSERT INTO `marc_subfield_structure` VALUES ('015', '2', 'Source', 'Source', 0, 0, '', 0, '', '', NULL, 0, -6, 'AR', '', '');
21615 INSERT INTO `marc_subfield_structure` VALUES ('015', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21616 INSERT INTO `marc_subfield_structure` VALUES ('015', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21617 INSERT INTO `marc_subfield_structure` VALUES ('015', 'a', 'National bibliography number', 'National bibliography number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21618 INSERT INTO `marc_subfield_structure` VALUES ('016', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21619 INSERT INTO `marc_subfield_structure` VALUES ('016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21620 INSERT INTO `marc_subfield_structure` VALUES ('016', 'a', 'Record control number', 'Record control number', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21621 INSERT INTO `marc_subfield_structure` VALUES ('016', 'z', 'Canceled or invalid record control number', 'Canceled or invalid record control number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21622 INSERT INTO `marc_subfield_structure` VALUES ('017', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21623 INSERT INTO `marc_subfield_structure` VALUES ('017', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21624 INSERT INTO `marc_subfield_structure` VALUES ('017', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21625 INSERT INTO `marc_subfield_structure` VALUES ('017', 'a', 'Copyright or legal deposit number', 'Copyright or legal deposit number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21626 INSERT INTO `marc_subfield_structure` VALUES ('017', 'b', 'Assigning agency', 'Assigning agency', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21627 INSERT INTO `marc_subfield_structure` VALUES ('017', 'd', 'Date', 'Date', 0, 0, '', 0, '', '', NULL, 0, -6, 'AR', '', '');
21628 INSERT INTO `marc_subfield_structure` VALUES ('017', 'i', 'Display text', 'Display text', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21629 INSERT INTO `marc_subfield_structure` VALUES ('018', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21630 INSERT INTO `marc_subfield_structure` VALUES ('018', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21631 INSERT INTO `marc_subfield_structure` VALUES ('018', 'a', 'Copyright article-fee code', 'Copyright article-fee code', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21632 INSERT INTO `marc_subfield_structure` VALUES ('01e', 'a', 'Coded field error', 'Coded field error', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21633 INSERT INTO `marc_subfield_structure` VALUES ('020', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21634 INSERT INTO `marc_subfield_structure` VALUES ('020', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21635 INSERT INTO `marc_subfield_structure` VALUES ('020', 'a', 'International Standard Book Number', 'International Standard Book Number', 0, 0, 'biblioitems.isbn', 0, '', '', '', 0, -1, 'AR', '', '');
21636 INSERT INTO `marc_subfield_structure` VALUES ('020', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21637 INSERT INTO `marc_subfield_structure` VALUES ('020', 'z', 'Cancelled/invalid ISBN', 'Cancelled/invalid ISBN', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21638 INSERT INTO `marc_subfield_structure` VALUES ('022', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21639 INSERT INTO `marc_subfield_structure` VALUES ('022', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21640 INSERT INTO `marc_subfield_structure` VALUES ('022', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21641 INSERT INTO `marc_subfield_structure` VALUES ('022', 'a', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, 'biblioitems.issn', 0, '', '', '', 0, -6, 'AR', '', '');
21642 INSERT INTO `marc_subfield_structure` VALUES ('022', 'y', 'Incorrect ISSN', 'Incorrect ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21643 INSERT INTO `marc_subfield_structure` VALUES ('022', 'z', 'Canceled ISSN', 'Canceled ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21644 INSERT INTO `marc_subfield_structure` VALUES ('023', 'a', 'Standard film number', 'Standard film number', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21645 INSERT INTO `marc_subfield_structure` VALUES ('024', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 0, '', '', '', 0, -1, 'AR', '', '');
21646 INSERT INTO `marc_subfield_structure` VALUES ('024', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21647 INSERT INTO `marc_subfield_structure` VALUES ('024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21648 INSERT INTO `marc_subfield_structure` VALUES ('024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'AR', '', '');
21649 INSERT INTO `marc_subfield_structure` VALUES ('024', 'b', 'Additional codes following the standard number [OBSOLETE]', 'Additional codes following the standard number [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21650 INSERT INTO `marc_subfield_structure` VALUES ('024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -1, 'AR', '', '');
21651 INSERT INTO `marc_subfield_structure` VALUES ('024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'AR', '', '');
21652 INSERT INTO `marc_subfield_structure` VALUES ('024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21653 INSERT INTO `marc_subfield_structure` VALUES ('025', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21654 INSERT INTO `marc_subfield_structure` VALUES ('025', 'a', 'Overseas acquisition number', 'Overseas acquisition number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21655 INSERT INTO `marc_subfield_structure` VALUES ('026', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21656 INSERT INTO `marc_subfield_structure` VALUES ('026', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21657 INSERT INTO `marc_subfield_structure` VALUES ('026', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21658 INSERT INTO `marc_subfield_structure` VALUES ('026', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21659 INSERT INTO `marc_subfield_structure` VALUES ('026', 'a', 'First and second groups of characters', 'First and second groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21660 INSERT INTO `marc_subfield_structure` VALUES ('026', 'b', 'Third and fourth groups of characters', 'Third and fourth groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21661 INSERT INTO `marc_subfield_structure` VALUES ('026', 'c', 'Date', 'Date', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21662 INSERT INTO `marc_subfield_structure` VALUES ('026', 'd', 'Number of volume or part', 'Number of volume or part', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21663 INSERT INTO `marc_subfield_structure` VALUES ('026', 'e', 'unparsed fingerprint', 'unparsed fingerprint', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21664 INSERT INTO `marc_subfield_structure` VALUES ('027', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21665 INSERT INTO `marc_subfield_structure` VALUES ('027', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21666 INSERT INTO `marc_subfield_structure` VALUES ('027', 'a', 'Standard technical report number', 'Standard technical report number', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21667 INSERT INTO `marc_subfield_structure` VALUES ('027', 'z', 'Canceled/invalid number', 'Canceled/invalid number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21668 INSERT INTO `marc_subfield_structure` VALUES ('028', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21669 INSERT INTO `marc_subfield_structure` VALUES ('028', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21670 INSERT INTO `marc_subfield_structure` VALUES ('028', 'a', 'Publisher number', 'Publisher number', 0, 0, '', 0, '', '', '', 0, 0, 'AR', '', '');
21671 INSERT INTO `marc_subfield_structure` VALUES ('028', 'b', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, 0, 'AR', '', '');
21672 INSERT INTO `marc_subfield_structure` VALUES ('030', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21673 INSERT INTO `marc_subfield_structure` VALUES ('030', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21674 INSERT INTO `marc_subfield_structure` VALUES ('030', 'a', 'CODEN', 'CODEN', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21675 INSERT INTO `marc_subfield_structure` VALUES ('030', 'z', 'Canceled/invalid CODEN', 'Canceled/invalid CODEN', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21676 INSERT INTO `marc_subfield_structure` VALUES ('031', '2', 'System code', 'System code', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21677 INSERT INTO `marc_subfield_structure` VALUES ('031', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21678 INSERT INTO `marc_subfield_structure` VALUES ('031', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21679 INSERT INTO `marc_subfield_structure` VALUES ('031', 'a', 'Number of work', 'Number of work', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21680 INSERT INTO `marc_subfield_structure` VALUES ('031', 'b', 'Number of movement', 'Number of movement', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21681 INSERT INTO `marc_subfield_structure` VALUES ('031', 'c', 'Number of excerpt', 'Number of excerpt', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21682 INSERT INTO `marc_subfield_structure` VALUES ('031', 'd', 'Caption or heading', 'Caption or heading', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21683 INSERT INTO `marc_subfield_structure` VALUES ('031', 'e', 'Role', 'Role', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21684 INSERT INTO `marc_subfield_structure` VALUES ('031', 'g', 'Clef', 'Clef', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21685 INSERT INTO `marc_subfield_structure` VALUES ('031', 'm', 'Voice/instrument', 'Voice/instrument', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21686 INSERT INTO `marc_subfield_structure` VALUES ('031', 'n', 'Key signature', 'Key signature', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21687 INSERT INTO `marc_subfield_structure` VALUES ('031', 'o', 'Time signature', 'Time signature', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21688 INSERT INTO `marc_subfield_structure` VALUES ('031', 'p', 'Musical notation', 'Musical notation', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21689 INSERT INTO `marc_subfield_structure` VALUES ('031', 'q', 'General note', 'General note', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21690 INSERT INTO `marc_subfield_structure` VALUES ('031', 'r', 'Key or mode', 'Key or mode', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21691 INSERT INTO `marc_subfield_structure` VALUES ('031', 's', 'Coded validity note', 'Coded validity note', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21692 INSERT INTO `marc_subfield_structure` VALUES ('031', 't', 'Text incipit', 'Text incipit', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21693 INSERT INTO `marc_subfield_structure` VALUES ('031', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 0, '', '', '', 1, -6, 'AR', '', '');
21694 INSERT INTO `marc_subfield_structure` VALUES ('031', 'y', 'Link text', 'Link text', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21695 INSERT INTO `marc_subfield_structure` VALUES ('031', 'z', 'Public note', 'Public note', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21696 INSERT INTO `marc_subfield_structure` VALUES ('032', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'AR', '', '');
21697 INSERT INTO `marc_subfield_structure` VALUES ('032', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21698 INSERT INTO `marc_subfield_structure` VALUES ('032', 'a', 'Postal registration number', 'Postal registration number', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21699 INSERT INTO `marc_subfield_structure` VALUES ('032', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21700 INSERT INTO `marc_subfield_structure` VALUES ('033', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21701 INSERT INTO `marc_subfield_structure` VALUES ('033', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21702 INSERT INTO `marc_subfield_structure` VALUES ('033', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21703 INSERT INTO `marc_subfield_structure` VALUES ('033', 'a', 'Formatted date/time', 'Formatted date/time', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21704 INSERT INTO `marc_subfield_structure` VALUES ('033', 'b', 'Geographic classification area code', 'Geographic classification area code', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21705 INSERT INTO `marc_subfield_structure` VALUES ('033', 'c', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21706 INSERT INTO `marc_subfield_structure` VALUES ('034', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21707 INSERT INTO `marc_subfield_structure` VALUES ('034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21708 INSERT INTO `marc_subfield_structure` VALUES ('034', 'a', 'Category of scale', 'Category of scale', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21709 INSERT INTO `marc_subfield_structure` VALUES ('034', 'b', 'Constant ratio linear horizontal scale', 'Constant ratio linear horizontal scale', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21710 INSERT INTO `marc_subfield_structure` VALUES ('034', 'c', 'Constant ratio linear vertical scale', 'Constant ratio linear vertical scale', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21711 INSERT INTO `marc_subfield_structure` VALUES ('034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21712 INSERT INTO `marc_subfield_structure` VALUES ('034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21713 INSERT INTO `marc_subfield_structure` VALUES ('034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21714 INSERT INTO `marc_subfield_structure` VALUES ('034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21715 INSERT INTO `marc_subfield_structure` VALUES ('034', 'h', 'Angular scale', 'Angular scale', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21716 INSERT INTO `marc_subfield_structure` VALUES ('034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21717 INSERT INTO `marc_subfield_structure` VALUES ('034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21718 INSERT INTO `marc_subfield_structure` VALUES ('034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21719 INSERT INTO `marc_subfield_structure` VALUES ('034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21720 INSERT INTO `marc_subfield_structure` VALUES ('034', 'p', 'Equinox', 'Equinox', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21721 INSERT INTO `marc_subfield_structure` VALUES ('034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21722 INSERT INTO `marc_subfield_structure` VALUES ('034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21723 INSERT INTO `marc_subfield_structure` VALUES ('035', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21724 INSERT INTO `marc_subfield_structure` VALUES ('035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21725 INSERT INTO `marc_subfield_structure` VALUES ('035', 'a', 'System control number', 'System control number', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21726 INSERT INTO `marc_subfield_structure` VALUES ('035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21727 INSERT INTO `marc_subfield_structure` VALUES ('036', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21728 INSERT INTO `marc_subfield_structure` VALUES ('036', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21729 INSERT INTO `marc_subfield_structure` VALUES ('036', 'a', 'Original study number', 'Original study number', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21730 INSERT INTO `marc_subfield_structure` VALUES ('036', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21731 INSERT INTO `marc_subfield_structure` VALUES ('037', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
21732 INSERT INTO `marc_subfield_structure` VALUES ('037', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21733 INSERT INTO `marc_subfield_structure` VALUES ('037', 'a', 'Stock number', 'Stock number', 0, 0, '', 9, '', '', '', 0, -1, 'AR', '', '');
21734 INSERT INTO `marc_subfield_structure` VALUES ('037', 'b', 'Source of stock number/acquisition', 'Source of stock number/acquisition', 0, 0, '', 0, '', '', '', 0, -1, 'AR', '', '');
21735 INSERT INTO `marc_subfield_structure` VALUES ('037', 'c', 'Terms of availability', 'Terms of availability', 1, 0, '', 9, '', '', '', 0, -1, 'AR', '', '');
21736 INSERT INTO `marc_subfield_structure` VALUES ('037', 'f', 'Form of issue', 'Form of issue', 1, 0, '', 9, '', '', '', 0, -1, 'AR', '', '');
21737 INSERT INTO `marc_subfield_structure` VALUES ('037', 'g', 'Additional format characteristics', 'Additional format characteristics', 1, 0, '', 9, '', '', '', 0, -1, 'AR', '', '');
21738 INSERT INTO `marc_subfield_structure` VALUES ('037', 'n', 'Note', 'Note', 1, 0, '', 9, '', '', '', 0, -1, 'AR', '', '');
21739 INSERT INTO `marc_subfield_structure` VALUES ('038', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21740 INSERT INTO `marc_subfield_structure` VALUES ('038', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21741 INSERT INTO `marc_subfield_structure` VALUES ('038', 'a', 'Record content licensor', 'Record content licensor', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21742 INSERT INTO `marc_subfield_structure` VALUES ('039', 'a', 'Level of rules in bibliographic description', 'Level of rules in bibliographic description', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21743 INSERT INTO `marc_subfield_structure` VALUES ('039', 'b', 'Level of effort used to assign nonsubject heading access points', 'Level of effort used to assign nonsubject heading access points', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21744 INSERT INTO `marc_subfield_structure` VALUES ('039', 'c', 'Level of effort used to assign subject headings', 'Level of effort used to assign subject headings', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21745 INSERT INTO `marc_subfield_structure` VALUES ('039', 'd', 'Level of effort used to assign classification', 'Level of effort used to assign classification', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21746 INSERT INTO `marc_subfield_structure` VALUES ('039', 'e', 'Number of fixed field character positions coded', 'Number of fixed field character positions coded', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21747 INSERT INTO `marc_subfield_structure` VALUES ('040', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21748 INSERT INTO `marc_subfield_structure` VALUES ('040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21749 INSERT INTO `marc_subfield_structure` VALUES ('040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 0, '', 0, '', '', '', 0, -1, 'AR', '', '');
21750 INSERT INTO `marc_subfield_structure` VALUES ('040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21751 INSERT INTO `marc_subfield_structure` VALUES ('040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, '', 0, '', '', '', 0, -1, 'AR', '', '');
21752 INSERT INTO `marc_subfield_structure` VALUES ('040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, '', 0, '', '', '', 0, -1, 'AR', '', '');
21753 INSERT INTO `marc_subfield_structure` VALUES ('040', 'e', 'Description conventions', 'Description conventions', 0, 0, '', 0, '', '', '', 0, -1, 'AR', '', '');
21754 INSERT INTO `marc_subfield_structure` VALUES ('041', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21755 INSERT INTO `marc_subfield_structure` VALUES ('041', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21756 INSERT INTO `marc_subfield_structure` VALUES ('041', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21757 INSERT INTO `marc_subfield_structure` VALUES ('041', 'a', 'Language code of text/sound track or separate title', 'Language code of text/sound track or separate title', 1, 0, '', 0, '', '', '', 0, -1, 'AR', '', '');
21758 INSERT INTO `marc_subfield_structure` VALUES ('041', 'b', 'Language code of summary or abstract/overprinted title or subtitle', 'Language code of summary or abstract/overprinted title or subtitle', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21759 INSERT INTO `marc_subfield_structure` VALUES ('041', 'c', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21760 INSERT INTO `marc_subfield_structure` VALUES ('041', 'd', 'Language code of sung or spoken text', 'Language code of sung or spoken text', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21761 INSERT INTO `marc_subfield_structure` VALUES ('041', 'e', 'Language code of librettos', 'Language code of librettos', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21762 INSERT INTO `marc_subfield_structure` VALUES ('041', 'f', 'Language code of table of contents', 'Language code of table of contents', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21763 INSERT INTO `marc_subfield_structure` VALUES ('041', 'g', 'Language code of accompanying material other than librettos', 'Language code of accompanying material other than librettos', 1, 0, '', 0, '', '', '', 0, -1, 'AR', '', '');
21764 INSERT INTO `marc_subfield_structure` VALUES ('041', 'h', 'Language code of original and/or intermediate translations of text', 'Language code of original and/or intermediate translations of text', 1, 0, '', 0, '', '', '', 0, -1, 'AR', '', '');
21765 INSERT INTO `marc_subfield_structure` VALUES ('042', 'a', 'Authentication code', 'Authentication code', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21766 INSERT INTO `marc_subfield_structure` VALUES ('043', '2', 'Source of local code', 'Source of local code', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21767 INSERT INTO `marc_subfield_structure` VALUES ('043', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21768 INSERT INTO `marc_subfield_structure` VALUES ('043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21769 INSERT INTO `marc_subfield_structure` VALUES ('043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21770 INSERT INTO `marc_subfield_structure` VALUES ('043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21771 INSERT INTO `marc_subfield_structure` VALUES ('043', 'c', 'ISO code', 'ISO code', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21772 INSERT INTO `marc_subfield_structure` VALUES ('044', '2', 'Source of local subentity code', 'Source of local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21773 INSERT INTO `marc_subfield_structure` VALUES ('044', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21774 INSERT INTO `marc_subfield_structure` VALUES ('044', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21775 INSERT INTO `marc_subfield_structure` VALUES ('044', 'a', 'MARC country code', 'MARC country code', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21776 INSERT INTO `marc_subfield_structure` VALUES ('044', 'b', 'Local subentity code', 'Local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21777 INSERT INTO `marc_subfield_structure` VALUES ('044', 'c', 'ISO country code', 'ISO country code', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21778 INSERT INTO `marc_subfield_structure` VALUES ('045', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21779 INSERT INTO `marc_subfield_structure` VALUES ('045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21780 INSERT INTO `marc_subfield_structure` VALUES ('045', 'a', 'Time period code', 'Time period code', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21781 INSERT INTO `marc_subfield_structure` VALUES ('045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21782 INSERT INTO `marc_subfield_structure` VALUES ('045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21783 INSERT INTO `marc_subfield_structure` VALUES ('046', '2', 'Source of date', 'Source of date', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21784 INSERT INTO `marc_subfield_structure` VALUES ('046', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21785 INSERT INTO `marc_subfield_structure` VALUES ('046', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21786 INSERT INTO `marc_subfield_structure` VALUES ('046', 'a', 'Type of date code', 'Type of date code', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21787 INSERT INTO `marc_subfield_structure` VALUES ('046', 'b', 'Date 1 (B.C. date)', 'Date 1 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21788 INSERT INTO `marc_subfield_structure` VALUES ('046', 'c', 'Date 1 (C.E. date)', 'Date 1 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21789 INSERT INTO `marc_subfield_structure` VALUES ('046', 'd', 'Date 2 (B.C. date)', 'Date 2 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21790 INSERT INTO `marc_subfield_structure` VALUES ('046', 'e', 'Date 2 (C.E. date)', 'Date 2 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21791 INSERT INTO `marc_subfield_structure` VALUES ('046', 'j', 'Date resource modified', 'Date resource modified', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21792 INSERT INTO `marc_subfield_structure` VALUES ('046', 'k', 'Beginning or single date created', 'Beginning or single date created', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21793 INSERT INTO `marc_subfield_structure` VALUES ('046', 'l', 'Ending date created', 'Ending date created', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21794 INSERT INTO `marc_subfield_structure` VALUES ('046', 'm', 'Beginning of date valid', 'Beginning of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21795 INSERT INTO `marc_subfield_structure` VALUES ('046', 'n', 'End of date valid', 'End of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21796 INSERT INTO `marc_subfield_structure` VALUES ('047', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21797 INSERT INTO `marc_subfield_structure` VALUES ('047', 'a', 'Form of musical composition code', 'Form of musical composition code', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21798 INSERT INTO `marc_subfield_structure` VALUES ('048', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21799 INSERT INTO `marc_subfield_structure` VALUES ('048', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21800 INSERT INTO `marc_subfield_structure` VALUES ('048', 'a', 'Performer or ensemble', 'Performer or ensemble', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21801 INSERT INTO `marc_subfield_structure` VALUES ('048', 'b', 'Soloist', 'Soloist', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21802 INSERT INTO `marc_subfield_structure` VALUES ('049', 'a', 'Holding library', 'Holding library', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21803 INSERT INTO `marc_subfield_structure` VALUES ('049', 'c', 'Copy statement', 'Copy statement', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21804 INSERT INTO `marc_subfield_structure` VALUES ('049', 'd', 'Definition of bibliographic subdivisions', 'Definition of bibliographic subdivisions', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21805 INSERT INTO `marc_subfield_structure` VALUES ('049', 'l', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21806 INSERT INTO `marc_subfield_structure` VALUES ('049', 'm', 'Missing elements', 'Missing elements', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21807 INSERT INTO `marc_subfield_structure` VALUES ('049', 'n', 'Notes about holdings', 'Notes about holdings', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21808 INSERT INTO `marc_subfield_structure` VALUES ('049', 'o', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21809 INSERT INTO `marc_subfield_structure` VALUES ('049', 'p', 'Secondary bibliographic subdivision', 'Secondary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21810 INSERT INTO `marc_subfield_structure` VALUES ('049', 'q', 'Third bibliographic subdivision', 'Third bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21811 INSERT INTO `marc_subfield_structure` VALUES ('049', 'r', 'Fourth bibliographic subdivision', 'Fourth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21812 INSERT INTO `marc_subfield_structure` VALUES ('049', 's', 'Fifth bibliographic subdivision', 'Fifth bibliographic subdivision', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21813 INSERT INTO `marc_subfield_structure` VALUES ('049', 't', 'Sixth bibliographic subdivision', 'Sixth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21814 INSERT INTO `marc_subfield_structure` VALUES ('049', 'u', 'Seventh bibliographic subdivision', 'Seventh bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21815 INSERT INTO `marc_subfield_structure` VALUES ('049', 'v', 'Primary bibliographic subdivision', 'Primary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21816 INSERT INTO `marc_subfield_structure` VALUES ('049', 'y', 'Inclusive dates of publication or coverage', 'Inclusive dates of publication or coverage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21817 INSERT INTO `marc_subfield_structure` VALUES ('050', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21818 INSERT INTO `marc_subfield_structure` VALUES ('050', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21819 INSERT INTO `marc_subfield_structure` VALUES ('050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21820 INSERT INTO `marc_subfield_structure` VALUES ('050', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, 0, 'AR', '', '');
21821 INSERT INTO `marc_subfield_structure` VALUES ('050', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, 0, 'AR', '', '');
21822 INSERT INTO `marc_subfield_structure` VALUES ('050', 'd', 'Supplementary class number (MU) [OBSOLETE]', 'Supplementary class number (MU) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21823 INSERT INTO `marc_subfield_structure` VALUES ('051', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21824 INSERT INTO `marc_subfield_structure` VALUES ('051', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21825 INSERT INTO `marc_subfield_structure` VALUES ('051', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21826 INSERT INTO `marc_subfield_structure` VALUES ('051', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21827 INSERT INTO `marc_subfield_structure` VALUES ('052', '2', 'Code Source', 'Code Source', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21828 INSERT INTO `marc_subfield_structure` VALUES ('052', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21829 INSERT INTO `marc_subfield_structure` VALUES ('052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21830 INSERT INTO `marc_subfield_structure` VALUES ('052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21831 INSERT INTO `marc_subfield_structure` VALUES ('052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21832 INSERT INTO `marc_subfield_structure` VALUES ('052', 'c', 'Subject (MP) [OBSOLETE]', 'Subject (MP) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21833 INSERT INTO `marc_subfield_structure` VALUES ('052', 'd', 'Populated place name', 'Populated place name', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21834 INSERT INTO `marc_subfield_structure` VALUES ('055', '2', 'Source of call/class number', 'Source of call/class number', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21835 INSERT INTO `marc_subfield_structure` VALUES ('055', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21836 INSERT INTO `marc_subfield_structure` VALUES ('055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21837 INSERT INTO `marc_subfield_structure` VALUES ('055', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21838 INSERT INTO `marc_subfield_structure` VALUES ('055', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21839 INSERT INTO `marc_subfield_structure` VALUES ('060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21840 INSERT INTO `marc_subfield_structure` VALUES ('060', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21841 INSERT INTO `marc_subfield_structure` VALUES ('060', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21842 INSERT INTO `marc_subfield_structure` VALUES ('061', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21843 INSERT INTO `marc_subfield_structure` VALUES ('061', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21844 INSERT INTO `marc_subfield_structure` VALUES ('061', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21845 INSERT INTO `marc_subfield_structure` VALUES ('061', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21846 INSERT INTO `marc_subfield_structure` VALUES ('066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21847 INSERT INTO `marc_subfield_structure` VALUES ('066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21848 INSERT INTO `marc_subfield_structure` VALUES ('066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21849 INSERT INTO `marc_subfield_structure` VALUES ('070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21850 INSERT INTO `marc_subfield_structure` VALUES ('070', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21851 INSERT INTO `marc_subfield_structure` VALUES ('070', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21852 INSERT INTO `marc_subfield_structure` VALUES ('071', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21853 INSERT INTO `marc_subfield_structure` VALUES ('071', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21854 INSERT INTO `marc_subfield_structure` VALUES ('071', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21855 INSERT INTO `marc_subfield_structure` VALUES ('071', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21856 INSERT INTO `marc_subfield_structure` VALUES ('072', '2', 'Source', 'Source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21857 INSERT INTO `marc_subfield_structure` VALUES ('072', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21858 INSERT INTO `marc_subfield_structure` VALUES ('072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21859 INSERT INTO `marc_subfield_structure` VALUES ('072', 'a', 'Subject category code', 'Subject category code', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21860 INSERT INTO `marc_subfield_structure` VALUES ('072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21861 INSERT INTO `marc_subfield_structure` VALUES ('074', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21862 INSERT INTO `marc_subfield_structure` VALUES ('074', 'a', 'GPO item number', 'GPO item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'AR', '', '');
21863 INSERT INTO `marc_subfield_structure` VALUES ('074', 'z', 'Canceled/invalid GPO item number', 'Canceled/invalid GPO item number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21864 INSERT INTO `marc_subfield_structure` VALUES ('080', '2', 'Edition identifier', 'Edition identifier', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21865 INSERT INTO `marc_subfield_structure` VALUES ('080', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21866 INSERT INTO `marc_subfield_structure` VALUES ('080', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21867 INSERT INTO `marc_subfield_structure` VALUES ('080', 'a', 'Universal Decimal Classification number', 'Universal Decimal Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21868 INSERT INTO `marc_subfield_structure` VALUES ('080', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21869 INSERT INTO `marc_subfield_structure` VALUES ('080', 'x', 'Common auxiliary subdivision', 'Common auxiliary subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21870 INSERT INTO `marc_subfield_structure` VALUES ('082', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, 0, 'AR', '', '');
21871 INSERT INTO `marc_subfield_structure` VALUES ('082', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', NULL, -6, 'AR', '', '');
21872 INSERT INTO `marc_subfield_structure` VALUES ('082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', NULL, -6, 'AR', '', '');
21873 INSERT INTO `marc_subfield_structure` VALUES ('082', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, 0, 'AR', '', '');
21874 INSERT INTO `marc_subfield_structure` VALUES ('082', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, 0, 'AR', '', '');
21875 INSERT INTO `marc_subfield_structure` VALUES ('084', '2', 'Source of number', 'Source of number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21876 INSERT INTO `marc_subfield_structure` VALUES ('084', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21877 INSERT INTO `marc_subfield_structure` VALUES ('084', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21878 INSERT INTO `marc_subfield_structure` VALUES ('084', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21879 INSERT INTO `marc_subfield_structure` VALUES ('084', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21880 INSERT INTO `marc_subfield_structure` VALUES ('086', '2', 'Number source', 'Number source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'AR', '', '');
21881 INSERT INTO `marc_subfield_structure` VALUES ('086', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21882 INSERT INTO `marc_subfield_structure` VALUES ('086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21883 INSERT INTO `marc_subfield_structure` VALUES ('086', 'a', 'Classification number', 'Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'AR', '', '');
21884 INSERT INTO `marc_subfield_structure` VALUES ('086', 'z', 'Canceled/invalid classification number', 'Canceled/invalid classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21885 INSERT INTO `marc_subfield_structure` VALUES ('087', 'a', 'Report number [OBSOLETE, CAN/MARC]', 'Report number [OBSOLETE, CAN/MARC]', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21886 INSERT INTO `marc_subfield_structure` VALUES ('087', 'z', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21887 INSERT INTO `marc_subfield_structure` VALUES ('088', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21888 INSERT INTO `marc_subfield_structure` VALUES ('088', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21889 INSERT INTO `marc_subfield_structure` VALUES ('088', 'a', 'Report number', 'Report number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21890 INSERT INTO `marc_subfield_structure` VALUES ('088', 'z', 'Canceled/invalid report number', 'Canceled/invalid report number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'AR', '', '');
21891 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21892 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21893 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
21894 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
21895 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
21896 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
21897 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
21898 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
21899 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
21900 INSERT INTO `marc_subfield_structure` VALUES ('09o', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
21901 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
21902 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
21903 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
21904 INSERT INTO `marc_subfield_structure` VALUES ('091', 'a', 'Microfilm shelf location', 'Microfilm shelf location', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21905 INSERT INTO `marc_subfield_structure` VALUES ('092', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, -6, 'AR', '', '');
21906 INSERT INTO `marc_subfield_structure` VALUES ('092', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'AR', '', '');
21907 INSERT INTO `marc_subfield_structure` VALUES ('092', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'AR', '', '');
21908 INSERT INTO `marc_subfield_structure` VALUES ('092', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21909 INSERT INTO `marc_subfield_structure` VALUES ('092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21910 INSERT INTO `marc_subfield_structure` VALUES ('096', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'AR', '', '');
21911 INSERT INTO `marc_subfield_structure` VALUES ('096', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'AR', '', '');
21912 INSERT INTO `marc_subfield_structure` VALUES ('096', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21913 INSERT INTO `marc_subfield_structure` VALUES ('096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21914 INSERT INTO `marc_subfield_structure` VALUES ('098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, '', 0, '', '', '', NULL, -6, 'AR', '', '');
21915 INSERT INTO `marc_subfield_structure` VALUES ('098', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21916 INSERT INTO `marc_subfield_structure` VALUES ('098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21917 INSERT INTO `marc_subfield_structure` VALUES ('099', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, -6, 'AR', '', '');
21918 INSERT INTO `marc_subfield_structure` VALUES ('099', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21919 INSERT INTO `marc_subfield_structure` VALUES ('099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
21920 INSERT INTO `marc_subfield_structure` VALUES ('100', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', 0, -6, 'AR', '', '');
21921 INSERT INTO `marc_subfield_structure` VALUES ('100', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', 0, -6, 'AR', '', '');
21922 INSERT INTO `marc_subfield_structure` VALUES ('100', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', 0, -6, 'AR', '', '');
21923 INSERT INTO `marc_subfield_structure` VALUES ('100', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
21924 INSERT INTO `marc_subfield_structure` VALUES ('100', 'a', 'Personal name', 'Personal name', 0, 0, 'biblio.author', 1, '', '', '', 0, 0, 'AR', '''100b'',''100c'',''100q'',''100d'',''100e'',''110a'',''110b'',''110c'',''110d'',''110e'',''700a'',''700b'',''700c'',''700q'',''700d'',''700e'',''710a'',''710b'',''710c'',''710d'',''710e'',''720a'',''720e'',''900a''', '');
21925 INSERT INTO `marc_subfield_structure` VALUES ('100', 'b', 'Numeration', 'Numeration', 0, 0, '', 1, '', '', '', 0, -1, 'AR', '', '');
21926 INSERT INTO `marc_subfield_structure` VALUES ('100', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 1, '', '', '', 0, -1, 'AR', '', '');
21927 INSERT INTO `marc_subfield_structure` VALUES ('100', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 1, '', '', '', 0, 0, 'AR', '', '');
21928 INSERT INTO `marc_subfield_structure` VALUES ('100', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', 0, -1, 'AR', '', '');
21929 INSERT INTO `marc_subfield_structure` VALUES ('100', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', 0, -6, 'AR', '', '');
21930 INSERT INTO `marc_subfield_structure` VALUES ('100', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', 0, -6, 'AR', '', '');
21931 INSERT INTO `marc_subfield_structure` VALUES ('100', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 1, '', '', '', 0, -6, 'AR', '', '');
21932 INSERT INTO `marc_subfield_structure` VALUES ('100', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', 0, -6, 'AR', '', '');
21933 INSERT INTO `marc_subfield_structure` VALUES ('100', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', 0, -6, 'AR', '', '');
21934 INSERT INTO `marc_subfield_structure` VALUES ('100', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'AR', '', '');
21935 INSERT INTO `marc_subfield_structure` VALUES ('100', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'AR', '', '');
21936 INSERT INTO `marc_subfield_structure` VALUES ('100', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 1, '', '', '', 0, -1, 'AR', '', '');
21937 INSERT INTO `marc_subfield_structure` VALUES ('100', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', 0, -6, 'AR', '', '');
21938 INSERT INTO `marc_subfield_structure` VALUES ('100', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', 0, -6, 'AR', '', '');
21939 INSERT INTO `marc_subfield_structure` VALUES ('110', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', NULL, -6, 'AR', '', '');
21940 INSERT INTO `marc_subfield_structure` VALUES ('110', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', NULL, -6, 'AR', '', '');
21941 INSERT INTO `marc_subfield_structure` VALUES ('110', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', NULL, -6, 'AR', '', '');
21942 INSERT INTO `marc_subfield_structure` VALUES ('110', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
21943 INSERT INTO `marc_subfield_structure` VALUES ('110', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 1, '', '', '', NULL, -1, 'AR', '', '');
21944 INSERT INTO `marc_subfield_structure` VALUES ('110', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 1, '', '', '', NULL, -1, 'AR', '', '');
21945 INSERT INTO `marc_subfield_structure` VALUES ('110', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 1, '', '', '', NULL, -1, 'AR', '', '');
21946 INSERT INTO `marc_subfield_structure` VALUES ('110', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 1, '', '', '', NULL, -1, 'AR', '', '');
21947 INSERT INTO `marc_subfield_structure` VALUES ('110', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', NULL, -1, 'AR', '', '');
21948 INSERT INTO `marc_subfield_structure` VALUES ('110', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'AR', '', '');
21949 INSERT INTO `marc_subfield_structure` VALUES ('110', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', NULL, -6, 'AR', '', '');
21950 INSERT INTO `marc_subfield_structure` VALUES ('110', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', NULL, -6, 'AR', '', '');
21951 INSERT INTO `marc_subfield_structure` VALUES ('110', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'AR', '', '');
21952 INSERT INTO `marc_subfield_structure` VALUES ('110', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 1, '', '', '', NULL, -6, 'AR', '', '');
21953 INSERT INTO `marc_subfield_structure` VALUES ('110', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', NULL, -6, 'AR', '', '');
21954 INSERT INTO `marc_subfield_structure` VALUES ('110', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'AR', '', '');
21955 INSERT INTO `marc_subfield_structure` VALUES ('110', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', NULL, -6, 'AR', '', '');
21956 INSERT INTO `marc_subfield_structure` VALUES ('111', '4', 'Relator code', 'Relator code', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21957 INSERT INTO `marc_subfield_structure` VALUES ('111', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21958 INSERT INTO `marc_subfield_structure` VALUES ('111', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21959 INSERT INTO `marc_subfield_structure` VALUES ('111', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
21960 INSERT INTO `marc_subfield_structure` VALUES ('111', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'AR', '', '');
21961 INSERT INTO `marc_subfield_structure` VALUES ('111', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21962 INSERT INTO `marc_subfield_structure` VALUES ('111', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'AR', '', '');
21963 INSERT INTO `marc_subfield_structure` VALUES ('111', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'AR', '', '');
21964 INSERT INTO `marc_subfield_structure` VALUES ('111', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'AR', '', '');
21965 INSERT INTO `marc_subfield_structure` VALUES ('111', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21966 INSERT INTO `marc_subfield_structure` VALUES ('111', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21967 INSERT INTO `marc_subfield_structure` VALUES ('111', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21968 INSERT INTO `marc_subfield_structure` VALUES ('111', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21969 INSERT INTO `marc_subfield_structure` VALUES ('111', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21970 INSERT INTO `marc_subfield_structure` VALUES ('111', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21971 INSERT INTO `marc_subfield_structure` VALUES ('111', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21972 INSERT INTO `marc_subfield_structure` VALUES ('111', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21973 INSERT INTO `marc_subfield_structure` VALUES ('111', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21974 INSERT INTO `marc_subfield_structure` VALUES ('130', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21975 INSERT INTO `marc_subfield_structure` VALUES ('130', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21976 INSERT INTO `marc_subfield_structure` VALUES ('130', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
21977 INSERT INTO `marc_subfield_structure` VALUES ('130', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21978 INSERT INTO `marc_subfield_structure` VALUES ('130', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21979 INSERT INTO `marc_subfield_structure` VALUES ('130', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21980 INSERT INTO `marc_subfield_structure` VALUES ('130', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21981 INSERT INTO `marc_subfield_structure` VALUES ('130', 'h', 'Medium', 'Medium', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21982 INSERT INTO `marc_subfield_structure` VALUES ('130', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21983 INSERT INTO `marc_subfield_structure` VALUES ('130', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21984 INSERT INTO `marc_subfield_structure` VALUES ('130', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21985 INSERT INTO `marc_subfield_structure` VALUES ('130', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21986 INSERT INTO `marc_subfield_structure` VALUES ('130', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21987 INSERT INTO `marc_subfield_structure` VALUES ('130', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21988 INSERT INTO `marc_subfield_structure` VALUES ('130', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21989 INSERT INTO `marc_subfield_structure` VALUES ('130', 's', 'Version', 'Version', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21990 INSERT INTO `marc_subfield_structure` VALUES ('130', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'AR', '', '');
21991 INSERT INTO `marc_subfield_structure` VALUES ('210', '2', 'Source', 'Source', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
21992 INSERT INTO `marc_subfield_structure` VALUES ('210', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
21993 INSERT INTO `marc_subfield_structure` VALUES ('210', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
21994 INSERT INTO `marc_subfield_structure` VALUES ('210', 'a', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
21995 INSERT INTO `marc_subfield_structure` VALUES ('210', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
21996 INSERT INTO `marc_subfield_structure` VALUES ('211', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
21997 INSERT INTO `marc_subfield_structure` VALUES ('211', 'a', 'Acronym or shortened title', 'Acronym or shortened title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
21998 INSERT INTO `marc_subfield_structure` VALUES ('212', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
21999 INSERT INTO `marc_subfield_structure` VALUES ('212', 'a', 'Variant access title', 'Variant access title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22000 INSERT INTO `marc_subfield_structure` VALUES ('214', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22001 INSERT INTO `marc_subfield_structure` VALUES ('214', 'a', 'Augmented title', 'Augmented title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22002 INSERT INTO `marc_subfield_structure` VALUES ('222', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22003 INSERT INTO `marc_subfield_structure` VALUES ('222', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22004 INSERT INTO `marc_subfield_structure` VALUES ('222', 'a', 'Key title', 'Key title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22005 INSERT INTO `marc_subfield_structure` VALUES ('222', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22006 INSERT INTO `marc_subfield_structure` VALUES ('240', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22007 INSERT INTO `marc_subfield_structure` VALUES ('240', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22008 INSERT INTO `marc_subfield_structure` VALUES ('240', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
22009 INSERT INTO `marc_subfield_structure` VALUES ('240', 'a', 'Uniform title', 'Uniform title', 0, 0, 'biblio.unititle', 2, '', '', '', 1, -1, 'AR', '', '');
22010 INSERT INTO `marc_subfield_structure` VALUES ('240', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22011 INSERT INTO `marc_subfield_structure` VALUES ('240', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22012 INSERT INTO `marc_subfield_structure` VALUES ('240', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22013 INSERT INTO `marc_subfield_structure` VALUES ('240', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'AR', '', '');
22014 INSERT INTO `marc_subfield_structure` VALUES ('240', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22015 INSERT INTO `marc_subfield_structure` VALUES ('240', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'AR', '', '');
22016 INSERT INTO `marc_subfield_structure` VALUES ('240', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22017 INSERT INTO `marc_subfield_structure` VALUES ('240', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22018 INSERT INTO `marc_subfield_structure` VALUES ('240', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22019 INSERT INTO `marc_subfield_structure` VALUES ('240', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22020 INSERT INTO `marc_subfield_structure` VALUES ('240', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22021 INSERT INTO `marc_subfield_structure` VALUES ('240', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'AR', '', '');
22022 INSERT INTO `marc_subfield_structure` VALUES ('241', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22023 INSERT INTO `marc_subfield_structure` VALUES ('241', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22024 INSERT INTO `marc_subfield_structure` VALUES ('242', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22025 INSERT INTO `marc_subfield_structure` VALUES ('242', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22026 INSERT INTO `marc_subfield_structure` VALUES ('242', 'a', 'Title', 'Title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22027 INSERT INTO `marc_subfield_structure` VALUES ('242', 'b', 'Remainder of title', 'Remainder of title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22028 INSERT INTO `marc_subfield_structure` VALUES ('242', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22029 INSERT INTO `marc_subfield_structure` VALUES ('242', 'd', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22030 INSERT INTO `marc_subfield_structure` VALUES ('242', 'e', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22031 INSERT INTO `marc_subfield_structure` VALUES ('242', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22032 INSERT INTO `marc_subfield_structure` VALUES ('242', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22033 INSERT INTO `marc_subfield_structure` VALUES ('242', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22034 INSERT INTO `marc_subfield_structure` VALUES ('242', 'y', 'Language code of translated title', 'Language code of translated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'AR', '', '');
22035 INSERT INTO `marc_subfield_structure` VALUES ('243', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22036 INSERT INTO `marc_subfield_structure` VALUES ('243', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22037 INSERT INTO `marc_subfield_structure` VALUES ('243', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
22038 INSERT INTO `marc_subfield_structure` VALUES ('243', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 2, '', '', '', 1, -1, 'AR', '', '');
22039 INSERT INTO `marc_subfield_structure` VALUES ('243', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22040 INSERT INTO `marc_subfield_structure` VALUES ('243', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22041 INSERT INTO `marc_subfield_structure` VALUES ('243', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22042 INSERT INTO `marc_subfield_structure` VALUES ('243', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'AR', '', '');
22043 INSERT INTO `marc_subfield_structure` VALUES ('243', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22044 INSERT INTO `marc_subfield_structure` VALUES ('243', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'AR', '', '');
22045 INSERT INTO `marc_subfield_structure` VALUES ('243', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22046 INSERT INTO `marc_subfield_structure` VALUES ('243', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22047 INSERT INTO `marc_subfield_structure` VALUES ('243', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22048 INSERT INTO `marc_subfield_structure` VALUES ('243', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22049 INSERT INTO `marc_subfield_structure` VALUES ('243', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'AR', '', '');
22050 INSERT INTO `marc_subfield_structure` VALUES ('243', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'AR', '', '');
22051 INSERT INTO `marc_subfield_structure` VALUES ('245', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22052 INSERT INTO `marc_subfield_structure` VALUES ('245', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22053 INSERT INTO `marc_subfield_structure` VALUES ('245', 'a', 'Title', 'Title', 0, 1, 'biblio.title', 2, '', '', '', NULL, 0, 'AR', '''245b'',''245f'',''245g'',''245k'',''245n'',''245p'',''245s'',''245h'',''246i'',''246a'',''246b'',''246f'',''246g'',''246n'',''246p'',''246h'',''242a'',''242b'',''242n'',''242p'',''242h''', '');
22054 INSERT INTO `marc_subfield_structure` VALUES ('245', 'b', 'Remainder of title', 'Remainder of title', 0, 0, 'bibliosubtitle.subtitle', 2, '', '', '', NULL, 0, 'AR', '', '');
22055 INSERT INTO `marc_subfield_structure` VALUES ('245', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 2, '', '', '', NULL, 0, 'AR', '', '');
22056 INSERT INTO `marc_subfield_structure` VALUES ('245', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series: (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22057 INSERT INTO `marc_subfield_structure` VALUES ('245', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22058 INSERT INTO `marc_subfield_structure` VALUES ('245', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22059 INSERT INTO `marc_subfield_structure` VALUES ('245', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22060 INSERT INTO `marc_subfield_structure` VALUES ('245', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, 0, 'AR', '', '');
22061 INSERT INTO `marc_subfield_structure` VALUES ('245', 'k', 'Form', 'Form', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22062 INSERT INTO `marc_subfield_structure` VALUES ('245', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22063 INSERT INTO `marc_subfield_structure` VALUES ('245', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22064 INSERT INTO `marc_subfield_structure` VALUES ('245', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22065 INSERT INTO `marc_subfield_structure` VALUES ('246', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22066 INSERT INTO `marc_subfield_structure` VALUES ('246', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22067 INSERT INTO `marc_subfield_structure` VALUES ('246', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22068 INSERT INTO `marc_subfield_structure` VALUES ('246', 'a', 'Title proper/short title', 'Title proper/short title', 0, 0, '', 2, '', '', '', NULL, -1, 'AR', '', '');
22069 INSERT INTO `marc_subfield_structure` VALUES ('246', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -1, 'AR', '', '');
22070 INSERT INTO `marc_subfield_structure` VALUES ('246', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22071 INSERT INTO `marc_subfield_structure` VALUES ('246', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22072 INSERT INTO `marc_subfield_structure` VALUES ('246', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22073 INSERT INTO `marc_subfield_structure` VALUES ('246', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22074 INSERT INTO `marc_subfield_structure` VALUES ('246', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -1, 'AR', '', '');
22075 INSERT INTO `marc_subfield_structure` VALUES ('246', 'i', 'Display text', 'Display text', 0, 0, '', 2, '', '', '', NULL, -1, 'AR', '', '');
22076 INSERT INTO `marc_subfield_structure` VALUES ('246', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22077 INSERT INTO `marc_subfield_structure` VALUES ('246', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22078 INSERT INTO `marc_subfield_structure` VALUES ('247', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22079 INSERT INTO `marc_subfield_structure` VALUES ('247', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22080 INSERT INTO `marc_subfield_structure` VALUES ('247', 'a', 'Title', 'Title', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22081 INSERT INTO `marc_subfield_structure` VALUES ('247', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22082 INSERT INTO `marc_subfield_structure` VALUES ('247', 'd', 'Designation of section (SE) [OBSOLETE]', 'Designation of section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22083 INSERT INTO `marc_subfield_structure` VALUES ('247', 'e', 'Name of part/section (SE) [OBSOLETE]', 'Name of part/section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22084 INSERT INTO `marc_subfield_structure` VALUES ('247', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22085 INSERT INTO `marc_subfield_structure` VALUES ('247', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22086 INSERT INTO `marc_subfield_structure` VALUES ('247', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22087 INSERT INTO `marc_subfield_structure` VALUES ('247', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22088 INSERT INTO `marc_subfield_structure` VALUES ('247', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22089 INSERT INTO `marc_subfield_structure` VALUES ('247', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22090 INSERT INTO `marc_subfield_structure` VALUES ('250', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22091 INSERT INTO `marc_subfield_structure` VALUES ('250', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22092 INSERT INTO `marc_subfield_structure` VALUES ('250', 'a', 'Edition statement', 'Edition statement', 0, 0, '', 2, '', '', '', NULL, -1, 'AR', '', '');
22093 INSERT INTO `marc_subfield_structure` VALUES ('250', 'b', 'Remainder of edition statement', 'Remainder of edition statement', 0, 0, '', 2, '', '', '', NULL, -1, 'AR', '', '');
22094 INSERT INTO `marc_subfield_structure` VALUES ('254', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22095 INSERT INTO `marc_subfield_structure` VALUES ('254', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22096 INSERT INTO `marc_subfield_structure` VALUES ('254', 'a', 'Musical presentation statement', 'Musical presentation statement', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22097 INSERT INTO `marc_subfield_structure` VALUES ('255', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22098 INSERT INTO `marc_subfield_structure` VALUES ('255', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22099 INSERT INTO `marc_subfield_structure` VALUES ('255', 'a', 'Statement of scale', 'Statement of scale', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22100 INSERT INTO `marc_subfield_structure` VALUES ('255', 'b', 'Statement of projection', 'Statement of projection', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22101 INSERT INTO `marc_subfield_structure` VALUES ('255', 'c', 'Statement of coordinates', 'Statement of coordinates', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22102 INSERT INTO `marc_subfield_structure` VALUES ('255', 'd', 'Statement of zone', 'Statement of zone', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22103 INSERT INTO `marc_subfield_structure` VALUES ('255', 'e', 'Statement of equinox', 'Statement of equinox', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22104 INSERT INTO `marc_subfield_structure` VALUES ('255', 'f', 'Outer G-ring coordinate pairs', 'Outer G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22105 INSERT INTO `marc_subfield_structure` VALUES ('255', 'g', 'Exclusion G-ring coordinate pairs', 'Exclusion G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22106 INSERT INTO `marc_subfield_structure` VALUES ('256', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22107 INSERT INTO `marc_subfield_structure` VALUES ('256', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22108 INSERT INTO `marc_subfield_structure` VALUES ('256', 'a', 'Computer file characteristics', 'Computer file characteristics', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22109 INSERT INTO `marc_subfield_structure` VALUES ('257', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22110 INSERT INTO `marc_subfield_structure` VALUES ('257', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22111 INSERT INTO `marc_subfield_structure` VALUES ('257', 'a', 'Country of producing entity', 'Country of producing entity', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22112 INSERT INTO `marc_subfield_structure` VALUES ('258', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22113 INSERT INTO `marc_subfield_structure` VALUES ('258', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22114 INSERT INTO `marc_subfield_structure` VALUES ('258', 'a', 'Issuing jurisdiction', 'Issuing jurisdiction', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22115 INSERT INTO `marc_subfield_structure` VALUES ('258', 'b', 'Denomination', 'Denomination', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22116 INSERT INTO `marc_subfield_structure` VALUES ('260', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22117 INSERT INTO `marc_subfield_structure` VALUES ('260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22118 INSERT INTO `marc_subfield_structure` VALUES ('260', 'a', 'Place of publication, distribution, etc', 'Place of publication, distribution, etc', 1, 0, 'biblioitems.place', 2, '', '', '', NULL, 0, 'AR', '', '');
22119 INSERT INTO `marc_subfield_structure` VALUES ('260', 'b', 'Name of publisher, distributor, etc', 'Name of publisher, distributor, etc', 1, 0, 'biblioitems.publishercode', 2, '', '', '', NULL, 0, 'AR', '', '');
22120 INSERT INTO `marc_subfield_structure` VALUES ('260', 'c', 'Date of copyright, publication, distribution, release, etc', 'Date of publication, distribution, etc', 1, 0, 'biblio.copyrightdate', 2, '', '', '', NULL, 0, 'AR', '', '');
22121 INSERT INTO `marc_subfield_structure` VALUES ('260', 'd', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22122 INSERT INTO `marc_subfield_structure` VALUES ('260', 'e', 'Place of manufacture', 'Place of manufacture', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22123 INSERT INTO `marc_subfield_structure` VALUES ('260', 'f', 'Manufacturer', 'Manufacturer', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22124 INSERT INTO `marc_subfield_structure` VALUES ('260', 'g', 'Date of manufacture', 'Date of manufacture', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22125 INSERT INTO `marc_subfield_structure` VALUES ('260', 'k', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22126 INSERT INTO `marc_subfield_structure` VALUES ('260', 'l', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22127 INSERT INTO `marc_subfield_structure` VALUES ('261', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22128 INSERT INTO `marc_subfield_structure` VALUES ('261', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22129 INSERT INTO `marc_subfield_structure` VALUES ('261', 'a', 'Producing company', 'Producing company', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22130 INSERT INTO `marc_subfield_structure` VALUES ('261', 'b', 'Releasing company (primary distributor)', 'Releasing company (primary distributor)', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22131 INSERT INTO `marc_subfield_structure` VALUES ('261', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22132 INSERT INTO `marc_subfield_structure` VALUES ('261', 'd', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22133 INSERT INTO `marc_subfield_structure` VALUES ('261', 'e', 'Contractual producer', 'Contractual producer', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22134 INSERT INTO `marc_subfield_structure` VALUES ('261', 'f', 'Place of production, release, etc.', 'Place of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22135 INSERT INTO `marc_subfield_structure` VALUES ('262', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22136 INSERT INTO `marc_subfield_structure` VALUES ('262', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22137 INSERT INTO `marc_subfield_structure` VALUES ('262', 'a', 'Place of production, release, etc.', 'Place of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22138 INSERT INTO `marc_subfield_structure` VALUES ('262', 'b', 'Publisher or trade name', 'Publisher or trade name', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22139 INSERT INTO `marc_subfield_structure` VALUES ('262', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22140 INSERT INTO `marc_subfield_structure` VALUES ('262', 'k', 'Serial identification', 'Serial identification', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22141 INSERT INTO `marc_subfield_structure` VALUES ('262', 'l', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22142 INSERT INTO `marc_subfield_structure` VALUES ('263', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22143 INSERT INTO `marc_subfield_structure` VALUES ('263', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22144 INSERT INTO `marc_subfield_structure` VALUES ('263', 'a', 'Projected publication date', 'Projected publication date', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22145 INSERT INTO `marc_subfield_structure` VALUES ('265', '6', 'Linkage [OBSOLETE]', 'Linkage [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22146 INSERT INTO `marc_subfield_structure` VALUES ('265', 'a', 'Source for acquisition/subscription address [OBSOLETE]', 'Source for acquisition/subscription address [OBSOLETE]', 1, 0, '', 2, '', '', '', NULL, -6, 'AR', '', '');
22147 INSERT INTO `marc_subfield_structure` VALUES ('270', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
22148 INSERT INTO `marc_subfield_structure` VALUES ('270', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
22149 INSERT INTO `marc_subfield_structure` VALUES ('270', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
22150 INSERT INTO `marc_subfield_structure` VALUES ('270', 'a', 'Address', 'Address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'AR', '', '');
22151 INSERT INTO `marc_subfield_structure` VALUES ('270', 'b', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'AR', '', '');
22152 INSERT INTO `marc_subfield_structure` VALUES ('270', 'c', 'State or province', 'State or province', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
22153 INSERT INTO `marc_subfield_structure` VALUES ('270', 'd', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'AR', '', '');
22154 INSERT INTO `marc_subfield_structure` VALUES ('270', 'e', 'Postal code', 'Postal code', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'AR', '', '');
22155 INSERT INTO `marc_subfield_structure` VALUES ('270', 'f', 'Terms preceding attention name', 'Terms preceding attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'AR', '', '');
22156 INSERT INTO `marc_subfield_structure` VALUES ('270', 'g', 'Attention name', 'Attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'AR', '', '');
22157 INSERT INTO `marc_subfield_structure` VALUES ('270', 'h', 'Attention position', 'Attention position', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'AR', '', '');
22158 INSERT INTO `marc_subfield_structure` VALUES ('270', 'i', 'Type of address', 'Type of address', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'AR', '', '');
22159 INSERT INTO `marc_subfield_structure` VALUES ('270', 'j', 'Specialized telephone number', 'Specialized telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'AR', '', '');
22160 INSERT INTO `marc_subfield_structure` VALUES ('270', 'k', 'Telephone number', 'Telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'AR', '', '');
22161 INSERT INTO `marc_subfield_structure` VALUES ('270', 'l', 'Fax number', 'Fax number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'AR', '', '');
22162 INSERT INTO `marc_subfield_structure` VALUES ('270', 'm', 'Electronic mail address', 'Electronic mail address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'AR', '', '');
22163 INSERT INTO `marc_subfield_structure` VALUES ('270', 'n', 'TDD or TTY number', 'TDD or TTY number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'AR', '', '');
22164 INSERT INTO `marc_subfield_structure` VALUES ('270', 'p', 'Contact person', 'Contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'AR', '', '');
22165 INSERT INTO `marc_subfield_structure` VALUES ('270', 'q', 'Title of contact person', 'Title of contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'AR', '', '');
22166 INSERT INTO `marc_subfield_structure` VALUES ('270', 'r', 'Hours', 'Hours', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'AR', '', '');
22167 INSERT INTO `marc_subfield_structure` VALUES ('270', 'z', 'Public note', 'Public note', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'AR', '', '');
22168 INSERT INTO `marc_subfield_structure` VALUES ('300', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22169 INSERT INTO `marc_subfield_structure` VALUES ('300', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22170 INSERT INTO `marc_subfield_structure` VALUES ('300', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22171 INSERT INTO `marc_subfield_structure` VALUES ('300', 'a', 'Extent (1 model (number of pieces))', 'Extent', 1, 1, 'biblioitems.pages', 3, '', '', '', NULL, 0, 'AR', '', '');
22172 INSERT INTO `marc_subfield_structure` VALUES ('300', 'b', 'Other physical details', 'Other physical details', 0, 0, 'biblioitems.illus', 3, '', '', '', 0, 0, 'AR', '', '');
22173 INSERT INTO `marc_subfield_structure` VALUES ('300', 'c', 'Dimensions', 'Dimensions', 1, 0, 'biblioitems.size', 3, '', '', '', NULL, 0, 'AR', '', '');
22174 INSERT INTO `marc_subfield_structure` VALUES ('300', 'd', 'Accompanying material [OBSOLETE, CAN/MARC]', 'Accompanying material [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22175 INSERT INTO `marc_subfield_structure` VALUES ('300', 'e', 'Accompanying material', 'Accompanying material', 0, 0, '', 3, '', '', '', NULL, 0, 'AR', '', '');
22176 INSERT INTO `marc_subfield_structure` VALUES ('300', 'f', 'Type of unit', 'Type of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'AR', '', '');
22177 INSERT INTO `marc_subfield_structure` VALUES ('300', 'g', 'Size of unit', 'Size of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'AR', '', '');
22178 INSERT INTO `marc_subfield_structure` VALUES ('300', 'k', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22179 INSERT INTO `marc_subfield_structure` VALUES ('300', 'm', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22180 INSERT INTO `marc_subfield_structure` VALUES ('300', 'n', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22181 INSERT INTO `marc_subfield_structure` VALUES ('301', 'a', 'Extent of item', 'Extent of item', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22182 INSERT INTO `marc_subfield_structure` VALUES ('301', 'b', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22183 INSERT INTO `marc_subfield_structure` VALUES ('301', 'c', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', NULL, NULL, -6, 'AR', '', '');
22184 INSERT INTO `marc_subfield_structure` VALUES ('301', 'd', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22185 INSERT INTO `marc_subfield_structure` VALUES ('301', 'e', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22186 INSERT INTO `marc_subfield_structure` VALUES ('301', 'f', 'Speed', 'Speed', 0, 0, '', 3, '', '', NULL, NULL, -6, 'AR', '', '');
22187 INSERT INTO `marc_subfield_structure` VALUES ('302', 'a', 'Page count', 'Page count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'AR', '', '');
22188 INSERT INTO `marc_subfield_structure` VALUES ('303', 'a', 'Unit count', 'Unit count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'AR', '', '');
22189 INSERT INTO `marc_subfield_structure` VALUES ('304', 'a', 'Linear footage', 'Linear footage', 0, 0, '', 3, '', '', NULL, NULL, -6, 'AR', '', '');
22190 INSERT INTO `marc_subfield_structure` VALUES ('305', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22191 INSERT INTO `marc_subfield_structure` VALUES ('305', 'a', 'Extent', 'Extent', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22192 INSERT INTO `marc_subfield_structure` VALUES ('305', 'b', 'Other physical details', 'Other physical details', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22193 INSERT INTO `marc_subfield_structure` VALUES ('305', 'c', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', NULL, NULL, -6, 'AR', '', '');
22194 INSERT INTO `marc_subfield_structure` VALUES ('305', 'd', 'Microgroove or standard', 'Microgroove or standard', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22195 INSERT INTO `marc_subfield_structure` VALUES ('305', 'e', 'Stereophonic, monaural', 'Stereophonic, monaural', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22196 INSERT INTO `marc_subfield_structure` VALUES ('305', 'f', 'Number of tracks', 'Number of tracks', 0, 0, '', 3, '', '', NULL, NULL, -6, 'AR', '', '');
22197 INSERT INTO `marc_subfield_structure` VALUES ('305', 'm', 'Serial identification', 'Serial identification', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22198 INSERT INTO `marc_subfield_structure` VALUES ('305', 'n', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 3, '', '', NULL, NULL, -6, 'AR', '', '');
22199 INSERT INTO `marc_subfield_structure` VALUES ('306', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22200 INSERT INTO `marc_subfield_structure` VALUES ('306', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22201 INSERT INTO `marc_subfield_structure` VALUES ('306', 'a', 'Playing time', 'Playing time', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22202 INSERT INTO `marc_subfield_structure` VALUES ('307', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22203 INSERT INTO `marc_subfield_structure` VALUES ('307', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22204 INSERT INTO `marc_subfield_structure` VALUES ('307', 'a', 'Hours', 'Hours', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22205 INSERT INTO `marc_subfield_structure` VALUES ('307', 'b', 'Additional information', 'Additional information', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22206 INSERT INTO `marc_subfield_structure` VALUES ('308', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22207 INSERT INTO `marc_subfield_structure` VALUES ('308', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22208 INSERT INTO `marc_subfield_structure` VALUES ('308', 'a', 'Number of reels', 'Number of reels', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22209 INSERT INTO `marc_subfield_structure` VALUES ('308', 'b', 'Footage', 'Footage', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22210 INSERT INTO `marc_subfield_structure` VALUES ('308', 'c', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22211 INSERT INTO `marc_subfield_structure` VALUES ('308', 'd', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22212 INSERT INTO `marc_subfield_structure` VALUES ('308', 'e', 'Width', 'Width', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22213 INSERT INTO `marc_subfield_structure` VALUES ('308', 'f', 'Presentation format', 'Presentation format', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22214 INSERT INTO `marc_subfield_structure` VALUES ('310', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22215 INSERT INTO `marc_subfield_structure` VALUES ('310', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22216 INSERT INTO `marc_subfield_structure` VALUES ('310', 'a', 'Current publication frequency', 'Current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22217 INSERT INTO `marc_subfield_structure` VALUES ('310', 'b', 'Date of current publication frequency', 'Date of current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22218 INSERT INTO `marc_subfield_structure` VALUES ('315', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22219 INSERT INTO `marc_subfield_structure` VALUES ('315', 'a', 'Frequency', 'Frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22220 INSERT INTO `marc_subfield_structure` VALUES ('315', 'b', 'Dates of frequency', 'Dates of frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22221 INSERT INTO `marc_subfield_structure` VALUES ('321', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22222 INSERT INTO `marc_subfield_structure` VALUES ('321', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22223 INSERT INTO `marc_subfield_structure` VALUES ('321', 'a', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22224 INSERT INTO `marc_subfield_structure` VALUES ('321', 'b', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22225 INSERT INTO `marc_subfield_structure` VALUES ('340', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22226 INSERT INTO `marc_subfield_structure` VALUES ('340', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22227 INSERT INTO `marc_subfield_structure` VALUES ('340', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22228 INSERT INTO `marc_subfield_structure` VALUES ('340', 'a', 'Material base and configuration', 'Material base and configuration', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22229 INSERT INTO `marc_subfield_structure` VALUES ('340', 'b', 'Dimensions', 'Dimensions', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22230 INSERT INTO `marc_subfield_structure` VALUES ('340', 'c', 'Materials applied to surface', 'Materials applied to surface', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22231 INSERT INTO `marc_subfield_structure` VALUES ('340', 'd', 'Information recording technique', 'Information recording technique', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22232 INSERT INTO `marc_subfield_structure` VALUES ('340', 'e', 'Support', 'Support', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22233 INSERT INTO `marc_subfield_structure` VALUES ('340', 'f', 'Production rate/ratio', 'Production rate/ratio', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22234 INSERT INTO `marc_subfield_structure` VALUES ('340', 'h', 'Location within medium', 'Location within medium', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22235 INSERT INTO `marc_subfield_structure` VALUES ('340', 'i', 'Technical specifications of medium', 'Technical specifications of medium', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22236 INSERT INTO `marc_subfield_structure` VALUES ('342', '2', 'Reference method used', 'Reference method used', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22237 INSERT INTO `marc_subfield_structure` VALUES ('342', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22238 INSERT INTO `marc_subfield_structure` VALUES ('342', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22239 INSERT INTO `marc_subfield_structure` VALUES ('342', 'a', 'Name', 'Name', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22240 INSERT INTO `marc_subfield_structure` VALUES ('342', 'b', 'Coordinate or distance units', 'Coordinate or distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22241 INSERT INTO `marc_subfield_structure` VALUES ('342', 'c', 'Latitude resolution', 'Latitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22242 INSERT INTO `marc_subfield_structure` VALUES ('342', 'd', 'Longitude resolution', 'Longitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22243 INSERT INTO `marc_subfield_structure` VALUES ('342', 'e', 'Standard parallel or oblique line latitude', 'Standard parallel or oblique line latitude', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22244 INSERT INTO `marc_subfield_structure` VALUES ('342', 'f', 'Oblique line longitude', 'Oblique line longitude', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22245 INSERT INTO `marc_subfield_structure` VALUES ('342', 'g', 'Longitude of central meridian or projection center', 'Longitude of central meridian or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22246 INSERT INTO `marc_subfield_structure` VALUES ('342', 'h', 'Latitude of projection origin or projection center', 'Latitude of projection origin or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22247 INSERT INTO `marc_subfield_structure` VALUES ('342', 'i', 'False easting', 'False easting', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22248 INSERT INTO `marc_subfield_structure` VALUES ('342', 'j', 'False northing', 'False northing', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22249 INSERT INTO `marc_subfield_structure` VALUES ('342', 'k', 'Scale factor', 'Scale factor', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22250 INSERT INTO `marc_subfield_structure` VALUES ('342', 'l', 'Height of perspective point above surface', 'Height of perspective point above surface', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22251 INSERT INTO `marc_subfield_structure` VALUES ('342', 'm', 'Azimuthal angle', 'Azimuthal angle', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22252 INSERT INTO `marc_subfield_structure` VALUES ('342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole', 'Azimuth measure point longitude or straight vertical longitude from pole', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22253 INSERT INTO `marc_subfield_structure` VALUES ('342', 'o', 'Landsat number and path number', 'Landsat number and path number', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22254 INSERT INTO `marc_subfield_structure` VALUES ('342', 'p', 'Zone identifier', 'Zone identifier', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22255 INSERT INTO `marc_subfield_structure` VALUES ('342', 'q', 'Ellipsoid name', 'Ellipsoid name', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22256 INSERT INTO `marc_subfield_structure` VALUES ('342', 'r', 'Semi-major axis', 'Semi-major axis', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22257 INSERT INTO `marc_subfield_structure` VALUES ('342', 's', 'Denominator of flattening ratio', 'Denominator of flattening ratio', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22258 INSERT INTO `marc_subfield_structure` VALUES ('342', 't', 'Vertical resolution', 'Vertical resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22259 INSERT INTO `marc_subfield_structure` VALUES ('342', 'u', 'Vertical encoding method', 'Vertical encoding method', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22260 INSERT INTO `marc_subfield_structure` VALUES ('342', 'v', 'Local planar, local, or other projection or grid description', 'Local planar, local, or other projection or grid description', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22261 INSERT INTO `marc_subfield_structure` VALUES ('342', 'w', 'Local planar or local georeference information', 'Local planar or local georeference information', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22262 INSERT INTO `marc_subfield_structure` VALUES ('343', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22263 INSERT INTO `marc_subfield_structure` VALUES ('343', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22264 INSERT INTO `marc_subfield_structure` VALUES ('343', 'a', 'Planar coordinate encoding method', 'Planar coordinate encoding method', 1, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22265 INSERT INTO `marc_subfield_structure` VALUES ('343', 'b', 'Planar distance units', 'Planar distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22266 INSERT INTO `marc_subfield_structure` VALUES ('343', 'c', 'Abscissa resolution', 'Abscissa resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22267 INSERT INTO `marc_subfield_structure` VALUES ('343', 'd', 'Ordinate resolution', 'Ordinate resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22268 INSERT INTO `marc_subfield_structure` VALUES ('343', 'e', 'Distance resolution', 'Distance resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22269 INSERT INTO `marc_subfield_structure` VALUES ('343', 'f', 'Bearing resolution', 'Bearing resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22270 INSERT INTO `marc_subfield_structure` VALUES ('343', 'g', 'Bearing unit', 'Bearing unit', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22271 INSERT INTO `marc_subfield_structure` VALUES ('343', 'h', 'Bearing reference direction', 'Bearing reference direction', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22272 INSERT INTO `marc_subfield_structure` VALUES ('343', 'i', 'Bearing reference meridian', 'Bearing reference meridian', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
22273 INSERT INTO `marc_subfield_structure` VALUES ('350', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22274 INSERT INTO `marc_subfield_structure` VALUES ('350', 'a', 'Price', 'Price', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22275 INSERT INTO `marc_subfield_structure` VALUES ('350', 'b', 'Form of issue', 'Form of issue', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22276 INSERT INTO `marc_subfield_structure` VALUES ('351', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22277 INSERT INTO `marc_subfield_structure` VALUES ('351', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22278 INSERT INTO `marc_subfield_structure` VALUES ('351', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22279 INSERT INTO `marc_subfield_structure` VALUES ('351', 'a', 'Organization', 'Organization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22280 INSERT INTO `marc_subfield_structure` VALUES ('351', 'b', 'Arrangement', 'Arrangement', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22281 INSERT INTO `marc_subfield_structure` VALUES ('351', 'c', 'Hierarchical level', 'Hierarchical level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22282 INSERT INTO `marc_subfield_structure` VALUES ('352', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22283 INSERT INTO `marc_subfield_structure` VALUES ('352', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22284 INSERT INTO `marc_subfield_structure` VALUES ('352', 'a', 'Direct reference method', 'Direct reference method', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22285 INSERT INTO `marc_subfield_structure` VALUES ('352', 'b', 'Object type', 'Object type', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22286 INSERT INTO `marc_subfield_structure` VALUES ('352', 'c', 'Object count', 'Object count', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22287 INSERT INTO `marc_subfield_structure` VALUES ('352', 'd', 'Row count', 'Row count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22288 INSERT INTO `marc_subfield_structure` VALUES ('352', 'e', 'Column count', 'Column count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22289 INSERT INTO `marc_subfield_structure` VALUES ('352', 'f', 'Vertical count', 'Vertical count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22290 INSERT INTO `marc_subfield_structure` VALUES ('352', 'g', 'VPF topology level', 'VPF topology level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22291 INSERT INTO `marc_subfield_structure` VALUES ('352', 'i', 'Indirect reference description', 'Indirect reference description', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22292 INSERT INTO `marc_subfield_structure` VALUES ('355', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22293 INSERT INTO `marc_subfield_structure` VALUES ('355', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22294 INSERT INTO `marc_subfield_structure` VALUES ('355', 'a', 'Security classification', 'Security classification', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22295 INSERT INTO `marc_subfield_structure` VALUES ('355', 'b', 'Handling instructions', 'Handling instructions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22296 INSERT INTO `marc_subfield_structure` VALUES ('355', 'c', 'External dissemination information', 'External dissemination information', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22297 INSERT INTO `marc_subfield_structure` VALUES ('355', 'd', 'Downgrading or declassification event', 'Downgrading or declassification event', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22298 INSERT INTO `marc_subfield_structure` VALUES ('355', 'e', 'Classification system', 'Classification system', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22299 INSERT INTO `marc_subfield_structure` VALUES ('355', 'f', 'Country of origin code', 'Country of origin code', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22300 INSERT INTO `marc_subfield_structure` VALUES ('355', 'g', 'Downgrading date', 'Downgrading date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22301 INSERT INTO `marc_subfield_structure` VALUES ('355', 'h', 'Declassification date', 'Declassification date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22302 INSERT INTO `marc_subfield_structure` VALUES ('355', 'j', 'Authorization', 'Authorization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22303 INSERT INTO `marc_subfield_structure` VALUES ('357', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22304 INSERT INTO `marc_subfield_structure` VALUES ('357', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22305 INSERT INTO `marc_subfield_structure` VALUES ('357', 'a', 'Originator control term', 'Originator control term', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22306 INSERT INTO `marc_subfield_structure` VALUES ('357', 'b', 'Originating agency', 'Originating agency', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22307 INSERT INTO `marc_subfield_structure` VALUES ('357', 'c', 'Authorized recipients of material', 'Authorized recipients of material', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22308 INSERT INTO `marc_subfield_structure` VALUES ('357', 'g', 'Other restrictions', 'Other restrictions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22309 INSERT INTO `marc_subfield_structure` VALUES ('359', 'a', 'Rental price', 'Rental price', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22310 INSERT INTO `marc_subfield_structure` VALUES ('362', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22311 INSERT INTO `marc_subfield_structure` VALUES ('362', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22312 INSERT INTO `marc_subfield_structure` VALUES ('362', 'a', 'Dates of publication and/or sequential designation', 'Dates of publication and/or sequential designation', 0, 0, 'biblioitems.volumedesc', 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22313 INSERT INTO `marc_subfield_structure` VALUES ('362', 'z', 'Source of information', 'Source of information', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'AR', '', '');
22314 INSERT INTO `marc_subfield_structure` VALUES ('365', '2', 'Source of price type code', 'Source of price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22315 INSERT INTO `marc_subfield_structure` VALUES ('365', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
22316 INSERT INTO `marc_subfield_structure` VALUES ('365', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
22317 INSERT INTO `marc_subfield_structure` VALUES ('365', 'a', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22318 INSERT INTO `marc_subfield_structure` VALUES ('365', 'b', 'Price amount', 'Price amount', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22319 INSERT INTO `marc_subfield_structure` VALUES ('365', 'c', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22320 INSERT INTO `marc_subfield_structure` VALUES ('365', 'd', 'Unit of pricing', 'Unit of pricing', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22321 INSERT INTO `marc_subfield_structure` VALUES ('365', 'e', 'Price note', 'Price note', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22322 INSERT INTO `marc_subfield_structure` VALUES ('365', 'f', 'Price effective from', 'Price effective from', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22323 INSERT INTO `marc_subfield_structure` VALUES ('365', 'g', 'Price effective until', 'Price effective until', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22324 INSERT INTO `marc_subfield_structure` VALUES ('365', 'h', 'Tax rate 1', 'Tax rate 1', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22325 INSERT INTO `marc_subfield_structure` VALUES ('365', 'i', 'Tax rate 2', 'Tax rate 2', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22326 INSERT INTO `marc_subfield_structure` VALUES ('365', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22327 INSERT INTO `marc_subfield_structure` VALUES ('365', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22328 INSERT INTO `marc_subfield_structure` VALUES ('365', 'm', 'Identification of pricing entity', 'Identification of pricing entity', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22329 INSERT INTO `marc_subfield_structure` VALUES ('366', '2', 'Source of availability status code', 'Source of availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22330 INSERT INTO `marc_subfield_structure` VALUES ('366', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
22331 INSERT INTO `marc_subfield_structure` VALUES ('366', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
22332 INSERT INTO `marc_subfield_structure` VALUES ('366', 'a', 'Publishers\' compressed title identification', 'Publishers\' compressed title identification', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22333 INSERT INTO `marc_subfield_structure` VALUES ('366', 'b', 'Detailed date of publication', 'Detailed date of publication', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22334 INSERT INTO `marc_subfield_structure` VALUES ('366', 'c', 'Availability status code', 'Availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22335 INSERT INTO `marc_subfield_structure` VALUES ('366', 'd', 'Expected next availability date', 'Expected next availability date', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22336 INSERT INTO `marc_subfield_structure` VALUES ('366', 'e', 'Note', 'Note', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22337 INSERT INTO `marc_subfield_structure` VALUES ('366', 'f', 'Publishers\' discount category', 'Publishers\' discount category', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22338 INSERT INTO `marc_subfield_structure` VALUES ('366', 'g', 'Date made out of print', 'Date made out of print', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22339 INSERT INTO `marc_subfield_structure` VALUES ('366', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22340 INSERT INTO `marc_subfield_structure` VALUES ('366', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22341 INSERT INTO `marc_subfield_structure` VALUES ('366', 'm', 'Identification of agency', 'Identification of agency', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22342 INSERT INTO `marc_subfield_structure` VALUES ('400', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', 0, -6, 'AR', '', '');
22343 INSERT INTO `marc_subfield_structure` VALUES ('400', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', 0, -6, 'AR', '', '');
22344 INSERT INTO `marc_subfield_structure` VALUES ('400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', 0, -6, 'AR', '', '');
22345 INSERT INTO `marc_subfield_structure` VALUES ('400', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
22346 INSERT INTO `marc_subfield_structure` VALUES ('400', 'a', 'Personal name', 'Personal name', 0, 0, '', 4, '', '', '', 0, -6, 'AR', '', '');
22347 INSERT INTO `marc_subfield_structure` VALUES ('400', 'b', 'Numeration', 'Numeration', 0, 0, '', 4, '', '', '', 0, -6, 'AR', '', '');
22348 INSERT INTO `marc_subfield_structure` VALUES ('400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 4, '', '', '', 0, -6, 'AR', '', '');
22349 INSERT INTO `marc_subfield_structure` VALUES ('400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 4, '', '', '', 0, -6, 'AR', '', '');
22350 INSERT INTO `marc_subfield_structure` VALUES ('400', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', 0, -6, 'AR', '', '');
22351 INSERT INTO `marc_subfield_structure` VALUES ('400', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', 0, -6, 'AR', '', '');
22352 INSERT INTO `marc_subfield_structure` VALUES ('400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', 0, -6, 'AR', '', '');
22353 INSERT INTO `marc_subfield_structure` VALUES ('400', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', 0, -6, 'AR', '', '');
22354 INSERT INTO `marc_subfield_structure` VALUES ('400', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', 0, -6, 'AR', '', '');
22355 INSERT INTO `marc_subfield_structure` VALUES ('400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'AR', '', '');
22356 INSERT INTO `marc_subfield_structure` VALUES ('400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'AR', '', '');
22357 INSERT INTO `marc_subfield_structure` VALUES ('400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 4, '', '', '', 0, -6, 'AR', '', '');
22358 INSERT INTO `marc_subfield_structure` VALUES ('400', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', 0, -6, 'AR', '', '');
22359 INSERT INTO `marc_subfield_structure` VALUES ('400', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', 0, -6, 'AR', '', '');
22360 INSERT INTO `marc_subfield_structure` VALUES ('400', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22361 INSERT INTO `marc_subfield_structure` VALUES ('400', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22362 INSERT INTO `marc_subfield_structure` VALUES ('410', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22363 INSERT INTO `marc_subfield_structure` VALUES ('410', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22364 INSERT INTO `marc_subfield_structure` VALUES ('410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22365 INSERT INTO `marc_subfield_structure` VALUES ('410', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'AR', '', '');
22366 INSERT INTO `marc_subfield_structure` VALUES ('410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22367 INSERT INTO `marc_subfield_structure` VALUES ('410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22368 INSERT INTO `marc_subfield_structure` VALUES ('410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22369 INSERT INTO `marc_subfield_structure` VALUES ('410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22370 INSERT INTO `marc_subfield_structure` VALUES ('410', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22371 INSERT INTO `marc_subfield_structure` VALUES ('410', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22372 INSERT INTO `marc_subfield_structure` VALUES ('410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22373 INSERT INTO `marc_subfield_structure` VALUES ('410', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22374 INSERT INTO `marc_subfield_structure` VALUES ('410', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22375 INSERT INTO `marc_subfield_structure` VALUES ('410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22376 INSERT INTO `marc_subfield_structure` VALUES ('410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22377 INSERT INTO `marc_subfield_structure` VALUES ('410', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22378 INSERT INTO `marc_subfield_structure` VALUES ('410', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22379 INSERT INTO `marc_subfield_structure` VALUES ('410', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22380 INSERT INTO `marc_subfield_structure` VALUES ('410', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22381 INSERT INTO `marc_subfield_structure` VALUES ('411', '4', 'Relator code', 'Relator code', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'AR', '', '');
22382 INSERT INTO `marc_subfield_structure` VALUES ('411', '6', 'Linkage', 'Linkage', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'AR', '', '');
22383 INSERT INTO `marc_subfield_structure` VALUES ('411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'AR', '', '');
22384 INSERT INTO `marc_subfield_structure` VALUES ('411', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
22385 INSERT INTO `marc_subfield_structure` VALUES ('411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'AR', '', '');
22386 INSERT INTO `marc_subfield_structure` VALUES ('411', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'AR', '', '');
22387 INSERT INTO `marc_subfield_structure` VALUES ('411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'AR', '', '');
22388 INSERT INTO `marc_subfield_structure` VALUES ('411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'AR', '', '');
22389 INSERT INTO `marc_subfield_structure` VALUES ('411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'AR', '', '');
22390 INSERT INTO `marc_subfield_structure` VALUES ('411', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'AR', '', '');
22391 INSERT INTO `marc_subfield_structure` VALUES ('411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'AR', '', '');
22392 INSERT INTO `marc_subfield_structure` VALUES ('411', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'AR', '', '');
22393 INSERT INTO `marc_subfield_structure` VALUES ('411', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'AR', '', '');
22394 INSERT INTO `marc_subfield_structure` VALUES ('411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'AR', '', '');
22395 INSERT INTO `marc_subfield_structure` VALUES ('411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'AR', '', '');
22396 INSERT INTO `marc_subfield_structure` VALUES ('411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'AR', '', '');
22397 INSERT INTO `marc_subfield_structure` VALUES ('411', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'AR', '', '');
22398 INSERT INTO `marc_subfield_structure` VALUES ('411', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'AR', '', '');
22399 INSERT INTO `marc_subfield_structure` VALUES ('411', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22400 INSERT INTO `marc_subfield_structure` VALUES ('411', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22401 INSERT INTO `marc_subfield_structure` VALUES ('440', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22402 INSERT INTO `marc_subfield_structure` VALUES ('440', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22403 INSERT INTO `marc_subfield_structure` VALUES ('440', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
22404 INSERT INTO `marc_subfield_structure` VALUES ('440', 'a', 'Title', 'Title', 0, 0, 'biblio.seriestitle', 4, '', '', '', NULL, 0, 'AR', '', '');
22405 INSERT INTO `marc_subfield_structure` VALUES ('440', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 'biblioitems.number', 4, '', '', '', NULL, 0, 'AR', '', '');
22406 INSERT INTO `marc_subfield_structure` VALUES ('440', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, 0, 'AR', '', '');
22407 INSERT INTO `marc_subfield_structure` VALUES ('440', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, 'biblioitems.volume', 4, '', '', '', NULL, 0, 'AR', '', '');
22408 INSERT INTO `marc_subfield_structure` VALUES ('440', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, 0, 'AR', '', '');
22409 INSERT INTO `marc_subfield_structure` VALUES ('490', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22410 INSERT INTO `marc_subfield_structure` VALUES ('490', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', NULL, NULL, -6, 'AR', '', '');
22411 INSERT INTO `marc_subfield_structure` VALUES ('490', 'a', 'Series statement', 'Series statement', 1, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22412 INSERT INTO `marc_subfield_structure` VALUES ('490', 'l', 'Library of Congress call number', 'Library of Congress call number', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22413 INSERT INTO `marc_subfield_structure` VALUES ('490', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 1, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22414 INSERT INTO `marc_subfield_structure` VALUES ('490', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'AR', '', '');
22415 INSERT INTO `marc_subfield_structure` VALUES ('500', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22416 INSERT INTO `marc_subfield_structure` VALUES ('500', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22417 INSERT INTO `marc_subfield_structure` VALUES ('500', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22418 INSERT INTO `marc_subfield_structure` VALUES ('500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22419 INSERT INTO `marc_subfield_structure` VALUES ('500', 'a', 'General note', 'General note', 0, 0, 'biblio.notes', 5, '', '', '', NULL, -1, 'AR', '', '');
22420 INSERT INTO `marc_subfield_structure` VALUES ('500', 'l', 'Library of Congress call number (SE) [OBSOLETE]', 'Library of Congress call number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22421 INSERT INTO `marc_subfield_structure` VALUES ('500', 'n', 'n (RLIN) [OBSOLETE]', 'n (RLIN) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22422 INSERT INTO `marc_subfield_structure` VALUES ('500', 'x', 'International Standard Serial Number (SE) [OBSOLETE]', 'International Standard Serial Number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22423 INSERT INTO `marc_subfield_structure` VALUES ('500', 'z', 'Source of note information (AM SE) [OBSOLETE]', 'Source of note information (AM SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22424 INSERT INTO `marc_subfield_structure` VALUES ('501', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22425 INSERT INTO `marc_subfield_structure` VALUES ('501', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22426 INSERT INTO `marc_subfield_structure` VALUES ('501', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22427 INSERT INTO `marc_subfield_structure` VALUES ('501', 'a', 'With note', 'With note', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22428 INSERT INTO `marc_subfield_structure` VALUES ('502', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22429 INSERT INTO `marc_subfield_structure` VALUES ('502', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22430 INSERT INTO `marc_subfield_structure` VALUES ('502', 'a', 'Dissertation note', 'Dissertation note', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22431 INSERT INTO `marc_subfield_structure` VALUES ('503', '8', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22432 INSERT INTO `marc_subfield_structure` VALUES ('503', 'a', 'Bibliographic history note', 'Bibliographic history note', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22433 INSERT INTO `marc_subfield_structure` VALUES ('504', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22434 INSERT INTO `marc_subfield_structure` VALUES ('504', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22435 INSERT INTO `marc_subfield_structure` VALUES ('504', 'a', 'Bibliography, etc', 'Bibliography, etc', 0, 0, '', 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22436 INSERT INTO `marc_subfield_structure` VALUES ('504', 'b', 'Number of references', 'Number of references', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22437 INSERT INTO `marc_subfield_structure` VALUES ('505', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22438 INSERT INTO `marc_subfield_structure` VALUES ('505', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22439 INSERT INTO `marc_subfield_structure` VALUES ('505', 'a', 'Formatted contents note', 'Formatted contents note', 0, 0, '', 5, '', '', '', NULL, -1, 'AR', '', '');
22440 INSERT INTO `marc_subfield_structure` VALUES ('505', 'g', 'Miscellaneous information', 'Miscellaneous information', 1, 0, '', 5, '', '', '', NULL, -1, 'AR', '', '');
22441 INSERT INTO `marc_subfield_structure` VALUES ('505', 'r', 'Statement of responsibility', 'Statement of responsibility', 1, 0, '', 5, '', '', '', NULL, -1, 'AR', '', '');
22442 INSERT INTO `marc_subfield_structure` VALUES ('505', 't', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -1, 'AR', '', '');
22443 INSERT INTO `marc_subfield_structure` VALUES ('505', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'AR', '', '');
22444 INSERT INTO `marc_subfield_structure` VALUES ('506', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22445 INSERT INTO `marc_subfield_structure` VALUES ('506', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22446 INSERT INTO `marc_subfield_structure` VALUES ('506', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22447 INSERT INTO `marc_subfield_structure` VALUES ('506', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22448 INSERT INTO `marc_subfield_structure` VALUES ('506', 'a', 'Terms governing access', 'Terms governing access', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22449 INSERT INTO `marc_subfield_structure` VALUES ('506', 'b', 'Jurisdiction', 'Jurisdiction', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22450 INSERT INTO `marc_subfield_structure` VALUES ('506', 'c', 'Physical access provisions', 'Physical access provisions', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22451 INSERT INTO `marc_subfield_structure` VALUES ('506', 'd', 'Authorized users', 'Authorized users', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22452 INSERT INTO `marc_subfield_structure` VALUES ('506', 'e', 'Authorization', 'Authorization', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22453 INSERT INTO `marc_subfield_structure` VALUES ('506', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'AR', '', '');
22454 INSERT INTO `marc_subfield_structure` VALUES ('507', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22455 INSERT INTO `marc_subfield_structure` VALUES ('507', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22456 INSERT INTO `marc_subfield_structure` VALUES ('507', 'a', 'Representative fraction of scale note', 'Representative fraction of scale note', 0, 0, '', 5, '', '', '', NULL, -1, 'AR', '', '');
22457 INSERT INTO `marc_subfield_structure` VALUES ('507', 'b', 'Remainder of scale note', 'Remainder of scale note', 0, 0, '', 5, '', '', '', NULL, -1, 'AR', '', '');
22458 INSERT INTO `marc_subfield_structure` VALUES ('508', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22459 INSERT INTO `marc_subfield_structure` VALUES ('508', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22460 INSERT INTO `marc_subfield_structure` VALUES ('508', 'a', 'Creation/production credits note', 'Creation/production credits note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22461 INSERT INTO `marc_subfield_structure` VALUES ('509', 'a', 'Informal Notes', 'Informal Notes', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22462 INSERT INTO `marc_subfield_structure` VALUES ('510', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22463 INSERT INTO `marc_subfield_structure` VALUES ('510', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22464 INSERT INTO `marc_subfield_structure` VALUES ('510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22465 INSERT INTO `marc_subfield_structure` VALUES ('510', 'a', 'Name of source', 'Name of source', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22466 INSERT INTO `marc_subfield_structure` VALUES ('510', 'b', 'Coverage of source', 'Coverage of source', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22467 INSERT INTO `marc_subfield_structure` VALUES ('510', 'c', 'Location within source', 'Location within source', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22468 INSERT INTO `marc_subfield_structure` VALUES ('510', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22469 INSERT INTO `marc_subfield_structure` VALUES ('511', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22470 INSERT INTO `marc_subfield_structure` VALUES ('511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22471 INSERT INTO `marc_subfield_structure` VALUES ('511', 'a', 'Participant or performer note', 'Participant or performer note', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22472 INSERT INTO `marc_subfield_structure` VALUES ('512', '6', 'Linkage', 'Linkage', 0, 0, '', -1, '', '', '', NULL, -6, 'AR', '', '');
22473 INSERT INTO `marc_subfield_structure` VALUES ('512', 'a', 'Earlier or later volumes separately cataloged note', 'Earlier or later volumes separately cataloged note', 0, 0, '', -1, '', '', '', NULL, -6, 'AR', '', '');
22474 INSERT INTO `marc_subfield_structure` VALUES ('513', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22475 INSERT INTO `marc_subfield_structure` VALUES ('513', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22476 INSERT INTO `marc_subfield_structure` VALUES ('513', 'a', 'Type of report', 'Type of report', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22477 INSERT INTO `marc_subfield_structure` VALUES ('513', 'b', 'Period covered', 'Period covered', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22478 INSERT INTO `marc_subfield_structure` VALUES ('514', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22479 INSERT INTO `marc_subfield_structure` VALUES ('514', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22480 INSERT INTO `marc_subfield_structure` VALUES ('514', 'a', 'Attribute accuracy report', 'Attribute accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22481 INSERT INTO `marc_subfield_structure` VALUES ('514', 'b', 'Attribute accuracy value', 'Attribute accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22482 INSERT INTO `marc_subfield_structure` VALUES ('514', 'c', 'Attribute accuracy explanation', 'Attribute accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22483 INSERT INTO `marc_subfield_structure` VALUES ('514', 'd', 'Logical consistency report', 'Logical consistency report', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22484 INSERT INTO `marc_subfield_structure` VALUES ('514', 'e', 'Completeness report', 'Completeness report', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22485 INSERT INTO `marc_subfield_structure` VALUES ('514', 'f', 'Horizontal position accuracy report', 'Horizontal position accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22486 INSERT INTO `marc_subfield_structure` VALUES ('514', 'g', 'Horizontal position accuracy value', 'Horizontal position accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22487 INSERT INTO `marc_subfield_structure` VALUES ('514', 'h', 'Horizontal position accuracy explanation', 'Horizontal position accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22488 INSERT INTO `marc_subfield_structure` VALUES ('514', 'i', 'Vertical positional accuracy report', 'Vertical positional accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22489 INSERT INTO `marc_subfield_structure` VALUES ('514', 'j', 'Vertical positional accuracy value', 'Vertical positional accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22490 INSERT INTO `marc_subfield_structure` VALUES ('514', 'k', 'Vertical positional accuracy explanation', 'Vertical positional accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22491 INSERT INTO `marc_subfield_structure` VALUES ('514', 'm', 'Cloud cover', 'Cloud cover', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22492 INSERT INTO `marc_subfield_structure` VALUES ('514', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'AR', '', '');
22493 INSERT INTO `marc_subfield_structure` VALUES ('514', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22494 INSERT INTO `marc_subfield_structure` VALUES ('515', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22495 INSERT INTO `marc_subfield_structure` VALUES ('515', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22496 INSERT INTO `marc_subfield_structure` VALUES ('515', 'a', 'Numbering peculiarities note', 'Numbering peculiarities note', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22497 INSERT INTO `marc_subfield_structure` VALUES ('515', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, '', -1, '', '', '', NULL, -6, 'AR', '', '');
22498 INSERT INTO `marc_subfield_structure` VALUES ('516', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22499 INSERT INTO `marc_subfield_structure` VALUES ('516', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22500 INSERT INTO `marc_subfield_structure` VALUES ('516', 'a', 'Type of computer file or data note', 'Type of computer file or data note', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22501 INSERT INTO `marc_subfield_structure` VALUES ('517', 'a', 'Different formats', 'Different formats', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22502 INSERT INTO `marc_subfield_structure` VALUES ('517', 'b', 'Content descriptors', 'Content descriptors', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22503 INSERT INTO `marc_subfield_structure` VALUES ('517', 'c', 'Additional animation techniques', 'Additional animation techniques', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22504 INSERT INTO `marc_subfield_structure` VALUES ('518', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22505 INSERT INTO `marc_subfield_structure` VALUES ('518', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22506 INSERT INTO `marc_subfield_structure` VALUES ('518', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22507 INSERT INTO `marc_subfield_structure` VALUES ('518', 'a', 'Date/time and place of an event note', 'Date/time and place of an event note', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22508 INSERT INTO `marc_subfield_structure` VALUES ('520', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22509 INSERT INTO `marc_subfield_structure` VALUES ('520', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22510 INSERT INTO `marc_subfield_structure` VALUES ('520', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22511 INSERT INTO `marc_subfield_structure` VALUES ('520', 'a', 'Summary, etc', 'Summary, etc', 0, 0, 'biblio.abstract', 5, '', '', '', NULL, -1, 'AR', '', '');
22512 INSERT INTO `marc_subfield_structure` VALUES ('520', 'b', 'Expansion of summary note', 'Expansion of summary note', 0, 0, '', 5, '', '', '', NULL, -1, 'AR', '', '');
22513 INSERT INTO `marc_subfield_structure` VALUES ('520', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'AR', '', '');
22514 INSERT INTO `marc_subfield_structure` VALUES ('520', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22515 INSERT INTO `marc_subfield_structure` VALUES ('521', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22516 INSERT INTO `marc_subfield_structure` VALUES ('521', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22517 INSERT INTO `marc_subfield_structure` VALUES ('521', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22518 INSERT INTO `marc_subfield_structure` VALUES ('521', 'a', 'Target audience note', 'Target audience note', 1, 0, NULL, 5, NULL, NULL, '', NULL, 0, 'AR', '', '');
22519 INSERT INTO `marc_subfield_structure` VALUES ('521', 'b', 'Source', 'Source', 0, 0, NULL, 5, NULL, NULL, '', NULL, 0, 'AR', '', '');
22520 INSERT INTO `marc_subfield_structure` VALUES ('522', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22521 INSERT INTO `marc_subfield_structure` VALUES ('522', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22522 INSERT INTO `marc_subfield_structure` VALUES ('522', 'a', 'Geographic coverage note', 'Geographic coverage note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'AR', '', '');
22523 INSERT INTO `marc_subfield_structure` VALUES ('523', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22524 INSERT INTO `marc_subfield_structure` VALUES ('523', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22525 INSERT INTO `marc_subfield_structure` VALUES ('523', 'a', 'Time period of content note', 'Time period of content note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22526 INSERT INTO `marc_subfield_structure` VALUES ('524', '2', 'Source of schema used', 'Source of schema used', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22527 INSERT INTO `marc_subfield_structure` VALUES ('524', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22528 INSERT INTO `marc_subfield_structure` VALUES ('524', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22529 INSERT INTO `marc_subfield_structure` VALUES ('524', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22530 INSERT INTO `marc_subfield_structure` VALUES ('524', 'a', 'Preferred citation of described materials note', 'Preferred citation of described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22531 INSERT INTO `marc_subfield_structure` VALUES ('525', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22532 INSERT INTO `marc_subfield_structure` VALUES ('525', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22533 INSERT INTO `marc_subfield_structure` VALUES ('525', 'a', 'Supplement note', 'Supplement note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22534 INSERT INTO `marc_subfield_structure` VALUES ('525', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22535 INSERT INTO `marc_subfield_structure` VALUES ('526', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22536 INSERT INTO `marc_subfield_structure` VALUES ('526', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22537 INSERT INTO `marc_subfield_structure` VALUES ('526', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22538 INSERT INTO `marc_subfield_structure` VALUES ('526', 'a', 'Program name', 'Program name', 0, 0, '', 5, '', '', '', NULL, -1, 'AR', '', '');
22539 INSERT INTO `marc_subfield_structure` VALUES ('526', 'b', 'Interest level', 'Interest level', 0, 0, '', 5, '', '', '', NULL, -1, 'AR', '', '');
22540 INSERT INTO `marc_subfield_structure` VALUES ('526', 'c', 'Reading level', 'Reading level', 0, 0, '', 5, '', '', '', NULL, -1, 'AR', '', '');
22541 INSERT INTO `marc_subfield_structure` VALUES ('526', 'd', 'Title point value', 'Title point value', 0, 0, '', 5, '', '', '', NULL, -1, 'AR', '', '');
22542 INSERT INTO `marc_subfield_structure` VALUES ('526', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22543 INSERT INTO `marc_subfield_structure` VALUES ('526', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 5, '', '', '', NULL, 6, 'AR', '', '');
22544 INSERT INTO `marc_subfield_structure` VALUES ('526', 'z', 'Public note', 'Public note', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22545 INSERT INTO `marc_subfield_structure` VALUES ('527', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22546 INSERT INTO `marc_subfield_structure` VALUES ('527', 'a', 'Censorship note', 'Censorship note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22547 INSERT INTO `marc_subfield_structure` VALUES ('530', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22548 INSERT INTO `marc_subfield_structure` VALUES ('530', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22549 INSERT INTO `marc_subfield_structure` VALUES ('530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22550 INSERT INTO `marc_subfield_structure` VALUES ('530', 'a', 'Additional physical form available note', 'Additional physical form available note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22551 INSERT INTO `marc_subfield_structure` VALUES ('530', 'b', 'Availability source', 'Availability source', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22552 INSERT INTO `marc_subfield_structure` VALUES ('530', 'c', 'Availability conditions', 'Availability conditions', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22553 INSERT INTO `marc_subfield_structure` VALUES ('530', 'd', 'Order number', 'Order number', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22554 INSERT INTO `marc_subfield_structure` VALUES ('530', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'AR', '', '');
22555 INSERT INTO `marc_subfield_structure` VALUES ('530', 'z', 'Source of note information (AM CF VM SE) [OBSOLETE]', 'Source of note information (AM CF VM SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22556 INSERT INTO `marc_subfield_structure` VALUES ('533', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22557 INSERT INTO `marc_subfield_structure` VALUES ('533', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22558 INSERT INTO `marc_subfield_structure` VALUES ('533', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22559 INSERT INTO `marc_subfield_structure` VALUES ('533', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22560 INSERT INTO `marc_subfield_structure` VALUES ('533', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22561 INSERT INTO `marc_subfield_structure` VALUES ('533', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22562 INSERT INTO `marc_subfield_structure` VALUES ('533', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22563 INSERT INTO `marc_subfield_structure` VALUES ('533', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22564 INSERT INTO `marc_subfield_structure` VALUES ('533', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22565 INSERT INTO `marc_subfield_structure` VALUES ('533', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22566 INSERT INTO `marc_subfield_structure` VALUES ('533', 'm', 'Dates and/or sequential designation of issues reproduced', 'Dates and/or sequential designation of issues reproduced', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22567 INSERT INTO `marc_subfield_structure` VALUES ('533', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22568 INSERT INTO `marc_subfield_structure` VALUES ('534', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22569 INSERT INTO `marc_subfield_structure` VALUES ('534', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22570 INSERT INTO `marc_subfield_structure` VALUES ('534', 'a', 'Main entry of original', 'Main entry of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22571 INSERT INTO `marc_subfield_structure` VALUES ('534', 'b', 'Edition statement of original', 'Edition statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22572 INSERT INTO `marc_subfield_structure` VALUES ('534', 'c', 'Publication, distribution, etc', 'Publication, distribution, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22573 INSERT INTO `marc_subfield_structure` VALUES ('534', 'e', 'Physical description, etc', 'Physical description, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22574 INSERT INTO `marc_subfield_structure` VALUES ('534', 'f', 'Series statement of original', 'Series statement of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22575 INSERT INTO `marc_subfield_structure` VALUES ('534', 'k', 'Key title of original', 'Key title of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22576 INSERT INTO `marc_subfield_structure` VALUES ('534', 'l', 'Location of original', 'Location of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22577 INSERT INTO `marc_subfield_structure` VALUES ('534', 'm', 'Material specific details', 'Material specific details', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22578 INSERT INTO `marc_subfield_structure` VALUES ('534', 'n', 'Note about original', 'Note about original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22579 INSERT INTO `marc_subfield_structure` VALUES ('534', 'p', 'Introductory phrase', 'Introductory phrase', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22580 INSERT INTO `marc_subfield_structure` VALUES ('534', 't', 'Title statement of original', 'Title statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22581 INSERT INTO `marc_subfield_structure` VALUES ('534', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22582 INSERT INTO `marc_subfield_structure` VALUES ('534', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22583 INSERT INTO `marc_subfield_structure` VALUES ('535', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22584 INSERT INTO `marc_subfield_structure` VALUES ('535', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22585 INSERT INTO `marc_subfield_structure` VALUES ('535', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22586 INSERT INTO `marc_subfield_structure` VALUES ('535', 'a', 'Custodian', 'Custodian', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22587 INSERT INTO `marc_subfield_structure` VALUES ('535', 'b', 'Postal address', 'Postal address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22588 INSERT INTO `marc_subfield_structure` VALUES ('535', 'c', 'Country', 'Country', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22589 INSERT INTO `marc_subfield_structure` VALUES ('535', 'd', 'Telecommunications address', 'Telecommunications address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22590 INSERT INTO `marc_subfield_structure` VALUES ('535', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22591 INSERT INTO `marc_subfield_structure` VALUES ('536', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22592 INSERT INTO `marc_subfield_structure` VALUES ('536', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22593 INSERT INTO `marc_subfield_structure` VALUES ('536', 'a', 'Text of note', 'Text of note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22594 INSERT INTO `marc_subfield_structure` VALUES ('536', 'b', 'Contract number', 'Contract number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22595 INSERT INTO `marc_subfield_structure` VALUES ('536', 'c', 'Grant number', 'Grant number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22596 INSERT INTO `marc_subfield_structure` VALUES ('536', 'd', 'Undifferentiated number', 'Undifferentiated number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22597 INSERT INTO `marc_subfield_structure` VALUES ('536', 'e', 'Program element number', 'Program element number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22598 INSERT INTO `marc_subfield_structure` VALUES ('536', 'f', 'Project number', 'Project number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22599 INSERT INTO `marc_subfield_structure` VALUES ('536', 'g', 'Task number', 'Task number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22600 INSERT INTO `marc_subfield_structure` VALUES ('536', 'h', 'Work unit number', 'Work unit number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22601 INSERT INTO `marc_subfield_structure` VALUES ('537', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22602 INSERT INTO `marc_subfield_structure` VALUES ('537', 'a', 'Source of data note', 'Source of data note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22603 INSERT INTO `marc_subfield_structure` VALUES ('538', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22604 INSERT INTO `marc_subfield_structure` VALUES ('538', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22605 INSERT INTO `marc_subfield_structure` VALUES ('538', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22606 INSERT INTO `marc_subfield_structure` VALUES ('538', 'a', 'System details note', 'System details note', 0, 0, '', 5, '', '', '', NULL, -1, 'AR', '', '');
22607 INSERT INTO `marc_subfield_structure` VALUES ('538', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -1, 'AR', '', '');
22608 INSERT INTO `marc_subfield_structure` VALUES ('538', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'AR', '', '');
22609 INSERT INTO `marc_subfield_structure` VALUES ('540', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22610 INSERT INTO `marc_subfield_structure` VALUES ('540', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22611 INSERT INTO `marc_subfield_structure` VALUES ('540', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22612 INSERT INTO `marc_subfield_structure` VALUES ('540', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22613 INSERT INTO `marc_subfield_structure` VALUES ('540', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22614 INSERT INTO `marc_subfield_structure` VALUES ('540', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22615 INSERT INTO `marc_subfield_structure` VALUES ('540', 'c', 'Authorization', 'Authorization', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22616 INSERT INTO `marc_subfield_structure` VALUES ('540', 'd', 'Authorized users', 'Authorized users', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22617 INSERT INTO `marc_subfield_structure` VALUES ('540', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'AR', '', '');
22618 INSERT INTO `marc_subfield_structure` VALUES ('541', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
22619 INSERT INTO `marc_subfield_structure` VALUES ('541', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
22620 INSERT INTO `marc_subfield_structure` VALUES ('541', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
22621 INSERT INTO `marc_subfield_structure` VALUES ('541', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
22622 INSERT INTO `marc_subfield_structure` VALUES ('541', 'a', 'Source of acquisition', 'Source of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'AR', '', '');
22623 INSERT INTO `marc_subfield_structure` VALUES ('541', 'b', 'Address', 'Address', 0, 0, '', 9, '', '', '', NULL, 1, 'AR', '', '');
22624 INSERT INTO `marc_subfield_structure` VALUES ('541', 'c', 'Method of acquisition', 'Method of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'AR', '', '');
22625 INSERT INTO `marc_subfield_structure` VALUES ('541', 'd', 'Date of acquisition', 'Date of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'AR', '', '');
22626 INSERT INTO `marc_subfield_structure` VALUES ('541', 'e', 'Accession number', 'Accession number', 0, 0, '', 9, '', '', '', NULL, 1, 'AR', '', '');
22627 INSERT INTO `marc_subfield_structure` VALUES ('541', 'f', 'Owner', 'Owner', 0, 0, '', 9, '', '', '', NULL, 1, 'AR', '', '');
22628 INSERT INTO `marc_subfield_structure` VALUES ('541', 'h', 'Purchase price', 'Purchase price', 0, 0, '', 9, '', '', '', NULL, 1, 'AR', '', '');
22629 INSERT INTO `marc_subfield_structure` VALUES ('541', 'n', 'Extent', 'Extent', 0, 0, '', 9, '', '', '', NULL, 1, 'AR', '', '');
22630 INSERT INTO `marc_subfield_structure` VALUES ('541', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, 1, 'AR', '', '');
22631 INSERT INTO `marc_subfield_structure` VALUES ('543', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22632 INSERT INTO `marc_subfield_structure` VALUES ('543', 'a', 'Solicitation information note', 'Solicitation information note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22633 INSERT INTO `marc_subfield_structure` VALUES ('544', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22634 INSERT INTO `marc_subfield_structure` VALUES ('544', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22635 INSERT INTO `marc_subfield_structure` VALUES ('544', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22636 INSERT INTO `marc_subfield_structure` VALUES ('544', 'a', 'Custodian', 'Custodian', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22637 INSERT INTO `marc_subfield_structure` VALUES ('544', 'b', 'Address', 'Address', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22638 INSERT INTO `marc_subfield_structure` VALUES ('544', 'c', 'Country', 'Country', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22639 INSERT INTO `marc_subfield_structure` VALUES ('544', 'd', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22640 INSERT INTO `marc_subfield_structure` VALUES ('544', 'e', 'Provenance', 'Provenance', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22641 INSERT INTO `marc_subfield_structure` VALUES ('544', 'n', 'Note', 'Note', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22642 INSERT INTO `marc_subfield_structure` VALUES ('545', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22643 INSERT INTO `marc_subfield_structure` VALUES ('545', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22644 INSERT INTO `marc_subfield_structure` VALUES ('545', 'a', 'Biographical or historical note', 'Biographical or historical note', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22645 INSERT INTO `marc_subfield_structure` VALUES ('545', 'b', 'Expansion', 'Expansion', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22646 INSERT INTO `marc_subfield_structure` VALUES ('545', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'AR', '', '');
22647 INSERT INTO `marc_subfield_structure` VALUES ('546', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22648 INSERT INTO `marc_subfield_structure` VALUES ('546', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22649 INSERT INTO `marc_subfield_structure` VALUES ('546', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22650 INSERT INTO `marc_subfield_structure` VALUES ('546', 'a', 'Language note', 'Language note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'AR', '', '');
22651 INSERT INTO `marc_subfield_structure` VALUES ('546', 'b', 'Information code or alphabet', 'Information code or alphabet', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'AR', '', '');
22652 INSERT INTO `marc_subfield_structure` VALUES ('546', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22653 INSERT INTO `marc_subfield_structure` VALUES ('547', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22654 INSERT INTO `marc_subfield_structure` VALUES ('547', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22655 INSERT INTO `marc_subfield_structure` VALUES ('547', 'a', 'Former title complexity note', 'Former title complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22656 INSERT INTO `marc_subfield_structure` VALUES ('547', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22657 INSERT INTO `marc_subfield_structure` VALUES ('550', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22658 INSERT INTO `marc_subfield_structure` VALUES ('550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22659 INSERT INTO `marc_subfield_structure` VALUES ('550', 'a', 'Issuing body note', 'Issuing body note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22660 INSERT INTO `marc_subfield_structure` VALUES ('550', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22661 INSERT INTO `marc_subfield_structure` VALUES ('552', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22662 INSERT INTO `marc_subfield_structure` VALUES ('552', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22663 INSERT INTO `marc_subfield_structure` VALUES ('552', 'a', 'Entity type label', 'Entity type label', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22664 INSERT INTO `marc_subfield_structure` VALUES ('552', 'b', 'Entity type definition and source', 'Entity type definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22665 INSERT INTO `marc_subfield_structure` VALUES ('552', 'c', 'Attribute label', 'Attribute label', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22666 INSERT INTO `marc_subfield_structure` VALUES ('552', 'd', 'Attribute definition and source', 'Attribute definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22667 INSERT INTO `marc_subfield_structure` VALUES ('552', 'e', 'Enumerated domain value', 'Enumerated domain value', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22668 INSERT INTO `marc_subfield_structure` VALUES ('552', 'f', 'Enumerated domain value definition and source', 'Enumerated domain value definition and source', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22669 INSERT INTO `marc_subfield_structure` VALUES ('552', 'g', 'Range domain minimum and maximum', 'Range domain minimum and maximum', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22670 INSERT INTO `marc_subfield_structure` VALUES ('552', 'h', 'Codeset name and source', 'Codeset name and source', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22671 INSERT INTO `marc_subfield_structure` VALUES ('552', 'i', 'Unrepresentable domain', 'Unrepresentable domain', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22672 INSERT INTO `marc_subfield_structure` VALUES ('552', 'j', 'Attribute units of measurement and resolution', 'Attribute units of measurement and resolution', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22673 INSERT INTO `marc_subfield_structure` VALUES ('552', 'k', 'Beginning date and ending date of attribute values', 'Beginning date and ending date of attribute values', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22674 INSERT INTO `marc_subfield_structure` VALUES ('552', 'l', 'Attribute value accuracy', 'Attribute value accuracy', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22675 INSERT INTO `marc_subfield_structure` VALUES ('552', 'm', 'Attribute value accuracy explanation', 'Attribute value accuracy explanation', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22676 INSERT INTO `marc_subfield_structure` VALUES ('552', 'n', 'Attribute measurement frequency', 'Attribute measurement frequency', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22677 INSERT INTO `marc_subfield_structure` VALUES ('552', 'o', 'Entity and attribute overview', 'Entity and attribute overview', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22678 INSERT INTO `marc_subfield_structure` VALUES ('552', 'p', 'Entity and attribute detail citation', 'Entity and attribute detail citation', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22679 INSERT INTO `marc_subfield_structure` VALUES ('552', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'AR', '', '');
22680 INSERT INTO `marc_subfield_structure` VALUES ('552', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22681 INSERT INTO `marc_subfield_structure` VALUES ('555', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22682 INSERT INTO `marc_subfield_structure` VALUES ('555', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22683 INSERT INTO `marc_subfield_structure` VALUES ('555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22684 INSERT INTO `marc_subfield_structure` VALUES ('555', 'a', 'Cumulative index/finding aids note', 'Cumulative index/finding aids note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22685 INSERT INTO `marc_subfield_structure` VALUES ('555', 'b', 'Availability source', 'Availability source', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22686 INSERT INTO `marc_subfield_structure` VALUES ('555', 'c', 'Degree of control', 'Degree of control', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22687 INSERT INTO `marc_subfield_structure` VALUES ('555', 'd', 'Bibliographic reference', 'Bibliographic reference', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22688 INSERT INTO `marc_subfield_structure` VALUES ('555', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'AR', '', '');
22689 INSERT INTO `marc_subfield_structure` VALUES ('556', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22690 INSERT INTO `marc_subfield_structure` VALUES ('556', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22691 INSERT INTO `marc_subfield_structure` VALUES ('556', 'a', 'Information about documentation note', 'Information about documentation note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22692 INSERT INTO `marc_subfield_structure` VALUES ('556', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22693 INSERT INTO `marc_subfield_structure` VALUES ('561', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22694 INSERT INTO `marc_subfield_structure` VALUES ('561', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22695 INSERT INTO `marc_subfield_structure` VALUES ('561', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22696 INSERT INTO `marc_subfield_structure` VALUES ('561', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22697 INSERT INTO `marc_subfield_structure` VALUES ('561', 'a', 'History', 'History', 0, 0, '', 5, '', '', '', NULL, 6, 'AR', '', '');
22698 INSERT INTO `marc_subfield_structure` VALUES ('561', 'b', 'Time of collation [OBSOLETE]', 'Time of collation [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, 6, 'AR', '', '');
22699 INSERT INTO `marc_subfield_structure` VALUES ('562', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22700 INSERT INTO `marc_subfield_structure` VALUES ('562', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'AR', '', '');
22701 INSERT INTO `marc_subfield_structure` VALUES ('562', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22702 INSERT INTO `marc_subfield_structure` VALUES ('562', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22703 INSERT INTO `marc_subfield_structure` VALUES ('562', 'a', 'Identifying markings', 'Identifying markings', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22704 INSERT INTO `marc_subfield_structure` VALUES ('562', 'b', 'Copy identification', 'Copy identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22705 INSERT INTO `marc_subfield_structure` VALUES ('562', 'c', 'Version identification', 'Version identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22706 INSERT INTO `marc_subfield_structure` VALUES ('562', 'd', 'Presentation format', 'Presentation format', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22707 INSERT INTO `marc_subfield_structure` VALUES ('562', 'e', 'Number of copies', 'Number of copies', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22708 INSERT INTO `marc_subfield_structure` VALUES ('563', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22709 INSERT INTO `marc_subfield_structure` VALUES ('563', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'AR', '', '');
22710 INSERT INTO `marc_subfield_structure` VALUES ('563', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22711 INSERT INTO `marc_subfield_structure` VALUES ('563', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22712 INSERT INTO `marc_subfield_structure` VALUES ('563', 'a', 'Binding note', 'Binding note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22713 INSERT INTO `marc_subfield_structure` VALUES ('563', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'AR', '', '');
22714 INSERT INTO `marc_subfield_structure` VALUES ('565', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22715 INSERT INTO `marc_subfield_structure` VALUES ('565', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22716 INSERT INTO `marc_subfield_structure` VALUES ('565', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22717 INSERT INTO `marc_subfield_structure` VALUES ('565', 'a', 'Number of cases/variables', 'Number of cases/variables', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22718 INSERT INTO `marc_subfield_structure` VALUES ('565', 'b', 'Name of variable', 'Name of variable', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22719 INSERT INTO `marc_subfield_structure` VALUES ('565', 'c', 'Unit of analysis', 'Unit of analysis', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22720 INSERT INTO `marc_subfield_structure` VALUES ('565', 'd', 'Universe of data', 'Universe of data', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22721 INSERT INTO `marc_subfield_structure` VALUES ('565', 'e', 'Filing scheme or code', 'Filing scheme or code', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22722 INSERT INTO `marc_subfield_structure` VALUES ('567', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22723 INSERT INTO `marc_subfield_structure` VALUES ('567', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22724 INSERT INTO `marc_subfield_structure` VALUES ('567', 'a', 'Methodology note', 'Methodology note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22725 INSERT INTO `marc_subfield_structure` VALUES ('570', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22726 INSERT INTO `marc_subfield_structure` VALUES ('570', 'a', 'Editor note', 'Editor note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22727 INSERT INTO `marc_subfield_structure` VALUES ('570', 'z', 'Source of note information', 'Source of note information', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22728 INSERT INTO `marc_subfield_structure` VALUES ('580', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22729 INSERT INTO `marc_subfield_structure` VALUES ('580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22730 INSERT INTO `marc_subfield_structure` VALUES ('580', 'a', 'Linking entry complexity note', 'Linking entry complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22731 INSERT INTO `marc_subfield_structure` VALUES ('580', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22732 INSERT INTO `marc_subfield_structure` VALUES ('581', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22733 INSERT INTO `marc_subfield_structure` VALUES ('581', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22734 INSERT INTO `marc_subfield_structure` VALUES ('581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22735 INSERT INTO `marc_subfield_structure` VALUES ('581', 'a', 'Publications about described materials note', 'Publications about described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22736 INSERT INTO `marc_subfield_structure` VALUES ('581', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22737 INSERT INTO `marc_subfield_structure` VALUES ('582', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22738 INSERT INTO `marc_subfield_structure` VALUES ('582', 'a', 'Related computer files note', 'Related computer files note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22739 INSERT INTO `marc_subfield_structure` VALUES ('583', '2', 'Source of term', 'Source of term', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
22740 INSERT INTO `marc_subfield_structure` VALUES ('583', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
22741 INSERT INTO `marc_subfield_structure` VALUES ('583', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
22742 INSERT INTO `marc_subfield_structure` VALUES ('583', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
22743 INSERT INTO `marc_subfield_structure` VALUES ('583', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
22744 INSERT INTO `marc_subfield_structure` VALUES ('583', 'a', 'Action', 'Action', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22745 INSERT INTO `marc_subfield_structure` VALUES ('583', 'b', 'Action identification', 'Action identification', 1, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22746 INSERT INTO `marc_subfield_structure` VALUES ('583', 'c', 'Time/date of action', 'Time/date of action', 1, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22747 INSERT INTO `marc_subfield_structure` VALUES ('583', 'd', 'Action interval', 'Action interval', 1, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22748 INSERT INTO `marc_subfield_structure` VALUES ('583', 'e', 'Contingency for action', 'Contingency for action', 1, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22749 INSERT INTO `marc_subfield_structure` VALUES ('583', 'f', 'Authorization', 'Authorization', 1, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22750 INSERT INTO `marc_subfield_structure` VALUES ('583', 'h', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22751 INSERT INTO `marc_subfield_structure` VALUES ('583', 'i', 'Method of action', 'Method of action', 1, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22752 INSERT INTO `marc_subfield_structure` VALUES ('583', 'j', 'Site of action', 'Site of action', 1, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22753 INSERT INTO `marc_subfield_structure` VALUES ('583', 'k', 'Action agent', 'Action agent', 1, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22754 INSERT INTO `marc_subfield_structure` VALUES ('583', 'l', 'Status', 'Status', 1, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22755 INSERT INTO `marc_subfield_structure` VALUES ('583', 'n', 'Extent', 'Extent', 1, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22756 INSERT INTO `marc_subfield_structure` VALUES ('583', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22757 INSERT INTO `marc_subfield_structure` VALUES ('583', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -1, 'AR', '', '');
22758 INSERT INTO `marc_subfield_structure` VALUES ('583', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', NULL, 4, 'AR', '', '');
22759 INSERT INTO `marc_subfield_structure` VALUES ('583', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', NULL, -1, 'AR', '', '');
22760 INSERT INTO `marc_subfield_structure` VALUES ('584', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22761 INSERT INTO `marc_subfield_structure` VALUES ('584', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22762 INSERT INTO `marc_subfield_structure` VALUES ('584', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22763 INSERT INTO `marc_subfield_structure` VALUES ('584', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22764 INSERT INTO `marc_subfield_structure` VALUES ('584', 'a', 'Accumulation', 'Accumulation', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22765 INSERT INTO `marc_subfield_structure` VALUES ('584', 'b', 'Frequency of use', 'Frequency of use', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22766 INSERT INTO `marc_subfield_structure` VALUES ('585', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22767 INSERT INTO `marc_subfield_structure` VALUES ('585', '5', 'Institution to which field applies', 'Institution to which field applies', 0, -6, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22768 INSERT INTO `marc_subfield_structure` VALUES ('585', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22769 INSERT INTO `marc_subfield_structure` VALUES ('585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22770 INSERT INTO `marc_subfield_structure` VALUES ('585', 'a', 'Exhibitions note', 'Exhibitions note', 0, 0, '', 5, '', '', '', NULL, -6, 'AR', '', '');
22771 INSERT INTO `marc_subfield_structure` VALUES ('586', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22772 INSERT INTO `marc_subfield_structure` VALUES ('586', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22773 INSERT INTO `marc_subfield_structure` VALUES ('586', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22774 INSERT INTO `marc_subfield_structure` VALUES ('586', 'a', 'Awards note', 'Awards note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'AR', '', '');
22775 INSERT INTO `marc_subfield_structure` VALUES ('590', '6', 'Linkage (RLIN)', 'Linkage (RLIN)', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22776 INSERT INTO `marc_subfield_structure` VALUES ('590', '8', 'Field link and sequence number (RLIN)', 'Field link and sequence number (RLIN)', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22777 INSERT INTO `marc_subfield_structure` VALUES ('590', 'a', 'Local note', 'Local note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22778 INSERT INTO `marc_subfield_structure` VALUES ('590', 'b', 'Provenance (VM) [OBSOLETE]', 'Provenance (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22779 INSERT INTO `marc_subfield_structure` VALUES ('590', 'c', 'Condition of individual reels (VM) [OBSOLETE]', 'Condition of individual reels (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22780 INSERT INTO `marc_subfield_structure` VALUES ('590', 'd', 'Origin of safety copy (VM) [OBSOLETE]', 'Origin of safety copy (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'AR', '', '');
22781 INSERT INTO `marc_subfield_structure` VALUES ('600', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22782 INSERT INTO `marc_subfield_structure` VALUES ('600', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22783 INSERT INTO `marc_subfield_structure` VALUES ('600', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22784 INSERT INTO `marc_subfield_structure` VALUES ('600', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22785 INSERT INTO `marc_subfield_structure` VALUES ('600', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22786 INSERT INTO `marc_subfield_structure` VALUES ('600', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
22787 INSERT INTO `marc_subfield_structure` VALUES ('600', 'a', 'Personal name', 'Personal name', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22788 INSERT INTO `marc_subfield_structure` VALUES ('600', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22789 INSERT INTO `marc_subfield_structure` VALUES ('600', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22790 INSERT INTO `marc_subfield_structure` VALUES ('600', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22791 INSERT INTO `marc_subfield_structure` VALUES ('600', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22792 INSERT INTO `marc_subfield_structure` VALUES ('600', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22793 INSERT INTO `marc_subfield_structure` VALUES ('600', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22794 INSERT INTO `marc_subfield_structure` VALUES ('600', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22795 INSERT INTO `marc_subfield_structure` VALUES ('600', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22796 INSERT INTO `marc_subfield_structure` VALUES ('600', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22797 INSERT INTO `marc_subfield_structure` VALUES ('600', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22798 INSERT INTO `marc_subfield_structure` VALUES ('600', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22799 INSERT INTO `marc_subfield_structure` VALUES ('600', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22800 INSERT INTO `marc_subfield_structure` VALUES ('600', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22801 INSERT INTO `marc_subfield_structure` VALUES ('600', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22802 INSERT INTO `marc_subfield_structure` VALUES ('600', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22803 INSERT INTO `marc_subfield_structure` VALUES ('600', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22804 INSERT INTO `marc_subfield_structure` VALUES ('600', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22805 INSERT INTO `marc_subfield_structure` VALUES ('600', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22806 INSERT INTO `marc_subfield_structure` VALUES ('600', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22807 INSERT INTO `marc_subfield_structure` VALUES ('600', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22808 INSERT INTO `marc_subfield_structure` VALUES ('600', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22809 INSERT INTO `marc_subfield_structure` VALUES ('600', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22810 INSERT INTO `marc_subfield_structure` VALUES ('600', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22811 INSERT INTO `marc_subfield_structure` VALUES ('610', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22812 INSERT INTO `marc_subfield_structure` VALUES ('610', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22813 INSERT INTO `marc_subfield_structure` VALUES ('610', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22814 INSERT INTO `marc_subfield_structure` VALUES ('610', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22815 INSERT INTO `marc_subfield_structure` VALUES ('610', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22816 INSERT INTO `marc_subfield_structure` VALUES ('610', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
22817 INSERT INTO `marc_subfield_structure` VALUES ('610', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22818 INSERT INTO `marc_subfield_structure` VALUES ('610', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22819 INSERT INTO `marc_subfield_structure` VALUES ('610', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22820 INSERT INTO `marc_subfield_structure` VALUES ('610', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22821 INSERT INTO `marc_subfield_structure` VALUES ('610', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22822 INSERT INTO `marc_subfield_structure` VALUES ('610', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22823 INSERT INTO `marc_subfield_structure` VALUES ('610', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22824 INSERT INTO `marc_subfield_structure` VALUES ('610', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22825 INSERT INTO `marc_subfield_structure` VALUES ('610', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22826 INSERT INTO `marc_subfield_structure` VALUES ('610', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22827 INSERT INTO `marc_subfield_structure` VALUES ('610', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22828 INSERT INTO `marc_subfield_structure` VALUES ('610', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22829 INSERT INTO `marc_subfield_structure` VALUES ('610', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22830 INSERT INTO `marc_subfield_structure` VALUES ('610', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22831 INSERT INTO `marc_subfield_structure` VALUES ('610', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22832 INSERT INTO `marc_subfield_structure` VALUES ('610', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22833 INSERT INTO `marc_subfield_structure` VALUES ('610', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22834 INSERT INTO `marc_subfield_structure` VALUES ('610', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22835 INSERT INTO `marc_subfield_structure` VALUES ('610', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22836 INSERT INTO `marc_subfield_structure` VALUES ('610', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22837 INSERT INTO `marc_subfield_structure` VALUES ('610', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22838 INSERT INTO `marc_subfield_structure` VALUES ('610', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22839 INSERT INTO `marc_subfield_structure` VALUES ('611', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22840 INSERT INTO `marc_subfield_structure` VALUES ('611', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22841 INSERT INTO `marc_subfield_structure` VALUES ('611', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22842 INSERT INTO `marc_subfield_structure` VALUES ('611', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22843 INSERT INTO `marc_subfield_structure` VALUES ('611', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22844 INSERT INTO `marc_subfield_structure` VALUES ('611', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
22845 INSERT INTO `marc_subfield_structure` VALUES ('611', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22846 INSERT INTO `marc_subfield_structure` VALUES ('611', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'AR', '', '');
22847 INSERT INTO `marc_subfield_structure` VALUES ('611', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22848 INSERT INTO `marc_subfield_structure` VALUES ('611', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22849 INSERT INTO `marc_subfield_structure` VALUES ('611', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22850 INSERT INTO `marc_subfield_structure` VALUES ('611', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22851 INSERT INTO `marc_subfield_structure` VALUES ('611', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22852 INSERT INTO `marc_subfield_structure` VALUES ('611', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22853 INSERT INTO `marc_subfield_structure` VALUES ('611', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22854 INSERT INTO `marc_subfield_structure` VALUES ('611', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22855 INSERT INTO `marc_subfield_structure` VALUES ('611', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22856 INSERT INTO `marc_subfield_structure` VALUES ('611', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22857 INSERT INTO `marc_subfield_structure` VALUES ('611', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22858 INSERT INTO `marc_subfield_structure` VALUES ('611', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22859 INSERT INTO `marc_subfield_structure` VALUES ('611', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22860 INSERT INTO `marc_subfield_structure` VALUES ('611', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22861 INSERT INTO `marc_subfield_structure` VALUES ('611', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22862 INSERT INTO `marc_subfield_structure` VALUES ('611', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22863 INSERT INTO `marc_subfield_structure` VALUES ('611', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22864 INSERT INTO `marc_subfield_structure` VALUES ('611', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22865 INSERT INTO `marc_subfield_structure` VALUES ('630', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22866 INSERT INTO `marc_subfield_structure` VALUES ('630', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22867 INSERT INTO `marc_subfield_structure` VALUES ('630', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22868 INSERT INTO `marc_subfield_structure` VALUES ('630', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22869 INSERT INTO `marc_subfield_structure` VALUES ('630', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22870 INSERT INTO `marc_subfield_structure` VALUES ('630', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
22871 INSERT INTO `marc_subfield_structure` VALUES ('630', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22872 INSERT INTO `marc_subfield_structure` VALUES ('630', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22873 INSERT INTO `marc_subfield_structure` VALUES ('630', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22874 INSERT INTO `marc_subfield_structure` VALUES ('630', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22875 INSERT INTO `marc_subfield_structure` VALUES ('630', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22876 INSERT INTO `marc_subfield_structure` VALUES ('630', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22877 INSERT INTO `marc_subfield_structure` VALUES ('630', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22878 INSERT INTO `marc_subfield_structure` VALUES ('630', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22879 INSERT INTO `marc_subfield_structure` VALUES ('630', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22880 INSERT INTO `marc_subfield_structure` VALUES ('630', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22881 INSERT INTO `marc_subfield_structure` VALUES ('630', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22882 INSERT INTO `marc_subfield_structure` VALUES ('630', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22883 INSERT INTO `marc_subfield_structure` VALUES ('630', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22884 INSERT INTO `marc_subfield_structure` VALUES ('630', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22885 INSERT INTO `marc_subfield_structure` VALUES ('630', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22886 INSERT INTO `marc_subfield_structure` VALUES ('630', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22887 INSERT INTO `marc_subfield_structure` VALUES ('630', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22888 INSERT INTO `marc_subfield_structure` VALUES ('630', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22889 INSERT INTO `marc_subfield_structure` VALUES ('630', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22890 INSERT INTO `marc_subfield_structure` VALUES ('648', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22891 INSERT INTO `marc_subfield_structure` VALUES ('648', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22892 INSERT INTO `marc_subfield_structure` VALUES ('648', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22893 INSERT INTO `marc_subfield_structure` VALUES ('648', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22894 INSERT INTO `marc_subfield_structure` VALUES ('648', 'a', 'Chronological term', 'Chronological term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22895 INSERT INTO `marc_subfield_structure` VALUES ('648', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22896 INSERT INTO `marc_subfield_structure` VALUES ('648', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22897 INSERT INTO `marc_subfield_structure` VALUES ('648', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22898 INSERT INTO `marc_subfield_structure` VALUES ('648', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22899 INSERT INTO `marc_subfield_structure` VALUES ('650', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, 0, 'AR', '', '');
22900 INSERT INTO `marc_subfield_structure` VALUES ('650', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'AR', '', '');
22901 INSERT INTO `marc_subfield_structure` VALUES ('650', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22902 INSERT INTO `marc_subfield_structure` VALUES ('650', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'AR', '', '');
22903 INSERT INTO `marc_subfield_structure` VALUES ('650', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'AR', '', '');
22904 INSERT INTO `marc_subfield_structure` VALUES ('650', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
22905 INSERT INTO `marc_subfield_structure` VALUES ('650', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 'bibliosubject.subject', 6, '', '', '', 0, 0, 'AR', '''6003'',''600a'',''600b'',''600c'',''600d'',''600e'',''600f'',''600g'',''600h'',''600k'',''600l'',''600m'',''600n'',''600o'',''600p'',''600r'',''600s'',''600t'',''600u'',''600x'',''600z'',''600y'',''600v'',''6103'',''610a'',''610b'',''610c'',''610d'',''610e'',''610f'',''610g'',''610h'',''610k'',''610l'',''610m'',''610n'',''610o'',''610p'',''610r'',''610s'',''610t'',''610u'',''610x'',''610z'',''610y'',''610v'',''6113'',''611a'',''611b'',''611c'',''611d'',''611e'',''611f'',''611g'',''611h'',''611k'',''611l'',''611m'',''611n'',''611o'',''611p'',''611r'',''611s'',''611t'',''611u'',''611x'',''611z'',''611y'',''611v'',''630a'',''630b'',''630c'',''630d'',''630e'',''630f'',''630g'',''630h'',''630k'',''630l'',''630m'',''630n'',''630o'',''630p'',''630r'',''630s'',''630t'',''630x'',''630z'',''630y'',''630v'',''6483'',''648a'',''648x'',''648z'',''648y'',''648v'',''6503'',''650b'',''650c'',''650d'',''650e'',''650x'',''650z'',''650y'',''650v'',''6513'',''651a'',''651b'',''651c'',''651d'',''651e'',''651x'',''651z'',''651y'',''651v'',''653a'',''6543'',''654a'',''654b'',''654x'',''654z'',''654y'',''654v'',''6553'',''655a'',''655b'',''655x'',''655z'',''655y'',''655v'',''6563'',''656a'',''656k'',''656x'',''656z'',''656y'',''656v'',''6573'',''657a'',''657x'',''657z'',''657y'',''657v'',''658a'',''658b'',''658c'',''658d'',''658v''', '');
22906 INSERT INTO `marc_subfield_structure` VALUES ('650', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'AR', '', '');
22907 INSERT INTO `marc_subfield_structure` VALUES ('650', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'AR', '', '');
22908 INSERT INTO `marc_subfield_structure` VALUES ('650', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -1, 'AR', '', '');
22909 INSERT INTO `marc_subfield_structure` VALUES ('650', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -1, 'AR', '', '');
22910 INSERT INTO `marc_subfield_structure` VALUES ('650', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'AR', '', '');
22911 INSERT INTO `marc_subfield_structure` VALUES ('650', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'AR', '', '');
22912 INSERT INTO `marc_subfield_structure` VALUES ('650', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'AR', '', '');
22913 INSERT INTO `marc_subfield_structure` VALUES ('650', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'AR', '', '');
22914 INSERT INTO `marc_subfield_structure` VALUES ('651', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22915 INSERT INTO `marc_subfield_structure` VALUES ('651', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22916 INSERT INTO `marc_subfield_structure` VALUES ('651', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22917 INSERT INTO `marc_subfield_structure` VALUES ('651', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22918 INSERT INTO `marc_subfield_structure` VALUES ('651', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22919 INSERT INTO `marc_subfield_structure` VALUES ('651', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
22920 INSERT INTO `marc_subfield_structure` VALUES ('651', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22921 INSERT INTO `marc_subfield_structure` VALUES ('651', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22922 INSERT INTO `marc_subfield_structure` VALUES ('651', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22923 INSERT INTO `marc_subfield_structure` VALUES ('651', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22924 INSERT INTO `marc_subfield_structure` VALUES ('651', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22925 INSERT INTO `marc_subfield_structure` VALUES ('651', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22926 INSERT INTO `marc_subfield_structure` VALUES ('651', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22927 INSERT INTO `marc_subfield_structure` VALUES ('652', 'a', 'Geographic name of place element', 'Geographic name of place element', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22928 INSERT INTO `marc_subfield_structure` VALUES ('652', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22929 INSERT INTO `marc_subfield_structure` VALUES ('652', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22930 INSERT INTO `marc_subfield_structure` VALUES ('652', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22931 INSERT INTO `marc_subfield_structure` VALUES ('653', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22932 INSERT INTO `marc_subfield_structure` VALUES ('653', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
22933 INSERT INTO `marc_subfield_structure` VALUES ('653', 'a', 'Uncontrolled term', 'Uncontrolled term', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'AR', '', '');
22934 INSERT INTO `marc_subfield_structure` VALUES ('654', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22935 INSERT INTO `marc_subfield_structure` VALUES ('654', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22936 INSERT INTO `marc_subfield_structure` VALUES ('654', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22937 INSERT INTO `marc_subfield_structure` VALUES ('654', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22938 INSERT INTO `marc_subfield_structure` VALUES ('654', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22939 INSERT INTO `marc_subfield_structure` VALUES ('654', 'a', 'Focus term', 'Focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22940 INSERT INTO `marc_subfield_structure` VALUES ('654', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22941 INSERT INTO `marc_subfield_structure` VALUES ('654', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22942 INSERT INTO `marc_subfield_structure` VALUES ('654', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22943 INSERT INTO `marc_subfield_structure` VALUES ('654', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22944 INSERT INTO `marc_subfield_structure` VALUES ('654', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22945 INSERT INTO `marc_subfield_structure` VALUES ('654', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22946 INSERT INTO `marc_subfield_structure` VALUES ('654', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22947 INSERT INTO `marc_subfield_structure` VALUES ('655', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22948 INSERT INTO `marc_subfield_structure` VALUES ('655', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22949 INSERT INTO `marc_subfield_structure` VALUES ('655', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22950 INSERT INTO `marc_subfield_structure` VALUES ('655', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22951 INSERT INTO `marc_subfield_structure` VALUES ('655', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22952 INSERT INTO `marc_subfield_structure` VALUES ('655', 'a', 'Genre/form data or focus term', 'Genre/form data or focus term', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22953 INSERT INTO `marc_subfield_structure` VALUES ('655', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22954 INSERT INTO `marc_subfield_structure` VALUES ('655', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22955 INSERT INTO `marc_subfield_structure` VALUES ('655', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22956 INSERT INTO `marc_subfield_structure` VALUES ('655', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22957 INSERT INTO `marc_subfield_structure` VALUES ('655', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22958 INSERT INTO `marc_subfield_structure` VALUES ('655', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22959 INSERT INTO `marc_subfield_structure` VALUES ('656', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22960 INSERT INTO `marc_subfield_structure` VALUES ('656', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22961 INSERT INTO `marc_subfield_structure` VALUES ('656', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22962 INSERT INTO `marc_subfield_structure` VALUES ('656', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22963 INSERT INTO `marc_subfield_structure` VALUES ('656', 'a', 'Occupation', 'Occupation', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22964 INSERT INTO `marc_subfield_structure` VALUES ('656', 'k', 'Form', 'Form', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22965 INSERT INTO `marc_subfield_structure` VALUES ('656', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22966 INSERT INTO `marc_subfield_structure` VALUES ('656', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22967 INSERT INTO `marc_subfield_structure` VALUES ('656', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22968 INSERT INTO `marc_subfield_structure` VALUES ('656', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22969 INSERT INTO `marc_subfield_structure` VALUES ('657', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22970 INSERT INTO `marc_subfield_structure` VALUES ('657', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22971 INSERT INTO `marc_subfield_structure` VALUES ('657', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22972 INSERT INTO `marc_subfield_structure` VALUES ('657', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22973 INSERT INTO `marc_subfield_structure` VALUES ('657', 'a', 'Function', 'Function', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22974 INSERT INTO `marc_subfield_structure` VALUES ('657', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22975 INSERT INTO `marc_subfield_structure` VALUES ('657', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22976 INSERT INTO `marc_subfield_structure` VALUES ('657', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22977 INSERT INTO `marc_subfield_structure` VALUES ('657', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22978 INSERT INTO `marc_subfield_structure` VALUES ('658', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22979 INSERT INTO `marc_subfield_structure` VALUES ('658', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22980 INSERT INTO `marc_subfield_structure` VALUES ('658', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22981 INSERT INTO `marc_subfield_structure` VALUES ('658', 'a', 'Main curriculum objective', 'Main curriculum objective', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22982 INSERT INTO `marc_subfield_structure` VALUES ('658', 'b', 'Subordinate curriculum objective', 'Subordinate curriculum objective', 1, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22983 INSERT INTO `marc_subfield_structure` VALUES ('658', 'c', 'Curriculum code', 'Curriculum code', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22984 INSERT INTO `marc_subfield_structure` VALUES ('658', 'd', 'Correlation factor', 'Correlation factor', 0, 0, '', 6, '', '', '', NULL, -1, 'AR', '', '');
22985 INSERT INTO `marc_subfield_structure` VALUES ('662', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22986 INSERT INTO `marc_subfield_structure` VALUES ('662', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22987 INSERT INTO `marc_subfield_structure` VALUES ('662', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22988 INSERT INTO `marc_subfield_structure` VALUES ('662', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22989 INSERT INTO `marc_subfield_structure` VALUES ('662', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22990 INSERT INTO `marc_subfield_structure` VALUES ('662', 'a', 'Country or larger entity', 'Country or larger entity', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22991 INSERT INTO `marc_subfield_structure` VALUES ('662', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22992 INSERT INTO `marc_subfield_structure` VALUES ('662', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22993 INSERT INTO `marc_subfield_structure` VALUES ('662', 'd', 'City', 'City', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22994 INSERT INTO `marc_subfield_structure` VALUES ('662', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22995 INSERT INTO `marc_subfield_structure` VALUES ('662', 'f', 'City subsection', 'City subsection', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22996 INSERT INTO `marc_subfield_structure` VALUES ('662', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22997 INSERT INTO `marc_subfield_structure` VALUES ('662', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
22998 INSERT INTO `marc_subfield_structure` VALUES ('690', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'AR', '', '');
22999 INSERT INTO `marc_subfield_structure` VALUES ('690', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, -6, 'AR', '', '');
23000 INSERT INTO `marc_subfield_structure` VALUES ('690', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'AR', '', '');
23001 INSERT INTO `marc_subfield_structure` VALUES ('690', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'AR', '', '');
23002 INSERT INTO `marc_subfield_structure` VALUES ('690', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'AR', '', '');
23003 INSERT INTO `marc_subfield_structure` VALUES ('690', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
23004 INSERT INTO `marc_subfield_structure` VALUES ('690', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'AR', '', '');
23005 INSERT INTO `marc_subfield_structure` VALUES ('690', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'AR', '', '');
23006 INSERT INTO `marc_subfield_structure` VALUES ('690', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'AR', '', '');
23007 INSERT INTO `marc_subfield_structure` VALUES ('690', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -6, 'AR', '', '');
23008 INSERT INTO `marc_subfield_structure` VALUES ('690', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -6, 'AR', '', '');
23009 INSERT INTO `marc_subfield_structure` VALUES ('690', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'AR', '', '');
23010 INSERT INTO `marc_subfield_structure` VALUES ('690', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'AR', '', '');
23011 INSERT INTO `marc_subfield_structure` VALUES ('690', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'AR', '', '');
23012 INSERT INTO `marc_subfield_structure` VALUES ('690', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'AR', '', '');
23013 INSERT INTO `marc_subfield_structure` VALUES ('691', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'AR', '', '');
23014 INSERT INTO `marc_subfield_structure` VALUES ('691', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23015 INSERT INTO `marc_subfield_structure` VALUES ('691', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23016 INSERT INTO `marc_subfield_structure` VALUES ('691', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23017 INSERT INTO `marc_subfield_structure` VALUES ('691', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23018 INSERT INTO `marc_subfield_structure` VALUES ('691', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
23019 INSERT INTO `marc_subfield_structure` VALUES ('691', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23020 INSERT INTO `marc_subfield_structure` VALUES ('691', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23021 INSERT INTO `marc_subfield_structure` VALUES ('691', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23022 INSERT INTO `marc_subfield_structure` VALUES ('691', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23023 INSERT INTO `marc_subfield_structure` VALUES ('691', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23024 INSERT INTO `marc_subfield_structure` VALUES ('691', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23025 INSERT INTO `marc_subfield_structure` VALUES ('696', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'AR', '', '');
23026 INSERT INTO `marc_subfield_structure` VALUES ('696', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23027 INSERT INTO `marc_subfield_structure` VALUES ('696', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23028 INSERT INTO `marc_subfield_structure` VALUES ('696', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23029 INSERT INTO `marc_subfield_structure` VALUES ('696', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23030 INSERT INTO `marc_subfield_structure` VALUES ('696', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23031 INSERT INTO `marc_subfield_structure` VALUES ('696', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
23032 INSERT INTO `marc_subfield_structure` VALUES ('696', 'a', 'Personal name', 'Personal name', 0, 0, '', 3, '', '', '', NULL, -6, 'AR', '', '');
23033 INSERT INTO `marc_subfield_structure` VALUES ('696', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23034 INSERT INTO `marc_subfield_structure` VALUES ('696', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23035 INSERT INTO `marc_subfield_structure` VALUES ('696', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23036 INSERT INTO `marc_subfield_structure` VALUES ('696', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23037 INSERT INTO `marc_subfield_structure` VALUES ('696', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23038 INSERT INTO `marc_subfield_structure` VALUES ('696', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23039 INSERT INTO `marc_subfield_structure` VALUES ('696', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23040 INSERT INTO `marc_subfield_structure` VALUES ('696', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23041 INSERT INTO `marc_subfield_structure` VALUES ('696', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23042 INSERT INTO `marc_subfield_structure` VALUES ('696', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23043 INSERT INTO `marc_subfield_structure` VALUES ('696', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23044 INSERT INTO `marc_subfield_structure` VALUES ('696', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23045 INSERT INTO `marc_subfield_structure` VALUES ('696', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23046 INSERT INTO `marc_subfield_structure` VALUES ('696', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23047 INSERT INTO `marc_subfield_structure` VALUES ('696', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23048 INSERT INTO `marc_subfield_structure` VALUES ('696', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23049 INSERT INTO `marc_subfield_structure` VALUES ('696', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23050 INSERT INTO `marc_subfield_structure` VALUES ('696', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23051 INSERT INTO `marc_subfield_structure` VALUES ('696', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23052 INSERT INTO `marc_subfield_structure` VALUES ('696', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23053 INSERT INTO `marc_subfield_structure` VALUES ('696', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23054 INSERT INTO `marc_subfield_structure` VALUES ('696', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23055 INSERT INTO `marc_subfield_structure` VALUES ('696', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23056 INSERT INTO `marc_subfield_structure` VALUES ('697', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'AR', '', '');
23057 INSERT INTO `marc_subfield_structure` VALUES ('697', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23058 INSERT INTO `marc_subfield_structure` VALUES ('697', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23059 INSERT INTO `marc_subfield_structure` VALUES ('697', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23060 INSERT INTO `marc_subfield_structure` VALUES ('697', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23061 INSERT INTO `marc_subfield_structure` VALUES ('697', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23062 INSERT INTO `marc_subfield_structure` VALUES ('697', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
23063 INSERT INTO `marc_subfield_structure` VALUES ('697', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23064 INSERT INTO `marc_subfield_structure` VALUES ('697', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23065 INSERT INTO `marc_subfield_structure` VALUES ('697', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23066 INSERT INTO `marc_subfield_structure` VALUES ('697', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23067 INSERT INTO `marc_subfield_structure` VALUES ('697', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23068 INSERT INTO `marc_subfield_structure` VALUES ('697', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23069 INSERT INTO `marc_subfield_structure` VALUES ('697', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23070 INSERT INTO `marc_subfield_structure` VALUES ('697', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23071 INSERT INTO `marc_subfield_structure` VALUES ('697', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23072 INSERT INTO `marc_subfield_structure` VALUES ('697', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23073 INSERT INTO `marc_subfield_structure` VALUES ('697', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23074 INSERT INTO `marc_subfield_structure` VALUES ('697', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23075 INSERT INTO `marc_subfield_structure` VALUES ('697', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23076 INSERT INTO `marc_subfield_structure` VALUES ('697', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23077 INSERT INTO `marc_subfield_structure` VALUES ('697', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23078 INSERT INTO `marc_subfield_structure` VALUES ('697', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23079 INSERT INTO `marc_subfield_structure` VALUES ('697', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23080 INSERT INTO `marc_subfield_structure` VALUES ('697', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23081 INSERT INTO `marc_subfield_structure` VALUES ('697', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23082 INSERT INTO `marc_subfield_structure` VALUES ('697', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23083 INSERT INTO `marc_subfield_structure` VALUES ('697', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23084 INSERT INTO `marc_subfield_structure` VALUES ('697', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
23085 INSERT INTO `marc_subfield_structure` VALUES ('698', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'AR', '', '');
23086 INSERT INTO `marc_subfield_structure` VALUES ('698', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23087 INSERT INTO `marc_subfield_structure` VALUES ('698', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23088 INSERT INTO `marc_subfield_structure` VALUES ('698', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23089 INSERT INTO `marc_subfield_structure` VALUES ('698', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23090 INSERT INTO `marc_subfield_structure` VALUES ('698', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23091 INSERT INTO `marc_subfield_structure` VALUES ('698', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
23092 INSERT INTO `marc_subfield_structure` VALUES ('698', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23093 INSERT INTO `marc_subfield_structure` VALUES ('698', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'AR', '', '');
23094 INSERT INTO `marc_subfield_structure` VALUES ('698', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23095 INSERT INTO `marc_subfield_structure` VALUES ('698', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23096 INSERT INTO `marc_subfield_structure` VALUES ('698', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23097 INSERT INTO `marc_subfield_structure` VALUES ('698', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23098 INSERT INTO `marc_subfield_structure` VALUES ('698', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23099 INSERT INTO `marc_subfield_structure` VALUES ('698', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23100 INSERT INTO `marc_subfield_structure` VALUES ('698', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23101 INSERT INTO `marc_subfield_structure` VALUES ('698', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23102 INSERT INTO `marc_subfield_structure` VALUES ('698', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23103 INSERT INTO `marc_subfield_structure` VALUES ('698', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23104 INSERT INTO `marc_subfield_structure` VALUES ('698', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23105 INSERT INTO `marc_subfield_structure` VALUES ('698', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23106 INSERT INTO `marc_subfield_structure` VALUES ('698', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23107 INSERT INTO `marc_subfield_structure` VALUES ('698', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23108 INSERT INTO `marc_subfield_structure` VALUES ('698', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23109 INSERT INTO `marc_subfield_structure` VALUES ('698', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23110 INSERT INTO `marc_subfield_structure` VALUES ('698', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23111 INSERT INTO `marc_subfield_structure` VALUES ('698', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23112 INSERT INTO `marc_subfield_structure` VALUES ('699', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'AR', '', '');
23113 INSERT INTO `marc_subfield_structure` VALUES ('699', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23114 INSERT INTO `marc_subfield_structure` VALUES ('699', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23115 INSERT INTO `marc_subfield_structure` VALUES ('699', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23116 INSERT INTO `marc_subfield_structure` VALUES ('699', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23117 INSERT INTO `marc_subfield_structure` VALUES ('699', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'AR', '', '');
23118 INSERT INTO `marc_subfield_structure` VALUES ('699', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23119 INSERT INTO `marc_subfield_structure` VALUES ('699', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23120 INSERT INTO `marc_subfield_structure` VALUES ('699', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23121 INSERT INTO `marc_subfield_structure` VALUES ('699', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23122 INSERT INTO `marc_subfield_structure` VALUES ('699', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23123 INSERT INTO `marc_subfield_structure` VALUES ('699', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23124 INSERT INTO `marc_subfield_structure` VALUES ('699', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23125 INSERT INTO `marc_subfield_structure` VALUES ('699', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23126 INSERT INTO `marc_subfield_structure` VALUES ('699', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23127 INSERT INTO `marc_subfield_structure` VALUES ('699', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23128 INSERT INTO `marc_subfield_structure` VALUES ('699', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23129 INSERT INTO `marc_subfield_structure` VALUES ('699', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23130 INSERT INTO `marc_subfield_structure` VALUES ('699', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23131 INSERT INTO `marc_subfield_structure` VALUES ('699', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23132 INSERT INTO `marc_subfield_structure` VALUES ('699', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23133 INSERT INTO `marc_subfield_structure` VALUES ('699', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23134 INSERT INTO `marc_subfield_structure` VALUES ('699', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'AR', '', '');
23135 INSERT INTO `marc_subfield_structure` VALUES ('700', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23136 INSERT INTO `marc_subfield_structure` VALUES ('700', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23137 INSERT INTO `marc_subfield_structure` VALUES ('700', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23138 INSERT INTO `marc_subfield_structure` VALUES ('700', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23139 INSERT INTO `marc_subfield_structure` VALUES ('700', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23140 INSERT INTO `marc_subfield_structure` VALUES ('700', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'AR', '', '');
23141 INSERT INTO `marc_subfield_structure` VALUES ('700', 'a', 'Personal name', 'Personal name', 0, 0, 'additionalauthors.author', 7, '', '', '', NULL, -1, 'AR', '', '');
23142 INSERT INTO `marc_subfield_structure` VALUES ('700', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -1, 'AR', '', '');
23143 INSERT INTO `marc_subfield_structure` VALUES ('700', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -1, 'AR', '', '');
23144 INSERT INTO `marc_subfield_structure` VALUES ('700', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -1, 'AR', '', '');
23145 INSERT INTO `marc_subfield_structure` VALUES ('700', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'AR', '', '');
23146 INSERT INTO `marc_subfield_structure` VALUES ('700', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23147 INSERT INTO `marc_subfield_structure` VALUES ('700', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23148 INSERT INTO `marc_subfield_structure` VALUES ('700', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23149 INSERT INTO `marc_subfield_structure` VALUES ('700', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23150 INSERT INTO `marc_subfield_structure` VALUES ('700', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23151 INSERT INTO `marc_subfield_structure` VALUES ('700', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23152 INSERT INTO `marc_subfield_structure` VALUES ('700', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23153 INSERT INTO `marc_subfield_structure` VALUES ('700', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23154 INSERT INTO `marc_subfield_structure` VALUES ('700', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23155 INSERT INTO `marc_subfield_structure` VALUES ('700', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23156 INSERT INTO `marc_subfield_structure` VALUES ('700', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -1, 'AR', '', '');
23157 INSERT INTO `marc_subfield_structure` VALUES ('700', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23158 INSERT INTO `marc_subfield_structure` VALUES ('700', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23159 INSERT INTO `marc_subfield_structure` VALUES ('700', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23160 INSERT INTO `marc_subfield_structure` VALUES ('700', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23161 INSERT INTO `marc_subfield_structure` VALUES ('700', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23162 INSERT INTO `marc_subfield_structure` VALUES ('705', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23163 INSERT INTO `marc_subfield_structure` VALUES ('705', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23164 INSERT INTO `marc_subfield_structure` VALUES ('705', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23165 INSERT INTO `marc_subfield_structure` VALUES ('705', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23166 INSERT INTO `marc_subfield_structure` VALUES ('705', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23167 INSERT INTO `marc_subfield_structure` VALUES ('705', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23168 INSERT INTO `marc_subfield_structure` VALUES ('705', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23169 INSERT INTO `marc_subfield_structure` VALUES ('705', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23170 INSERT INTO `marc_subfield_structure` VALUES ('705', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23171 INSERT INTO `marc_subfield_structure` VALUES ('705', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23172 INSERT INTO `marc_subfield_structure` VALUES ('705', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23173 INSERT INTO `marc_subfield_structure` VALUES ('705', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23174 INSERT INTO `marc_subfield_structure` VALUES ('705', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23175 INSERT INTO `marc_subfield_structure` VALUES ('705', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23176 INSERT INTO `marc_subfield_structure` VALUES ('705', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23177 INSERT INTO `marc_subfield_structure` VALUES ('705', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23178 INSERT INTO `marc_subfield_structure` VALUES ('705', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23179 INSERT INTO `marc_subfield_structure` VALUES ('710', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23180 INSERT INTO `marc_subfield_structure` VALUES ('710', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23181 INSERT INTO `marc_subfield_structure` VALUES ('710', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23182 INSERT INTO `marc_subfield_structure` VALUES ('710', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23183 INSERT INTO `marc_subfield_structure` VALUES ('710', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23184 INSERT INTO `marc_subfield_structure` VALUES ('710', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'AR', '', '');
23185 INSERT INTO `marc_subfield_structure` VALUES ('710', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -1, 'AR', '', '');
23186 INSERT INTO `marc_subfield_structure` VALUES ('710', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -1, 'AR', '', '');
23187 INSERT INTO `marc_subfield_structure` VALUES ('710', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -1, 'AR', '', '');
23188 INSERT INTO `marc_subfield_structure` VALUES ('710', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -1, 'AR', '', '');
23189 INSERT INTO `marc_subfield_structure` VALUES ('710', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'AR', '', '');
23190 INSERT INTO `marc_subfield_structure` VALUES ('710', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23191 INSERT INTO `marc_subfield_structure` VALUES ('710', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23192 INSERT INTO `marc_subfield_structure` VALUES ('710', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23193 INSERT INTO `marc_subfield_structure` VALUES ('710', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23194 INSERT INTO `marc_subfield_structure` VALUES ('710', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23195 INSERT INTO `marc_subfield_structure` VALUES ('710', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23196 INSERT INTO `marc_subfield_structure` VALUES ('710', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23197 INSERT INTO `marc_subfield_structure` VALUES ('710', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23198 INSERT INTO `marc_subfield_structure` VALUES ('710', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23199 INSERT INTO `marc_subfield_structure` VALUES ('710', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23200 INSERT INTO `marc_subfield_structure` VALUES ('710', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23201 INSERT INTO `marc_subfield_structure` VALUES ('710', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23202 INSERT INTO `marc_subfield_structure` VALUES ('710', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23203 INSERT INTO `marc_subfield_structure` VALUES ('710', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23204 INSERT INTO `marc_subfield_structure` VALUES ('711', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23205 INSERT INTO `marc_subfield_structure` VALUES ('711', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23206 INSERT INTO `marc_subfield_structure` VALUES ('711', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23207 INSERT INTO `marc_subfield_structure` VALUES ('711', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23208 INSERT INTO `marc_subfield_structure` VALUES ('711', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23209 INSERT INTO `marc_subfield_structure` VALUES ('711', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'AR', '', '');
23210 INSERT INTO `marc_subfield_structure` VALUES ('711', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'AR', '', '');
23211 INSERT INTO `marc_subfield_structure` VALUES ('711', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23212 INSERT INTO `marc_subfield_structure` VALUES ('711', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'AR', '', '');
23213 INSERT INTO `marc_subfield_structure` VALUES ('711', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'AR', '', '');
23214 INSERT INTO `marc_subfield_structure` VALUES ('711', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'AR', '', '');
23215 INSERT INTO `marc_subfield_structure` VALUES ('711', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23216 INSERT INTO `marc_subfield_structure` VALUES ('711', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23217 INSERT INTO `marc_subfield_structure` VALUES ('711', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23218 INSERT INTO `marc_subfield_structure` VALUES ('711', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23219 INSERT INTO `marc_subfield_structure` VALUES ('711', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23220 INSERT INTO `marc_subfield_structure` VALUES ('711', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23221 INSERT INTO `marc_subfield_structure` VALUES ('711', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23222 INSERT INTO `marc_subfield_structure` VALUES ('711', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23223 INSERT INTO `marc_subfield_structure` VALUES ('711', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23224 INSERT INTO `marc_subfield_structure` VALUES ('711', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23225 INSERT INTO `marc_subfield_structure` VALUES ('711', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23226 INSERT INTO `marc_subfield_structure` VALUES ('711', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23227 INSERT INTO `marc_subfield_structure` VALUES ('715', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'AR', '', '');
23228 INSERT INTO `marc_subfield_structure` VALUES ('715', 'a', 'Corporate name or jurisdiction name', 'Corporate name or jurisdiction name', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23229 INSERT INTO `marc_subfield_structure` VALUES ('715', 'b', 'Subordinate unit', 'Subordinate unit', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23230 INSERT INTO `marc_subfield_structure` VALUES ('715', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23231 INSERT INTO `marc_subfield_structure` VALUES ('715', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23232 INSERT INTO `marc_subfield_structure` VALUES ('715', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23233 INSERT INTO `marc_subfield_structure` VALUES ('715', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23234 INSERT INTO `marc_subfield_structure` VALUES ('715', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23235 INSERT INTO `marc_subfield_structure` VALUES ('715', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23236 INSERT INTO `marc_subfield_structure` VALUES ('715', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23237 INSERT INTO `marc_subfield_structure` VALUES ('715', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23238 INSERT INTO `marc_subfield_structure` VALUES ('715', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23239 INSERT INTO `marc_subfield_structure` VALUES ('715', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23240 INSERT INTO `marc_subfield_structure` VALUES ('715', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23241 INSERT INTO `marc_subfield_structure` VALUES ('715', 'u', 'Nonprinting information', 'Nonprinting information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23242 INSERT INTO `marc_subfield_structure` VALUES ('720', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23243 INSERT INTO `marc_subfield_structure` VALUES ('720', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23244 INSERT INTO `marc_subfield_structure` VALUES ('720', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23245 INSERT INTO `marc_subfield_structure` VALUES ('720', 'a', 'Name', 'Name', 0, 0, '', 7, NULL, NULL, '', NULL, -1, 'AR', '', '');
23246 INSERT INTO `marc_subfield_structure` VALUES ('720', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'AR', '', '');
23247 INSERT INTO `marc_subfield_structure` VALUES ('730', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23248 INSERT INTO `marc_subfield_structure` VALUES ('730', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23249 INSERT INTO `marc_subfield_structure` VALUES ('730', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23250 INSERT INTO `marc_subfield_structure` VALUES ('730', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23251 INSERT INTO `marc_subfield_structure` VALUES ('730', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'AR', '', '');
23252 INSERT INTO `marc_subfield_structure` VALUES ('730', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23253 INSERT INTO `marc_subfield_structure` VALUES ('730', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23254 INSERT INTO `marc_subfield_structure` VALUES ('730', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23255 INSERT INTO `marc_subfield_structure` VALUES ('730', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23256 INSERT INTO `marc_subfield_structure` VALUES ('730', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23257 INSERT INTO `marc_subfield_structure` VALUES ('730', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23258 INSERT INTO `marc_subfield_structure` VALUES ('730', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23259 INSERT INTO `marc_subfield_structure` VALUES ('730', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23260 INSERT INTO `marc_subfield_structure` VALUES ('730', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23261 INSERT INTO `marc_subfield_structure` VALUES ('730', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23262 INSERT INTO `marc_subfield_structure` VALUES ('730', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23263 INSERT INTO `marc_subfield_structure` VALUES ('730', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23264 INSERT INTO `marc_subfield_structure` VALUES ('730', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23265 INSERT INTO `marc_subfield_structure` VALUES ('730', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23266 INSERT INTO `marc_subfield_structure` VALUES ('730', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23267 INSERT INTO `marc_subfield_structure` VALUES ('740', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23268 INSERT INTO `marc_subfield_structure` VALUES ('740', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23269 INSERT INTO `marc_subfield_structure` VALUES ('740', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23270 INSERT INTO `marc_subfield_structure` VALUES ('740', 'a', 'Uncontrolled related/analytical title', 'Uncontrolled related/analytical title', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23271 INSERT INTO `marc_subfield_structure` VALUES ('740', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23272 INSERT INTO `marc_subfield_structure` VALUES ('740', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23273 INSERT INTO `marc_subfield_structure` VALUES ('740', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23274 INSERT INTO `marc_subfield_structure` VALUES ('752', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23275 INSERT INTO `marc_subfield_structure` VALUES ('752', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23276 INSERT INTO `marc_subfield_structure` VALUES ('752', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23277 INSERT INTO `marc_subfield_structure` VALUES ('752', 'a', 'Country or larger entity', 'Country or larger entity', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23278 INSERT INTO `marc_subfield_structure` VALUES ('752', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23279 INSERT INTO `marc_subfield_structure` VALUES ('752', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23280 INSERT INTO `marc_subfield_structure` VALUES ('752', 'd', 'City', 'City', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23281 INSERT INTO `marc_subfield_structure` VALUES ('752', 'f', 'City subsection', 'City subsection', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23282 INSERT INTO `marc_subfield_structure` VALUES ('752', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23283 INSERT INTO `marc_subfield_structure` VALUES ('752', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23284 INSERT INTO `marc_subfield_structure` VALUES ('753', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23285 INSERT INTO `marc_subfield_structure` VALUES ('753', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23286 INSERT INTO `marc_subfield_structure` VALUES ('753', 'a', 'Make and model of machine', 'Make and model of machine', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23287 INSERT INTO `marc_subfield_structure` VALUES ('753', 'b', 'Programming language', 'Programming language', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23288 INSERT INTO `marc_subfield_structure` VALUES ('753', 'c', 'Operating system', 'Operating system', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23289 INSERT INTO `marc_subfield_structure` VALUES ('754', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23290 INSERT INTO `marc_subfield_structure` VALUES ('754', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23291 INSERT INTO `marc_subfield_structure` VALUES ('754', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23292 INSERT INTO `marc_subfield_structure` VALUES ('754', 'a', 'Taxonomic name', 'Taxonomic name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23293 INSERT INTO `marc_subfield_structure` VALUES ('754', 'c', 'Taxonomic category', 'Taxonomic category', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23294 INSERT INTO `marc_subfield_structure` VALUES ('754', 'd', 'Common or alternative name', 'Common or alternative name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23295 INSERT INTO `marc_subfield_structure` VALUES ('754', 'x', 'Non-public note', 'Non-public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23296 INSERT INTO `marc_subfield_structure` VALUES ('754', 'z', 'Public note', 'Public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23297 INSERT INTO `marc_subfield_structure` VALUES ('755', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23298 INSERT INTO `marc_subfield_structure` VALUES ('755', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23299 INSERT INTO `marc_subfield_structure` VALUES ('755', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23300 INSERT INTO `marc_subfield_structure` VALUES ('755', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23301 INSERT INTO `marc_subfield_structure` VALUES ('755', 'a', 'Access term', 'Access term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23302 INSERT INTO `marc_subfield_structure` VALUES ('755', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23303 INSERT INTO `marc_subfield_structure` VALUES ('755', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23304 INSERT INTO `marc_subfield_structure` VALUES ('755', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23305 INSERT INTO `marc_subfield_structure` VALUES ('760', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23306 INSERT INTO `marc_subfield_structure` VALUES ('760', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23307 INSERT INTO `marc_subfield_structure` VALUES ('760', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23308 INSERT INTO `marc_subfield_structure` VALUES ('760', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23309 INSERT INTO `marc_subfield_structure` VALUES ('760', 'b', 'Edition', 'Edition', 0, 0, NULL, -6, NULL, NULL, '', NULL, 0, 'AR', '', '');
23310 INSERT INTO `marc_subfield_structure` VALUES ('760', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23311 INSERT INTO `marc_subfield_structure` VALUES ('760', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23312 INSERT INTO `marc_subfield_structure` VALUES ('760', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23313 INSERT INTO `marc_subfield_structure` VALUES ('760', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23314 INSERT INTO `marc_subfield_structure` VALUES ('760', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23315 INSERT INTO `marc_subfield_structure` VALUES ('760', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23316 INSERT INTO `marc_subfield_structure` VALUES ('760', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23317 INSERT INTO `marc_subfield_structure` VALUES ('760', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23318 INSERT INTO `marc_subfield_structure` VALUES ('760', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23319 INSERT INTO `marc_subfield_structure` VALUES ('760', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23320 INSERT INTO `marc_subfield_structure` VALUES ('760', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23321 INSERT INTO `marc_subfield_structure` VALUES ('760', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23322 INSERT INTO `marc_subfield_structure` VALUES ('760', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23323 INSERT INTO `marc_subfield_structure` VALUES ('760', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23324 INSERT INTO `marc_subfield_structure` VALUES ('762', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23325 INSERT INTO `marc_subfield_structure` VALUES ('762', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23326 INSERT INTO `marc_subfield_structure` VALUES ('762', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23327 INSERT INTO `marc_subfield_structure` VALUES ('762', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23328 INSERT INTO `marc_subfield_structure` VALUES ('762', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23329 INSERT INTO `marc_subfield_structure` VALUES ('762', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23330 INSERT INTO `marc_subfield_structure` VALUES ('762', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23331 INSERT INTO `marc_subfield_structure` VALUES ('762', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23332 INSERT INTO `marc_subfield_structure` VALUES ('762', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23333 INSERT INTO `marc_subfield_structure` VALUES ('762', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23334 INSERT INTO `marc_subfield_structure` VALUES ('762', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23335 INSERT INTO `marc_subfield_structure` VALUES ('762', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23336 INSERT INTO `marc_subfield_structure` VALUES ('762', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23337 INSERT INTO `marc_subfield_structure` VALUES ('762', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23338 INSERT INTO `marc_subfield_structure` VALUES ('762', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23339 INSERT INTO `marc_subfield_structure` VALUES ('762', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23340 INSERT INTO `marc_subfield_structure` VALUES ('762', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23341 INSERT INTO `marc_subfield_structure` VALUES ('762', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23342 INSERT INTO `marc_subfield_structure` VALUES ('762', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23343 INSERT INTO `marc_subfield_structure` VALUES ('765', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23344 INSERT INTO `marc_subfield_structure` VALUES ('765', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23345 INSERT INTO `marc_subfield_structure` VALUES ('765', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23346 INSERT INTO `marc_subfield_structure` VALUES ('765', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23347 INSERT INTO `marc_subfield_structure` VALUES ('765', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23348 INSERT INTO `marc_subfield_structure` VALUES ('765', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23349 INSERT INTO `marc_subfield_structure` VALUES ('765', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23350 INSERT INTO `marc_subfield_structure` VALUES ('765', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23351 INSERT INTO `marc_subfield_structure` VALUES ('765', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23352 INSERT INTO `marc_subfield_structure` VALUES ('765', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23353 INSERT INTO `marc_subfield_structure` VALUES ('765', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23354 INSERT INTO `marc_subfield_structure` VALUES ('765', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23355 INSERT INTO `marc_subfield_structure` VALUES ('765', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23356 INSERT INTO `marc_subfield_structure` VALUES ('765', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23357 INSERT INTO `marc_subfield_structure` VALUES ('765', 'q', 'Parallel title (BK SE)  [OBSOLETE]', 'Parallel title (BK SE)  [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23358 INSERT INTO `marc_subfield_structure` VALUES ('765', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23359 INSERT INTO `marc_subfield_structure` VALUES ('765', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23360 INSERT INTO `marc_subfield_structure` VALUES ('765', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23361 INSERT INTO `marc_subfield_structure` VALUES ('765', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23362 INSERT INTO `marc_subfield_structure` VALUES ('765', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23363 INSERT INTO `marc_subfield_structure` VALUES ('765', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23364 INSERT INTO `marc_subfield_structure` VALUES ('765', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23365 INSERT INTO `marc_subfield_structure` VALUES ('765', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23366 INSERT INTO `marc_subfield_structure` VALUES ('767', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23367 INSERT INTO `marc_subfield_structure` VALUES ('767', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23368 INSERT INTO `marc_subfield_structure` VALUES ('767', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23369 INSERT INTO `marc_subfield_structure` VALUES ('767', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23370 INSERT INTO `marc_subfield_structure` VALUES ('767', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23371 INSERT INTO `marc_subfield_structure` VALUES ('767', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23372 INSERT INTO `marc_subfield_structure` VALUES ('767', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23373 INSERT INTO `marc_subfield_structure` VALUES ('767', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23374 INSERT INTO `marc_subfield_structure` VALUES ('767', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23375 INSERT INTO `marc_subfield_structure` VALUES ('767', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23376 INSERT INTO `marc_subfield_structure` VALUES ('767', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23377 INSERT INTO `marc_subfield_structure` VALUES ('767', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23378 INSERT INTO `marc_subfield_structure` VALUES ('767', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23379 INSERT INTO `marc_subfield_structure` VALUES ('767', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23380 INSERT INTO `marc_subfield_structure` VALUES ('767', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23381 INSERT INTO `marc_subfield_structure` VALUES ('767', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23382 INSERT INTO `marc_subfield_structure` VALUES ('767', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23383 INSERT INTO `marc_subfield_structure` VALUES ('767', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23384 INSERT INTO `marc_subfield_structure` VALUES ('767', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23385 INSERT INTO `marc_subfield_structure` VALUES ('767', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23386 INSERT INTO `marc_subfield_structure` VALUES ('767', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23387 INSERT INTO `marc_subfield_structure` VALUES ('767', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23388 INSERT INTO `marc_subfield_structure` VALUES ('767', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23389 INSERT INTO `marc_subfield_structure` VALUES ('770', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23390 INSERT INTO `marc_subfield_structure` VALUES ('770', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23391 INSERT INTO `marc_subfield_structure` VALUES ('770', '8', 'Field link and sequence number', 'Field link and sequence number ', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23392 INSERT INTO `marc_subfield_structure` VALUES ('770', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23393 INSERT INTO `marc_subfield_structure` VALUES ('770', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23394 INSERT INTO `marc_subfield_structure` VALUES ('770', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23395 INSERT INTO `marc_subfield_structure` VALUES ('770', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23396 INSERT INTO `marc_subfield_structure` VALUES ('770', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23397 INSERT INTO `marc_subfield_structure` VALUES ('770', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23398 INSERT INTO `marc_subfield_structure` VALUES ('770', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23399 INSERT INTO `marc_subfield_structure` VALUES ('770', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23400 INSERT INTO `marc_subfield_structure` VALUES ('770', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23401 INSERT INTO `marc_subfield_structure` VALUES ('770', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23402 INSERT INTO `marc_subfield_structure` VALUES ('770', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23403 INSERT INTO `marc_subfield_structure` VALUES ('770', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23404 INSERT INTO `marc_subfield_structure` VALUES ('770', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23405 INSERT INTO `marc_subfield_structure` VALUES ('770', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23406 INSERT INTO `marc_subfield_structure` VALUES ('770', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23407 INSERT INTO `marc_subfield_structure` VALUES ('770', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23408 INSERT INTO `marc_subfield_structure` VALUES ('770', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23409 INSERT INTO `marc_subfield_structure` VALUES ('770', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23410 INSERT INTO `marc_subfield_structure` VALUES ('770', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23411 INSERT INTO `marc_subfield_structure` VALUES ('770', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23412 INSERT INTO `marc_subfield_structure` VALUES ('772', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23413 INSERT INTO `marc_subfield_structure` VALUES ('772', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23414 INSERT INTO `marc_subfield_structure` VALUES ('772', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23415 INSERT INTO `marc_subfield_structure` VALUES ('772', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23416 INSERT INTO `marc_subfield_structure` VALUES ('772', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23417 INSERT INTO `marc_subfield_structure` VALUES ('772', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23418 INSERT INTO `marc_subfield_structure` VALUES ('772', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23419 INSERT INTO `marc_subfield_structure` VALUES ('772', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23420 INSERT INTO `marc_subfield_structure` VALUES ('772', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23421 INSERT INTO `marc_subfield_structure` VALUES ('772', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23422 INSERT INTO `marc_subfield_structure` VALUES ('772', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23423 INSERT INTO `marc_subfield_structure` VALUES ('772', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23424 INSERT INTO `marc_subfield_structure` VALUES ('772', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23425 INSERT INTO `marc_subfield_structure` VALUES ('772', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23426 INSERT INTO `marc_subfield_structure` VALUES ('772', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23427 INSERT INTO `marc_subfield_structure` VALUES ('772', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23428 INSERT INTO `marc_subfield_structure` VALUES ('772', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23429 INSERT INTO `marc_subfield_structure` VALUES ('772', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23430 INSERT INTO `marc_subfield_structure` VALUES ('772', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23431 INSERT INTO `marc_subfield_structure` VALUES ('772', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23432 INSERT INTO `marc_subfield_structure` VALUES ('772', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23433 INSERT INTO `marc_subfield_structure` VALUES ('772', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23434 INSERT INTO `marc_subfield_structure` VALUES ('772', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23435 INSERT INTO `marc_subfield_structure` VALUES ('773', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23436 INSERT INTO `marc_subfield_structure` VALUES ('773', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23437 INSERT INTO `marc_subfield_structure` VALUES ('773', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23438 INSERT INTO `marc_subfield_structure` VALUES ('773', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23439 INSERT INTO `marc_subfield_structure` VALUES ('773', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23440 INSERT INTO `marc_subfield_structure` VALUES ('773', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23441 INSERT INTO `marc_subfield_structure` VALUES ('773', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23442 INSERT INTO `marc_subfield_structure` VALUES ('773', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23443 INSERT INTO `marc_subfield_structure` VALUES ('773', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23444 INSERT INTO `marc_subfield_structure` VALUES ('773', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23445 INSERT INTO `marc_subfield_structure` VALUES ('773', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23446 INSERT INTO `marc_subfield_structure` VALUES ('773', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23447 INSERT INTO `marc_subfield_structure` VALUES ('773', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23448 INSERT INTO `marc_subfield_structure` VALUES ('773', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23449 INSERT INTO `marc_subfield_structure` VALUES ('773', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23450 INSERT INTO `marc_subfield_structure` VALUES ('773', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23451 INSERT INTO `marc_subfield_structure` VALUES ('773', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23452 INSERT INTO `marc_subfield_structure` VALUES ('773', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23453 INSERT INTO `marc_subfield_structure` VALUES ('773', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23454 INSERT INTO `marc_subfield_structure` VALUES ('773', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23455 INSERT INTO `marc_subfield_structure` VALUES ('773', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23456 INSERT INTO `marc_subfield_structure` VALUES ('773', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23457 INSERT INTO `marc_subfield_structure` VALUES ('773', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23458 INSERT INTO `marc_subfield_structure` VALUES ('774', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23459 INSERT INTO `marc_subfield_structure` VALUES ('774', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23460 INSERT INTO `marc_subfield_structure` VALUES ('774', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23461 INSERT INTO `marc_subfield_structure` VALUES ('774', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23462 INSERT INTO `marc_subfield_structure` VALUES ('774', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23463 INSERT INTO `marc_subfield_structure` VALUES ('774', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23464 INSERT INTO `marc_subfield_structure` VALUES ('774', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23465 INSERT INTO `marc_subfield_structure` VALUES ('774', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23466 INSERT INTO `marc_subfield_structure` VALUES ('774', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23467 INSERT INTO `marc_subfield_structure` VALUES ('774', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23468 INSERT INTO `marc_subfield_structure` VALUES ('774', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23469 INSERT INTO `marc_subfield_structure` VALUES ('774', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23470 INSERT INTO `marc_subfield_structure` VALUES ('774', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23471 INSERT INTO `marc_subfield_structure` VALUES ('774', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23472 INSERT INTO `marc_subfield_structure` VALUES ('774', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23473 INSERT INTO `marc_subfield_structure` VALUES ('774', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23474 INSERT INTO `marc_subfield_structure` VALUES ('774', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23475 INSERT INTO `marc_subfield_structure` VALUES ('774', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23476 INSERT INTO `marc_subfield_structure` VALUES ('774', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23477 INSERT INTO `marc_subfield_structure` VALUES ('774', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23478 INSERT INTO `marc_subfield_structure` VALUES ('774', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23479 INSERT INTO `marc_subfield_structure` VALUES ('774', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23480 INSERT INTO `marc_subfield_structure` VALUES ('775', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23481 INSERT INTO `marc_subfield_structure` VALUES ('775', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23482 INSERT INTO `marc_subfield_structure` VALUES ('775', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23483 INSERT INTO `marc_subfield_structure` VALUES ('775', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23484 INSERT INTO `marc_subfield_structure` VALUES ('775', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23485 INSERT INTO `marc_subfield_structure` VALUES ('775', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23486 INSERT INTO `marc_subfield_structure` VALUES ('775', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23487 INSERT INTO `marc_subfield_structure` VALUES ('775', 'e', 'Language code', 'Language code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23488 INSERT INTO `marc_subfield_structure` VALUES ('775', 'f', 'Country code', 'Country code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23489 INSERT INTO `marc_subfield_structure` VALUES ('775', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23490 INSERT INTO `marc_subfield_structure` VALUES ('775', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23491 INSERT INTO `marc_subfield_structure` VALUES ('775', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23492 INSERT INTO `marc_subfield_structure` VALUES ('775', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23493 INSERT INTO `marc_subfield_structure` VALUES ('775', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23494 INSERT INTO `marc_subfield_structure` VALUES ('775', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23495 INSERT INTO `marc_subfield_structure` VALUES ('775', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23496 INSERT INTO `marc_subfield_structure` VALUES ('775', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23497 INSERT INTO `marc_subfield_structure` VALUES ('775', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23498 INSERT INTO `marc_subfield_structure` VALUES ('775', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23499 INSERT INTO `marc_subfield_structure` VALUES ('775', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23500 INSERT INTO `marc_subfield_structure` VALUES ('775', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23501 INSERT INTO `marc_subfield_structure` VALUES ('775', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23502 INSERT INTO `marc_subfield_structure` VALUES ('775', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23503 INSERT INTO `marc_subfield_structure` VALUES ('775', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23504 INSERT INTO `marc_subfield_structure` VALUES ('775', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23505 INSERT INTO `marc_subfield_structure` VALUES ('776', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23506 INSERT INTO `marc_subfield_structure` VALUES ('776', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23507 INSERT INTO `marc_subfield_structure` VALUES ('776', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23508 INSERT INTO `marc_subfield_structure` VALUES ('776', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23509 INSERT INTO `marc_subfield_structure` VALUES ('776', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23510 INSERT INTO `marc_subfield_structure` VALUES ('776', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23511 INSERT INTO `marc_subfield_structure` VALUES ('776', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23512 INSERT INTO `marc_subfield_structure` VALUES ('776', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23513 INSERT INTO `marc_subfield_structure` VALUES ('776', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23514 INSERT INTO `marc_subfield_structure` VALUES ('776', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23515 INSERT INTO `marc_subfield_structure` VALUES ('776', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23516 INSERT INTO `marc_subfield_structure` VALUES ('776', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23517 INSERT INTO `marc_subfield_structure` VALUES ('776', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23518 INSERT INTO `marc_subfield_structure` VALUES ('776', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23519 INSERT INTO `marc_subfield_structure` VALUES ('776', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23520 INSERT INTO `marc_subfield_structure` VALUES ('776', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23521 INSERT INTO `marc_subfield_structure` VALUES ('776', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23522 INSERT INTO `marc_subfield_structure` VALUES ('776', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23523 INSERT INTO `marc_subfield_structure` VALUES ('776', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23524 INSERT INTO `marc_subfield_structure` VALUES ('776', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23525 INSERT INTO `marc_subfield_structure` VALUES ('776', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23526 INSERT INTO `marc_subfield_structure` VALUES ('776', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23527 INSERT INTO `marc_subfield_structure` VALUES ('776', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23528 INSERT INTO `marc_subfield_structure` VALUES ('777', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23529 INSERT INTO `marc_subfield_structure` VALUES ('777', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23530 INSERT INTO `marc_subfield_structure` VALUES ('777', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23531 INSERT INTO `marc_subfield_structure` VALUES ('777', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23532 INSERT INTO `marc_subfield_structure` VALUES ('777', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23533 INSERT INTO `marc_subfield_structure` VALUES ('777', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23534 INSERT INTO `marc_subfield_structure` VALUES ('777', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23535 INSERT INTO `marc_subfield_structure` VALUES ('777', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23536 INSERT INTO `marc_subfield_structure` VALUES ('777', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23537 INSERT INTO `marc_subfield_structure` VALUES ('777', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23538 INSERT INTO `marc_subfield_structure` VALUES ('777', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23539 INSERT INTO `marc_subfield_structure` VALUES ('777', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23540 INSERT INTO `marc_subfield_structure` VALUES ('777', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23541 INSERT INTO `marc_subfield_structure` VALUES ('777', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23542 INSERT INTO `marc_subfield_structure` VALUES ('777', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23543 INSERT INTO `marc_subfield_structure` VALUES ('777', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23544 INSERT INTO `marc_subfield_structure` VALUES ('777', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23545 INSERT INTO `marc_subfield_structure` VALUES ('777', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23546 INSERT INTO `marc_subfield_structure` VALUES ('777', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23547 INSERT INTO `marc_subfield_structure` VALUES ('777', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23548 INSERT INTO `marc_subfield_structure` VALUES ('780', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23549 INSERT INTO `marc_subfield_structure` VALUES ('780', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23550 INSERT INTO `marc_subfield_structure` VALUES ('780', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23551 INSERT INTO `marc_subfield_structure` VALUES ('780', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23552 INSERT INTO `marc_subfield_structure` VALUES ('780', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23553 INSERT INTO `marc_subfield_structure` VALUES ('780', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23554 INSERT INTO `marc_subfield_structure` VALUES ('780', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23555 INSERT INTO `marc_subfield_structure` VALUES ('780', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23556 INSERT INTO `marc_subfield_structure` VALUES ('780', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23557 INSERT INTO `marc_subfield_structure` VALUES ('780', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23558 INSERT INTO `marc_subfield_structure` VALUES ('780', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23559 INSERT INTO `marc_subfield_structure` VALUES ('780', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23560 INSERT INTO `marc_subfield_structure` VALUES ('780', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23561 INSERT INTO `marc_subfield_structure` VALUES ('780', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23562 INSERT INTO `marc_subfield_structure` VALUES ('780', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23563 INSERT INTO `marc_subfield_structure` VALUES ('780', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23564 INSERT INTO `marc_subfield_structure` VALUES ('780', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23565 INSERT INTO `marc_subfield_structure` VALUES ('780', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23566 INSERT INTO `marc_subfield_structure` VALUES ('780', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23567 INSERT INTO `marc_subfield_structure` VALUES ('780', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23568 INSERT INTO `marc_subfield_structure` VALUES ('780', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23569 INSERT INTO `marc_subfield_structure` VALUES ('780', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23570 INSERT INTO `marc_subfield_structure` VALUES ('780', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23571 INSERT INTO `marc_subfield_structure` VALUES ('785', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23572 INSERT INTO `marc_subfield_structure` VALUES ('785', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23573 INSERT INTO `marc_subfield_structure` VALUES ('785', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23574 INSERT INTO `marc_subfield_structure` VALUES ('785', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23575 INSERT INTO `marc_subfield_structure` VALUES ('785', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23576 INSERT INTO `marc_subfield_structure` VALUES ('785', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23577 INSERT INTO `marc_subfield_structure` VALUES ('785', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23578 INSERT INTO `marc_subfield_structure` VALUES ('785', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23579 INSERT INTO `marc_subfield_structure` VALUES ('785', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23580 INSERT INTO `marc_subfield_structure` VALUES ('785', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23581 INSERT INTO `marc_subfield_structure` VALUES ('785', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23582 INSERT INTO `marc_subfield_structure` VALUES ('785', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23583 INSERT INTO `marc_subfield_structure` VALUES ('785', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23584 INSERT INTO `marc_subfield_structure` VALUES ('785', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23585 INSERT INTO `marc_subfield_structure` VALUES ('785', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23586 INSERT INTO `marc_subfield_structure` VALUES ('785', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23587 INSERT INTO `marc_subfield_structure` VALUES ('785', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23588 INSERT INTO `marc_subfield_structure` VALUES ('785', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23589 INSERT INTO `marc_subfield_structure` VALUES ('785', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23590 INSERT INTO `marc_subfield_structure` VALUES ('785', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23591 INSERT INTO `marc_subfield_structure` VALUES ('785', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23592 INSERT INTO `marc_subfield_structure` VALUES ('785', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23593 INSERT INTO `marc_subfield_structure` VALUES ('785', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23594 INSERT INTO `marc_subfield_structure` VALUES ('786', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23595 INSERT INTO `marc_subfield_structure` VALUES ('786', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23596 INSERT INTO `marc_subfield_structure` VALUES ('786', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23597 INSERT INTO `marc_subfield_structure` VALUES ('786', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23598 INSERT INTO `marc_subfield_structure` VALUES ('786', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23599 INSERT INTO `marc_subfield_structure` VALUES ('786', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23600 INSERT INTO `marc_subfield_structure` VALUES ('786', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23601 INSERT INTO `marc_subfield_structure` VALUES ('786', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23602 INSERT INTO `marc_subfield_structure` VALUES ('786', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23603 INSERT INTO `marc_subfield_structure` VALUES ('786', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23604 INSERT INTO `marc_subfield_structure` VALUES ('786', 'j', 'Period of content', 'Period of content', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23605 INSERT INTO `marc_subfield_structure` VALUES ('786', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23606 INSERT INTO `marc_subfield_structure` VALUES ('786', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23607 INSERT INTO `marc_subfield_structure` VALUES ('786', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23608 INSERT INTO `marc_subfield_structure` VALUES ('786', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23609 INSERT INTO `marc_subfield_structure` VALUES ('786', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23610 INSERT INTO `marc_subfield_structure` VALUES ('786', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23611 INSERT INTO `marc_subfield_structure` VALUES ('786', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23612 INSERT INTO `marc_subfield_structure` VALUES ('786', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23613 INSERT INTO `marc_subfield_structure` VALUES ('786', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23614 INSERT INTO `marc_subfield_structure` VALUES ('786', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23615 INSERT INTO `marc_subfield_structure` VALUES ('786', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23616 INSERT INTO `marc_subfield_structure` VALUES ('786', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23617 INSERT INTO `marc_subfield_structure` VALUES ('786', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23618 INSERT INTO `marc_subfield_structure` VALUES ('787', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23619 INSERT INTO `marc_subfield_structure` VALUES ('787', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23620 INSERT INTO `marc_subfield_structure` VALUES ('787', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23621 INSERT INTO `marc_subfield_structure` VALUES ('787', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23622 INSERT INTO `marc_subfield_structure` VALUES ('787', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23623 INSERT INTO `marc_subfield_structure` VALUES ('787', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23624 INSERT INTO `marc_subfield_structure` VALUES ('787', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23625 INSERT INTO `marc_subfield_structure` VALUES ('787', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23626 INSERT INTO `marc_subfield_structure` VALUES ('787', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23627 INSERT INTO `marc_subfield_structure` VALUES ('787', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23628 INSERT INTO `marc_subfield_structure` VALUES ('787', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23629 INSERT INTO `marc_subfield_structure` VALUES ('787', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23630 INSERT INTO `marc_subfield_structure` VALUES ('787', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23631 INSERT INTO `marc_subfield_structure` VALUES ('787', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23632 INSERT INTO `marc_subfield_structure` VALUES ('787', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23633 INSERT INTO `marc_subfield_structure` VALUES ('787', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23634 INSERT INTO `marc_subfield_structure` VALUES ('787', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23635 INSERT INTO `marc_subfield_structure` VALUES ('787', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23636 INSERT INTO `marc_subfield_structure` VALUES ('787', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23637 INSERT INTO `marc_subfield_structure` VALUES ('787', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23638 INSERT INTO `marc_subfield_structure` VALUES ('787', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23639 INSERT INTO `marc_subfield_structure` VALUES ('787', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23640 INSERT INTO `marc_subfield_structure` VALUES ('787', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23641 INSERT INTO `marc_subfield_structure` VALUES ('789', '%', '%', '%', 0, 0, '', 7, '', '', '', 0, -6, 'AR', '', '');
23642 INSERT INTO `marc_subfield_structure` VALUES ('789', '2', '2', '2', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23643 INSERT INTO `marc_subfield_structure` VALUES ('789', '3', '3', '3', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23644 INSERT INTO `marc_subfield_structure` VALUES ('789', '4', '4', '4', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23645 INSERT INTO `marc_subfield_structure` VALUES ('789', '5', '5', '5', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23646 INSERT INTO `marc_subfield_structure` VALUES ('789', '6', '6', '6', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23647 INSERT INTO `marc_subfield_structure` VALUES ('789', '7', '7', '7', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23648 INSERT INTO `marc_subfield_structure` VALUES ('789', '8', '8', '8', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23649 INSERT INTO `marc_subfield_structure` VALUES ('789', '9', '9', '9', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23650 INSERT INTO `marc_subfield_structure` VALUES ('789', 'a', 'a', 'a', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23651 INSERT INTO `marc_subfield_structure` VALUES ('789', 'b', 'b', 'b', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23652 INSERT INTO `marc_subfield_structure` VALUES ('789', 'c', 'c', 'c', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23653 INSERT INTO `marc_subfield_structure` VALUES ('789', 'd', 'd', 'd', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23654 INSERT INTO `marc_subfield_structure` VALUES ('789', 'e', 'e', 'e', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23655 INSERT INTO `marc_subfield_structure` VALUES ('789', 'f', 'f', 'f', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23656 INSERT INTO `marc_subfield_structure` VALUES ('789', 'g', 'g', 'g', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23657 INSERT INTO `marc_subfield_structure` VALUES ('789', 'h', 'h', 'h', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23658 INSERT INTO `marc_subfield_structure` VALUES ('789', 'i', 'i', 'i', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23659 INSERT INTO `marc_subfield_structure` VALUES ('789', 'j', 'j', 'j', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23660 INSERT INTO `marc_subfield_structure` VALUES ('789', 'k', 'k', 'k', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23661 INSERT INTO `marc_subfield_structure` VALUES ('789', 'l', 'l', 'l', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23662 INSERT INTO `marc_subfield_structure` VALUES ('789', 'm', 'm', 'm', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23663 INSERT INTO `marc_subfield_structure` VALUES ('789', 'n', 'n', 'n', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23664 INSERT INTO `marc_subfield_structure` VALUES ('789', 'o', 'o', 'o', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23665 INSERT INTO `marc_subfield_structure` VALUES ('789', 'p', 'p', 'p', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23666 INSERT INTO `marc_subfield_structure` VALUES ('789', 'q', 'q', 'q', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23667 INSERT INTO `marc_subfield_structure` VALUES ('789', 'r', 'r', 'r', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23668 INSERT INTO `marc_subfield_structure` VALUES ('789', 's', 's', 's', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23669 INSERT INTO `marc_subfield_structure` VALUES ('789', 't', 't', 't', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23670 INSERT INTO `marc_subfield_structure` VALUES ('789', 'u', 'u', 'u', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23671 INSERT INTO `marc_subfield_structure` VALUES ('789', 'v', 'v', 'v', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23672 INSERT INTO `marc_subfield_structure` VALUES ('789', 'w', 'w', 'w', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23673 INSERT INTO `marc_subfield_structure` VALUES ('789', 'x', 'x', 'x', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23674 INSERT INTO `marc_subfield_structure` VALUES ('789', 'y', 'y', 'y', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23675 INSERT INTO `marc_subfield_structure` VALUES ('789', 'z', 'z', 'z', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23676 INSERT INTO `marc_subfield_structure` VALUES ('796', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'AR', '', '');
23677 INSERT INTO `marc_subfield_structure` VALUES ('796', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23678 INSERT INTO `marc_subfield_structure` VALUES ('796', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23679 INSERT INTO `marc_subfield_structure` VALUES ('796', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23680 INSERT INTO `marc_subfield_structure` VALUES ('796', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23681 INSERT INTO `marc_subfield_structure` VALUES ('796', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23682 INSERT INTO `marc_subfield_structure` VALUES ('796', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'AR', '', '');
23683 INSERT INTO `marc_subfield_structure` VALUES ('796', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23684 INSERT INTO `marc_subfield_structure` VALUES ('796', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23685 INSERT INTO `marc_subfield_structure` VALUES ('796', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23686 INSERT INTO `marc_subfield_structure` VALUES ('796', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23687 INSERT INTO `marc_subfield_structure` VALUES ('796', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23688 INSERT INTO `marc_subfield_structure` VALUES ('796', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23689 INSERT INTO `marc_subfield_structure` VALUES ('796', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23690 INSERT INTO `marc_subfield_structure` VALUES ('796', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23691 INSERT INTO `marc_subfield_structure` VALUES ('796', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23692 INSERT INTO `marc_subfield_structure` VALUES ('796', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23693 INSERT INTO `marc_subfield_structure` VALUES ('796', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23694 INSERT INTO `marc_subfield_structure` VALUES ('796', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23695 INSERT INTO `marc_subfield_structure` VALUES ('796', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23696 INSERT INTO `marc_subfield_structure` VALUES ('796', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23697 INSERT INTO `marc_subfield_structure` VALUES ('796', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23698 INSERT INTO `marc_subfield_structure` VALUES ('796', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23699 INSERT INTO `marc_subfield_structure` VALUES ('796', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23700 INSERT INTO `marc_subfield_structure` VALUES ('796', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23701 INSERT INTO `marc_subfield_structure` VALUES ('796', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23702 INSERT INTO `marc_subfield_structure` VALUES ('796', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23703 INSERT INTO `marc_subfield_structure` VALUES ('796', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23704 INSERT INTO `marc_subfield_structure` VALUES ('797', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'AR', '', '');
23705 INSERT INTO `marc_subfield_structure` VALUES ('797', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23706 INSERT INTO `marc_subfield_structure` VALUES ('797', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23707 INSERT INTO `marc_subfield_structure` VALUES ('797', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23708 INSERT INTO `marc_subfield_structure` VALUES ('797', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23709 INSERT INTO `marc_subfield_structure` VALUES ('797', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23710 INSERT INTO `marc_subfield_structure` VALUES ('797', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'AR', '', '');
23711 INSERT INTO `marc_subfield_structure` VALUES ('797', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23712 INSERT INTO `marc_subfield_structure` VALUES ('797', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23713 INSERT INTO `marc_subfield_structure` VALUES ('797', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23714 INSERT INTO `marc_subfield_structure` VALUES ('797', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23715 INSERT INTO `marc_subfield_structure` VALUES ('797', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23716 INSERT INTO `marc_subfield_structure` VALUES ('797', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23717 INSERT INTO `marc_subfield_structure` VALUES ('797', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23718 INSERT INTO `marc_subfield_structure` VALUES ('797', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23719 INSERT INTO `marc_subfield_structure` VALUES ('797', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23720 INSERT INTO `marc_subfield_structure` VALUES ('797', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23721 INSERT INTO `marc_subfield_structure` VALUES ('797', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23722 INSERT INTO `marc_subfield_structure` VALUES ('797', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23723 INSERT INTO `marc_subfield_structure` VALUES ('797', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23724 INSERT INTO `marc_subfield_structure` VALUES ('797', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23725 INSERT INTO `marc_subfield_structure` VALUES ('797', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23726 INSERT INTO `marc_subfield_structure` VALUES ('797', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23727 INSERT INTO `marc_subfield_structure` VALUES ('797', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23728 INSERT INTO `marc_subfield_structure` VALUES ('797', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23729 INSERT INTO `marc_subfield_structure` VALUES ('797', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23730 INSERT INTO `marc_subfield_structure` VALUES ('798', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'AR', '', '');
23731 INSERT INTO `marc_subfield_structure` VALUES ('798', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23732 INSERT INTO `marc_subfield_structure` VALUES ('798', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23733 INSERT INTO `marc_subfield_structure` VALUES ('798', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23734 INSERT INTO `marc_subfield_structure` VALUES ('798', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23735 INSERT INTO `marc_subfield_structure` VALUES ('798', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23736 INSERT INTO `marc_subfield_structure` VALUES ('798', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'AR', '', '');
23737 INSERT INTO `marc_subfield_structure` VALUES ('798', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23738 INSERT INTO `marc_subfield_structure` VALUES ('798', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23739 INSERT INTO `marc_subfield_structure` VALUES ('798', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23740 INSERT INTO `marc_subfield_structure` VALUES ('798', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23741 INSERT INTO `marc_subfield_structure` VALUES ('798', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23742 INSERT INTO `marc_subfield_structure` VALUES ('798', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23743 INSERT INTO `marc_subfield_structure` VALUES ('798', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23744 INSERT INTO `marc_subfield_structure` VALUES ('798', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23745 INSERT INTO `marc_subfield_structure` VALUES ('798', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23746 INSERT INTO `marc_subfield_structure` VALUES ('798', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23747 INSERT INTO `marc_subfield_structure` VALUES ('798', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23748 INSERT INTO `marc_subfield_structure` VALUES ('798', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23749 INSERT INTO `marc_subfield_structure` VALUES ('798', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23750 INSERT INTO `marc_subfield_structure` VALUES ('798', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23751 INSERT INTO `marc_subfield_structure` VALUES ('798', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23752 INSERT INTO `marc_subfield_structure` VALUES ('798', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23753 INSERT INTO `marc_subfield_structure` VALUES ('798', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'AR', '', '');
23754 INSERT INTO `marc_subfield_structure` VALUES ('799', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'AR', '', '');
23755 INSERT INTO `marc_subfield_structure` VALUES ('799', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23756 INSERT INTO `marc_subfield_structure` VALUES ('799', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23757 INSERT INTO `marc_subfield_structure` VALUES ('799', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23758 INSERT INTO `marc_subfield_structure` VALUES ('799', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23759 INSERT INTO `marc_subfield_structure` VALUES ('799', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'AR', '', '');
23760 INSERT INTO `marc_subfield_structure` VALUES ('799', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23761 INSERT INTO `marc_subfield_structure` VALUES ('799', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23762 INSERT INTO `marc_subfield_structure` VALUES ('799', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23763 INSERT INTO `marc_subfield_structure` VALUES ('799', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23764 INSERT INTO `marc_subfield_structure` VALUES ('799', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23765 INSERT INTO `marc_subfield_structure` VALUES ('799', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23766 INSERT INTO `marc_subfield_structure` VALUES ('799', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23767 INSERT INTO `marc_subfield_structure` VALUES ('799', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23768 INSERT INTO `marc_subfield_structure` VALUES ('799', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23769 INSERT INTO `marc_subfield_structure` VALUES ('799', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23770 INSERT INTO `marc_subfield_structure` VALUES ('799', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23771 INSERT INTO `marc_subfield_structure` VALUES ('799', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23772 INSERT INTO `marc_subfield_structure` VALUES ('799', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23773 INSERT INTO `marc_subfield_structure` VALUES ('799', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23774 INSERT INTO `marc_subfield_structure` VALUES ('799', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'AR', '', '');
23775 INSERT INTO `marc_subfield_structure` VALUES ('800', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23776 INSERT INTO `marc_subfield_structure` VALUES ('800', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23777 INSERT INTO `marc_subfield_structure` VALUES ('800', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23778 INSERT INTO `marc_subfield_structure` VALUES ('800', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'AR', '', '');
23779 INSERT INTO `marc_subfield_structure` VALUES ('800', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23780 INSERT INTO `marc_subfield_structure` VALUES ('800', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23781 INSERT INTO `marc_subfield_structure` VALUES ('800', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23782 INSERT INTO `marc_subfield_structure` VALUES ('800', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23783 INSERT INTO `marc_subfield_structure` VALUES ('800', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23784 INSERT INTO `marc_subfield_structure` VALUES ('800', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23785 INSERT INTO `marc_subfield_structure` VALUES ('800', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23786 INSERT INTO `marc_subfield_structure` VALUES ('800', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23787 INSERT INTO `marc_subfield_structure` VALUES ('800', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23788 INSERT INTO `marc_subfield_structure` VALUES ('800', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23789 INSERT INTO `marc_subfield_structure` VALUES ('800', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23790 INSERT INTO `marc_subfield_structure` VALUES ('800', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23791 INSERT INTO `marc_subfield_structure` VALUES ('800', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23792 INSERT INTO `marc_subfield_structure` VALUES ('800', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23793 INSERT INTO `marc_subfield_structure` VALUES ('800', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23794 INSERT INTO `marc_subfield_structure` VALUES ('800', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23795 INSERT INTO `marc_subfield_structure` VALUES ('800', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23796 INSERT INTO `marc_subfield_structure` VALUES ('800', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23797 INSERT INTO `marc_subfield_structure` VALUES ('800', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23798 INSERT INTO `marc_subfield_structure` VALUES ('800', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23799 INSERT INTO `marc_subfield_structure` VALUES ('800', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23800 INSERT INTO `marc_subfield_structure` VALUES ('810', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23801 INSERT INTO `marc_subfield_structure` VALUES ('810', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23802 INSERT INTO `marc_subfield_structure` VALUES ('810', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23803 INSERT INTO `marc_subfield_structure` VALUES ('810', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'AR', '', '');
23804 INSERT INTO `marc_subfield_structure` VALUES ('810', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23805 INSERT INTO `marc_subfield_structure` VALUES ('810', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23806 INSERT INTO `marc_subfield_structure` VALUES ('810', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23807 INSERT INTO `marc_subfield_structure` VALUES ('810', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23808 INSERT INTO `marc_subfield_structure` VALUES ('810', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23809 INSERT INTO `marc_subfield_structure` VALUES ('810', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23810 INSERT INTO `marc_subfield_structure` VALUES ('810', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23811 INSERT INTO `marc_subfield_structure` VALUES ('810', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23812 INSERT INTO `marc_subfield_structure` VALUES ('810', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23813 INSERT INTO `marc_subfield_structure` VALUES ('810', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23814 INSERT INTO `marc_subfield_structure` VALUES ('810', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23815 INSERT INTO `marc_subfield_structure` VALUES ('810', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23816 INSERT INTO `marc_subfield_structure` VALUES ('810', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23817 INSERT INTO `marc_subfield_structure` VALUES ('810', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23818 INSERT INTO `marc_subfield_structure` VALUES ('810', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23819 INSERT INTO `marc_subfield_structure` VALUES ('810', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23820 INSERT INTO `marc_subfield_structure` VALUES ('810', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23821 INSERT INTO `marc_subfield_structure` VALUES ('810', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23822 INSERT INTO `marc_subfield_structure` VALUES ('810', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23823 INSERT INTO `marc_subfield_structure` VALUES ('811', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23824 INSERT INTO `marc_subfield_structure` VALUES ('811', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23825 INSERT INTO `marc_subfield_structure` VALUES ('811', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23826 INSERT INTO `marc_subfield_structure` VALUES ('811', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'AR', '', '');
23827 INSERT INTO `marc_subfield_structure` VALUES ('811', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23828 INSERT INTO `marc_subfield_structure` VALUES ('811', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23829 INSERT INTO `marc_subfield_structure` VALUES ('811', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23830 INSERT INTO `marc_subfield_structure` VALUES ('811', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23831 INSERT INTO `marc_subfield_structure` VALUES ('811', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23832 INSERT INTO `marc_subfield_structure` VALUES ('811', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23833 INSERT INTO `marc_subfield_structure` VALUES ('811', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23834 INSERT INTO `marc_subfield_structure` VALUES ('811', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23835 INSERT INTO `marc_subfield_structure` VALUES ('811', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23836 INSERT INTO `marc_subfield_structure` VALUES ('811', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23837 INSERT INTO `marc_subfield_structure` VALUES ('811', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23838 INSERT INTO `marc_subfield_structure` VALUES ('811', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23839 INSERT INTO `marc_subfield_structure` VALUES ('811', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23840 INSERT INTO `marc_subfield_structure` VALUES ('811', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23841 INSERT INTO `marc_subfield_structure` VALUES ('811', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23842 INSERT INTO `marc_subfield_structure` VALUES ('811', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23843 INSERT INTO `marc_subfield_structure` VALUES ('811', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
23844 INSERT INTO `marc_subfield_structure` VALUES ('830', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23845 INSERT INTO `marc_subfield_structure` VALUES ('830', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23846 INSERT INTO `marc_subfield_structure` VALUES ('830', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'AR', '', '');
23847 INSERT INTO `marc_subfield_structure` VALUES ('830', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23848 INSERT INTO `marc_subfield_structure` VALUES ('830', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23849 INSERT INTO `marc_subfield_structure` VALUES ('830', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23850 INSERT INTO `marc_subfield_structure` VALUES ('830', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23851 INSERT INTO `marc_subfield_structure` VALUES ('830', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23852 INSERT INTO `marc_subfield_structure` VALUES ('830', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23853 INSERT INTO `marc_subfield_structure` VALUES ('830', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23854 INSERT INTO `marc_subfield_structure` VALUES ('830', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23855 INSERT INTO `marc_subfield_structure` VALUES ('830', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23856 INSERT INTO `marc_subfield_structure` VALUES ('830', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23857 INSERT INTO `marc_subfield_structure` VALUES ('830', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23858 INSERT INTO `marc_subfield_structure` VALUES ('830', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23859 INSERT INTO `marc_subfield_structure` VALUES ('830', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23860 INSERT INTO `marc_subfield_structure` VALUES ('830', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23861 INSERT INTO `marc_subfield_structure` VALUES ('830', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23862 INSERT INTO `marc_subfield_structure` VALUES ('840', 'a', 'Title', 'Title', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23863 INSERT INTO `marc_subfield_structure` VALUES ('840', 'h', 'Medium', 'Medium', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23864 INSERT INTO `marc_subfield_structure` VALUES ('840', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
23865 INSERT INTO `marc_subfield_structure` VALUES ('841', 'a', 'Type of record', 'Type of record', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23866 INSERT INTO `marc_subfield_structure` VALUES ('841', 'b', 'Fixed-length data elements', 'Fixed-length data elements', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23867 INSERT INTO `marc_subfield_structure` VALUES ('841', 'e', 'Encoding level', 'Encoding level', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23868 INSERT INTO `marc_subfield_structure` VALUES ('842', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23869 INSERT INTO `marc_subfield_structure` VALUES ('842', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23870 INSERT INTO `marc_subfield_structure` VALUES ('842', 'a', 'Textual physical form designator', 'Textual physical form designator', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23871 INSERT INTO `marc_subfield_structure` VALUES ('843', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23872 INSERT INTO `marc_subfield_structure` VALUES ('843', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23873 INSERT INTO `marc_subfield_structure` VALUES ('843', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23874 INSERT INTO `marc_subfield_structure` VALUES ('843', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23875 INSERT INTO `marc_subfield_structure` VALUES ('843', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23876 INSERT INTO `marc_subfield_structure` VALUES ('843', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23877 INSERT INTO `marc_subfield_structure` VALUES ('843', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23878 INSERT INTO `marc_subfield_structure` VALUES ('843', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23879 INSERT INTO `marc_subfield_structure` VALUES ('843', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23880 INSERT INTO `marc_subfield_structure` VALUES ('843', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23881 INSERT INTO `marc_subfield_structure` VALUES ('843', 'm', 'Dates of publication and/or sequential designation of issues reproduced', 'Dates of publication and/or sequential designation of issues reproduced', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23882 INSERT INTO `marc_subfield_structure` VALUES ('843', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23883 INSERT INTO `marc_subfield_structure` VALUES ('844', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23884 INSERT INTO `marc_subfield_structure` VALUES ('844', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23885 INSERT INTO `marc_subfield_structure` VALUES ('844', 'a', 'Name of unit', 'Name of unit', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23886 INSERT INTO `marc_subfield_structure` VALUES ('845', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23887 INSERT INTO `marc_subfield_structure` VALUES ('845', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23888 INSERT INTO `marc_subfield_structure` VALUES ('845', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23889 INSERT INTO `marc_subfield_structure` VALUES ('845', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23890 INSERT INTO `marc_subfield_structure` VALUES ('845', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23891 INSERT INTO `marc_subfield_structure` VALUES ('845', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23892 INSERT INTO `marc_subfield_structure` VALUES ('845', 'c', 'Authorization', 'Authorization', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23893 INSERT INTO `marc_subfield_structure` VALUES ('845', 'd', 'Authorized users', 'Authorized users', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23894 INSERT INTO `marc_subfield_structure` VALUES ('850', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23895 INSERT INTO `marc_subfield_structure` VALUES ('850', 'a', 'Holding institution', 'Holding institution', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23896 INSERT INTO `marc_subfield_structure` VALUES ('850', 'b', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23897 INSERT INTO `marc_subfield_structure` VALUES ('850', 'd', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23898 INSERT INTO `marc_subfield_structure` VALUES ('850', 'e', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23899 INSERT INTO `marc_subfield_structure` VALUES ('851', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23900 INSERT INTO `marc_subfield_structure` VALUES ('851', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23901 INSERT INTO `marc_subfield_structure` VALUES ('851', 'a', 'Name (custodian or owner)', 'Name (custodian or owner)', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23902 INSERT INTO `marc_subfield_structure` VALUES ('851', 'b', 'Institutional division', 'Institutional division', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23903 INSERT INTO `marc_subfield_structure` VALUES ('851', 'c', 'Street address', 'Street address', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23904 INSERT INTO `marc_subfield_structure` VALUES ('851', 'd', 'Country', 'Country', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23905 INSERT INTO `marc_subfield_structure` VALUES ('851', 'e', 'Location of units', 'Location of units', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23906 INSERT INTO `marc_subfield_structure` VALUES ('851', 'f', 'Item number', 'Item number', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23907 INSERT INTO `marc_subfield_structure` VALUES ('851', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'AR', '', '');
23908 INSERT INTO `marc_subfield_structure` VALUES ('852', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23909 INSERT INTO `marc_subfield_structure` VALUES ('852', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23910 INSERT INTO `marc_subfield_structure` VALUES ('852', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23911 INSERT INTO `marc_subfield_structure` VALUES ('852', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23912 INSERT INTO `marc_subfield_structure` VALUES ('852', 'a', 'Location', 'Location', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23913 INSERT INTO `marc_subfield_structure` VALUES ('852', 'b', 'Sublocation or collection', 'Sublocation or collection', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23914 INSERT INTO `marc_subfield_structure` VALUES ('852', 'c', 'Shelving location', 'Shelving location', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23915 INSERT INTO `marc_subfield_structure` VALUES ('852', 'e', 'Address', 'Address', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23916 INSERT INTO `marc_subfield_structure` VALUES ('852', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23917 INSERT INTO `marc_subfield_structure` VALUES ('852', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23918 INSERT INTO `marc_subfield_structure` VALUES ('852', 'h', 'Classification part', 'Classification part', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23919 INSERT INTO `marc_subfield_structure` VALUES ('852', 'i', 'Item part', 'Item part', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23920 INSERT INTO `marc_subfield_structure` VALUES ('852', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23921 INSERT INTO `marc_subfield_structure` VALUES ('852', 'k', 'Call number prefix', 'Call number prefix', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23922 INSERT INTO `marc_subfield_structure` VALUES ('852', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23923 INSERT INTO `marc_subfield_structure` VALUES ('852', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23924 INSERT INTO `marc_subfield_structure` VALUES ('852', 'n', 'Country code', 'Country code', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23925 INSERT INTO `marc_subfield_structure` VALUES ('852', 'p', 'Piece designation', 'Piece designation', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23926 INSERT INTO `marc_subfield_structure` VALUES ('852', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23927 INSERT INTO `marc_subfield_structure` VALUES ('852', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23928 INSERT INTO `marc_subfield_structure` VALUES ('852', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23929 INSERT INTO `marc_subfield_structure` VALUES ('852', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23930 INSERT INTO `marc_subfield_structure` VALUES ('852', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23931 INSERT INTO `marc_subfield_structure` VALUES ('853', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23932 INSERT INTO `marc_subfield_structure` VALUES ('853', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23933 INSERT INTO `marc_subfield_structure` VALUES ('853', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23934 INSERT INTO `marc_subfield_structure` VALUES ('853', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23935 INSERT INTO `marc_subfield_structure` VALUES ('853', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23936 INSERT INTO `marc_subfield_structure` VALUES ('853', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23937 INSERT INTO `marc_subfield_structure` VALUES ('853', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23938 INSERT INTO `marc_subfield_structure` VALUES ('853', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23939 INSERT INTO `marc_subfield_structure` VALUES ('853', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23940 INSERT INTO `marc_subfield_structure` VALUES ('853', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23941 INSERT INTO `marc_subfield_structure` VALUES ('853', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23942 INSERT INTO `marc_subfield_structure` VALUES ('853', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23943 INSERT INTO `marc_subfield_structure` VALUES ('853', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23944 INSERT INTO `marc_subfield_structure` VALUES ('853', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23945 INSERT INTO `marc_subfield_structure` VALUES ('853', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23946 INSERT INTO `marc_subfield_structure` VALUES ('853', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23947 INSERT INTO `marc_subfield_structure` VALUES ('853', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23948 INSERT INTO `marc_subfield_structure` VALUES ('853', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23949 INSERT INTO `marc_subfield_structure` VALUES ('853', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23950 INSERT INTO `marc_subfield_structure` VALUES ('853', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23951 INSERT INTO `marc_subfield_structure` VALUES ('853', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23952 INSERT INTO `marc_subfield_structure` VALUES ('853', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23953 INSERT INTO `marc_subfield_structure` VALUES ('853', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23954 INSERT INTO `marc_subfield_structure` VALUES ('853', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23955 INSERT INTO `marc_subfield_structure` VALUES ('853', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23956 INSERT INTO `marc_subfield_structure` VALUES ('854', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23957 INSERT INTO `marc_subfield_structure` VALUES ('854', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23958 INSERT INTO `marc_subfield_structure` VALUES ('854', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23959 INSERT INTO `marc_subfield_structure` VALUES ('854', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23960 INSERT INTO `marc_subfield_structure` VALUES ('854', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23961 INSERT INTO `marc_subfield_structure` VALUES ('854', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23962 INSERT INTO `marc_subfield_structure` VALUES ('854', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23963 INSERT INTO `marc_subfield_structure` VALUES ('854', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23964 INSERT INTO `marc_subfield_structure` VALUES ('854', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23965 INSERT INTO `marc_subfield_structure` VALUES ('854', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23966 INSERT INTO `marc_subfield_structure` VALUES ('854', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23967 INSERT INTO `marc_subfield_structure` VALUES ('854', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23968 INSERT INTO `marc_subfield_structure` VALUES ('854', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23969 INSERT INTO `marc_subfield_structure` VALUES ('854', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23970 INSERT INTO `marc_subfield_structure` VALUES ('854', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23971 INSERT INTO `marc_subfield_structure` VALUES ('854', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23972 INSERT INTO `marc_subfield_structure` VALUES ('854', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23973 INSERT INTO `marc_subfield_structure` VALUES ('854', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23974 INSERT INTO `marc_subfield_structure` VALUES ('854', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23975 INSERT INTO `marc_subfield_structure` VALUES ('854', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23976 INSERT INTO `marc_subfield_structure` VALUES ('854', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23977 INSERT INTO `marc_subfield_structure` VALUES ('854', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23978 INSERT INTO `marc_subfield_structure` VALUES ('854', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23979 INSERT INTO `marc_subfield_structure` VALUES ('854', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23980 INSERT INTO `marc_subfield_structure` VALUES ('854', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23981 INSERT INTO `marc_subfield_structure` VALUES ('855', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23982 INSERT INTO `marc_subfield_structure` VALUES ('855', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23983 INSERT INTO `marc_subfield_structure` VALUES ('855', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23984 INSERT INTO `marc_subfield_structure` VALUES ('855', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23985 INSERT INTO `marc_subfield_structure` VALUES ('855', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23986 INSERT INTO `marc_subfield_structure` VALUES ('855', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23987 INSERT INTO `marc_subfield_structure` VALUES ('855', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23988 INSERT INTO `marc_subfield_structure` VALUES ('855', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23989 INSERT INTO `marc_subfield_structure` VALUES ('855', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23990 INSERT INTO `marc_subfield_structure` VALUES ('855', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23991 INSERT INTO `marc_subfield_structure` VALUES ('855', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23992 INSERT INTO `marc_subfield_structure` VALUES ('855', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23993 INSERT INTO `marc_subfield_structure` VALUES ('855', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23994 INSERT INTO `marc_subfield_structure` VALUES ('855', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23995 INSERT INTO `marc_subfield_structure` VALUES ('855', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23996 INSERT INTO `marc_subfield_structure` VALUES ('855', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23997 INSERT INTO `marc_subfield_structure` VALUES ('855', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23998 INSERT INTO `marc_subfield_structure` VALUES ('855', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
23999 INSERT INTO `marc_subfield_structure` VALUES ('855', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24000 INSERT INTO `marc_subfield_structure` VALUES ('855', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24001 INSERT INTO `marc_subfield_structure` VALUES ('855', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24002 INSERT INTO `marc_subfield_structure` VALUES ('855', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24003 INSERT INTO `marc_subfield_structure` VALUES ('855', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24004 INSERT INTO `marc_subfield_structure` VALUES ('855', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24005 INSERT INTO `marc_subfield_structure` VALUES ('855', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24006 INSERT INTO `marc_subfield_structure` VALUES ('856', '2', 'Access method', 'Access method', 0, 0, '', 8, '', '', '', 0, -6, 'AR', '', '');
24007 INSERT INTO `marc_subfield_structure` VALUES ('856', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', 0, -6, 'AR', '', '');
24008 INSERT INTO `marc_subfield_structure` VALUES ('856', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', 0, -6, 'AR', '', '');
24009 INSERT INTO `marc_subfield_structure` VALUES ('856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', 0, -6, 'AR', '', '');
24010 INSERT INTO `marc_subfield_structure` VALUES ('856', 'a', 'Host name', 'Host name', 1, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24011 INSERT INTO `marc_subfield_structure` VALUES ('856', 'b', 'Access number', 'Access number', 1, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24012 INSERT INTO `marc_subfield_structure` VALUES ('856', 'c', 'Compression information', 'Compression information', 1, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24013 INSERT INTO `marc_subfield_structure` VALUES ('856', 'd', 'Path', 'Path', 1, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24014 INSERT INTO `marc_subfield_structure` VALUES ('856', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24015 INSERT INTO `marc_subfield_structure` VALUES ('856', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24016 INSERT INTO `marc_subfield_structure` VALUES ('856', 'i', 'Instruction', 'Instruction', 1, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24017 INSERT INTO `marc_subfield_structure` VALUES ('856', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24018 INSERT INTO `marc_subfield_structure` VALUES ('856', 'k', 'Password', 'Password', 0, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24019 INSERT INTO `marc_subfield_structure` VALUES ('856', 'l', 'Logon', 'Logon', 0, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24020 INSERT INTO `marc_subfield_structure` VALUES ('856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24021 INSERT INTO `marc_subfield_structure` VALUES ('856', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24022 INSERT INTO `marc_subfield_structure` VALUES ('856', 'o', 'Operating system', 'Operating system', 0, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24023 INSERT INTO `marc_subfield_structure` VALUES ('856', 'p', 'Port', 'Port', 0, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24024 INSERT INTO `marc_subfield_structure` VALUES ('856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24025 INSERT INTO `marc_subfield_structure` VALUES ('856', 'r', 'Settings', 'Settings', 0, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24026 INSERT INTO `marc_subfield_structure` VALUES ('856', 's', 'File size', 'File size', 1, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24027 INSERT INTO `marc_subfield_structure` VALUES ('856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24028 INSERT INTO `marc_subfield_structure` VALUES ('856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 'biblioitems.url', 8, '', '', '', 1, -1, 'AR', '', '');
24029 INSERT INTO `marc_subfield_structure` VALUES ('856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24030 INSERT INTO `marc_subfield_structure` VALUES ('856', 'w', 'Record control number', 'Record control number', 1, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24031 INSERT INTO `marc_subfield_structure` VALUES ('856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 1, 'AR', '', '');
24032 INSERT INTO `marc_subfield_structure` VALUES ('856', 'y', 'Link text', 'Link text', 1, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24033 INSERT INTO `marc_subfield_structure` VALUES ('856', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, -1, 'AR', '', '');
24034 INSERT INTO `marc_subfield_structure` VALUES ('859', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'AR', '', '');
24035 INSERT INTO `marc_subfield_structure` VALUES ('859', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'AR', '', '');
24036 INSERT INTO `marc_subfield_structure` VALUES ('859', 'd', 'TDC (RLIN)', 'TDC (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'AR', '', '');
24037 INSERT INTO `marc_subfield_structure` VALUES ('859', 'l', 'LIB (RLIN)', 'LIB (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'AR', '', '');
24038 INSERT INTO `marc_subfield_structure` VALUES ('859', 'p', 'PRI (RLIN)', 'PRI (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'AR', '', '');
24039 INSERT INTO `marc_subfield_structure` VALUES ('859', 'r', 'REG (RLIN)', 'REG (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'AR', '', '');
24040 INSERT INTO `marc_subfield_structure` VALUES ('859', 'v', 'VER (RLIN)', 'VER (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'AR', '', '');
24041 INSERT INTO `marc_subfield_structure` VALUES ('859', 'x', 'LDEL (RLIN)', 'LDEL (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'AR', '', '');
24042 INSERT INTO `marc_subfield_structure` VALUES ('866', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24043 INSERT INTO `marc_subfield_structure` VALUES ('866', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24044 INSERT INTO `marc_subfield_structure` VALUES ('866', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'AR', '', '');
24045 INSERT INTO `marc_subfield_structure` VALUES ('866', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'AR', '', '');
24046 INSERT INTO `marc_subfield_structure` VALUES ('866', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'AR', '', '');
24047 INSERT INTO `marc_subfield_structure` VALUES ('867', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24048 INSERT INTO `marc_subfield_structure` VALUES ('867', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24049 INSERT INTO `marc_subfield_structure` VALUES ('867', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'AR', '', '');
24050 INSERT INTO `marc_subfield_structure` VALUES ('867', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'AR', '', '');
24051 INSERT INTO `marc_subfield_structure` VALUES ('867', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'AR', '', '');
24052 INSERT INTO `marc_subfield_structure` VALUES ('868', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24053 INSERT INTO `marc_subfield_structure` VALUES ('868', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24054 INSERT INTO `marc_subfield_structure` VALUES ('868', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'AR', '', '');
24055 INSERT INTO `marc_subfield_structure` VALUES ('868', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'AR', '', '');
24056 INSERT INTO `marc_subfield_structure` VALUES ('868', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'AR', '', '');
24057 INSERT INTO `marc_subfield_structure` VALUES ('870', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24058 INSERT INTO `marc_subfield_structure` VALUES ('870', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24059 INSERT INTO `marc_subfield_structure` VALUES ('870', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24060 INSERT INTO `marc_subfield_structure` VALUES ('870', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24061 INSERT INTO `marc_subfield_structure` VALUES ('870', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24062 INSERT INTO `marc_subfield_structure` VALUES ('870', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24063 INSERT INTO `marc_subfield_structure` VALUES ('870', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24064 INSERT INTO `marc_subfield_structure` VALUES ('870', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24065 INSERT INTO `marc_subfield_structure` VALUES ('870', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24066 INSERT INTO `marc_subfield_structure` VALUES ('870', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24067 INSERT INTO `marc_subfield_structure` VALUES ('870', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24068 INSERT INTO `marc_subfield_structure` VALUES ('870', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24069 INSERT INTO `marc_subfield_structure` VALUES ('870', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24070 INSERT INTO `marc_subfield_structure` VALUES ('870', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24071 INSERT INTO `marc_subfield_structure` VALUES ('870', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24072 INSERT INTO `marc_subfield_structure` VALUES ('870', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24073 INSERT INTO `marc_subfield_structure` VALUES ('870', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24074 INSERT INTO `marc_subfield_structure` VALUES ('871', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24075 INSERT INTO `marc_subfield_structure` VALUES ('871', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24076 INSERT INTO `marc_subfield_structure` VALUES ('871', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24077 INSERT INTO `marc_subfield_structure` VALUES ('871', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24078 INSERT INTO `marc_subfield_structure` VALUES ('871', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24079 INSERT INTO `marc_subfield_structure` VALUES ('871', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24080 INSERT INTO `marc_subfield_structure` VALUES ('871', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24081 INSERT INTO `marc_subfield_structure` VALUES ('871', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24082 INSERT INTO `marc_subfield_structure` VALUES ('871', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24083 INSERT INTO `marc_subfield_structure` VALUES ('871', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24084 INSERT INTO `marc_subfield_structure` VALUES ('871', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24085 INSERT INTO `marc_subfield_structure` VALUES ('871', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24086 INSERT INTO `marc_subfield_structure` VALUES ('871', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24087 INSERT INTO `marc_subfield_structure` VALUES ('871', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24088 INSERT INTO `marc_subfield_structure` VALUES ('871', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24089 INSERT INTO `marc_subfield_structure` VALUES ('871', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24090 INSERT INTO `marc_subfield_structure` VALUES ('872', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24091 INSERT INTO `marc_subfield_structure` VALUES ('872', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24092 INSERT INTO `marc_subfield_structure` VALUES ('872', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24093 INSERT INTO `marc_subfield_structure` VALUES ('872', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24094 INSERT INTO `marc_subfield_structure` VALUES ('872', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24095 INSERT INTO `marc_subfield_structure` VALUES ('872', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24096 INSERT INTO `marc_subfield_structure` VALUES ('872', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24097 INSERT INTO `marc_subfield_structure` VALUES ('872', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24098 INSERT INTO `marc_subfield_structure` VALUES ('872', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24099 INSERT INTO `marc_subfield_structure` VALUES ('872', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24100 INSERT INTO `marc_subfield_structure` VALUES ('872', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24101 INSERT INTO `marc_subfield_structure` VALUES ('872', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24102 INSERT INTO `marc_subfield_structure` VALUES ('872', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24103 INSERT INTO `marc_subfield_structure` VALUES ('872', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24104 INSERT INTO `marc_subfield_structure` VALUES ('872', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24105 INSERT INTO `marc_subfield_structure` VALUES ('872', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24106 INSERT INTO `marc_subfield_structure` VALUES ('872', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24107 INSERT INTO `marc_subfield_structure` VALUES ('873', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24108 INSERT INTO `marc_subfield_structure` VALUES ('873', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24109 INSERT INTO `marc_subfield_structure` VALUES ('873', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24110 INSERT INTO `marc_subfield_structure` VALUES ('873', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24111 INSERT INTO `marc_subfield_structure` VALUES ('873', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24112 INSERT INTO `marc_subfield_structure` VALUES ('873', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24113 INSERT INTO `marc_subfield_structure` VALUES ('873', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24114 INSERT INTO `marc_subfield_structure` VALUES ('873', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24115 INSERT INTO `marc_subfield_structure` VALUES ('873', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24116 INSERT INTO `marc_subfield_structure` VALUES ('873', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24117 INSERT INTO `marc_subfield_structure` VALUES ('873', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24118 INSERT INTO `marc_subfield_structure` VALUES ('873', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24119 INSERT INTO `marc_subfield_structure` VALUES ('873', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24120 INSERT INTO `marc_subfield_structure` VALUES ('873', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24121 INSERT INTO `marc_subfield_structure` VALUES ('873', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24122 INSERT INTO `marc_subfield_structure` VALUES ('873', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24123 INSERT INTO `marc_subfield_structure` VALUES ('876', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24124 INSERT INTO `marc_subfield_structure` VALUES ('876', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24125 INSERT INTO `marc_subfield_structure` VALUES ('876', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24126 INSERT INTO `marc_subfield_structure` VALUES ('876', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24127 INSERT INTO `marc_subfield_structure` VALUES ('876', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24128 INSERT INTO `marc_subfield_structure` VALUES ('876', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24129 INSERT INTO `marc_subfield_structure` VALUES ('876', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24130 INSERT INTO `marc_subfield_structure` VALUES ('876', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24131 INSERT INTO `marc_subfield_structure` VALUES ('876', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24132 INSERT INTO `marc_subfield_structure` VALUES ('876', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24133 INSERT INTO `marc_subfield_structure` VALUES ('876', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24134 INSERT INTO `marc_subfield_structure` VALUES ('876', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24135 INSERT INTO `marc_subfield_structure` VALUES ('876', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24136 INSERT INTO `marc_subfield_structure` VALUES ('876', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24137 INSERT INTO `marc_subfield_structure` VALUES ('876', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24138 INSERT INTO `marc_subfield_structure` VALUES ('876', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24139 INSERT INTO `marc_subfield_structure` VALUES ('877', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24140 INSERT INTO `marc_subfield_structure` VALUES ('877', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24141 INSERT INTO `marc_subfield_structure` VALUES ('877', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24142 INSERT INTO `marc_subfield_structure` VALUES ('877', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24143 INSERT INTO `marc_subfield_structure` VALUES ('877', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24144 INSERT INTO `marc_subfield_structure` VALUES ('877', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24145 INSERT INTO `marc_subfield_structure` VALUES ('877', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24146 INSERT INTO `marc_subfield_structure` VALUES ('877', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24147 INSERT INTO `marc_subfield_structure` VALUES ('877', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24148 INSERT INTO `marc_subfield_structure` VALUES ('877', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24149 INSERT INTO `marc_subfield_structure` VALUES ('877', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24150 INSERT INTO `marc_subfield_structure` VALUES ('877', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24151 INSERT INTO `marc_subfield_structure` VALUES ('877', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24152 INSERT INTO `marc_subfield_structure` VALUES ('877', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24153 INSERT INTO `marc_subfield_structure` VALUES ('877', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24154 INSERT INTO `marc_subfield_structure` VALUES ('877', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24155 INSERT INTO `marc_subfield_structure` VALUES ('878', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24156 INSERT INTO `marc_subfield_structure` VALUES ('878', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24157 INSERT INTO `marc_subfield_structure` VALUES ('878', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24158 INSERT INTO `marc_subfield_structure` VALUES ('878', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24159 INSERT INTO `marc_subfield_structure` VALUES ('878', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24160 INSERT INTO `marc_subfield_structure` VALUES ('878', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24161 INSERT INTO `marc_subfield_structure` VALUES ('878', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24162 INSERT INTO `marc_subfield_structure` VALUES ('878', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24163 INSERT INTO `marc_subfield_structure` VALUES ('878', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24164 INSERT INTO `marc_subfield_structure` VALUES ('878', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24165 INSERT INTO `marc_subfield_structure` VALUES ('878', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24166 INSERT INTO `marc_subfield_structure` VALUES ('878', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24167 INSERT INTO `marc_subfield_structure` VALUES ('878', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24168 INSERT INTO `marc_subfield_structure` VALUES ('878', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24169 INSERT INTO `marc_subfield_structure` VALUES ('878', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24170 INSERT INTO `marc_subfield_structure` VALUES ('878', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24171 INSERT INTO `marc_subfield_structure` VALUES ('880', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24172 INSERT INTO `marc_subfield_structure` VALUES ('880', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24173 INSERT INTO `marc_subfield_structure` VALUES ('880', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24174 INSERT INTO `marc_subfield_structure` VALUES ('880', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24175 INSERT INTO `marc_subfield_structure` VALUES ('880', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24176 INSERT INTO `marc_subfield_structure` VALUES ('880', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24177 INSERT INTO `marc_subfield_structure` VALUES ('880', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24178 INSERT INTO `marc_subfield_structure` VALUES ('880', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24179 INSERT INTO `marc_subfield_structure` VALUES ('880', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24180 INSERT INTO `marc_subfield_structure` VALUES ('880', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24181 INSERT INTO `marc_subfield_structure` VALUES ('880', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24182 INSERT INTO `marc_subfield_structure` VALUES ('880', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24183 INSERT INTO `marc_subfield_structure` VALUES ('880', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24184 INSERT INTO `marc_subfield_structure` VALUES ('880', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24185 INSERT INTO `marc_subfield_structure` VALUES ('880', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24186 INSERT INTO `marc_subfield_structure` VALUES ('880', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24187 INSERT INTO `marc_subfield_structure` VALUES ('880', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24188 INSERT INTO `marc_subfield_structure` VALUES ('880', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24189 INSERT INTO `marc_subfield_structure` VALUES ('880', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24190 INSERT INTO `marc_subfield_structure` VALUES ('880', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24191 INSERT INTO `marc_subfield_structure` VALUES ('880', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24192 INSERT INTO `marc_subfield_structure` VALUES ('880', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24193 INSERT INTO `marc_subfield_structure` VALUES ('880', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24194 INSERT INTO `marc_subfield_structure` VALUES ('880', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24195 INSERT INTO `marc_subfield_structure` VALUES ('880', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24196 INSERT INTO `marc_subfield_structure` VALUES ('880', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24197 INSERT INTO `marc_subfield_structure` VALUES ('880', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24198 INSERT INTO `marc_subfield_structure` VALUES ('880', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24199 INSERT INTO `marc_subfield_structure` VALUES ('880', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24200 INSERT INTO `marc_subfield_structure` VALUES ('880', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24201 INSERT INTO `marc_subfield_structure` VALUES ('880', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24202 INSERT INTO `marc_subfield_structure` VALUES ('880', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24203 INSERT INTO `marc_subfield_structure` VALUES ('880', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24204 INSERT INTO `marc_subfield_structure` VALUES ('880', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24205 INSERT INTO `marc_subfield_structure` VALUES ('886', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24206 INSERT INTO `marc_subfield_structure` VALUES ('886', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24207 INSERT INTO `marc_subfield_structure` VALUES ('886', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24208 INSERT INTO `marc_subfield_structure` VALUES ('886', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24209 INSERT INTO `marc_subfield_structure` VALUES ('886', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24210 INSERT INTO `marc_subfield_structure` VALUES ('886', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24211 INSERT INTO `marc_subfield_structure` VALUES ('886', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24212 INSERT INTO `marc_subfield_structure` VALUES ('886', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24213 INSERT INTO `marc_subfield_structure` VALUES ('886', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24214 INSERT INTO `marc_subfield_structure` VALUES ('886', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24215 INSERT INTO `marc_subfield_structure` VALUES ('886', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24216 INSERT INTO `marc_subfield_structure` VALUES ('886', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24217 INSERT INTO `marc_subfield_structure` VALUES ('886', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24218 INSERT INTO `marc_subfield_structure` VALUES ('886', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24219 INSERT INTO `marc_subfield_structure` VALUES ('886', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24220 INSERT INTO `marc_subfield_structure` VALUES ('886', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24221 INSERT INTO `marc_subfield_structure` VALUES ('886', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24222 INSERT INTO `marc_subfield_structure` VALUES ('886', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24223 INSERT INTO `marc_subfield_structure` VALUES ('886', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24224 INSERT INTO `marc_subfield_structure` VALUES ('886', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24225 INSERT INTO `marc_subfield_structure` VALUES ('886', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24226 INSERT INTO `marc_subfield_structure` VALUES ('886', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24227 INSERT INTO `marc_subfield_structure` VALUES ('886', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24228 INSERT INTO `marc_subfield_structure` VALUES ('886', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24229 INSERT INTO `marc_subfield_structure` VALUES ('886', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24230 INSERT INTO `marc_subfield_structure` VALUES ('886', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24231 INSERT INTO `marc_subfield_structure` VALUES ('886', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24232 INSERT INTO `marc_subfield_structure` VALUES ('886', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24233 INSERT INTO `marc_subfield_structure` VALUES ('886', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24234 INSERT INTO `marc_subfield_structure` VALUES ('886', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24235 INSERT INTO `marc_subfield_structure` VALUES ('886', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24236 INSERT INTO `marc_subfield_structure` VALUES ('886', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24237 INSERT INTO `marc_subfield_structure` VALUES ('886', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24238 INSERT INTO `marc_subfield_structure` VALUES ('886', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24239 INSERT INTO `marc_subfield_structure` VALUES ('886', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24240 INSERT INTO `marc_subfield_structure` VALUES ('886', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24241 INSERT INTO `marc_subfield_structure` VALUES ('887', '2', 'Source of data', 'Source of data', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24242 INSERT INTO `marc_subfield_structure` VALUES ('887', 'a', 'Content of non-MARC field', 'Content of non-MARC field', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24243 INSERT INTO `marc_subfield_structure` VALUES ('896', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'AR', '', '');
24244 INSERT INTO `marc_subfield_structure` VALUES ('896', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24245 INSERT INTO `marc_subfield_structure` VALUES ('896', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24246 INSERT INTO `marc_subfield_structure` VALUES ('896', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24247 INSERT INTO `marc_subfield_structure` VALUES ('896', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'AR', '', '');
24248 INSERT INTO `marc_subfield_structure` VALUES ('896', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24249 INSERT INTO `marc_subfield_structure` VALUES ('896', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24250 INSERT INTO `marc_subfield_structure` VALUES ('896', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24251 INSERT INTO `marc_subfield_structure` VALUES ('896', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24252 INSERT INTO `marc_subfield_structure` VALUES ('896', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24253 INSERT INTO `marc_subfield_structure` VALUES ('896', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24254 INSERT INTO `marc_subfield_structure` VALUES ('896', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24255 INSERT INTO `marc_subfield_structure` VALUES ('896', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24256 INSERT INTO `marc_subfield_structure` VALUES ('896', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24257 INSERT INTO `marc_subfield_structure` VALUES ('896', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24258 INSERT INTO `marc_subfield_structure` VALUES ('896', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24259 INSERT INTO `marc_subfield_structure` VALUES ('896', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24260 INSERT INTO `marc_subfield_structure` VALUES ('896', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24261 INSERT INTO `marc_subfield_structure` VALUES ('896', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24262 INSERT INTO `marc_subfield_structure` VALUES ('896', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24263 INSERT INTO `marc_subfield_structure` VALUES ('896', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24264 INSERT INTO `marc_subfield_structure` VALUES ('896', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24265 INSERT INTO `marc_subfield_structure` VALUES ('896', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24266 INSERT INTO `marc_subfield_structure` VALUES ('896', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24267 INSERT INTO `marc_subfield_structure` VALUES ('896', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24268 INSERT INTO `marc_subfield_structure` VALUES ('896', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24269 INSERT INTO `marc_subfield_structure` VALUES ('897', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'AR', '', '');
24270 INSERT INTO `marc_subfield_structure` VALUES ('897', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24271 INSERT INTO `marc_subfield_structure` VALUES ('897', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24272 INSERT INTO `marc_subfield_structure` VALUES ('897', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24273 INSERT INTO `marc_subfield_structure` VALUES ('897', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'AR', '', '');
24274 INSERT INTO `marc_subfield_structure` VALUES ('897', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24275 INSERT INTO `marc_subfield_structure` VALUES ('897', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24276 INSERT INTO `marc_subfield_structure` VALUES ('897', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24277 INSERT INTO `marc_subfield_structure` VALUES ('897', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24278 INSERT INTO `marc_subfield_structure` VALUES ('897', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24279 INSERT INTO `marc_subfield_structure` VALUES ('897', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24280 INSERT INTO `marc_subfield_structure` VALUES ('897', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24281 INSERT INTO `marc_subfield_structure` VALUES ('897', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24282 INSERT INTO `marc_subfield_structure` VALUES ('897', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24283 INSERT INTO `marc_subfield_structure` VALUES ('897', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24284 INSERT INTO `marc_subfield_structure` VALUES ('897', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24285 INSERT INTO `marc_subfield_structure` VALUES ('897', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24286 INSERT INTO `marc_subfield_structure` VALUES ('897', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24287 INSERT INTO `marc_subfield_structure` VALUES ('897', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24288 INSERT INTO `marc_subfield_structure` VALUES ('897', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24289 INSERT INTO `marc_subfield_structure` VALUES ('897', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24290 INSERT INTO `marc_subfield_structure` VALUES ('897', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24291 INSERT INTO `marc_subfield_structure` VALUES ('897', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24292 INSERT INTO `marc_subfield_structure` VALUES ('897', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24293 INSERT INTO `marc_subfield_structure` VALUES ('898', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'AR', '', '');
24294 INSERT INTO `marc_subfield_structure` VALUES ('898', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24295 INSERT INTO `marc_subfield_structure` VALUES ('898', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24296 INSERT INTO `marc_subfield_structure` VALUES ('898', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24297 INSERT INTO `marc_subfield_structure` VALUES ('898', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'AR', '', '');
24298 INSERT INTO `marc_subfield_structure` VALUES ('898', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24299 INSERT INTO `marc_subfield_structure` VALUES ('898', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24300 INSERT INTO `marc_subfield_structure` VALUES ('898', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24301 INSERT INTO `marc_subfield_structure` VALUES ('898', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24302 INSERT INTO `marc_subfield_structure` VALUES ('898', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24303 INSERT INTO `marc_subfield_structure` VALUES ('898', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24304 INSERT INTO `marc_subfield_structure` VALUES ('898', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24305 INSERT INTO `marc_subfield_structure` VALUES ('898', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24306 INSERT INTO `marc_subfield_structure` VALUES ('898', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24307 INSERT INTO `marc_subfield_structure` VALUES ('898', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24308 INSERT INTO `marc_subfield_structure` VALUES ('898', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24309 INSERT INTO `marc_subfield_structure` VALUES ('898', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24310 INSERT INTO `marc_subfield_structure` VALUES ('898', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24311 INSERT INTO `marc_subfield_structure` VALUES ('898', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24312 INSERT INTO `marc_subfield_structure` VALUES ('898', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24313 INSERT INTO `marc_subfield_structure` VALUES ('898', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24314 INSERT INTO `marc_subfield_structure` VALUES ('898', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
24315 INSERT INTO `marc_subfield_structure` VALUES ('899', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'AR', '', '');
24316 INSERT INTO `marc_subfield_structure` VALUES ('899', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24317 INSERT INTO `marc_subfield_structure` VALUES ('899', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24318 INSERT INTO `marc_subfield_structure` VALUES ('899', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'AR', '', '');
24319 INSERT INTO `marc_subfield_structure` VALUES ('899', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24320 INSERT INTO `marc_subfield_structure` VALUES ('899', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24321 INSERT INTO `marc_subfield_structure` VALUES ('899', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24322 INSERT INTO `marc_subfield_structure` VALUES ('899', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24323 INSERT INTO `marc_subfield_structure` VALUES ('899', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24324 INSERT INTO `marc_subfield_structure` VALUES ('899', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24325 INSERT INTO `marc_subfield_structure` VALUES ('899', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24326 INSERT INTO `marc_subfield_structure` VALUES ('899', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24327 INSERT INTO `marc_subfield_structure` VALUES ('899', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24328 INSERT INTO `marc_subfield_structure` VALUES ('899', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24329 INSERT INTO `marc_subfield_structure` VALUES ('899', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24330 INSERT INTO `marc_subfield_structure` VALUES ('899', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24331 INSERT INTO `marc_subfield_structure` VALUES ('899', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24332 INSERT INTO `marc_subfield_structure` VALUES ('899', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24333 INSERT INTO `marc_subfield_structure` VALUES ('899', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, 5, 'AR', '', '');
24334 INSERT INTO `marc_subfield_structure` VALUES ('89e', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24335 INSERT INTO `marc_subfield_structure` VALUES ('89e', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24336 INSERT INTO `marc_subfield_structure` VALUES ('89e', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24337 INSERT INTO `marc_subfield_structure` VALUES ('89e', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24338 INSERT INTO `marc_subfield_structure` VALUES ('89e', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24339 INSERT INTO `marc_subfield_structure` VALUES ('89e', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24340 INSERT INTO `marc_subfield_structure` VALUES ('89e', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24341 INSERT INTO `marc_subfield_structure` VALUES ('89e', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24342 INSERT INTO `marc_subfield_structure` VALUES ('89e', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24343 INSERT INTO `marc_subfield_structure` VALUES ('89e', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24344 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24345 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24346 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24347 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24348 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24349 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24350 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24351 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24352 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24353 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24354 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24355 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24356 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24357 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24358 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24359 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24360 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24361 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24362 INSERT INTO `marc_subfield_structure` VALUES ('89e', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24363 INSERT INTO `marc_subfield_structure` VALUES ('89e', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24364 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24365 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24366 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24367 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24368 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24369 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'AR', '', '');
24370 INSERT INTO `marc_subfield_structure` VALUES ('900', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24371 INSERT INTO `marc_subfield_structure` VALUES ('900', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24372 INSERT INTO `marc_subfield_structure` VALUES ('900', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24373 INSERT INTO `marc_subfield_structure` VALUES ('900', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24374 INSERT INTO `marc_subfield_structure` VALUES ('900', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24375 INSERT INTO `marc_subfield_structure` VALUES ('900', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24376 INSERT INTO `marc_subfield_structure` VALUES ('900', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24377 INSERT INTO `marc_subfield_structure` VALUES ('900', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24378 INSERT INTO `marc_subfield_structure` VALUES ('900', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24379 INSERT INTO `marc_subfield_structure` VALUES ('900', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24380 INSERT INTO `marc_subfield_structure` VALUES ('900', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24381 INSERT INTO `marc_subfield_structure` VALUES ('900', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24382 INSERT INTO `marc_subfield_structure` VALUES ('900', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24383 INSERT INTO `marc_subfield_structure` VALUES ('900', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24384 INSERT INTO `marc_subfield_structure` VALUES ('900', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24385 INSERT INTO `marc_subfield_structure` VALUES ('900', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24386 INSERT INTO `marc_subfield_structure` VALUES ('900', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24387 INSERT INTO `marc_subfield_structure` VALUES ('900', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24388 INSERT INTO `marc_subfield_structure` VALUES ('901', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24389 INSERT INTO `marc_subfield_structure` VALUES ('901', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24390 INSERT INTO `marc_subfield_structure` VALUES ('901', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24391 INSERT INTO `marc_subfield_structure` VALUES ('901', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24392 INSERT INTO `marc_subfield_structure` VALUES ('901', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24393 INSERT INTO `marc_subfield_structure` VALUES ('901', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24394 INSERT INTO `marc_subfield_structure` VALUES ('901', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24395 INSERT INTO `marc_subfield_structure` VALUES ('901', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24396 INSERT INTO `marc_subfield_structure` VALUES ('901', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24397 INSERT INTO `marc_subfield_structure` VALUES ('901', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24398 INSERT INTO `marc_subfield_structure` VALUES ('901', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24399 INSERT INTO `marc_subfield_structure` VALUES ('901', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24400 INSERT INTO `marc_subfield_structure` VALUES ('901', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24401 INSERT INTO `marc_subfield_structure` VALUES ('901', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24402 INSERT INTO `marc_subfield_structure` VALUES ('901', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24403 INSERT INTO `marc_subfield_structure` VALUES ('901', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24404 INSERT INTO `marc_subfield_structure` VALUES ('901', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24405 INSERT INTO `marc_subfield_structure` VALUES ('901', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24406 INSERT INTO `marc_subfield_structure` VALUES ('901', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24407 INSERT INTO `marc_subfield_structure` VALUES ('901', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24408 INSERT INTO `marc_subfield_structure` VALUES ('901', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24409 INSERT INTO `marc_subfield_structure` VALUES ('901', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24410 INSERT INTO `marc_subfield_structure` VALUES ('901', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24411 INSERT INTO `marc_subfield_structure` VALUES ('901', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24412 INSERT INTO `marc_subfield_structure` VALUES ('901', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24413 INSERT INTO `marc_subfield_structure` VALUES ('901', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24414 INSERT INTO `marc_subfield_structure` VALUES ('901', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24415 INSERT INTO `marc_subfield_structure` VALUES ('901', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24416 INSERT INTO `marc_subfield_structure` VALUES ('901', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24417 INSERT INTO `marc_subfield_structure` VALUES ('901', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24418 INSERT INTO `marc_subfield_structure` VALUES ('901', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24419 INSERT INTO `marc_subfield_structure` VALUES ('901', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24420 INSERT INTO `marc_subfield_structure` VALUES ('901', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24421 INSERT INTO `marc_subfield_structure` VALUES ('901', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24422 INSERT INTO `marc_subfield_structure` VALUES ('901', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24423 INSERT INTO `marc_subfield_structure` VALUES ('901', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24424 INSERT INTO `marc_subfield_structure` VALUES ('902', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24425 INSERT INTO `marc_subfield_structure` VALUES ('902', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24426 INSERT INTO `marc_subfield_structure` VALUES ('902', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24427 INSERT INTO `marc_subfield_structure` VALUES ('902', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24428 INSERT INTO `marc_subfield_structure` VALUES ('902', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24429 INSERT INTO `marc_subfield_structure` VALUES ('902', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24430 INSERT INTO `marc_subfield_structure` VALUES ('902', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24431 INSERT INTO `marc_subfield_structure` VALUES ('902', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24432 INSERT INTO `marc_subfield_structure` VALUES ('902', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24433 INSERT INTO `marc_subfield_structure` VALUES ('902', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24434 INSERT INTO `marc_subfield_structure` VALUES ('902', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24435 INSERT INTO `marc_subfield_structure` VALUES ('902', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24436 INSERT INTO `marc_subfield_structure` VALUES ('902', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24437 INSERT INTO `marc_subfield_structure` VALUES ('902', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24438 INSERT INTO `marc_subfield_structure` VALUES ('902', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24439 INSERT INTO `marc_subfield_structure` VALUES ('902', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24440 INSERT INTO `marc_subfield_structure` VALUES ('902', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24441 INSERT INTO `marc_subfield_structure` VALUES ('902', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24442 INSERT INTO `marc_subfield_structure` VALUES ('902', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24443 INSERT INTO `marc_subfield_structure` VALUES ('902', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24444 INSERT INTO `marc_subfield_structure` VALUES ('902', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24445 INSERT INTO `marc_subfield_structure` VALUES ('902', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24446 INSERT INTO `marc_subfield_structure` VALUES ('902', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24447 INSERT INTO `marc_subfield_structure` VALUES ('902', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24448 INSERT INTO `marc_subfield_structure` VALUES ('902', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24449 INSERT INTO `marc_subfield_structure` VALUES ('902', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24450 INSERT INTO `marc_subfield_structure` VALUES ('902', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24451 INSERT INTO `marc_subfield_structure` VALUES ('902', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24452 INSERT INTO `marc_subfield_structure` VALUES ('902', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24453 INSERT INTO `marc_subfield_structure` VALUES ('902', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24454 INSERT INTO `marc_subfield_structure` VALUES ('902', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24455 INSERT INTO `marc_subfield_structure` VALUES ('902', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24456 INSERT INTO `marc_subfield_structure` VALUES ('902', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24457 INSERT INTO `marc_subfield_structure` VALUES ('902', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24458 INSERT INTO `marc_subfield_structure` VALUES ('902', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24459 INSERT INTO `marc_subfield_structure` VALUES ('902', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24460 INSERT INTO `marc_subfield_structure` VALUES ('903', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24461 INSERT INTO `marc_subfield_structure` VALUES ('903', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24462 INSERT INTO `marc_subfield_structure` VALUES ('903', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24463 INSERT INTO `marc_subfield_structure` VALUES ('903', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24464 INSERT INTO `marc_subfield_structure` VALUES ('903', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24465 INSERT INTO `marc_subfield_structure` VALUES ('903', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24466 INSERT INTO `marc_subfield_structure` VALUES ('903', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24467 INSERT INTO `marc_subfield_structure` VALUES ('903', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24468 INSERT INTO `marc_subfield_structure` VALUES ('903', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24469 INSERT INTO `marc_subfield_structure` VALUES ('903', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24470 INSERT INTO `marc_subfield_structure` VALUES ('903', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24471 INSERT INTO `marc_subfield_structure` VALUES ('903', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24472 INSERT INTO `marc_subfield_structure` VALUES ('903', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24473 INSERT INTO `marc_subfield_structure` VALUES ('903', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24474 INSERT INTO `marc_subfield_structure` VALUES ('903', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24475 INSERT INTO `marc_subfield_structure` VALUES ('903', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24476 INSERT INTO `marc_subfield_structure` VALUES ('903', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24477 INSERT INTO `marc_subfield_structure` VALUES ('903', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24478 INSERT INTO `marc_subfield_structure` VALUES ('903', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24479 INSERT INTO `marc_subfield_structure` VALUES ('903', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24480 INSERT INTO `marc_subfield_structure` VALUES ('903', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24481 INSERT INTO `marc_subfield_structure` VALUES ('903', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24482 INSERT INTO `marc_subfield_structure` VALUES ('903', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24483 INSERT INTO `marc_subfield_structure` VALUES ('903', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24484 INSERT INTO `marc_subfield_structure` VALUES ('903', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24485 INSERT INTO `marc_subfield_structure` VALUES ('903', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24486 INSERT INTO `marc_subfield_structure` VALUES ('903', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24487 INSERT INTO `marc_subfield_structure` VALUES ('903', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24488 INSERT INTO `marc_subfield_structure` VALUES ('903', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24489 INSERT INTO `marc_subfield_structure` VALUES ('903', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24490 INSERT INTO `marc_subfield_structure` VALUES ('903', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24491 INSERT INTO `marc_subfield_structure` VALUES ('903', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24492 INSERT INTO `marc_subfield_structure` VALUES ('903', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24493 INSERT INTO `marc_subfield_structure` VALUES ('903', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24494 INSERT INTO `marc_subfield_structure` VALUES ('903', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24495 INSERT INTO `marc_subfield_structure` VALUES ('903', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24496 INSERT INTO `marc_subfield_structure` VALUES ('904', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24497 INSERT INTO `marc_subfield_structure` VALUES ('904', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24498 INSERT INTO `marc_subfield_structure` VALUES ('904', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24499 INSERT INTO `marc_subfield_structure` VALUES ('904', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24500 INSERT INTO `marc_subfield_structure` VALUES ('904', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24501 INSERT INTO `marc_subfield_structure` VALUES ('904', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24502 INSERT INTO `marc_subfield_structure` VALUES ('904', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24503 INSERT INTO `marc_subfield_structure` VALUES ('904', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24504 INSERT INTO `marc_subfield_structure` VALUES ('904', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24505 INSERT INTO `marc_subfield_structure` VALUES ('904', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24506 INSERT INTO `marc_subfield_structure` VALUES ('904', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24507 INSERT INTO `marc_subfield_structure` VALUES ('904', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24508 INSERT INTO `marc_subfield_structure` VALUES ('904', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24509 INSERT INTO `marc_subfield_structure` VALUES ('904', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24510 INSERT INTO `marc_subfield_structure` VALUES ('904', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24511 INSERT INTO `marc_subfield_structure` VALUES ('904', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24512 INSERT INTO `marc_subfield_structure` VALUES ('904', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24513 INSERT INTO `marc_subfield_structure` VALUES ('904', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24514 INSERT INTO `marc_subfield_structure` VALUES ('904', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24515 INSERT INTO `marc_subfield_structure` VALUES ('904', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24516 INSERT INTO `marc_subfield_structure` VALUES ('904', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24517 INSERT INTO `marc_subfield_structure` VALUES ('904', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24518 INSERT INTO `marc_subfield_structure` VALUES ('904', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24519 INSERT INTO `marc_subfield_structure` VALUES ('904', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24520 INSERT INTO `marc_subfield_structure` VALUES ('904', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24521 INSERT INTO `marc_subfield_structure` VALUES ('904', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24522 INSERT INTO `marc_subfield_structure` VALUES ('904', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24523 INSERT INTO `marc_subfield_structure` VALUES ('904', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24524 INSERT INTO `marc_subfield_structure` VALUES ('904', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24525 INSERT INTO `marc_subfield_structure` VALUES ('904', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24526 INSERT INTO `marc_subfield_structure` VALUES ('904', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24527 INSERT INTO `marc_subfield_structure` VALUES ('904', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24528 INSERT INTO `marc_subfield_structure` VALUES ('904', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24529 INSERT INTO `marc_subfield_structure` VALUES ('904', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24530 INSERT INTO `marc_subfield_structure` VALUES ('904', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24531 INSERT INTO `marc_subfield_structure` VALUES ('904', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24532 INSERT INTO `marc_subfield_structure` VALUES ('905', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24533 INSERT INTO `marc_subfield_structure` VALUES ('905', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24534 INSERT INTO `marc_subfield_structure` VALUES ('905', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24535 INSERT INTO `marc_subfield_structure` VALUES ('905', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24536 INSERT INTO `marc_subfield_structure` VALUES ('905', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24537 INSERT INTO `marc_subfield_structure` VALUES ('905', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24538 INSERT INTO `marc_subfield_structure` VALUES ('905', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24539 INSERT INTO `marc_subfield_structure` VALUES ('905', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24540 INSERT INTO `marc_subfield_structure` VALUES ('905', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24541 INSERT INTO `marc_subfield_structure` VALUES ('905', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24542 INSERT INTO `marc_subfield_structure` VALUES ('905', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24543 INSERT INTO `marc_subfield_structure` VALUES ('905', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24544 INSERT INTO `marc_subfield_structure` VALUES ('905', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24545 INSERT INTO `marc_subfield_structure` VALUES ('905', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24546 INSERT INTO `marc_subfield_structure` VALUES ('905', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24547 INSERT INTO `marc_subfield_structure` VALUES ('905', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24548 INSERT INTO `marc_subfield_structure` VALUES ('905', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24549 INSERT INTO `marc_subfield_structure` VALUES ('905', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24550 INSERT INTO `marc_subfield_structure` VALUES ('905', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24551 INSERT INTO `marc_subfield_structure` VALUES ('905', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24552 INSERT INTO `marc_subfield_structure` VALUES ('905', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24553 INSERT INTO `marc_subfield_structure` VALUES ('905', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24554 INSERT INTO `marc_subfield_structure` VALUES ('905', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24555 INSERT INTO `marc_subfield_structure` VALUES ('905', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24556 INSERT INTO `marc_subfield_structure` VALUES ('905', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24557 INSERT INTO `marc_subfield_structure` VALUES ('905', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24558 INSERT INTO `marc_subfield_structure` VALUES ('905', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24559 INSERT INTO `marc_subfield_structure` VALUES ('905', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24560 INSERT INTO `marc_subfield_structure` VALUES ('905', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24561 INSERT INTO `marc_subfield_structure` VALUES ('905', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24562 INSERT INTO `marc_subfield_structure` VALUES ('905', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24563 INSERT INTO `marc_subfield_structure` VALUES ('905', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24564 INSERT INTO `marc_subfield_structure` VALUES ('905', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24565 INSERT INTO `marc_subfield_structure` VALUES ('905', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24566 INSERT INTO `marc_subfield_structure` VALUES ('905', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24567 INSERT INTO `marc_subfield_structure` VALUES ('905', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24568 INSERT INTO `marc_subfield_structure` VALUES ('906', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24569 INSERT INTO `marc_subfield_structure` VALUES ('906', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24570 INSERT INTO `marc_subfield_structure` VALUES ('906', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24571 INSERT INTO `marc_subfield_structure` VALUES ('906', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24572 INSERT INTO `marc_subfield_structure` VALUES ('906', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24573 INSERT INTO `marc_subfield_structure` VALUES ('906', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24574 INSERT INTO `marc_subfield_structure` VALUES ('906', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24575 INSERT INTO `marc_subfield_structure` VALUES ('906', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24576 INSERT INTO `marc_subfield_structure` VALUES ('906', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24577 INSERT INTO `marc_subfield_structure` VALUES ('906', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24578 INSERT INTO `marc_subfield_structure` VALUES ('906', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24579 INSERT INTO `marc_subfield_structure` VALUES ('906', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24580 INSERT INTO `marc_subfield_structure` VALUES ('906', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24581 INSERT INTO `marc_subfield_structure` VALUES ('906', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24582 INSERT INTO `marc_subfield_structure` VALUES ('906', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24583 INSERT INTO `marc_subfield_structure` VALUES ('906', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24584 INSERT INTO `marc_subfield_structure` VALUES ('906', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24585 INSERT INTO `marc_subfield_structure` VALUES ('906', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24586 INSERT INTO `marc_subfield_structure` VALUES ('906', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24587 INSERT INTO `marc_subfield_structure` VALUES ('906', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24588 INSERT INTO `marc_subfield_structure` VALUES ('906', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24589 INSERT INTO `marc_subfield_structure` VALUES ('906', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24590 INSERT INTO `marc_subfield_structure` VALUES ('906', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24591 INSERT INTO `marc_subfield_structure` VALUES ('906', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24592 INSERT INTO `marc_subfield_structure` VALUES ('906', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24593 INSERT INTO `marc_subfield_structure` VALUES ('906', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24594 INSERT INTO `marc_subfield_structure` VALUES ('906', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24595 INSERT INTO `marc_subfield_structure` VALUES ('906', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24596 INSERT INTO `marc_subfield_structure` VALUES ('906', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24597 INSERT INTO `marc_subfield_structure` VALUES ('906', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24598 INSERT INTO `marc_subfield_structure` VALUES ('906', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24599 INSERT INTO `marc_subfield_structure` VALUES ('906', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24600 INSERT INTO `marc_subfield_structure` VALUES ('906', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24601 INSERT INTO `marc_subfield_structure` VALUES ('906', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24602 INSERT INTO `marc_subfield_structure` VALUES ('906', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24603 INSERT INTO `marc_subfield_structure` VALUES ('906', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24604 INSERT INTO `marc_subfield_structure` VALUES ('907', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24605 INSERT INTO `marc_subfield_structure` VALUES ('907', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24606 INSERT INTO `marc_subfield_structure` VALUES ('907', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24607 INSERT INTO `marc_subfield_structure` VALUES ('907', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24608 INSERT INTO `marc_subfield_structure` VALUES ('907', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24609 INSERT INTO `marc_subfield_structure` VALUES ('907', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24610 INSERT INTO `marc_subfield_structure` VALUES ('907', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24611 INSERT INTO `marc_subfield_structure` VALUES ('907', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24612 INSERT INTO `marc_subfield_structure` VALUES ('907', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24613 INSERT INTO `marc_subfield_structure` VALUES ('907', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24614 INSERT INTO `marc_subfield_structure` VALUES ('907', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24615 INSERT INTO `marc_subfield_structure` VALUES ('907', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24616 INSERT INTO `marc_subfield_structure` VALUES ('907', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24617 INSERT INTO `marc_subfield_structure` VALUES ('907', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24618 INSERT INTO `marc_subfield_structure` VALUES ('907', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24619 INSERT INTO `marc_subfield_structure` VALUES ('907', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24620 INSERT INTO `marc_subfield_structure` VALUES ('907', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24621 INSERT INTO `marc_subfield_structure` VALUES ('907', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24622 INSERT INTO `marc_subfield_structure` VALUES ('907', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24623 INSERT INTO `marc_subfield_structure` VALUES ('907', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24624 INSERT INTO `marc_subfield_structure` VALUES ('907', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24625 INSERT INTO `marc_subfield_structure` VALUES ('907', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24626 INSERT INTO `marc_subfield_structure` VALUES ('907', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24627 INSERT INTO `marc_subfield_structure` VALUES ('907', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24628 INSERT INTO `marc_subfield_structure` VALUES ('907', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24629 INSERT INTO `marc_subfield_structure` VALUES ('907', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24630 INSERT INTO `marc_subfield_structure` VALUES ('907', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24631 INSERT INTO `marc_subfield_structure` VALUES ('907', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24632 INSERT INTO `marc_subfield_structure` VALUES ('907', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24633 INSERT INTO `marc_subfield_structure` VALUES ('907', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24634 INSERT INTO `marc_subfield_structure` VALUES ('907', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24635 INSERT INTO `marc_subfield_structure` VALUES ('907', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24636 INSERT INTO `marc_subfield_structure` VALUES ('907', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24637 INSERT INTO `marc_subfield_structure` VALUES ('907', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24638 INSERT INTO `marc_subfield_structure` VALUES ('907', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24639 INSERT INTO `marc_subfield_structure` VALUES ('907', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24640 INSERT INTO `marc_subfield_structure` VALUES ('908', 'a', 'Put command parameter', 'Put command parameter', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24641 INSERT INTO `marc_subfield_structure` VALUES ('910', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24642 INSERT INTO `marc_subfield_structure` VALUES ('910', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24643 INSERT INTO `marc_subfield_structure` VALUES ('910', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24644 INSERT INTO `marc_subfield_structure` VALUES ('910', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24645 INSERT INTO `marc_subfield_structure` VALUES ('910', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24646 INSERT INTO `marc_subfield_structure` VALUES ('910', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24647 INSERT INTO `marc_subfield_structure` VALUES ('910', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24648 INSERT INTO `marc_subfield_structure` VALUES ('910', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24649 INSERT INTO `marc_subfield_structure` VALUES ('910', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24650 INSERT INTO `marc_subfield_structure` VALUES ('910', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24651 INSERT INTO `marc_subfield_structure` VALUES ('910', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24652 INSERT INTO `marc_subfield_structure` VALUES ('910', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24653 INSERT INTO `marc_subfield_structure` VALUES ('910', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24654 INSERT INTO `marc_subfield_structure` VALUES ('910', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24655 INSERT INTO `marc_subfield_structure` VALUES ('910', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24656 INSERT INTO `marc_subfield_structure` VALUES ('910', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24657 INSERT INTO `marc_subfield_structure` VALUES ('91o', 'a', 'User-option data', 'User-option data', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24658 INSERT INTO `marc_subfield_structure` VALUES ('91r', 'a', 'RLG standards note', 'RLG standards note', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24659 INSERT INTO `marc_subfield_structure` VALUES ('911', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24660 INSERT INTO `marc_subfield_structure` VALUES ('911', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24661 INSERT INTO `marc_subfield_structure` VALUES ('911', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24662 INSERT INTO `marc_subfield_structure` VALUES ('911', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24663 INSERT INTO `marc_subfield_structure` VALUES ('911', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24664 INSERT INTO `marc_subfield_structure` VALUES ('911', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24665 INSERT INTO `marc_subfield_structure` VALUES ('911', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24666 INSERT INTO `marc_subfield_structure` VALUES ('911', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24667 INSERT INTO `marc_subfield_structure` VALUES ('911', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24668 INSERT INTO `marc_subfield_structure` VALUES ('911', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24669 INSERT INTO `marc_subfield_structure` VALUES ('911', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24670 INSERT INTO `marc_subfield_structure` VALUES ('911', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24671 INSERT INTO `marc_subfield_structure` VALUES ('911', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24672 INSERT INTO `marc_subfield_structure` VALUES ('911', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24673 INSERT INTO `marc_subfield_structure` VALUES ('911', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24674 INSERT INTO `marc_subfield_structure` VALUES ('911', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24675 INSERT INTO `marc_subfield_structure` VALUES ('911', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24676 INSERT INTO `marc_subfield_structure` VALUES ('930', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24677 INSERT INTO `marc_subfield_structure` VALUES ('930', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24678 INSERT INTO `marc_subfield_structure` VALUES ('930', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24679 INSERT INTO `marc_subfield_structure` VALUES ('930', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24680 INSERT INTO `marc_subfield_structure` VALUES ('930', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24681 INSERT INTO `marc_subfield_structure` VALUES ('930', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24682 INSERT INTO `marc_subfield_structure` VALUES ('930', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24683 INSERT INTO `marc_subfield_structure` VALUES ('930', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24684 INSERT INTO `marc_subfield_structure` VALUES ('930', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24685 INSERT INTO `marc_subfield_structure` VALUES ('930', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24686 INSERT INTO `marc_subfield_structure` VALUES ('930', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24687 INSERT INTO `marc_subfield_structure` VALUES ('930', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24688 INSERT INTO `marc_subfield_structure` VALUES ('930', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24689 INSERT INTO `marc_subfield_structure` VALUES ('930', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24690 INSERT INTO `marc_subfield_structure` VALUES ('930', 's', 'Version', 'Version', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24691 INSERT INTO `marc_subfield_structure` VALUES ('930', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24692 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'a', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'AR', '', '');
24693 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'b', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'AR', '', '');
24694 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'c', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'AR', '', '');
24695 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'd', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'AR', '', '');
24696 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'e', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'AR', '', '');
24697 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'f', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'AR', '', '');
24698 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'g', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'AR', '', '');
24699 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'h', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'AR', '', '');
24700 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'i', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'AR', '', '');
24701 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'k', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'AR', '', '');
24702 INSERT INTO `marc_subfield_structure` VALUES ('936', 'a', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24703 INSERT INTO `marc_subfield_structure` VALUES ('940', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24704 INSERT INTO `marc_subfield_structure` VALUES ('940', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24705 INSERT INTO `marc_subfield_structure` VALUES ('940', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', 1, -6, 'AR', '', '');
24706 INSERT INTO `marc_subfield_structure` VALUES ('940', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24707 INSERT INTO `marc_subfield_structure` VALUES ('940', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24708 INSERT INTO `marc_subfield_structure` VALUES ('940', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24709 INSERT INTO `marc_subfield_structure` VALUES ('940', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24710 INSERT INTO `marc_subfield_structure` VALUES ('940', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24711 INSERT INTO `marc_subfield_structure` VALUES ('940', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24712 INSERT INTO `marc_subfield_structure` VALUES ('940', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24713 INSERT INTO `marc_subfield_structure` VALUES ('940', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24714 INSERT INTO `marc_subfield_structure` VALUES ('940', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24715 INSERT INTO `marc_subfield_structure` VALUES ('940', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24716 INSERT INTO `marc_subfield_structure` VALUES ('940', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24717 INSERT INTO `marc_subfield_structure` VALUES ('940', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24718 INSERT INTO `marc_subfield_structure` VALUES ('941', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24719 INSERT INTO `marc_subfield_structure` VALUES ('941', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'AR', '', '');
24720 INSERT INTO `marc_subfield_structure` VALUES ('943', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24721 INSERT INTO `marc_subfield_structure` VALUES ('943', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24722 INSERT INTO `marc_subfield_structure` VALUES ('943', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 9, '', '', '', 1, 5, 'AR', '', '130');
24723 INSERT INTO `marc_subfield_structure` VALUES ('943', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24724 INSERT INTO `marc_subfield_structure` VALUES ('943', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24725 INSERT INTO `marc_subfield_structure` VALUES ('943', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24726 INSERT INTO `marc_subfield_structure` VALUES ('943', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24727 INSERT INTO `marc_subfield_structure` VALUES ('943', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24728 INSERT INTO `marc_subfield_structure` VALUES ('943', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24729 INSERT INTO `marc_subfield_structure` VALUES ('943', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24730 INSERT INTO `marc_subfield_structure` VALUES ('943', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24731 INSERT INTO `marc_subfield_structure` VALUES ('943', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24732 INSERT INTO `marc_subfield_structure` VALUES ('943', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24733 INSERT INTO `marc_subfield_structure` VALUES ('943', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24734 INSERT INTO `marc_subfield_structure` VALUES ('943', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24735 INSERT INTO `marc_subfield_structure` VALUES ('945', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24736 INSERT INTO `marc_subfield_structure` VALUES ('945', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24737 INSERT INTO `marc_subfield_structure` VALUES ('945', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24738 INSERT INTO `marc_subfield_structure` VALUES ('945', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24739 INSERT INTO `marc_subfield_structure` VALUES ('945', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24740 INSERT INTO `marc_subfield_structure` VALUES ('945', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24741 INSERT INTO `marc_subfield_structure` VALUES ('945', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24742 INSERT INTO `marc_subfield_structure` VALUES ('945', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24743 INSERT INTO `marc_subfield_structure` VALUES ('945', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24744 INSERT INTO `marc_subfield_structure` VALUES ('945', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24745 INSERT INTO `marc_subfield_structure` VALUES ('945', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24746 INSERT INTO `marc_subfield_structure` VALUES ('945', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24747 INSERT INTO `marc_subfield_structure` VALUES ('945', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24748 INSERT INTO `marc_subfield_structure` VALUES ('945', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24749 INSERT INTO `marc_subfield_structure` VALUES ('945', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24750 INSERT INTO `marc_subfield_structure` VALUES ('945', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24751 INSERT INTO `marc_subfield_structure` VALUES ('945', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24752 INSERT INTO `marc_subfield_structure` VALUES ('945', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24753 INSERT INTO `marc_subfield_structure` VALUES ('945', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24754 INSERT INTO `marc_subfield_structure` VALUES ('945', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24755 INSERT INTO `marc_subfield_structure` VALUES ('945', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24756 INSERT INTO `marc_subfield_structure` VALUES ('945', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24757 INSERT INTO `marc_subfield_structure` VALUES ('945', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24758 INSERT INTO `marc_subfield_structure` VALUES ('945', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24759 INSERT INTO `marc_subfield_structure` VALUES ('945', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24760 INSERT INTO `marc_subfield_structure` VALUES ('945', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24761 INSERT INTO `marc_subfield_structure` VALUES ('945', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24762 INSERT INTO `marc_subfield_structure` VALUES ('945', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24763 INSERT INTO `marc_subfield_structure` VALUES ('945', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24764 INSERT INTO `marc_subfield_structure` VALUES ('945', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24765 INSERT INTO `marc_subfield_structure` VALUES ('945', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24766 INSERT INTO `marc_subfield_structure` VALUES ('945', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24767 INSERT INTO `marc_subfield_structure` VALUES ('945', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24768 INSERT INTO `marc_subfield_structure` VALUES ('945', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24769 INSERT INTO `marc_subfield_structure` VALUES ('945', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24770 INSERT INTO `marc_subfield_structure` VALUES ('945', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24771 INSERT INTO `marc_subfield_structure` VALUES ('94c', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24772 INSERT INTO `marc_subfield_structure` VALUES ('94c', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24773 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'a', 'Title', 'Title', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24774 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24775 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24776 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24777 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24778 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24779 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24780 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24781 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'k', 'Form', 'Form', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24782 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24783 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24784 INSERT INTO `marc_subfield_structure` VALUES ('94c', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24785 INSERT INTO `marc_subfield_structure` VALUES ('946', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24786 INSERT INTO `marc_subfield_structure` VALUES ('946', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24787 INSERT INTO `marc_subfield_structure` VALUES ('946', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24788 INSERT INTO `marc_subfield_structure` VALUES ('946', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24789 INSERT INTO `marc_subfield_structure` VALUES ('946', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24790 INSERT INTO `marc_subfield_structure` VALUES ('946', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24791 INSERT INTO `marc_subfield_structure` VALUES ('946', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24792 INSERT INTO `marc_subfield_structure` VALUES ('946', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24793 INSERT INTO `marc_subfield_structure` VALUES ('946', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24794 INSERT INTO `marc_subfield_structure` VALUES ('946', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24795 INSERT INTO `marc_subfield_structure` VALUES ('946', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24796 INSERT INTO `marc_subfield_structure` VALUES ('946', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24797 INSERT INTO `marc_subfield_structure` VALUES ('946', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24798 INSERT INTO `marc_subfield_structure` VALUES ('946', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24799 INSERT INTO `marc_subfield_structure` VALUES ('946', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24800 INSERT INTO `marc_subfield_structure` VALUES ('946', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24801 INSERT INTO `marc_subfield_structure` VALUES ('946', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24802 INSERT INTO `marc_subfield_structure` VALUES ('946', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24803 INSERT INTO `marc_subfield_structure` VALUES ('946', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24804 INSERT INTO `marc_subfield_structure` VALUES ('946', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24805 INSERT INTO `marc_subfield_structure` VALUES ('946', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24806 INSERT INTO `marc_subfield_structure` VALUES ('946', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24807 INSERT INTO `marc_subfield_structure` VALUES ('946', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24808 INSERT INTO `marc_subfield_structure` VALUES ('946', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24809 INSERT INTO `marc_subfield_structure` VALUES ('946', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24810 INSERT INTO `marc_subfield_structure` VALUES ('946', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24811 INSERT INTO `marc_subfield_structure` VALUES ('946', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24812 INSERT INTO `marc_subfield_structure` VALUES ('946', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24813 INSERT INTO `marc_subfield_structure` VALUES ('946', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24814 INSERT INTO `marc_subfield_structure` VALUES ('946', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24815 INSERT INTO `marc_subfield_structure` VALUES ('946', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24816 INSERT INTO `marc_subfield_structure` VALUES ('946', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24817 INSERT INTO `marc_subfield_structure` VALUES ('946', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24818 INSERT INTO `marc_subfield_structure` VALUES ('946', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24819 INSERT INTO `marc_subfield_structure` VALUES ('946', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24820 INSERT INTO `marc_subfield_structure` VALUES ('946', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24821 INSERT INTO `marc_subfield_structure` VALUES ('947', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24822 INSERT INTO `marc_subfield_structure` VALUES ('947', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24823 INSERT INTO `marc_subfield_structure` VALUES ('947', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24824 INSERT INTO `marc_subfield_structure` VALUES ('947', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24825 INSERT INTO `marc_subfield_structure` VALUES ('947', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24826 INSERT INTO `marc_subfield_structure` VALUES ('947', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24827 INSERT INTO `marc_subfield_structure` VALUES ('947', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24828 INSERT INTO `marc_subfield_structure` VALUES ('947', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24829 INSERT INTO `marc_subfield_structure` VALUES ('947', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24830 INSERT INTO `marc_subfield_structure` VALUES ('947', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24831 INSERT INTO `marc_subfield_structure` VALUES ('947', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24832 INSERT INTO `marc_subfield_structure` VALUES ('947', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24833 INSERT INTO `marc_subfield_structure` VALUES ('947', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24834 INSERT INTO `marc_subfield_structure` VALUES ('947', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24835 INSERT INTO `marc_subfield_structure` VALUES ('947', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24836 INSERT INTO `marc_subfield_structure` VALUES ('947', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24837 INSERT INTO `marc_subfield_structure` VALUES ('947', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24838 INSERT INTO `marc_subfield_structure` VALUES ('947', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24839 INSERT INTO `marc_subfield_structure` VALUES ('947', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24840 INSERT INTO `marc_subfield_structure` VALUES ('947', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24841 INSERT INTO `marc_subfield_structure` VALUES ('947', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24842 INSERT INTO `marc_subfield_structure` VALUES ('947', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24843 INSERT INTO `marc_subfield_structure` VALUES ('947', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24844 INSERT INTO `marc_subfield_structure` VALUES ('947', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24845 INSERT INTO `marc_subfield_structure` VALUES ('947', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24846 INSERT INTO `marc_subfield_structure` VALUES ('947', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24847 INSERT INTO `marc_subfield_structure` VALUES ('947', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24848 INSERT INTO `marc_subfield_structure` VALUES ('947', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24849 INSERT INTO `marc_subfield_structure` VALUES ('947', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24850 INSERT INTO `marc_subfield_structure` VALUES ('947', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24851 INSERT INTO `marc_subfield_structure` VALUES ('947', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24852 INSERT INTO `marc_subfield_structure` VALUES ('947', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24853 INSERT INTO `marc_subfield_structure` VALUES ('947', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24854 INSERT INTO `marc_subfield_structure` VALUES ('947', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24855 INSERT INTO `marc_subfield_structure` VALUES ('947', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24856 INSERT INTO `marc_subfield_structure` VALUES ('947', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24857 INSERT INTO `marc_subfield_structure` VALUES ('948', '0', '0 (OCLC)', '0 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24858 INSERT INTO `marc_subfield_structure` VALUES ('948', '1', '1 (OCLC)', '1 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24859 INSERT INTO `marc_subfield_structure` VALUES ('948', '2', '2 (OCLC)', '2 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24860 INSERT INTO `marc_subfield_structure` VALUES ('948', '3', '3 (OCLC)', '3 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24861 INSERT INTO `marc_subfield_structure` VALUES ('948', '4', '4 (OCLC)', '4 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24862 INSERT INTO `marc_subfield_structure` VALUES ('948', '5', '5 (OCLC)', '5 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24863 INSERT INTO `marc_subfield_structure` VALUES ('948', '6', '6 (OCLC)', '6 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24864 INSERT INTO `marc_subfield_structure` VALUES ('948', '7', '7 (OCLC)', '7 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24865 INSERT INTO `marc_subfield_structure` VALUES ('948', '8', '8 (OCLC)', '8 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24866 INSERT INTO `marc_subfield_structure` VALUES ('948', '9', '9 (OCLC)', '9 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24867 INSERT INTO `marc_subfield_structure` VALUES ('948', 'a', 'Series part designator, SPT (RLIN)', 'Series part designator, SPT (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24868 INSERT INTO `marc_subfield_structure` VALUES ('948', 'b', 'b (OCLC)', 'b (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24869 INSERT INTO `marc_subfield_structure` VALUES ('948', 'c', 'c (OCLC)', 'c (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24870 INSERT INTO `marc_subfield_structure` VALUES ('948', 'd', 'd (OCLC)', 'd (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24871 INSERT INTO `marc_subfield_structure` VALUES ('948', 'e', 'e (OCLC)', 'e (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24872 INSERT INTO `marc_subfield_structure` VALUES ('948', 'f', 'f (OCLC)', 'f (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24873 INSERT INTO `marc_subfield_structure` VALUES ('948', 'g', 'g (OCLC)', 'g (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24874 INSERT INTO `marc_subfield_structure` VALUES ('948', 'h', 'h (OCLC)', 'h (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24875 INSERT INTO `marc_subfield_structure` VALUES ('948', 'i', 'i (OCLC)', 'i (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24876 INSERT INTO `marc_subfield_structure` VALUES ('948', 'j', 'j (OCLC)', 'j (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24877 INSERT INTO `marc_subfield_structure` VALUES ('948', 'k', 'k (OCLC)', 'k (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24878 INSERT INTO `marc_subfield_structure` VALUES ('948', 'l', 'l (OCLC)', 'l (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24879 INSERT INTO `marc_subfield_structure` VALUES ('948', 'm', 'm (OCLC)', 'm (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24880 INSERT INTO `marc_subfield_structure` VALUES ('948', 'n', 'n (OCLC)', 'n (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24881 INSERT INTO `marc_subfield_structure` VALUES ('948', 'o', 'o (OCLC)', 'o (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24882 INSERT INTO `marc_subfield_structure` VALUES ('948', 'p', 'p (OCLC)', 'p (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24883 INSERT INTO `marc_subfield_structure` VALUES ('948', 'q', 'q (OCLC)', 'q (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24884 INSERT INTO `marc_subfield_structure` VALUES ('948', 'r', 'r (OCLC)', 'r (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24885 INSERT INTO `marc_subfield_structure` VALUES ('948', 's', 's (OCLC)', 's (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24886 INSERT INTO `marc_subfield_structure` VALUES ('948', 't', 't (OCLC)', 't (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24887 INSERT INTO `marc_subfield_structure` VALUES ('948', 'u', 'u (OCLC)', 'u (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24888 INSERT INTO `marc_subfield_structure` VALUES ('948', 'v', 'v (OCLC)', 'v (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24889 INSERT INTO `marc_subfield_structure` VALUES ('948', 'w', 'w (OCLC)', 'w (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24890 INSERT INTO `marc_subfield_structure` VALUES ('948', 'x', 'x (OCLC)', 'x (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24891 INSERT INTO `marc_subfield_structure` VALUES ('948', 'y', 'y (OCLC)', 'y (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24892 INSERT INTO `marc_subfield_structure` VALUES ('948', 'z', 'z (OCLC)', 'z (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24893 INSERT INTO `marc_subfield_structure` VALUES ('949', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24894 INSERT INTO `marc_subfield_structure` VALUES ('949', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24895 INSERT INTO `marc_subfield_structure` VALUES ('949', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24896 INSERT INTO `marc_subfield_structure` VALUES ('949', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24897 INSERT INTO `marc_subfield_structure` VALUES ('949', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24898 INSERT INTO `marc_subfield_structure` VALUES ('949', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24899 INSERT INTO `marc_subfield_structure` VALUES ('949', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24900 INSERT INTO `marc_subfield_structure` VALUES ('949', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24901 INSERT INTO `marc_subfield_structure` VALUES ('949', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24902 INSERT INTO `marc_subfield_structure` VALUES ('949', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24903 INSERT INTO `marc_subfield_structure` VALUES ('949', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24904 INSERT INTO `marc_subfield_structure` VALUES ('949', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24905 INSERT INTO `marc_subfield_structure` VALUES ('949', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24906 INSERT INTO `marc_subfield_structure` VALUES ('949', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24907 INSERT INTO `marc_subfield_structure` VALUES ('949', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24908 INSERT INTO `marc_subfield_structure` VALUES ('949', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24909 INSERT INTO `marc_subfield_structure` VALUES ('949', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24910 INSERT INTO `marc_subfield_structure` VALUES ('949', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24911 INSERT INTO `marc_subfield_structure` VALUES ('949', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24912 INSERT INTO `marc_subfield_structure` VALUES ('949', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24913 INSERT INTO `marc_subfield_structure` VALUES ('949', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24914 INSERT INTO `marc_subfield_structure` VALUES ('949', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24915 INSERT INTO `marc_subfield_structure` VALUES ('949', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24916 INSERT INTO `marc_subfield_structure` VALUES ('949', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24917 INSERT INTO `marc_subfield_structure` VALUES ('949', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24918 INSERT INTO `marc_subfield_structure` VALUES ('949', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24919 INSERT INTO `marc_subfield_structure` VALUES ('949', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24920 INSERT INTO `marc_subfield_structure` VALUES ('949', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24921 INSERT INTO `marc_subfield_structure` VALUES ('949', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24922 INSERT INTO `marc_subfield_structure` VALUES ('949', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24923 INSERT INTO `marc_subfield_structure` VALUES ('949', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24924 INSERT INTO `marc_subfield_structure` VALUES ('949', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24925 INSERT INTO `marc_subfield_structure` VALUES ('949', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24926 INSERT INTO `marc_subfield_structure` VALUES ('949', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24927 INSERT INTO `marc_subfield_structure` VALUES ('949', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24928 INSERT INTO `marc_subfield_structure` VALUES ('949', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
24929 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'a', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24930 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'b', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24931 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'c', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24932 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'd', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24933 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'e', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24934 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'a', 'ATC', 'ATC', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24935 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'b', 'SNR', 'SNR', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24936 INSERT INTO `marc_subfield_structure` VALUES ('950', 'a', 'Classification number, LCAL (RLIN)', 'Classification number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24937 INSERT INTO `marc_subfield_structure` VALUES ('950', 'b', 'Book number/undivided call number, LCAL (RLIN)', 'Book number/undivided call number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24938 INSERT INTO `marc_subfield_structure` VALUES ('950', 'd', 'Additional free-text stamp above the call number, LCAL (RLIN)', 'Additional free-text stamp above the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24939 INSERT INTO `marc_subfield_structure` VALUES ('950', 'e', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24940 INSERT INTO `marc_subfield_structure` VALUES ('950', 'f', 'Location-level footnote, LFNT (RLIN)', 'Location-level footnote, LFNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24941 INSERT INTO `marc_subfield_structure` VALUES ('950', 'h', 'Location-level output transaction history, LHST (RLIN)', 'Location-level output transaction history, LHST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24942 INSERT INTO `marc_subfield_structure` VALUES ('950', 'i', 'Location-level extra card request, LEXT (RLIN)', 'Location-level extra card request, LEXT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24943 INSERT INTO `marc_subfield_structure` VALUES ('950', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24944 INSERT INTO `marc_subfield_structure` VALUES ('950', 'n', 'Location-level additional note, LANT (RLIN)', 'Location-level additional note, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24945 INSERT INTO `marc_subfield_structure` VALUES ('950', 'p', 'Location-level pathfinder, LPTH (RLIN)', 'Location-level pathfinder, LPTH (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24946 INSERT INTO `marc_subfield_structure` VALUES ('950', 't', 'Location-level field suppression, LFSP (RLIN)', 'Location-level field suppression, LFSP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24947 INSERT INTO `marc_subfield_structure` VALUES ('950', 'u', 'Non-printing notes, LANT (RLIN)', 'Non-printing notes, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24948 INSERT INTO `marc_subfield_structure` VALUES ('950', 'v', 'Volumes, LVOL (RLIN)', 'Volumes, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24949 INSERT INTO `marc_subfield_structure` VALUES ('950', 'w', 'Subscription status code, LANT (RLIN)', 'Subscription status code, LANT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24950 INSERT INTO `marc_subfield_structure` VALUES ('950', 'y', 'Date, LVOL (RLIN)', 'Date, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24951 INSERT INTO `marc_subfield_structure` VALUES ('950', 'z', 'Retention, LVOL (RLIN)', 'Retention, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24952 INSERT INTO `marc_subfield_structure` VALUES ('951', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
24953 INSERT INTO `marc_subfield_structure` VALUES ('951', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
24954 INSERT INTO `marc_subfield_structure` VALUES ('951', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
24955 INSERT INTO `marc_subfield_structure` VALUES ('951', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
24956 INSERT INTO `marc_subfield_structure` VALUES ('951', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
24957 INSERT INTO `marc_subfield_structure` VALUES ('951', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
24958 INSERT INTO `marc_subfield_structure` VALUES ('951', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
24959 INSERT INTO `marc_subfield_structure` VALUES ('951', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
24960 INSERT INTO `marc_subfield_structure` VALUES ('951', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
24961 INSERT INTO `marc_subfield_structure` VALUES ('951', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'AR', '', '');
24962 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'a', 'Record ID (RLIN)', 'Record ID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24963 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'b', 'Institution name (RLIN)', 'Institution name (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24964 INSERT INTO `marc_subfield_structure` VALUES ('95r', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'AR', '', '');
24965 INSERT INTO `marc_subfield_structure` VALUES ('95r', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'AR', '', '');
24966 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'a', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'AR', '', '');
24967 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'b', 'State, province, territory', 'State, province, territory', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'AR', '', '');
24968 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'c', 'County, region, islands area', 'County, region, islands area', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'AR', '', '');
24969 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'd', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'AR', '', '');
24970 INSERT INTO `marc_subfield_structure` VALUES ('955', 'a', 'Classification number, CCAL (RLIN)', 'Classification number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24971 INSERT INTO `marc_subfield_structure` VALUES ('955', 'b', 'Book number/undivided call number, CCAL (RLIN)', 'Book number/undivided call number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24972 INSERT INTO `marc_subfield_structure` VALUES ('955', 'c', 'Copy information and material description, CCAL + MDES (RLIN)', 'Copy information and material description, CCAL + MDES (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24973 INSERT INTO `marc_subfield_structure` VALUES ('955', 'h', 'Copy status--for earlier dates, CST (RLIN)', 'Copy status--for earlier dates, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24974 INSERT INTO `marc_subfield_structure` VALUES ('955', 'i', 'Copy status, CST (RLIN)', 'Copy status, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24975 INSERT INTO `marc_subfield_structure` VALUES ('955', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24976 INSERT INTO `marc_subfield_structure` VALUES ('955', 'q', 'Aquisitions control number, HNT (RLIN)', 'Aquisitions control number, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24977 INSERT INTO `marc_subfield_structure` VALUES ('955', 'r', 'Circulation control number, HNT (RLIN)', 'Circulation control number, HNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24978 INSERT INTO `marc_subfield_structure` VALUES ('955', 's', 'Shelflist note, HNT (RLIN)', 'Shelflist note, HNT (RLIN)', 1, 0, '', 9, '', '', '', 1, 5, 'AR', '', '');
24979 INSERT INTO `marc_subfield_structure` VALUES ('955', 'u', 'Non-printing notes, HNT (RLIN)', 'Non-printing notes, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
24980 INSERT INTO `marc_subfield_structure` VALUES ('956', '2', 'Access method', 'Access method', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24981 INSERT INTO `marc_subfield_structure` VALUES ('956', '3', 'Materials specified', 'Materials specified', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24982 INSERT INTO `marc_subfield_structure` VALUES ('956', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24983 INSERT INTO `marc_subfield_structure` VALUES ('956', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24984 INSERT INTO `marc_subfield_structure` VALUES ('956', 'a', 'Host name', 'Host name', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24985 INSERT INTO `marc_subfield_structure` VALUES ('956', 'b', 'Access number', 'Access number', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24986 INSERT INTO `marc_subfield_structure` VALUES ('956', 'c', 'Compression information', 'Compression information', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24987 INSERT INTO `marc_subfield_structure` VALUES ('956', 'd', 'Path', 'Path', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24988 INSERT INTO `marc_subfield_structure` VALUES ('956', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24989 INSERT INTO `marc_subfield_structure` VALUES ('956', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24990 INSERT INTO `marc_subfield_structure` VALUES ('956', 'i', 'Instruction', 'Instruction', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24991 INSERT INTO `marc_subfield_structure` VALUES ('956', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24992 INSERT INTO `marc_subfield_structure` VALUES ('956', 'k', 'Password', 'Password', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24993 INSERT INTO `marc_subfield_structure` VALUES ('956', 'l', 'Logon', 'Logon', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24994 INSERT INTO `marc_subfield_structure` VALUES ('956', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24995 INSERT INTO `marc_subfield_structure` VALUES ('956', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24996 INSERT INTO `marc_subfield_structure` VALUES ('956', 'o', 'Operating system', 'Operating system', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24997 INSERT INTO `marc_subfield_structure` VALUES ('956', 'p', 'Port', 'Port', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24998 INSERT INTO `marc_subfield_structure` VALUES ('956', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
24999 INSERT INTO `marc_subfield_structure` VALUES ('956', 'r', 'Settings', 'Settings', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25000 INSERT INTO `marc_subfield_structure` VALUES ('956', 's', 'File size', 'File size', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25001 INSERT INTO `marc_subfield_structure` VALUES ('956', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25002 INSERT INTO `marc_subfield_structure` VALUES ('956', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -6, 'AR', '', '');
25003 INSERT INTO `marc_subfield_structure` VALUES ('956', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25004 INSERT INTO `marc_subfield_structure` VALUES ('956', 'w', 'Record control number', 'Record control number', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25005 INSERT INTO `marc_subfield_structure` VALUES ('956', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', 0, 6, 'AR', '', '');
25006 INSERT INTO `marc_subfield_structure` VALUES ('956', 'y', 'Link text', 'Link text', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25007 INSERT INTO `marc_subfield_structure` VALUES ('956', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25008 INSERT INTO `marc_subfield_structure` VALUES ('960', '3', 'Materials specified, MATL', 'Materials specified, MATL', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25009 INSERT INTO `marc_subfield_structure` VALUES ('960', 'a', 'Physical location, PLOC (RLIN)', 'Physical location, PLOC (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25010 INSERT INTO `marc_subfield_structure` VALUES ('967', 'a', 'GNR (RLIN)', 'GNR (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25011 INSERT INTO `marc_subfield_structure` VALUES ('967', 'c', 'PSI (RLIN)', 'PSI (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25012 INSERT INTO `marc_subfield_structure` VALUES ('980', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25013 INSERT INTO `marc_subfield_structure` VALUES ('980', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25014 INSERT INTO `marc_subfield_structure` VALUES ('980', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25015 INSERT INTO `marc_subfield_structure` VALUES ('980', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25016 INSERT INTO `marc_subfield_structure` VALUES ('980', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25017 INSERT INTO `marc_subfield_structure` VALUES ('980', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25018 INSERT INTO `marc_subfield_structure` VALUES ('980', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25019 INSERT INTO `marc_subfield_structure` VALUES ('980', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25020 INSERT INTO `marc_subfield_structure` VALUES ('980', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25021 INSERT INTO `marc_subfield_structure` VALUES ('980', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25022 INSERT INTO `marc_subfield_structure` VALUES ('980', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25023 INSERT INTO `marc_subfield_structure` VALUES ('980', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25024 INSERT INTO `marc_subfield_structure` VALUES ('980', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25025 INSERT INTO `marc_subfield_structure` VALUES ('980', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25026 INSERT INTO `marc_subfield_structure` VALUES ('980', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25027 INSERT INTO `marc_subfield_structure` VALUES ('980', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25028 INSERT INTO `marc_subfield_structure` VALUES ('980', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25029 INSERT INTO `marc_subfield_structure` VALUES ('980', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25030 INSERT INTO `marc_subfield_structure` VALUES ('980', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25031 INSERT INTO `marc_subfield_structure` VALUES ('980', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25032 INSERT INTO `marc_subfield_structure` VALUES ('980', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25033 INSERT INTO `marc_subfield_structure` VALUES ('980', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25034 INSERT INTO `marc_subfield_structure` VALUES ('980', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25035 INSERT INTO `marc_subfield_structure` VALUES ('980', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25036 INSERT INTO `marc_subfield_structure` VALUES ('981', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25037 INSERT INTO `marc_subfield_structure` VALUES ('981', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25038 INSERT INTO `marc_subfield_structure` VALUES ('981', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25039 INSERT INTO `marc_subfield_structure` VALUES ('981', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25040 INSERT INTO `marc_subfield_structure` VALUES ('981', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25041 INSERT INTO `marc_subfield_structure` VALUES ('981', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25042 INSERT INTO `marc_subfield_structure` VALUES ('981', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25043 INSERT INTO `marc_subfield_structure` VALUES ('981', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25044 INSERT INTO `marc_subfield_structure` VALUES ('981', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25045 INSERT INTO `marc_subfield_structure` VALUES ('981', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25046 INSERT INTO `marc_subfield_structure` VALUES ('981', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25047 INSERT INTO `marc_subfield_structure` VALUES ('981', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25048 INSERT INTO `marc_subfield_structure` VALUES ('981', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25049 INSERT INTO `marc_subfield_structure` VALUES ('981', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25050 INSERT INTO `marc_subfield_structure` VALUES ('981', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25051 INSERT INTO `marc_subfield_structure` VALUES ('981', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25052 INSERT INTO `marc_subfield_structure` VALUES ('981', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25053 INSERT INTO `marc_subfield_structure` VALUES ('981', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25054 INSERT INTO `marc_subfield_structure` VALUES ('981', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25055 INSERT INTO `marc_subfield_structure` VALUES ('981', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25056 INSERT INTO `marc_subfield_structure` VALUES ('981', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25057 INSERT INTO `marc_subfield_structure` VALUES ('981', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25058 INSERT INTO `marc_subfield_structure` VALUES ('982', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25059 INSERT INTO `marc_subfield_structure` VALUES ('982', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25060 INSERT INTO `marc_subfield_structure` VALUES ('982', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25061 INSERT INTO `marc_subfield_structure` VALUES ('982', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25062 INSERT INTO `marc_subfield_structure` VALUES ('982', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25063 INSERT INTO `marc_subfield_structure` VALUES ('982', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25064 INSERT INTO `marc_subfield_structure` VALUES ('982', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25065 INSERT INTO `marc_subfield_structure` VALUES ('982', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25066 INSERT INTO `marc_subfield_structure` VALUES ('982', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25067 INSERT INTO `marc_subfield_structure` VALUES ('982', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25068 INSERT INTO `marc_subfield_structure` VALUES ('982', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25069 INSERT INTO `marc_subfield_structure` VALUES ('982', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25070 INSERT INTO `marc_subfield_structure` VALUES ('982', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25071 INSERT INTO `marc_subfield_structure` VALUES ('982', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25072 INSERT INTO `marc_subfield_structure` VALUES ('982', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25073 INSERT INTO `marc_subfield_structure` VALUES ('982', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25074 INSERT INTO `marc_subfield_structure` VALUES ('982', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25075 INSERT INTO `marc_subfield_structure` VALUES ('982', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25076 INSERT INTO `marc_subfield_structure` VALUES ('982', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25077 INSERT INTO `marc_subfield_structure` VALUES ('982', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'AR', '', '');
25078 INSERT INTO `marc_subfield_structure` VALUES ('983', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25079 INSERT INTO `marc_subfield_structure` VALUES ('983', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25080 INSERT INTO `marc_subfield_structure` VALUES ('983', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25081 INSERT INTO `marc_subfield_structure` VALUES ('983', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25082 INSERT INTO `marc_subfield_structure` VALUES ('983', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25083 INSERT INTO `marc_subfield_structure` VALUES ('983', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25084 INSERT INTO `marc_subfield_structure` VALUES ('983', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25085 INSERT INTO `marc_subfield_structure` VALUES ('983', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25086 INSERT INTO `marc_subfield_structure` VALUES ('983', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25087 INSERT INTO `marc_subfield_structure` VALUES ('983', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25088 INSERT INTO `marc_subfield_structure` VALUES ('983', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25089 INSERT INTO `marc_subfield_structure` VALUES ('983', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25090 INSERT INTO `marc_subfield_structure` VALUES ('983', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25091 INSERT INTO `marc_subfield_structure` VALUES ('983', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25092 INSERT INTO `marc_subfield_structure` VALUES ('983', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25093 INSERT INTO `marc_subfield_structure` VALUES ('983', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25094 INSERT INTO `marc_subfield_structure` VALUES ('983', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25095 INSERT INTO `marc_subfield_structure` VALUES ('984', 'a', 'Holding library identification number', 'Holding library identification number', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25096 INSERT INTO `marc_subfield_structure` VALUES ('984', 'b', 'Physical description codes', 'Physical description codes', 1, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25097 INSERT INTO `marc_subfield_structure` VALUES ('984', 'c', 'Call number', 'Call number', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25098 INSERT INTO `marc_subfield_structure` VALUES ('984', 'd', 'Volume or other numbering', 'Volume or other numbering', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25099 INSERT INTO `marc_subfield_structure` VALUES ('984', 'e', 'Dates', 'Dates', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25100 INSERT INTO `marc_subfield_structure` VALUES ('984', 'f', 'Completeness note', 'Completeness note', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25101 INSERT INTO `marc_subfield_structure` VALUES ('984', 'g', 'Referral note', 'Referral note', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25102 INSERT INTO `marc_subfield_structure` VALUES ('984', 'h', 'Retention note', 'Retention note', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25103 INSERT INTO `marc_subfield_structure` VALUES ('987', 'a', 'Romanization/conversion identifier', 'Romanization/conversion identifier', 0, 0, '', 9, '', '', '', NULL, -6, 'AR', '', '');
25104 INSERT INTO `marc_subfield_structure` VALUES ('987', 'b', 'Agency that converted, created or reviewed', 'Agency that converted, created or reviewed', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25105 INSERT INTO `marc_subfield_structure` VALUES ('987', 'c', 'Date of conversion or review', 'Date of conversion or review', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25106 INSERT INTO `marc_subfield_structure` VALUES ('987', 'd', 'Status code', 'Status code ', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25107 INSERT INTO `marc_subfield_structure` VALUES ('987', 'e', 'Version of conversion program used', 'Version of conversion program used', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25108 INSERT INTO `marc_subfield_structure` VALUES ('987', 'f', 'Note', 'Note', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25109 INSERT INTO `marc_subfield_structure` VALUES ('990', 'a', 'Link information for 9XX fields', 'Link information for 9XX fields', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25110 INSERT INTO `marc_subfield_structure` VALUES ('990', 'b', 'Link information for field corresponding to 9XX field', 'Link information for field corresponding to 9XX field', 1, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25111 INSERT INTO `marc_subfield_structure` VALUES ('995', 'a', 'Origine du document, texte libre', 'Origine du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25112 INSERT INTO `marc_subfield_structure` VALUES ('995', 'b', 'Origine du document, donn&eacute;e cod&eacute;e', '', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25113 INSERT INTO `marc_subfield_structure` VALUES ('995', 'c', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25114 INSERT INTO `marc_subfield_structure` VALUES ('995', 'd', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25115 INSERT INTO `marc_subfield_structure` VALUES ('995', 'e', 'Genre d&eacute;taill&eacute;', 'Genre d&eacute;taill&eacute;', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25116 INSERT INTO `marc_subfield_structure` VALUES ('995', 'f', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25117 INSERT INTO `marc_subfield_structure` VALUES ('995', 'g', 'Code &agrave; barres, pr&eacute;fixe', 'Code &agrave; barres, pr&eacute;fixe', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25118 INSERT INTO `marc_subfield_structure` VALUES ('995', 'h', 'Code &agrave; barres, incr&eacute;mentation', 'Code &agrave; barres, incr&eacute;mentation', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25119 INSERT INTO `marc_subfield_structure` VALUES ('995', 'i', 'Code &agrave; barres, suffixe', 'Code &agrave; barres, suffixe', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25120 INSERT INTO `marc_subfield_structure` VALUES ('995', 'j', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25121 INSERT INTO `marc_subfield_structure` VALUES ('995', 'k', 'Cote', 'Cote', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25122 INSERT INTO `marc_subfield_structure` VALUES ('995', 'l', 'Volumaison', 'Volumaison', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25123 INSERT INTO `marc_subfield_structure` VALUES ('995', 'm', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25124 INSERT INTO `marc_subfield_structure` VALUES ('995', 'n', 'Date de restitution pr&eacute;vue', 'Date de restitution pr&eacute;vue', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25125 INSERT INTO `marc_subfield_structure` VALUES ('995', 'o', 'Cat&eacute;gorie de circulation', 'Cat&eacute;gorie de circulation', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25126 INSERT INTO `marc_subfield_structure` VALUES ('995', 'p', 'P&eacute;riodique', 'P&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25127 INSERT INTO `marc_subfield_structure` VALUES ('995', 'q', 'Public vis&eacute; (selon l\'&acirc;ge)', 'Public vis&eacute; (selon l\'&acirc;ge)', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25128 INSERT INTO `marc_subfield_structure` VALUES ('995', 'r', 'Type de document et support mat&eacute;riel', 'Type de document et support mat&eacute;riel', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25129 INSERT INTO `marc_subfield_structure` VALUES ('995', 's', 'Él&eacute;ment de tri', 'Él&eacute;ment de tri', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25130 INSERT INTO `marc_subfield_structure` VALUES ('995', 't', 'Genre', 'Genre', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25131 INSERT INTO `marc_subfield_structure` VALUES ('995', 'u', 'Note sur l\'exemplaire', 'Note sur l\'exemplaire', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25132 INSERT INTO `marc_subfield_structure` VALUES ('995', 'v', 'Note sur le num&eacute;ro de p&eacute;riodique', 'Note sur le num&eacute;ro de p&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25133 INSERT INTO `marc_subfield_structure` VALUES ('995', 'w', 'Établissement cible du document, texte libre', 'Établissement cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25134 INSERT INTO `marc_subfield_structure` VALUES ('995', 'x', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25135 INSERT INTO `marc_subfield_structure` VALUES ('995', 'y', 'Ensemble cible du document , texte libre', 'Ensemble cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25136 INSERT INTO `marc_subfield_structure` VALUES ('995', 'z', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'AR', '', '');
25137 INSERT INTO `marc_subfield_structure` VALUES ('998', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25138 INSERT INTO `marc_subfield_structure` VALUES ('998', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25139 INSERT INTO `marc_subfield_structure` VALUES ('998', 'd', 'First date, FD (RLIN)', 'First Date, FD (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'AR', '', '');
25140 INSERT INTO `marc_subfield_structure` VALUES ('998', 'i', 'RINS (RLIN)', 'RINS (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25141 INSERT INTO `marc_subfield_structure` VALUES ('998', 'l', 'LI (RLIN)', 'LI (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25142 INSERT INTO `marc_subfield_structure` VALUES ('998', 'n', 'NUC (RLIN)', 'NUC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25143 INSERT INTO `marc_subfield_structure` VALUES ('998', 'p', 'PROC (RLIN)', 'PROC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25144 INSERT INTO `marc_subfield_structure` VALUES ('998', 's', 'CC (RLIN)', 'CC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25145 INSERT INTO `marc_subfield_structure` VALUES ('998', 't', 'RTYP (RLIN)', 'RTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25146 INSERT INTO `marc_subfield_structure` VALUES ('998', 'w', 'PLINK (RLIN)', 'PLINK (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25147 INSERT INTO `marc_subfield_structure` VALUES ('999', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
25148 INSERT INTO `marc_subfield_structure` VALUES ('999', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'AR', '', '');
25149 INSERT INTO `marc_subfield_structure` VALUES ('999', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
25150 INSERT INTO `marc_subfield_structure` VALUES ('999', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
25151 INSERT INTO `marc_subfield_structure` VALUES ('999', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
25152 INSERT INTO `marc_subfield_structure` VALUES ('999', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
25153 INSERT INTO `marc_subfield_structure` VALUES ('999', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
25154 INSERT INTO `marc_subfield_structure` VALUES ('999', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
25155 INSERT INTO `marc_subfield_structure` VALUES ('999', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
25156 INSERT INTO `marc_subfield_structure` VALUES ('999', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
25157 INSERT INTO `marc_subfield_structure` VALUES ('999', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
25158 INSERT INTO `marc_subfield_structure` VALUES ('999', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
25159 INSERT INTO `marc_subfield_structure` VALUES ('999', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'AR', '', '');
25160 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'a', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25161 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'd', 'UAD (RLIN)', 'UAD (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25162 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'f', 'FPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25163 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'h', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25164 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'i', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25165 INSERT INTO `marc_subfield_structure` VALUES ('u01', 's', 'UST (RLIN)', 'UST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25166 INSERT INTO `marc_subfield_structure` VALUES ('u01', 't', 'UTYP (RLIN)', 'UTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25167 INSERT INTO `marc_subfield_structure` VALUES ('u02', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25168 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25169 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'b', 'Additional codes following the standard number', 'Additional codes following the standard number', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25170 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25171 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25172 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'n', 'LSI', 'LSI', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25173 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'o', 'SID', 'SID', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25174 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'p', 'DP', 'DP', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25175 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'r', 'RUSH', 'RUSH', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25176 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'a', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25177 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'b', 'SID', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25178 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'c', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25179 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'd', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25180 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'e', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25181 INSERT INTO `marc_subfield_structure` VALUES ('u10', 's', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25182 INSERT INTO `marc_subfield_structure` VALUES ('u11', 'a', 'Department report request, DRR (DRRH for earlier occurrences)', 'DRR (DRRH for earlier occurrences)', 1, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25183 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'a', 'SUPN', 'SUPN', 1, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25184 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'b', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25185 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'c', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25186 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'd', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25187 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'e', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25188 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'x', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25189 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'a', 'SHIP', 'SHIP', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25190 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'b', 'BILL', 'BILL', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25191 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'c', 'DAC', 'DAC', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25192 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'n', 'LSAC', 'LSAC', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25193 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'a', 'SICO', 'SICO', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25194 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'b', 'SICO', 'SICO', 1, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25195 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'c', 'SCAT', 'SCAT', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25196 INSERT INTO `marc_subfield_structure` VALUES ('u25', 'a', 'Supplier report(s), SRPT', 'Supplier report(s), SRPT', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25197 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'a', 'NCC [OBSOLETE]', 'NCC [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25198 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'i', 'ICI', 'ICI', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25199 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'm', 'MCI', 'MCI', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25200 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'a', 'NCC', 'NCC', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25201 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'b', 'NCS', 'NCS', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25202 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'a', 'ICL', 'ICL', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25203 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'd', 'ICAD', 'ICAD', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25204 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'a', 'EPCL', 'EPCL', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25205 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'r', 'ERI', 'ERI', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25206 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'd', 'EPDT [OBSOLETE]', 'EPDT [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25207 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'f', 'EFRQ', 'EFRQ', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25208 INSERT INTO `marc_subfield_structure` VALUES ('u40', 's', 'EPST', 'EPST', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25209 INSERT INTO `marc_subfield_structure` VALUES ('u40', 't', 'ETYP', 'ETYP', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25210 INSERT INTO `marc_subfield_structure` VALUES ('u50', 'a', 'Acquisitions notes, AQNT', 'Acquisitions notes, AQNT', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25211 INSERT INTO `marc_subfield_structure` VALUES ('u51', 'a', 'Selection notes, SLNT', 'Selection notes, SLNT', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25212 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'a', 'INT', 'INT', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25213 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'b', 'INT', 'NT', 1, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25214 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'a', 'CLNT', 'CLNT', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25215 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'b', 'CLNT', 'CLNT', 1, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25216 INSERT INTO `marc_subfield_structure` VALUES ('u54', 'a', 'Notes to serials department, SRNT', 'Notes to serials department, SRNT', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25217 INSERT INTO `marc_subfield_structure` VALUES ('u55', 'a', 'Cataloging notes, CTNT', 'Cataloging notes, CTNT', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25218 INSERT INTO `marc_subfield_structure` VALUES ('u5f', 'a', 'Accounting notes, ACNT', 'Accounting notes, ACNT', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25219 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'a', 'QTY', 'QTY', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25220 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'b', 'MAT', 'MAT', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25221 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'l', 'MLOC', 'MLOC', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25222 INSERT INTO `marc_subfield_structure` VALUES ('u71', 'a', 'Fund account, FUND', 'Fund account, FUND', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25223 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'a', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25224 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'c', 'CIRC', 'CIRC', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25225 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'h', 'IPST', 'IPST', 1, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25226 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'i', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25227 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'l', 'SLOC', 'SLOC', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25228 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'a', 'LPRI', 'LPRI', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25229 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'b', 'CURR', 'CURR', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25230 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'k', 'CVRT [OBSOLETE]', 'CVRT [OBSOLETE]', 1, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25231 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'p', 'LPD', 'LPD', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25232 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'r', 'EDRT', 'EDRT', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25233 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'h', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25234 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'i', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25235 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'a', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25236 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'b', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25237 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'c', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25238 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'd', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25239 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'e', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25240 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'f', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25241 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'g', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25242 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'h', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25243 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'n', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'AR', '', '');
25244
25245
25246
25247 -- *******************************************************
25248
25249
25250 -- ******************************************************************
25251 -- SIMPLE KITS KOHA RECORD AND HOLDINGS MANAGEMENT FIELDS/SUBFIELDS. 
25252 -- ******************************************************************
25253
25254 -- These ought to be adjusted for different less conflicting and more 
25255 -- rationally chosen fields and subfields but I had left that for last. 
25256
25257 -- ADJUST ME
25258 -- Use values from your dump of marc_tag_structure and marc_subfield_structure 
25259 -- to provide support for your Koha database.
25260
25261
25262 -- ******************************************************
25263
25264
25265 -- Current Record ID Field/Subfields 
25266
25267
25268 INSERT INTO `marc_tag_structure` VALUES ('090', 'SYSTEM CONTROL NUMBERS (KOHA)', 'SYSTEM CONTROL NUMBERS (KOHA)', 1, 0, '', 'KT');
25269
25270 INSERT INTO `marc_subfield_structure` VALUES ('090', 'a', 'Item type [OBSOLETE]', 'Item type [OBSOLETE]', 0, 0, NULL, -1, NULL, NULL, '', NULL, -5, 'KT', '', '');
25271 INSERT INTO `marc_subfield_structure` VALUES ('090', 'b', 'Koha Dewey Subclass [OBSOLETE]', 'Koha Dewey Subclass [OBSOLETE]', 0, 0, NULL, 0, NULL, NULL, '', NULL, -5, 'KT', '', '');
25272 INSERT INTO `marc_subfield_structure` VALUES ('090', 'c', 'Koha biblionumber', 'Koha biblionumber', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, -5, 'KT', '', '');
25273 INSERT INTO `marc_subfield_structure` VALUES ('090', 'd', 'Koha biblioitemnumber', 'Koha biblioitemnumber', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, -5, 'KT', '', '');
25274
25275
25276 -- ******************************************************
25277
25278
25279 -- Current primary biblioitems Field/Subfields 
25280
25281
25282 INSERT INTO `marc_tag_structure` VALUES ('942', 'ADDED ENTRY ELEMENTS (KOHA)', 'ADDED ENTRY ELEMENTS (KOHA)', 0, 0, '', 'KT');
25283
25284 INSERT INTO `marc_subfield_structure` VALUES ('942', 'a', 'Institution code [OBSOLETE]', 'Institution code [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -5, 'KT', '', '');
25285 INSERT INTO `marc_subfield_structure` VALUES ('942', 'c', 'Item type', 'Item type', 0, 1, 'biblioitems.itemtype', 9, 'itemtypes', '', '', NULL, 0, 'KT', '', '');
25286 INSERT INTO `marc_subfield_structure` VALUES ('942', 'j', 'Location (call number prefix code)', 'Location (call number prefix code)', 0, 0, 'biblioitems.classification', 9, '', '', '', NULL, -6, 'KT', '', '');
25287 INSERT INTO `marc_subfield_structure` VALUES ('942', 'k', 'Classification base (DDC to decimal or LCC letter class padded after single letter classes with trailing 0', 'Classification base', 0, 0, 'biblioitems.dewey', 9, '', '', '', NULL, -6, 'KT', '', '');
25288 INSERT INTO `marc_subfield_structure` VALUES ('942', 'l', 'Classification subclass (DDC after decimal or LCC number after letters', 'Classification subclass', 0, 0, 'biblioitems.subclass', 9, '', '', '', NULL, -6, 'KT', '', '');
25289
25290
25291 -- ******************************************************
25292
25293
25294 -- Recommended items Field/Subfields 
25295
25296
25297 -- INSERT INTO `marc_tag_structure` VALUES ('95k', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', '');
25298
25299 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '0', 'Item status (withdrawn) (similar to 876-8 $j)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'KT', '', '');
25300 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '1', 'Item status (lost) (similar to 876-8 $j)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'KT', '', '');
25301 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '2', 'Source of classification or shelving scheme (similar to 852 $2)', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25302 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '3', 'Materials specified (similar to 852, 876-8 $3)', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'KT', '', '');
25303 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '4', 'Use restrictions (similar to 506 $a, 876-8 $h)', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'KT', '', '');
25304 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '6', 'Linkage (similar to 852, 876-8 $6)', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'KT', '', '');
25305 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '8', 'Sequence number (similar to 852, 876-8 $8)', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25306 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '9', 'Koha itemnumber (autogenerated similar to 852, 876-8 $3 $8 $t combined)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, 'KT', '', '');
25307 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'a', 'Location (homebranch) (similar to 852 $a)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, '', '', '');
25308 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'b', 'Sublocation or collection (holdingbranch) (similar to 852 $b)', 'Sublocation or collection (holdingbranch)', 1, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'KT', '', '');
25309 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'c', 'Shelving location (similar to 852 $c, 876-8 $l)', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'KT', '', '');
25310 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'd', 'Date acquired (similar to 541, 876-8 $d)', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, 'KT', '', '');
25311 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'e', 'Source of acquisition (similar to 541 $a, 876-8 $e)', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'KT', '', '');
25312 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'f', 'Coded location qualifier (similar to 852 $f)', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25313 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'g', 'Non-coded location qualifier (similar to 852 $g)', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25314 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'h', 'Classification part (similar to 852 $h)', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25315 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'i', 'Item part (similar to 852 $i)', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25316 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'j', 'Shelving control number (similar to 852 $j)', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25317 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'k', 'Call number prefix (similar to 852 $k)', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25318 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'l', 'Shelving form of title (similar to 852 $l)', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25319 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'm', 'Call number suffix (similar to 852 $m)', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25320 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'n', 'Country code (similar to 852 $n)', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25321 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'o', 'Call number (similar to 852 $k $h $i $m combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'KT', '', '');
25322 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'p', 'Piece designation (barcode) (similar to 852, 876-8 $p)', 'Piece designation (barcode)', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, 'KT', '', '');
25323 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'q', 'Piece physical condition (similar to 562 $a, 852 $q)', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25324 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'r', 'Invalid or canceled piece designation (canceled barcode) (similar to 876-8 $r)', 'Invalid or canceled piece designation (canceled barcode)', 1, 0, '', 10, '', '', '', NULL, -1, 'KT', '', '');
25325 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 's', 'Copyright article-fee code (similar to 018 $a, 852 $s)', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25326 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 't', 'Copy number (similar to 852, 876-8 $t)', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25327 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'u', 'Cost, normal purchase price (similar to 541 $h, 876-8 $c)', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'KT', '', '');
25328 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'v', 'Cost, replacement price (similar to 365 $b, 876-8 $c)', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'KT', '', '');
25329 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'w', 'Price effective from (similar to 365 $f)', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'KT', '', '');
25330 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'x', 'Nonpublic note (similar to 852, 876-8 $x)', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'KT', '', '');
25331 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'y', 'Use restrictions (not for loan) (similar to 506 $a, 876-8 $h)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'KT', '', '');
25332 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'z', 'Public note (similar to 852, 876-8 $z)', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'KT', '', '');
25333
25334
25335
25336 -- Current items Field/Subfields 
25337
25338
25339 INSERT INTO `marc_tag_structure` VALUES ('952', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', 'KT');
25340
25341 INSERT INTO `marc_subfield_structure` VALUES ('952', '0', 'Item status (withdrawn)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'KT', '', '');
25342 INSERT INTO `marc_subfield_structure` VALUES ('952', '1', 'Item status (lost)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'KT', '', '');
25343 INSERT INTO `marc_subfield_structure` VALUES ('952', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25344 INSERT INTO `marc_subfield_structure` VALUES ('952', '3', 'Materials specified', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'KT', '', '');
25345 INSERT INTO `marc_subfield_structure` VALUES ('952', '4', 'Use restrictions', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'KT', '', '');
25346 INSERT INTO `marc_subfield_structure` VALUES ('952', '6', 'Linkage', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'KT', '', '');
25347 INSERT INTO `marc_subfield_structure` VALUES ('952', '8', 'Sequence number', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25348 INSERT INTO `marc_subfield_structure` VALUES ('952', '9', 'Cost, normal purchase price', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'KT', '', '');
25349 INSERT INTO `marc_subfield_structure` VALUES ('952', 'a', 'Canceled barcode', 'Canceled barcode', 1, 0, '', 10, '', '', '', NULL, -1, 'KT', '', '');
25350 INSERT INTO `marc_subfield_structure` VALUES ('952', 'b', 'Location (homebranch)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, 'KT', '', '');
25351 INSERT INTO `marc_subfield_structure` VALUES ('952', 'c', 'Shelving location', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'KT', '', '');
25352 INSERT INTO `marc_subfield_structure` VALUES ('952', 'd', 'Sublocation or collection (holdingbranch)', 'Sublocation or collection (holdingbranch)', 0, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'KT', '''952b''', '');
25353 INSERT INTO `marc_subfield_structure` VALUES ('952', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'KT', '', '');
25354 INSERT INTO `marc_subfield_structure` VALUES ('952', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25355 INSERT INTO `marc_subfield_structure` VALUES ('952', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25356 INSERT INTO `marc_subfield_structure` VALUES ('952', 'h', 'Classification part', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25357 INSERT INTO `marc_subfield_structure` VALUES ('952', 'i', 'Item part', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25358 INSERT INTO `marc_subfield_structure` VALUES ('952', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25359 INSERT INTO `marc_subfield_structure` VALUES ('952', 'k', 'Call number (combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'KT', '', '');
25360 INSERT INTO `marc_subfield_structure` VALUES ('952', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25361 INSERT INTO `marc_subfield_structure` VALUES ('952', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25362 INSERT INTO `marc_subfield_structure` VALUES ('952', 'n', 'Country code', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25363 INSERT INTO `marc_subfield_structure` VALUES ('952', 'o', 'Call number prefix', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25364 INSERT INTO `marc_subfield_structure` VALUES ('952', 'p', 'Barcode', 'Barcode', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, 'KT', '', '');
25365 INSERT INTO `marc_subfield_structure` VALUES ('952', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25366 INSERT INTO `marc_subfield_structure` VALUES ('952', 'r', 'Cost, replacement price', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'KT', '', '');
25367 INSERT INTO `marc_subfield_structure` VALUES ('952', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25368 INSERT INTO `marc_subfield_structure` VALUES ('952', 't', 'Copy number', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'KT', '', '');
25369 INSERT INTO `marc_subfield_structure` VALUES ('952', 'u', 'Koha itemnumber (autogenerated)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, 'KT', '', '');
25370 INSERT INTO `marc_subfield_structure` VALUES ('952', 'v', 'Date acquired', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, 'KT', '', '');
25371 INSERT INTO `marc_subfield_structure` VALUES ('952', 'w', 'Price effective from', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'KT', '', '');
25372 INSERT INTO `marc_subfield_structure` VALUES ('952', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'KT', '', '');
25373 INSERT INTO `marc_subfield_structure` VALUES ('952', 'y', 'Use restrictions (not for loan)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'KT', '', '');
25374 INSERT INTO `marc_subfield_structure` VALUES ('952', 'z', 'Public note', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'KT', '', '');
25375
25376
25377 -- *******************************************************
25378
25379
25380
25381 -- ********************************************************************
25382 -- SIMPLE KITS MARC 21 FIELDS/SUBFIELDS AND COMMMONLY USED EXTENSIONS. 
25383 -- ********************************************************************
25384
25385
25386 -- A Few local use codes need specifying.  Several seealso, plugin, and 
25387 -- authority framework columns need improving.  $9 for authority record linking 
25388 -- needs to be added where not already provided by RLIN specifications. 
25389 -- Needs checking for errors but probably tolerable for use on a production. 
25390 -- A server can be upgraded easily from later versions of this file.
25391 --                                                                          
25392 -- In the absense of more column support for qualifying the relative 
25393 -- importance of subfields to the record editor, some modest modification of 
25394 -- the default framework is needed setting the not-useful non-Koha holdings 
25395 -- subfields to not managed in Koha.
25396
25397 -- MARC fields including letters as part of the field identifier are from RLIN
25398 -- and should be expected to remain along with RLIN $% subfields.  RLIN has 
25399 -- been using letters in fields because there are not enough local use number 
25400 -- fields which have not already been specified for very large union catalogue 
25401 -- networks such as RLIN itself.
25402
25403
25404 -- Fields ending in c, o, or r are temporary placeholders for information from
25405 -- a numeric value until a non-conflicting way to treat the content under the
25406 -- proper original numeric field is adopted.  090 for LC call numbers is much 
25407 -- too common and important so 999 is also provided as a temporary place 
25408 -- holder until all Koha code for finding control fields has been changed from 
25409 -- a numeric test of < 10 to a regular expression match of m/^00/ to prevent 
25410 -- mistaken matching of fields with letters such as 09o if they were control 
25411 -- fields.
25412
25413 INSERT INTO `marc_tag_structure` VALUES ('000', 'LEADER', 'LEADER', 0, 1, '', 'KT');
25414 INSERT INTO `marc_tag_structure` VALUES ('001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 0, '', 'KT');
25415 INSERT INTO `marc_tag_structure` VALUES ('003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 0, '', 'KT');
25416 INSERT INTO `marc_tag_structure` VALUES ('005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 0, '', 'KT');
25417 INSERT INTO `marc_tag_structure` VALUES ('006', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 1, 0, '', 'KT');
25418 INSERT INTO `marc_tag_structure` VALUES ('007', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 1, 0, '', 'KT');
25419 INSERT INTO `marc_tag_structure` VALUES ('008', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 0, 1, '', 'KT');
25420 INSERT INTO `marc_tag_structure` VALUES ('009', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 1, 0, '', 'KT');
25421 INSERT INTO `marc_tag_structure` VALUES ('010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, '', 'KT');
25422 INSERT INTO `marc_tag_structure` VALUES ('011', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 0, 0, '', 'KT');
25423 INSERT INTO `marc_tag_structure` VALUES ('013', 'PATENT CONTROL INFORMATION', 'PATENT CONTROL INFORMATION', 1, 0, '', 'KT');
25424 INSERT INTO `marc_tag_structure` VALUES ('015', 'NATIONAL BIBLIOGRAPHY NUMBER', 'NATIONAL BIBLIOGRAPHY NUMBER', 1, 0, '', 'KT');
25425 INSERT INTO `marc_tag_structure` VALUES ('016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, '', 'KT');
25426 INSERT INTO `marc_tag_structure` VALUES ('017', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 1, 0, '', 'KT');
25427 INSERT INTO `marc_tag_structure` VALUES ('018', 'COPYRIGHT ARTICLE-FEE CODE', 'COPYRIGHT ARTICLE-FEE CODE', 0, 0, '', 'KT');
25428 INSERT INTO `marc_tag_structure` VALUES ('01e', 'CODED FIELD ERROR (RLIN)', 'CODED FIELD ERROR (RLIN)', 1, 0, '', 'KT');
25429 INSERT INTO `marc_tag_structure` VALUES ('020', 'ISBN', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL, 'KT');
25430 INSERT INTO `marc_tag_structure` VALUES ('022', 'INTERNATIONAL STANDARD SERIAL NUMBER', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL, 'KT');
25431 INSERT INTO `marc_tag_structure` VALUES ('023', 'STANDARD FILM NUMBER (VM) [DELETED]', 'STANDARD FILM NUMBER (VM) [DELETED]', 1, 0, NULL, 'KT');
25432 INSERT INTO `marc_tag_structure` VALUES ('024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL, 'KT');
25433 INSERT INTO `marc_tag_structure` VALUES ('025', 'OVERSEAS ACQUISITION NUMBER', 'OVERSEAS ACQUISITION NUMBER', 1, 0, '', 'KT');
25434 INSERT INTO `marc_tag_structure` VALUES ('026', 'FINGERPRINT IDENTIFIER', 'FINGERPRINT IDENTIFIER', 1, 0, '', 'KT');
25435 INSERT INTO `marc_tag_structure` VALUES ('027', 'STANDARD TECHNICAL REPORT NUMBER', 'STANDARD TECHNICAL REPORT NUMBER', 1, 0, '', 'KT');
25436 INSERT INTO `marc_tag_structure` VALUES ('028', 'IDENTIFICATION NUMBER--PUBLISHER NUMBER', 'PUBLISHER NUMBER', 1, 0, NULL, 'KT');
25437 INSERT INTO `marc_tag_structure` VALUES ('029', 'OTHER SYSTEM CONTROL NUMBER (OCLC)', ' (OCLC)', 1, 0, '', 'KT');
25438 INSERT INTO `marc_tag_structure` VALUES ('030', 'CODEN DESIGNATION', 'CODEN DESIGNATION', 1, 0, '', 'KT');
25439 INSERT INTO `marc_tag_structure` VALUES ('031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, '', 'KT');
25440 INSERT INTO `marc_tag_structure` VALUES ('032', 'POSTAL REGISTRATION NUMBER', 'POSTAL REGISTRATION NUMBER', 1, 0, '', 'KT');
25441 INSERT INTO `marc_tag_structure` VALUES ('033', 'DATE/TIME AND PLACE OF AN EVENT', 'DATE/TIME AND PLACE OF AN EVENT', 1, 0, '', 'KT');
25442 INSERT INTO `marc_tag_structure` VALUES ('034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, '', 'KT');
25443 INSERT INTO `marc_tag_structure` VALUES ('035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL, 'KT');
25444 INSERT INTO `marc_tag_structure` VALUES ('036', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 0, 0, '', 'KT');
25445 INSERT INTO `marc_tag_structure` VALUES ('037', 'PUBLICATION, DISTRIBUTION DETAILS--SOURCE OF ACQUISITION', 'SOURCE OF ACQUISITION', 1, 0, NULL, 'KT');
25446 INSERT INTO `marc_tag_structure` VALUES ('038', 'RECORD CONTENT LICENSOR', 'RECORD CONTENT LICENSOR', 0, 0, '', 'KT');
25447 INSERT INTO `marc_tag_structure` VALUES ('039', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 0, 0, '', 'KT');
25448 INSERT INTO `marc_tag_structure` VALUES ('040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 0, NULL, 'KT');
25449 INSERT INTO `marc_tag_structure` VALUES ('041', 'LANGUAGE CODE', 'LANGUAGE CODE', 1, 0, '', 'KT');
25450 INSERT INTO `marc_tag_structure` VALUES ('042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, '', 'KT');
25451 INSERT INTO `marc_tag_structure` VALUES ('043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL, 'KT');
25452 INSERT INTO `marc_tag_structure` VALUES ('044', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 0, 0, '', 'KT');
25453 INSERT INTO `marc_tag_structure` VALUES ('045', 'TIME PERIOD OF CONTENT', 'TIME PERIOD OF CONTENT', 0, 0, '', 'KT');
25454 INSERT INTO `marc_tag_structure` VALUES ('046', 'SPECIAL CODED DATES', 'SPECIAL CODED DATES', 1, 0, '', 'KT');
25455 INSERT INTO `marc_tag_structure` VALUES ('047', 'FORM OF MUSICAL COMPOSITION CODE', 'FORM OF MUSICAL COMPOSITION CODE', 0, 0, '', 'KT');
25456 INSERT INTO `marc_tag_structure` VALUES ('048', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 1, 0, '', 'KT');
25457 INSERT INTO `marc_tag_structure` VALUES ('049', 'LOCAL HOLDINGS (OCLC)', 'LOCAL HOLDINGS (OCLC)', 0, 0, '', 'KT');
25458 INSERT INTO `marc_tag_structure` VALUES ('050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL, 'KT');
25459 INSERT INTO `marc_tag_structure` VALUES ('051', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 1, 0, NULL, 'KT');
25460 INSERT INTO `marc_tag_structure` VALUES ('052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL, 'KT');
25461 INSERT INTO `marc_tag_structure` VALUES ('055', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 1, 0, NULL, 'KT');
25462 INSERT INTO `marc_tag_structure` VALUES ('060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL, 'KT');
25463 INSERT INTO `marc_tag_structure` VALUES ('061', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 1, 0, NULL, 'KT');
25464 INSERT INTO `marc_tag_structure` VALUES ('066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL, 'KT');
25465 INSERT INTO `marc_tag_structure` VALUES ('070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL, 'KT');
25466 INSERT INTO `marc_tag_structure` VALUES ('071', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 1, 0, NULL, 'KT');
25467 INSERT INTO `marc_tag_structure` VALUES ('072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL, 'KT');
25468 INSERT INTO `marc_tag_structure` VALUES ('074', 'GPO ITEM NUMBER', 'GPO ITEM NUMBER', 1, 0, NULL, 'KT');
25469 INSERT INTO `marc_tag_structure` VALUES ('080', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'KT');
25470 INSERT INTO `marc_tag_structure` VALUES ('082', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'KT');
25471 INSERT INTO `marc_tag_structure` VALUES ('084', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL, 'KT');
25472 INSERT INTO `marc_tag_structure` VALUES ('086', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL, 'KT');
25473 INSERT INTO `marc_tag_structure` VALUES ('087', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 1, 0, NULL, 'KT');
25474 INSERT INTO `marc_tag_structure` VALUES ('088', 'REPORT NUMBER', 'REPORT NUMBER', 1, 0, NULL, 'KT');
25475 INSERT INTO `marc_tag_structure` VALUES ('09o', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'KT');
25476 INSERT INTO `marc_tag_structure` VALUES ('091', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 0, 0, '', 'KT');
25477 INSERT INTO `marc_tag_structure` VALUES ('092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, '', 'KT');
25478 INSERT INTO `marc_tag_structure` VALUES ('096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, '', 'KT');
25479 INSERT INTO `marc_tag_structure` VALUES ('098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, '', 'KT');
25480 INSERT INTO `marc_tag_structure` VALUES ('099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, '', 'KT');
25481 INSERT INTO `marc_tag_structure` VALUES ('100', 'MAIN ENTRY--AUTHOR/DEVELOPER--PERSONAL NAME', 'MAIN ENTRY--PERSONAL NAME', 0, 0, NULL, 'KT');
25482 INSERT INTO `marc_tag_structure` VALUES ('110', 'MAIN ENTRY--AUTHOR/DEVELOPER--CORPORATE NAME', 'MAIN ENTRY--CORPORATE NAME', 0, 0, NULL, 'KT');
25483 INSERT INTO `marc_tag_structure` VALUES ('111', 'MAIN ENTRY--MEETING NAME', 'MAIN ENTRY--MEETING NAME', 0, 0, NULL, 'KT');
25484 INSERT INTO `marc_tag_structure` VALUES ('130', 'MAIN ENTRY--UNIFORM TITLE', 'MAIN ENTRY--UNIFORM TITLE', 0, 0, NULL, 'KT');
25485 INSERT INTO `marc_tag_structure` VALUES ('210', 'ABBREVIATED TITLE', 'ABBREVIATED TITLE', 1, 0, NULL, 'KT');
25486 INSERT INTO `marc_tag_structure` VALUES ('211', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 1, 0, NULL, 'KT');
25487 INSERT INTO `marc_tag_structure` VALUES ('212', 'VARIANT ACCESS TITLE [OBSOLETE]', 'VARIANT ACCESS TITLE [OBSOLETE]', 1, 0, NULL, 'KT');
25488 INSERT INTO `marc_tag_structure` VALUES ('214', 'AUGMENTED TITLE [OBSOLETE]', 'AUGMENTED TITLE [OBSOLETE]', 1, 0, NULL, 'KT');
25489 INSERT INTO `marc_tag_structure` VALUES ('222', 'KEY TITLE', 'KEY TITLE', 1, 0, NULL, 'KT');
25490 INSERT INTO `marc_tag_structure` VALUES ('240', 'UNIFORM TITLE', 'UNIFORM TITLE', 0, 0, 'Unititle', 'KT');
25491 INSERT INTO `marc_tag_structure` VALUES ('241', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 0, 0, '', 'KT');
25492 INSERT INTO `marc_tag_structure` VALUES ('242', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 1, 0, NULL, 'KT');
25493 INSERT INTO `marc_tag_structure` VALUES ('243', 'COLLECTIVE UNIFORM TITLE', 'COLLECTIVE UNIFORM TITLE', 0, 0, '', 'KT');
25494 INSERT INTO `marc_tag_structure` VALUES ('245', 'TITLE', 'TITLE STATEMENT', 0, 1, '', 'KT');
25495 INSERT INTO `marc_tag_structure` VALUES ('246', 'VARYING FORM OF TITLE', 'VARYING FORM OF TITLE', 1, 0, NULL, 'KT');
25496 INSERT INTO `marc_tag_structure` VALUES ('247', 'FORMER TITLE', 'FORMER TITLE', 1, 0, NULL, 'KT');
25497 INSERT INTO `marc_tag_structure` VALUES ('250', 'EDITION STATEMENT', 'EDITION STATEMENT', 0, 0, NULL, 'KT');
25498 INSERT INTO `marc_tag_structure` VALUES ('254', 'MUSICAL PRESENTATION STATEMENT', 'MUSICAL PRESENTATION STATEMENT', 0, 0, NULL, 'KT');
25499 INSERT INTO `marc_tag_structure` VALUES ('255', 'CARTOGRAPHIC MATHEMATICAL DATA', 'CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL, 'KT');
25500 INSERT INTO `marc_tag_structure` VALUES ('256', 'COMPUTER FILE CHARACTERISTICS', 'COMPUTER FILE CHARACTERISTICS', 0, 0, NULL, 'KT');
25501 INSERT INTO `marc_tag_structure` VALUES ('257', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 0, 0, NULL, 'KT');
25502 INSERT INTO `marc_tag_structure` VALUES ('258', 'PHILATELIC ISSUE DATE', 'PHILATELIC ISSUE DATE', 1, 0, NULL, 'KT');
25503 INSERT INTO `marc_tag_structure` VALUES ('260', 'PUBLISHER--PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 'PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 1, 0, NULL, 'KT');
25504 INSERT INTO `marc_tag_structure` VALUES ('261', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, NULL, 'KT');
25505 INSERT INTO `marc_tag_structure` VALUES ('262', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 0, 0, NULL, 'KT');
25506 INSERT INTO `marc_tag_structure` VALUES ('263', 'PROJECTED PUBLICATION DATE', 'PROJECTED PUBLICATION DATE', 0, 0, NULL, 'KT');
25507 INSERT INTO `marc_tag_structure` VALUES ('265', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 0, 0, NULL, 'KT');
25508 INSERT INTO `marc_tag_structure` VALUES ('270', 'PUBLICATION, DISTRIBUTION DETAILS--ADDRESS', 'ADDRESS', 1, 0, NULL, 'KT');
25509 INSERT INTO `marc_tag_structure` VALUES ('300', 'PHYSICAL DESCRIPTION', 'PHYSICAL DESCRIPTION', 1, 1, NULL, 'KT');
25510 INSERT INTO `marc_tag_structure` VALUES ('301', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 0, 0, NULL, 'KT');
25511 INSERT INTO `marc_tag_structure` VALUES ('302', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 0, 0, NULL, 'KT');
25512 INSERT INTO `marc_tag_structure` VALUES ('303', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'KT');
25513 INSERT INTO `marc_tag_structure` VALUES ('304', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'KT');
25514 INSERT INTO `marc_tag_structure` VALUES ('305', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 0, 0, NULL, 'KT');
25515 INSERT INTO `marc_tag_structure` VALUES ('306', 'RUN TIME', 'PLAYING TIME', 0, 0, NULL, 'KT');
25516 INSERT INTO `marc_tag_structure` VALUES ('307', 'HOURS, ETC.', 'HOURS, ETC.', 1, 0, NULL, 'KT');
25517 INSERT INTO `marc_tag_structure` VALUES ('308', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 1, 0, NULL, 'KT');
25518 INSERT INTO `marc_tag_structure` VALUES ('310', 'CURRENT PUBLICATION FREQUENCY', 'CURRENT PUBLICATION FREQUENCY', 0, 0, NULL, 'KT');
25519 INSERT INTO `marc_tag_structure` VALUES ('315', 'FREQUENCY (CF MP) [OBSOLETE]', 'FREQUENCY (CF MP) [OBSOLETE]', 0, 0, NULL, 'KT');
25520 INSERT INTO `marc_tag_structure` VALUES ('321', 'FORMER PUBLICATION FREQUENCY', 'FORMER PUBLICATION FREQUENCY', 1, 0, NULL, 'KT');
25521 INSERT INTO `marc_tag_structure` VALUES ('340', 'PHYSICAL MEDIUM', 'PHYSICAL MEDIUM', 1, 0, NULL, 'KT');
25522 INSERT INTO `marc_tag_structure` VALUES ('342', 'GEOSPATIAL REFERENCE DATA', 'GEOSPATIAL REFERENCE DATA', 1, 0, NULL, 'KT');
25523 INSERT INTO `marc_tag_structure` VALUES ('343', 'PLANAR COORDINATE DATA', 'PLANAR COORDINATE DATA', 1, 0, NULL, 'KT');
25524 INSERT INTO `marc_tag_structure` VALUES ('350', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 1, 0, NULL, 'KT');
25525 INSERT INTO `marc_tag_structure` VALUES ('351', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 1, 0, NULL, 'KT');
25526 INSERT INTO `marc_tag_structure` VALUES ('352', 'DIGITAL GRAPHIC REPRESENTATION', 'DIGITAL GRAPHIC REPRESENTATION', 1, 0, NULL, 'KT');
25527 INSERT INTO `marc_tag_structure` VALUES ('355', 'SECURITY CLASSIFICATION CONTROL', 'SECURITY CLASSIFICATION CONTROL', 1, 0, NULL, 'KT');
25528 INSERT INTO `marc_tag_structure` VALUES ('357', 'ORIGINATOR DISSEMINATION CONTROL', 'ORIGINATOR DISSEMINATION CONTROL', 0, 0, NULL, 'KT');
25529 INSERT INTO `marc_tag_structure` VALUES ('359', 'RENTAL PRICE (VM) [OBSOLETE]', 'RENTAL PRICE (VM) [OBSOLETE]', 0, 0, NULL, 'KT');
25530 INSERT INTO `marc_tag_structure` VALUES ('362', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 1, 0, NULL, 'KT');
25531 INSERT INTO `marc_tag_structure` VALUES ('365', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE PRICE', 'TRADE PRICE', 1, 0, NULL, 'KT');
25532 INSERT INTO `marc_tag_structure` VALUES ('366', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE AVAILABILITY INFORMATION', 'TRADE AVAILABILITY INFORMATION', 1, 0, NULL, 'KT');
25533 INSERT INTO `marc_tag_structure` VALUES ('400', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'KT');
25534 INSERT INTO `marc_tag_structure` VALUES ('410', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'KT');
25535 INSERT INTO `marc_tag_structure` VALUES ('411', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'KT');
25536 INSERT INTO `marc_tag_structure` VALUES ('440', 'SERIES--TITLE', 'SERIES STATEMENT/ADDED ENTRY--TITLE', 1, 0, NULL, 'KT');
25537 INSERT INTO `marc_tag_structure` VALUES ('490', 'SERIES STATEMENT', 'SERIES STATEMENT', 1, 0, '', 'KT');
25538 INSERT INTO `marc_tag_structure` VALUES ('500', 'GENERAL NOTE', 'GENERAL NOTE', 1, 0, NULL, 'KT');
25539 INSERT INTO `marc_tag_structure` VALUES ('501', 'WITH NOTE', 'WITH NOTE', 1, 0, NULL, 'KT');
25540 INSERT INTO `marc_tag_structure` VALUES ('502', 'DISSERTATION NOTE', 'DISSERTATION NOTE', 1, 0, NULL, 'KT');
25541 INSERT INTO `marc_tag_structure` VALUES ('503', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 1, 0, NULL, 'KT');
25542 INSERT INTO `marc_tag_structure` VALUES ('504', 'BIBLIOGRAPHY, ETC. NOTE', 'BIBLIOGRAPHY, ETC. NOTE', 1, 0, NULL, 'KT');
25543 INSERT INTO `marc_tag_structure` VALUES ('505', 'FORMATTED CONTENTS NOTE', 'FORMATTED CONTENTS NOTE', 1, 0, NULL, 'KT');
25544 INSERT INTO `marc_tag_structure` VALUES ('506', 'RESTRICTIONS ON ACCESS NOTE', 'RESTRICTIONS ON ACCESS NOTE', 1, 0, NULL, 'KT');
25545 INSERT INTO `marc_tag_structure` VALUES ('507', 'SCALE NOTE FOR GRAPHIC MATERIAL', 'SCALE NOTE FOR GRAPHIC MATERIAL', 0, 0, NULL, 'KT');
25546 INSERT INTO `marc_tag_structure` VALUES ('508', 'CREATION/PRODUCTION CREDITS NOTE', 'CREATION/PRODUCTION CREDITS NOTE', 1, 0, NULL, 'KT');
25547 INSERT INTO `marc_tag_structure` VALUES ('509', 'INFORMAL NOTES (RLIN)', 'INFORMAL NOTES (RLIN)', 0, 0, NULL, 'KT');
25548 INSERT INTO `marc_tag_structure` VALUES ('510', 'CITATION/REFERENCES NOTE', 'CITATION/REFERENCES NOTE', 1, 0, NULL, 'KT');
25549 INSERT INTO `marc_tag_structure` VALUES ('511', 'PARTICIPANT OR PERFORMER NOTE', 'PARTICIPANT OR PERFORMER NOTE', 1, 0, NULL, 'KT');
25550 INSERT INTO `marc_tag_structure` VALUES ('512', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'KT');
25551 INSERT INTO `marc_tag_structure` VALUES ('513', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 1, 0, NULL, 'KT');
25552 INSERT INTO `marc_tag_structure` VALUES ('514', 'DATA QUALITY NOTE', 'DATA QUALITY NOTE', 0, 0, NULL, 'KT');
25553 INSERT INTO `marc_tag_structure` VALUES ('515', 'NUMBERING PECULIARITIES NOTE', 'NUMBERING PECULIARITIES NOTE', 1, 0, NULL, 'KT');
25554 INSERT INTO `marc_tag_structure` VALUES ('516', 'TYPE OF COMPUTER FILE OR DATA NOTE', 'TYPE OF COMPUTER FILE OR DATA NOTE', 1, 0, NULL, 'KT');
25555 INSERT INTO `marc_tag_structure` VALUES ('517', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 0, 0, NULL, 'KT');
25556 INSERT INTO `marc_tag_structure` VALUES ('518', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 1, 0, NULL, 'KT');
25557 INSERT INTO `marc_tag_structure` VALUES ('520', 'SUMMARY, ETC.', 'SUMMARY, ETC.', 1, 0, NULL, 'KT');
25558 INSERT INTO `marc_tag_structure` VALUES ('521', 'GRADE LEVEL/TARGET AUDIENCE NOTE', 'TARGET AUDIENCE NOTE', 1, 0, NULL, 'KT');
25559 INSERT INTO `marc_tag_structure` VALUES ('522', 'GEOGRAPHIC DETAILS/GEOGRAPHIC COVERAGE NOTE', 'GEOGRAPHIC COVERAGE NOTE', 1, 0, NULL, 'KT');
25560 INSERT INTO `marc_tag_structure` VALUES ('523', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'KT');
25561 INSERT INTO `marc_tag_structure` VALUES ('524', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'KT');
25562 INSERT INTO `marc_tag_structure` VALUES ('525', 'SUPPLEMENT NOTE', 'SUPPLEMENT NOTE', 0, 0, NULL, 'KT');
25563 INSERT INTO `marc_tag_structure` VALUES ('526', 'STUDY PROGRAM INFORMATION NOTE', 'STUDY PROGRAM INFORMATION NOTE', 0, 0, NULL, 'KT');
25564 INSERT INTO `marc_tag_structure` VALUES ('527', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 1, 0, NULL, 'KT');
25565 INSERT INTO `marc_tag_structure` VALUES ('530', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 1, 0, NULL, 'KT');
25566 INSERT INTO `marc_tag_structure` VALUES ('533', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'KT');
25567 INSERT INTO `marc_tag_structure` VALUES ('534', 'ORIGINAL VERSION NOTE', 'ORIGINAL VERSION NOTE', 1, 0, NULL, 'KT');
25568 INSERT INTO `marc_tag_structure` VALUES ('535', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 1, 0, NULL, 'KT');
25569 INSERT INTO `marc_tag_structure` VALUES ('536', 'FUNDING INFORMATION NOTE', 'FUNDING INFORMATION NOTE', 1, 0, NULL, 'KT');
25570 INSERT INTO `marc_tag_structure` VALUES ('537', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'KT');
25571 INSERT INTO `marc_tag_structure` VALUES ('538', 'SYSTEM DETAILS NOTE', 'SYSTEM DETAILS NOTE', 1, 0, NULL, 'KT');
25572 INSERT INTO `marc_tag_structure` VALUES ('540', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'KT');
25573 INSERT INTO `marc_tag_structure` VALUES ('541', 'ACQUISITION INFO--IMMEDIATE SOURCE OF ACQUISITION NOTE', 'IMMEDIATE SOURCE OF ACQUISITION NOTE', 1, 0, NULL, 'KT');
25574 INSERT INTO `marc_tag_structure` VALUES ('543', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 1, 0, NULL, 'KT');
25575 INSERT INTO `marc_tag_structure` VALUES ('544', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 1, 0, NULL, 'KT');
25576 INSERT INTO `marc_tag_structure` VALUES ('546', 'LANGUAGE/TRANSLATION INFO', 'LANGUAGE NOTE', 1, 0, NULL, 'KT');
25577 INSERT INTO `marc_tag_structure` VALUES ('547', 'FORMER TITLE COMPLEXITY NOTE', 'FORMER TITLE COMPLEXITY NOTE', 1, 0, NULL, 'KT');
25578 INSERT INTO `marc_tag_structure` VALUES ('550', 'ISSUING BODY NOTE', 'ISSUING BODY NOTE', 1, 0, NULL, 'KT');
25579 INSERT INTO `marc_tag_structure` VALUES ('552', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 1, 0, NULL, 'KT');
25580 INSERT INTO `marc_tag_structure` VALUES ('555', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 1, 0, NULL, 'KT');
25581 INSERT INTO `marc_tag_structure` VALUES ('556', 'INFORMATION ABOUT DOCUMENTATION NOTE', 'INFORMATION ABOUT DOCUMENTATION NOTE', 1, 0, NULL, 'KT');
25582 INSERT INTO `marc_tag_structure` VALUES ('561', 'OWNERSHIP AND CUSTODIAL HISTORY', 'OWNERSHIP AND CUSTODIAL HISTORY', 1, 0, NULL, 'KT');
25583 INSERT INTO `marc_tag_structure` VALUES ('562', 'COPY AND VERSION IDENTIFICATION NOTE', 'COPY AND VERSION IDENTIFICATION NOTE', 1, 0, NULL, 'KT');
25584 INSERT INTO `marc_tag_structure` VALUES ('563', 'BINDING INFORMATION', 'BINDING INFORMATION', 1, 0, NULL, 'KT');
25585 INSERT INTO `marc_tag_structure` VALUES ('565', 'CASE FILE CHARACTERISTICS NOTE', 'CASE FILE CHARACTERISTICS NOTE', 1, 0, NULL, 'KT');
25586 INSERT INTO `marc_tag_structure` VALUES ('567', 'METHODOLOGY NOTE', 'METHODOLOGY NOTE', 1, 0, NULL, 'KT');
25587 INSERT INTO `marc_tag_structure` VALUES ('570', 'EDITOR NOTE (SE) [OBSOLETE]', 'EDITOR NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'KT');
25588 INSERT INTO `marc_tag_structure` VALUES ('580', 'LINKING ENTRY COMPLEXITY NOTE', 'LINKING ENTRY COMPLEXITY NOTE', 1, 0, NULL, 'KT');
25589 INSERT INTO `marc_tag_structure` VALUES ('581', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'KT');
25590 INSERT INTO `marc_tag_structure` VALUES ('582', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 1, 0, NULL, 'KT');
25591 INSERT INTO `marc_tag_structure` VALUES ('583', 'ACQUISITION INFO--ACTION NOTE', 'ACTION NOTE', 1, 0, NULL, 'KT');
25592 INSERT INTO `marc_tag_structure` VALUES ('584', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 1, 0, NULL, 'KT');
25593 INSERT INTO `marc_tag_structure` VALUES ('585', 'EXHIBITIONS NOTE', 'EXHIBITIONS NOTE', 1, 0, NULL, 'KT');
25594 INSERT INTO `marc_tag_structure` VALUES ('586', 'AWARDS', 'AWARDS NOTE', 1, 0, NULL, 'KT');
25595 INSERT INTO `marc_tag_structure` VALUES ('590', 'LOCAL NOTE (RLIN)', 'LOCAL NOTE (RLIN)', 1, 0, NULL, 'KT');
25596 INSERT INTO `marc_tag_structure` VALUES ('600', 'SUBJECT--PERSONAL NAME', 'SUBJECT ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'KT');
25597 INSERT INTO `marc_tag_structure` VALUES ('610', 'SUBJECT--CORPORATE NAME', 'SUBJECT ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'KT');
25598 INSERT INTO `marc_tag_structure` VALUES ('611', 'SUBJECT--MEETING NAME', 'SUBJECT ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'KT');
25599 INSERT INTO `marc_tag_structure` VALUES ('630', 'SUBJECT--UNIFORM TITLE', 'SUBJECT ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'KT');
25600 INSERT INTO `marc_tag_structure` VALUES ('648', 'SUBJECT--CHRONOLOGICAL TERM', 'SUBJECT ADDED ENTRY--CHRONOLOGICAL TERM', 1, 0, NULL, 'KT');
25601 INSERT INTO `marc_tag_structure` VALUES ('650', 'SUBJECT--TOPIC', 'SUBJECT ADDED ENTRY--TOPICAL TERM', 1, 0, NULL, 'KT');
25602 INSERT INTO `marc_tag_structure` VALUES ('651', 'SUBJECT--GEOGRAPHIC NAME', 'SUBJECT ADDED ENTRY--GEOGRAPHIC NAME', 1, 0, NULL, 'KT');
25603 INSERT INTO `marc_tag_structure` VALUES ('652', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 1, 0, NULL, 'KT');
25604 INSERT INTO `marc_tag_structure` VALUES ('653', 'SUBJECT--UNCONTROLLED', 'INDEX TERM--UNCONTROLLED', 1, 0, NULL, 'KT');
25605 INSERT INTO `marc_tag_structure` VALUES ('654', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 1, 0, NULL, 'KT');
25606 INSERT INTO `marc_tag_structure` VALUES ('655', 'SUBJECT--GENRE/FORM', 'INDEX TERM--GENRE/FORM', 1, 0, NULL, 'KT');
25607 INSERT INTO `marc_tag_structure` VALUES ('656', 'SUBJECT--OCCUPATION', 'INDEX TERM--OCCUPATION', 1, 0, NULL, 'KT');
25608 INSERT INTO `marc_tag_structure` VALUES ('657', 'SUBJECT--FUNCTION', 'INDEX TERM--FUNCTION', 1, 0, NULL, 'KT');
25609 INSERT INTO `marc_tag_structure` VALUES ('658', 'SUBJECT--CURRICULUM OBJECTIVE', 'INDEX TERM--CURRICULUM OBJECTIVE', 1, 0, NULL, 'KT');
25610 INSERT INTO `marc_tag_structure` VALUES ('662', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'KT');
25611 INSERT INTO `marc_tag_structure` VALUES ('690', 'LOCAL SUBJECT--TOPICAL TERM (OCLC, RLIN)', 'LOCAL SUBJECT ADDED ENTRY--TOPICAL TERM (OCLC, RLIN)', 1, 0, '', 'KT');
25612 INSERT INTO `marc_tag_structure` VALUES ('691', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 1, 0, '', 'KT');
25613 INSERT INTO `marc_tag_structure` VALUES ('696', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'KT');
25614 INSERT INTO `marc_tag_structure` VALUES ('697', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'KT');
25615 INSERT INTO `marc_tag_structure` VALUES ('698', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'KT');
25616 INSERT INTO `marc_tag_structure` VALUES ('699', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'KT');
25617 INSERT INTO `marc_tag_structure` VALUES ('700', 'ADDED ENTRY--PERSONAL NAME', 'ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'KT');
25618 INSERT INTO `marc_tag_structure` VALUES ('705', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'KT');
25619 INSERT INTO `marc_tag_structure` VALUES ('710', 'ADDED ENTRY--CORPORATE NAME', 'ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'KT');
25620 INSERT INTO `marc_tag_structure` VALUES ('711', 'ADDED ENTRY--MEETING NAME', 'ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'KT');
25621 INSERT INTO `marc_tag_structure` VALUES ('715', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'KT');
25622 INSERT INTO `marc_tag_structure` VALUES ('720', 'ADDED ENTRY--UNCONTROLLED NAME', 'ADDED ENTRY--UNCONTROLLED NAME', 1, 0, NULL, 'KT');
25623 INSERT INTO `marc_tag_structure` VALUES ('730', 'ADDED ENTRY--UNIFORM TITLE', 'ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'KT');
25624 INSERT INTO `marc_tag_structure` VALUES ('740', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 1, 0, NULL, 'KT');
25625 INSERT INTO `marc_tag_structure` VALUES ('752', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'KT');
25626 INSERT INTO `marc_tag_structure` VALUES ('753', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 1, 0, NULL, 'KT');
25627 INSERT INTO `marc_tag_structure` VALUES ('754', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 1, 0, NULL, 'KT');
25628 INSERT INTO `marc_tag_structure` VALUES ('755', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 1, 0, NULL, 'KT');
25629 INSERT INTO `marc_tag_structure` VALUES ('760', 'MAIN SERIES ENTRY', 'MAIN SERIES ENTRY', 1, 0, NULL, 'KT');
25630 INSERT INTO `marc_tag_structure` VALUES ('762', 'SUBSERIES ENTRY', 'SUBSERIES ENTRY', 1, 0, NULL, 'KT');
25631 INSERT INTO `marc_tag_structure` VALUES ('765', 'ORIGINAL LANGUAGE ENTRY', 'ORIGINAL LANGUAGE ENTRY', 1, 0, NULL, 'KT');
25632 INSERT INTO `marc_tag_structure` VALUES ('767', 'TRANSLATION ENTRY', 'TRANSLATION ENTRY', 1, 0, NULL, 'KT');
25633 INSERT INTO `marc_tag_structure` VALUES ('770', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 1, 0, NULL, 'KT');
25634 INSERT INTO `marc_tag_structure` VALUES ('772', 'SUPPLEMENT PARENT ENTRY', 'SUPPLEMENT PARENT ENTRY', 1, 0, NULL, 'KT');
25635 INSERT INTO `marc_tag_structure` VALUES ('773', 'HOST ITEM ENTRY', 'HOST ITEM ENTRY', 1, 0, NULL, 'KT');
25636 INSERT INTO `marc_tag_structure` VALUES ('774', 'CONSTITUENT UNIT ENTRY', 'CONSTITUENT UNIT ENTRY', 1, 0, NULL, 'KT');
25637 INSERT INTO `marc_tag_structure` VALUES ('775', 'OTHER EDITION ENTRY', 'OTHER EDITION ENTRY', 1, 0, NULL, 'KT');
25638 INSERT INTO `marc_tag_structure` VALUES ('776', 'ADDITIONAL PHYSICAL FORM ENTRY', 'ADDITIONAL PHYSICAL FORM ENTRY', 1, 0, NULL, 'KT');
25639 INSERT INTO `marc_tag_structure` VALUES ('777', 'ISSUED WITH ENTRY', 'ISSUED WITH ENTRY', 1, 0, NULL, 'KT');
25640 INSERT INTO `marc_tag_structure` VALUES ('780', 'PRECEDING ENTRY', 'PRECEDING ENTRY', 1, 0, NULL, 'KT');
25641 INSERT INTO `marc_tag_structure` VALUES ('785', 'SUCCEEDING ENTRY', 'SUCCEEDING ENTRY', 1, 0, NULL, 'KT');
25642 INSERT INTO `marc_tag_structure` VALUES ('786', 'DATA SOURCE ENTRY', 'DATA SOURCE ENTRY', 1, 0, NULL, 'KT');
25643 INSERT INTO `marc_tag_structure` VALUES ('787', 'NONSPECIFIC RELATIONSHIP ENTRY', 'NONSPECIFIC RELATIONSHIP ENTRY', 1, 0, NULL, 'KT');
25644 INSERT INTO `marc_tag_structure` VALUES ('789', 'COMPONENT ITEM ENTRY (RLIN)', 'COMPONENT ITEM ENTRY (RLIN)', 1, 0, '', 'KT');
25645 INSERT INTO `marc_tag_structure` VALUES ('796', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'KT');
25646 INSERT INTO `marc_tag_structure` VALUES ('797', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'KT');
25647 INSERT INTO `marc_tag_structure` VALUES ('798', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'KT');
25648 INSERT INTO `marc_tag_structure` VALUES ('799', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'KT');
25649 INSERT INTO `marc_tag_structure` VALUES ('800', 'SERIES ADDED ENTRY--PERSONAL NAME', 'SERIES ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'KT');
25650 INSERT INTO `marc_tag_structure` VALUES ('810', 'SERIES ADDED ENTRY--CORPORATE NAME', 'SERIES ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'KT');
25651 INSERT INTO `marc_tag_structure` VALUES ('811', 'SERIES ADDED ENTRY--MEETING NAME', 'SERIES ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'KT');
25652 INSERT INTO `marc_tag_structure` VALUES ('830', 'SERIES ADDED ENTRY--UNIFORM TITLE', 'SERIES ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'KT');
25653 INSERT INTO `marc_tag_structure` VALUES ('840', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 1, 0, NULL, 'KT');
25654 INSERT INTO `marc_tag_structure` VALUES ('841', 'HOLDINGS CODED DATA VALUES', 'HOLDINGS CODED DATA VALUES', 0, 0, NULL, 'KT');
25655 INSERT INTO `marc_tag_structure` VALUES ('842', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 0, 0, NULL, 'KT');
25656 INSERT INTO `marc_tag_structure` VALUES ('843', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'KT');
25657 INSERT INTO `marc_tag_structure` VALUES ('844', 'NAME OF UNIT', 'NAME OF UNIT', 0, 0, NULL, 'KT');
25658 INSERT INTO `marc_tag_structure` VALUES ('845', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'KT');
25659 INSERT INTO `marc_tag_structure` VALUES ('850', 'HOLDING INSTITUTION', 'HOLDING INSTITUTION', 1, 0, NULL, 'KT');
25660 INSERT INTO `marc_tag_structure` VALUES ('851', 'LOCATION [OBSOLETE]', 'LOCATION [OBSOLETE]', 1, 0, NULL, 'KT');
25661 INSERT INTO `marc_tag_structure` VALUES ('852', 'LOCATION/CALL NUMBER', 'LOCATION/CALL NUMBER', 1, 0, NULL, 'KT');
25662 INSERT INTO `marc_tag_structure` VALUES ('853', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'KT');
25663 INSERT INTO `marc_tag_structure` VALUES ('854', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'KT');
25664 INSERT INTO `marc_tag_structure` VALUES ('855', 'CAPTIONS AND PATTERN--INDEXES', 'CAPTIONS AND PATTERN--INDEXES', 1, 0, NULL, 'KT');
25665 INSERT INTO `marc_tag_structure` VALUES ('856', 'URL/ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL, 'KT');
25666 INSERT INTO `marc_tag_structure` VALUES ('859', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'KT');
25667 INSERT INTO `marc_tag_structure` VALUES ('863', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'KT');
25668 INSERT INTO `marc_tag_structure` VALUES ('864', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'KT');
25669 INSERT INTO `marc_tag_structure` VALUES ('865', 'ENUMERATION AND CHRONOLOGY--INDEXES', 'ENUMERATION AND CHRONOLOGY--INDEXES', 1, 0, NULL, 'KT');
25670 INSERT INTO `marc_tag_structure` VALUES ('866', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'KT');
25671 INSERT INTO `marc_tag_structure` VALUES ('867', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'KT');
25672 INSERT INTO `marc_tag_structure` VALUES ('868', 'TEXTUAL HOLDINGS--INDEXES', 'TEXTUAL HOLDINGS--INDEXES', 1, 0, NULL, 'KT');
25673 INSERT INTO `marc_tag_structure` VALUES ('870', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 1, 0, NULL, 'KT');
25674 INSERT INTO `marc_tag_structure` VALUES ('871', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 1, 0, NULL, 'KT');
25675 INSERT INTO `marc_tag_structure` VALUES ('872', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 1, 0, NULL, 'KT');
25676 INSERT INTO `marc_tag_structure` VALUES ('873', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 1, 0, NULL, 'KT');
25677 INSERT INTO `marc_tag_structure` VALUES ('876', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'KT');
25678 INSERT INTO `marc_tag_structure` VALUES ('877', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'KT');
25679 INSERT INTO `marc_tag_structure` VALUES ('878', 'ITEM INFORMATION--INDEXES', 'ITEM INFORMATION--INDEXES', 1, 0, NULL, 'KT');
25680 INSERT INTO `marc_tag_structure` VALUES ('880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL, 'KT');
25681 INSERT INTO `marc_tag_structure` VALUES ('886', 'FOREIGN MARC INFORMATION FIELD', 'FOREIGN MARC INFORMATION FIELD', 1, 0, NULL, 'KT');
25682 INSERT INTO `marc_tag_structure` VALUES ('887', 'NON-MARC INFORMATION FIELD', 'NON-MARC INFORMATION FIELD', 1, 0, NULL, 'KT');
25683 INSERT INTO `marc_tag_structure` VALUES ('896', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'KT');
25684 INSERT INTO `marc_tag_structure` VALUES ('897', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'KT');
25685 INSERT INTO `marc_tag_structure` VALUES ('898', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'KT');
25686 INSERT INTO `marc_tag_structure` VALUES ('899', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'KT');
25687 INSERT INTO `marc_tag_structure` VALUES ('89e', 'ERRONEOUS FIELD, ERR (RLIN)', 'ERRONEOUS FIELD, ERR (RLIN)', 1, 0, '', 'KT');
25688 INSERT INTO `marc_tag_structure` VALUES ('900', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 1, 0, '', 'KT');
25689 INSERT INTO `marc_tag_structure` VALUES ('901', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 1, 0, '', 'KT');
25690 INSERT INTO `marc_tag_structure` VALUES ('902', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 1, 0, '', 'KT');
25691 INSERT INTO `marc_tag_structure` VALUES ('903', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 1, 0, '', 'KT');
25692 INSERT INTO `marc_tag_structure` VALUES ('904', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 1, 0, '', 'KT');
25693 INSERT INTO `marc_tag_structure` VALUES ('905', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 1, 0, '', 'KT');
25694 INSERT INTO `marc_tag_structure` VALUES ('906', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 1, 0, '', 'KT');
25695 INSERT INTO `marc_tag_structure` VALUES ('907', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 1, 0, '', 'KT');
25696 INSERT INTO `marc_tag_structure` VALUES ('908', 'PUT COMMAND PARAMETER (RLIN)', 'PUT COMMAND PARAMETER (RLIN)', 0, 0, '', 'KT');
25697 INSERT INTO `marc_tag_structure` VALUES ('910', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 1, 0, '', 'KT');
25698 INSERT INTO `marc_tag_structure` VALUES ('91o', 'USER-OPTION DATA (COLC)', 'USER-OPTION DATA (OCLC)', 0, 0, '', 'KT');
25699 INSERT INTO `marc_tag_structure` VALUES ('91r', 'RLG STANDARDS NOTE (RLIN)', 'RLG STANDARDS NOTE (RLIN)', 1, 0, '', 'KT');
25700 INSERT INTO `marc_tag_structure` VALUES ('911', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 1, 0, '', 'KT');
25701 INSERT INTO `marc_tag_structure` VALUES ('930', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 1, 0, '', 'KT');
25702 INSERT INTO `marc_tag_structure` VALUES ('93r', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 1, 0, '', 'KT');
25703 INSERT INTO `marc_tag_structure` VALUES ('936', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 0, 0, '', 'KT');
25704 INSERT INTO `marc_tag_structure` VALUES ('940', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'KT');
25705 INSERT INTO `marc_tag_structure` VALUES ('941', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'KT');
25706 INSERT INTO `marc_tag_structure` VALUES ('943', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'KT');
25707 INSERT INTO `marc_tag_structure` VALUES ('945', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'KT');
25708 INSERT INTO `marc_tag_structure` VALUES ('94c', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'KT');
25709 INSERT INTO `marc_tag_structure` VALUES ('946', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'KT');
25710 INSERT INTO `marc_tag_structure` VALUES ('947', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'KT');
25711 INSERT INTO `marc_tag_structure` VALUES ('948', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 1, 0, '', 'KT');
25712 INSERT INTO `marc_tag_structure` VALUES ('949', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'KT');
25713 INSERT INTO `marc_tag_structure` VALUES ('94a', 'ANALYSIS TREATMENT NOTE (RLIN)', 'ANALYSIS TREATMENT NOTE (RLIN)', 1, 0, '', 'KT');
25714 INSERT INTO `marc_tag_structure` VALUES ('94b', 'TREATMENT CODES (RLIN)', 'TREATMENT CODES (RLIN)', 1, 0, '', 'KT');
25715 INSERT INTO `marc_tag_structure` VALUES ('950', 'LOCAL HOLDINGS (RLIN)', 'LOCAL HOLDINGS (RLIN)', 1, 0, '', 'KT');
25716 INSERT INTO `marc_tag_structure` VALUES ('951', 'EQUIVALENCE OR CROSS-REFERENCE--GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'KT');
25717 INSERT INTO `marc_tag_structure` VALUES ('95c', 'EQUIVALENCE OR CROSS-REFERENCE--HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'KT');
25718 INSERT INTO `marc_tag_structure` VALUES ('95r', 'CLUSTER MEMBER (RLIN)', 'CLUSTER MEMBER (RLIN)', 1, 0, '', 'KT');
25719 INSERT INTO `marc_tag_structure` VALUES ('955', 'COPY-LEVEL INFORMATION (RLIN)', 'COPY-LEVEL INFORMATION (RLIN)', 1, 0, '', 'KT');
25720 INSERT INTO `marc_tag_structure` VALUES ('956', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 1, 0, '', 'KT');
25721 INSERT INTO `marc_tag_structure` VALUES ('960', 'PHYSICAL LOCATION (RLIN)', 'PHYSICAL LOCATION (RLIN)', 1, 0, '', 'KT');
25722 INSERT INTO `marc_tag_structure` VALUES ('967', 'ADDITIONAL ESTC CODES (RLIN)', 'ADDITIONAL ESTC CODES (RLIN)', 1, 0, '', 'KT');
25723 INSERT INTO `marc_tag_structure` VALUES ('980', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'KT');
25724 INSERT INTO `marc_tag_structure` VALUES ('981', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'KT');
25725 INSERT INTO `marc_tag_structure` VALUES ('982', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'KT');
25726 INSERT INTO `marc_tag_structure` VALUES ('983', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--TITLE/UNIFORM TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE--SERIES STATEMENT-TITLE/UNIFORM TITLE [LOCAL, CANADA]', 1, 0, '', 'KT');
25727 INSERT INTO `marc_tag_structure` VALUES ('984', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 1, 0, '', 'KT');
25728 INSERT INTO `marc_tag_structure` VALUES ('987', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 1, 0, '', 'KT');
25729 INSERT INTO `marc_tag_structure` VALUES ('990', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 1, 0, '', 'KT');
25730 INSERT INTO `marc_tag_structure` VALUES ('995', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 1, 0, '', 'KT');
25731 INSERT INTO `marc_tag_structure` VALUES ('998', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'KT');
25732 INSERT INTO `marc_tag_structure` VALUES ('999', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'KT');
25733 INSERT INTO `marc_tag_structure` VALUES ('b99', 'PRIVATE LOCAL INFORMATION (RLIN)', 'PRIVATE LOCAL INFORMATION (RLIN)', 1, 0, '', 'KT');
25734 INSERT INTO `marc_tag_structure` VALUES ('u01', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 0, 0, '', 'KT');
25735 INSERT INTO `marc_tag_structure` VALUES ('u02', 'STANDARD NUMBER (RLIN)', 'STANDARD NUMBER (RLIN)', 0, 0, '', 'KT');
25736 INSERT INTO `marc_tag_structure` VALUES ('u08', 'CODED INFORMATION (RLIN)', 'CODED INFORMATION (RLIN)', 0, 0, '', 'KT');
25737 INSERT INTO `marc_tag_structure` VALUES ('u10', 'REQUESTER IDENTIFICATION (RLIN)', 'REQUESTER IDENTIFICATION (RLIN)', 1, 0, '', 'KT');
25738 INSERT INTO `marc_tag_structure` VALUES ('u11', 'DEPARTMENT REPORT REQUEST (RLIN)', 'DEPARTMENT REPORT REQUEST (RLIN)', 1, 0, '', 'KT');
25739 INSERT INTO `marc_tag_structure` VALUES ('u20', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 0, 0, '', 'KT');
25740 INSERT INTO `marc_tag_structure` VALUES ('u21', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 0, 0, '', 'KT');
25741 INSERT INTO `marc_tag_structure` VALUES ('u22', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 0, 0, '', 'KT');
25742 INSERT INTO `marc_tag_structure` VALUES ('u25', 'SUPPLIER REPORT(S) (RLIN)', 'SUPPLIER REPORT(S) (RLIN)', 0, 0, '', 'KT');
25743 INSERT INTO `marc_tag_structure` VALUES ('u30', 'INTERVALS (RLIN)', 'INTERVALS (RLIN)', 0, 0, '', 'KT');
25744 INSERT INTO `marc_tag_structure` VALUES ('u31', 'CLAIM COUNTS (RLIN)', 'CLAIM COUNTS (RLIN)', 0, 0, '', 'KT');
25745 INSERT INTO `marc_tag_structure` VALUES ('u33', 'INVOICE CLAIM (RLIN)', 'INVOICE CLAIM (RLIN)', 0, 0, '', 'KT');
25746 INSERT INTO `marc_tag_structure` VALUES ('u34', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 0, 0, '', 'KT');
25747 INSERT INTO `marc_tag_structure` VALUES ('u40', 'EXTENDED PROCUREMENT CODES (RLIN)', 'EXTENDED PROCUREMENT CODES (RLIN)', 0, 0, '', 'KT');
25748 INSERT INTO `marc_tag_structure` VALUES ('u50', 'ACQUISITIONS NOTES (RLIN)', 'ACQUISITIONS NOTES (RLIN)', 0, 0, '', 'KT');
25749 INSERT INTO `marc_tag_structure` VALUES ('u51', 'SELECTION NOTES (RLIN)', 'SELECTION NOTES (RLIN)', 0, 0, '', 'KT');
25750 INSERT INTO `marc_tag_structure` VALUES ('u52', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 0, 0, '', 'KT');
25751 INSERT INTO `marc_tag_structure` VALUES ('u53', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 0, 0, '', 'KT');
25752 INSERT INTO `marc_tag_structure` VALUES ('u54', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 0, 0, '', 'KT');
25753 INSERT INTO `marc_tag_structure` VALUES ('u55', 'CATALOGING NOTES (RLIN)', 'CATALOGING NOTES (RLIN)', 0, 0, '', 'KT');
25754 INSERT INTO `marc_tag_structure` VALUES ('u5f', 'ACCOUNTING NOTES (RLIN)', 'ACCOUNTING NOTES (RLIN)', 0, 0, '', 'KT');
25755 INSERT INTO `marc_tag_structure` VALUES ('u70', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 0, 0, '', 'KT');
25756 INSERT INTO `marc_tag_structure` VALUES ('u71', 'FUND ACCOUNT (RLIN)', 'FUND ACCOUNT (RLIN)', 0, 0, '', 'KT');
25757 INSERT INTO `marc_tag_structure` VALUES ('u75', 'ITEM DETAILS (RLIN)', 'ITEM DETAILS (RLIN)', 1, 0, '', 'KT');
25758 INSERT INTO `marc_tag_structure` VALUES ('u7f', 'PRICE INFORMATION (RLIN)', 'PRICE INFORMATION (RLIN)', 1, 0, '', 'KT');
25759 INSERT INTO `marc_tag_structure` VALUES ('u90', 'TAPE OUTPUT, TAPE (RLIN)', 'TAPE OUTPUT, TAPE (RLIN)', 0, 0, '', 'KT');
25760 INSERT INTO `marc_tag_structure` VALUES ('ufi', 'FISCAL INFORMATION, FI (RLIN)', 'FISCAL INFORMATION, FI (RLIN)', 1, 0, '', 'KT');
25761
25762
25763
25764 INSERT INTO `marc_subfield_structure` VALUES ('000', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_leader.pl', 0, 0, 'KT', '', '');
25765 INSERT INTO `marc_subfield_structure` VALUES ('001', '@', 'control field', 'control field', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25766 INSERT INTO `marc_subfield_structure` VALUES ('003', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_003.pl', 0, -6, 'KT', '', '');
25767 INSERT INTO `marc_subfield_structure` VALUES ('005', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_005.pl', 0, -1, 'KT', '', '');
25768 INSERT INTO `marc_subfield_structure` VALUES ('006', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_006.pl', 0, -1, 'KT', '', '');
25769 INSERT INTO `marc_subfield_structure` VALUES ('007', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_007.pl', 0, 0, 'KT', '', '');
25770 INSERT INTO `marc_subfield_structure` VALUES ('008', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_field_008.pl', 0, 0, 'KT', '', '');
25771 INSERT INTO `marc_subfield_structure` VALUES ('009', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25772 INSERT INTO `marc_subfield_structure` VALUES ('010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', NULL, 0, -6, 'KT', '', '');
25773 INSERT INTO `marc_subfield_structure` VALUES ('010', 'a', 'LC control number', 'LC control number', 0, 0, 'biblioitems.lccn', 0, '', '', '', 0, -6, 'KT', '', '');
25774 INSERT INTO `marc_subfield_structure` VALUES ('010', 'b', 'NUCMC control number', 'NUCMC control number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25775 INSERT INTO `marc_subfield_structure` VALUES ('010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25776 INSERT INTO `marc_subfield_structure` VALUES ('011', 'a', 'LC control number', 'LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25777 INSERT INTO `marc_subfield_structure` VALUES ('013', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'KT', '', '');
25778 INSERT INTO `marc_subfield_structure` VALUES ('013', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25779 INSERT INTO `marc_subfield_structure` VALUES ('013', 'a', 'Number', 'Number', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25780 INSERT INTO `marc_subfield_structure` VALUES ('013', 'b', 'Country', 'Country', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25781 INSERT INTO `marc_subfield_structure` VALUES ('013', 'c', 'Type of number', 'Type of number', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25782 INSERT INTO `marc_subfield_structure` VALUES ('013', 'd', 'Date', 'Date', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25783 INSERT INTO `marc_subfield_structure` VALUES ('013', 'e', 'Status', 'Status', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25784 INSERT INTO `marc_subfield_structure` VALUES ('013', 'f', 'Party to document', 'Party to document', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25785 INSERT INTO `marc_subfield_structure` VALUES ('015', '2', 'Source', 'Source', 0, 0, '', 0, '', '', NULL, 0, -6, 'KT', '', '');
25786 INSERT INTO `marc_subfield_structure` VALUES ('015', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25787 INSERT INTO `marc_subfield_structure` VALUES ('015', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25788 INSERT INTO `marc_subfield_structure` VALUES ('015', 'a', 'National bibliography number', 'National bibliography number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25789 INSERT INTO `marc_subfield_structure` VALUES ('016', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25790 INSERT INTO `marc_subfield_structure` VALUES ('016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25791 INSERT INTO `marc_subfield_structure` VALUES ('016', 'a', 'Record control number', 'Record control number', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25792 INSERT INTO `marc_subfield_structure` VALUES ('016', 'z', 'Canceled or invalid record control number', 'Canceled or invalid record control number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25793 INSERT INTO `marc_subfield_structure` VALUES ('017', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25794 INSERT INTO `marc_subfield_structure` VALUES ('017', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25795 INSERT INTO `marc_subfield_structure` VALUES ('017', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25796 INSERT INTO `marc_subfield_structure` VALUES ('017', 'a', 'Copyright or legal deposit number', 'Copyright or legal deposit number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25797 INSERT INTO `marc_subfield_structure` VALUES ('017', 'b', 'Assigning agency', 'Assigning agency', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25798 INSERT INTO `marc_subfield_structure` VALUES ('017', 'd', 'Date', 'Date', 0, 0, '', 0, '', '', NULL, 0, -6, 'KT', '', '');
25799 INSERT INTO `marc_subfield_structure` VALUES ('017', 'i', 'Display text', 'Display text', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25800 INSERT INTO `marc_subfield_structure` VALUES ('018', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25801 INSERT INTO `marc_subfield_structure` VALUES ('018', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25802 INSERT INTO `marc_subfield_structure` VALUES ('018', 'a', 'Copyright article-fee code', 'Copyright article-fee code', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25803 INSERT INTO `marc_subfield_structure` VALUES ('01e', 'a', 'Coded field error', 'Coded field error', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25804 INSERT INTO `marc_subfield_structure` VALUES ('020', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25805 INSERT INTO `marc_subfield_structure` VALUES ('020', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25806 INSERT INTO `marc_subfield_structure` VALUES ('020', 'a', 'International Standard Book Number', 'International Standard Book Number', 0, 0, 'biblioitems.isbn', 0, '', '', '', 0, -1, 'KT', '', '');
25807 INSERT INTO `marc_subfield_structure` VALUES ('020', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25808 INSERT INTO `marc_subfield_structure` VALUES ('020', 'z', 'Cancelled/invalid ISBN', 'Cancelled/invalid ISBN', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25809 INSERT INTO `marc_subfield_structure` VALUES ('022', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25810 INSERT INTO `marc_subfield_structure` VALUES ('022', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25811 INSERT INTO `marc_subfield_structure` VALUES ('022', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25812 INSERT INTO `marc_subfield_structure` VALUES ('022', 'a', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, 'biblioitems.issn', 0, '', '', '', 0, -6, 'KT', '', '');
25813 INSERT INTO `marc_subfield_structure` VALUES ('022', 'y', 'Incorrect ISSN', 'Incorrect ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25814 INSERT INTO `marc_subfield_structure` VALUES ('022', 'z', 'Canceled ISSN', 'Canceled ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25815 INSERT INTO `marc_subfield_structure` VALUES ('023', 'a', 'Standard film number', 'Standard film number', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25816 INSERT INTO `marc_subfield_structure` VALUES ('024', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 0, '', '', '', 0, -1, 'KT', '', '');
25817 INSERT INTO `marc_subfield_structure` VALUES ('024', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25818 INSERT INTO `marc_subfield_structure` VALUES ('024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25819 INSERT INTO `marc_subfield_structure` VALUES ('024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'KT', '', '');
25820 INSERT INTO `marc_subfield_structure` VALUES ('024', 'b', 'Additional codes following the standard number [OBSOLETE]', 'Additional codes following the standard number [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25821 INSERT INTO `marc_subfield_structure` VALUES ('024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -1, 'KT', '', '');
25822 INSERT INTO `marc_subfield_structure` VALUES ('024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'KT', '', '');
25823 INSERT INTO `marc_subfield_structure` VALUES ('024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25824 INSERT INTO `marc_subfield_structure` VALUES ('025', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25825 INSERT INTO `marc_subfield_structure` VALUES ('025', 'a', 'Overseas acquisition number', 'Overseas acquisition number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25826 INSERT INTO `marc_subfield_structure` VALUES ('026', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25827 INSERT INTO `marc_subfield_structure` VALUES ('026', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25828 INSERT INTO `marc_subfield_structure` VALUES ('026', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25829 INSERT INTO `marc_subfield_structure` VALUES ('026', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25830 INSERT INTO `marc_subfield_structure` VALUES ('026', 'a', 'First and second groups of characters', 'First and second groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25831 INSERT INTO `marc_subfield_structure` VALUES ('026', 'b', 'Third and fourth groups of characters', 'Third and fourth groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25832 INSERT INTO `marc_subfield_structure` VALUES ('026', 'c', 'Date', 'Date', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25833 INSERT INTO `marc_subfield_structure` VALUES ('026', 'd', 'Number of volume or part', 'Number of volume or part', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25834 INSERT INTO `marc_subfield_structure` VALUES ('026', 'e', 'unparsed fingerprint', 'unparsed fingerprint', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25835 INSERT INTO `marc_subfield_structure` VALUES ('027', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25836 INSERT INTO `marc_subfield_structure` VALUES ('027', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25837 INSERT INTO `marc_subfield_structure` VALUES ('027', 'a', 'Standard technical report number', 'Standard technical report number', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25838 INSERT INTO `marc_subfield_structure` VALUES ('027', 'z', 'Canceled/invalid number', 'Canceled/invalid number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25839 INSERT INTO `marc_subfield_structure` VALUES ('028', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25840 INSERT INTO `marc_subfield_structure` VALUES ('028', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25841 INSERT INTO `marc_subfield_structure` VALUES ('028', 'a', 'Publisher number', 'Publisher number', 0, 0, '', 0, '', '', '', 0, 0, 'KT', '', '');
25842 INSERT INTO `marc_subfield_structure` VALUES ('028', 'b', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, 0, 'KT', '', '');
25843 INSERT INTO `marc_subfield_structure` VALUES ('030', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25844 INSERT INTO `marc_subfield_structure` VALUES ('030', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25845 INSERT INTO `marc_subfield_structure` VALUES ('030', 'a', 'CODEN', 'CODEN', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25846 INSERT INTO `marc_subfield_structure` VALUES ('030', 'z', 'Canceled/invalid CODEN', 'Canceled/invalid CODEN', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25847 INSERT INTO `marc_subfield_structure` VALUES ('031', '2', 'System code', 'System code', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25848 INSERT INTO `marc_subfield_structure` VALUES ('031', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25849 INSERT INTO `marc_subfield_structure` VALUES ('031', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25850 INSERT INTO `marc_subfield_structure` VALUES ('031', 'a', 'Number of work', 'Number of work', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25851 INSERT INTO `marc_subfield_structure` VALUES ('031', 'b', 'Number of movement', 'Number of movement', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25852 INSERT INTO `marc_subfield_structure` VALUES ('031', 'c', 'Number of excerpt', 'Number of excerpt', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25853 INSERT INTO `marc_subfield_structure` VALUES ('031', 'd', 'Caption or heading', 'Caption or heading', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25854 INSERT INTO `marc_subfield_structure` VALUES ('031', 'e', 'Role', 'Role', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25855 INSERT INTO `marc_subfield_structure` VALUES ('031', 'g', 'Clef', 'Clef', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25856 INSERT INTO `marc_subfield_structure` VALUES ('031', 'm', 'Voice/instrument', 'Voice/instrument', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25857 INSERT INTO `marc_subfield_structure` VALUES ('031', 'n', 'Key signature', 'Key signature', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25858 INSERT INTO `marc_subfield_structure` VALUES ('031', 'o', 'Time signature', 'Time signature', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25859 INSERT INTO `marc_subfield_structure` VALUES ('031', 'p', 'Musical notation', 'Musical notation', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25860 INSERT INTO `marc_subfield_structure` VALUES ('031', 'q', 'General note', 'General note', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25861 INSERT INTO `marc_subfield_structure` VALUES ('031', 'r', 'Key or mode', 'Key or mode', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25862 INSERT INTO `marc_subfield_structure` VALUES ('031', 's', 'Coded validity note', 'Coded validity note', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25863 INSERT INTO `marc_subfield_structure` VALUES ('031', 't', 'Text incipit', 'Text incipit', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25864 INSERT INTO `marc_subfield_structure` VALUES ('031', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 0, '', '', '', 1, -6, 'KT', '', '');
25865 INSERT INTO `marc_subfield_structure` VALUES ('031', 'y', 'Link text', 'Link text', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25866 INSERT INTO `marc_subfield_structure` VALUES ('031', 'z', 'Public note', 'Public note', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25867 INSERT INTO `marc_subfield_structure` VALUES ('032', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'KT', '', '');
25868 INSERT INTO `marc_subfield_structure` VALUES ('032', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25869 INSERT INTO `marc_subfield_structure` VALUES ('032', 'a', 'Postal registration number', 'Postal registration number', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25870 INSERT INTO `marc_subfield_structure` VALUES ('032', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25871 INSERT INTO `marc_subfield_structure` VALUES ('033', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25872 INSERT INTO `marc_subfield_structure` VALUES ('033', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25873 INSERT INTO `marc_subfield_structure` VALUES ('033', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25874 INSERT INTO `marc_subfield_structure` VALUES ('033', 'a', 'Formatted date/time', 'Formatted date/time', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25875 INSERT INTO `marc_subfield_structure` VALUES ('033', 'b', 'Geographic classification area code', 'Geographic classification area code', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25876 INSERT INTO `marc_subfield_structure` VALUES ('033', 'c', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25877 INSERT INTO `marc_subfield_structure` VALUES ('034', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25878 INSERT INTO `marc_subfield_structure` VALUES ('034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25879 INSERT INTO `marc_subfield_structure` VALUES ('034', 'a', 'Category of scale', 'Category of scale', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25880 INSERT INTO `marc_subfield_structure` VALUES ('034', 'b', 'Constant ratio linear horizontal scale', 'Constant ratio linear horizontal scale', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25881 INSERT INTO `marc_subfield_structure` VALUES ('034', 'c', 'Constant ratio linear vertical scale', 'Constant ratio linear vertical scale', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25882 INSERT INTO `marc_subfield_structure` VALUES ('034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25883 INSERT INTO `marc_subfield_structure` VALUES ('034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25884 INSERT INTO `marc_subfield_structure` VALUES ('034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25885 INSERT INTO `marc_subfield_structure` VALUES ('034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25886 INSERT INTO `marc_subfield_structure` VALUES ('034', 'h', 'Angular scale', 'Angular scale', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25887 INSERT INTO `marc_subfield_structure` VALUES ('034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25888 INSERT INTO `marc_subfield_structure` VALUES ('034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25889 INSERT INTO `marc_subfield_structure` VALUES ('034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25890 INSERT INTO `marc_subfield_structure` VALUES ('034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25891 INSERT INTO `marc_subfield_structure` VALUES ('034', 'p', 'Equinox', 'Equinox', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25892 INSERT INTO `marc_subfield_structure` VALUES ('034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25893 INSERT INTO `marc_subfield_structure` VALUES ('034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25894 INSERT INTO `marc_subfield_structure` VALUES ('035', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25895 INSERT INTO `marc_subfield_structure` VALUES ('035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25896 INSERT INTO `marc_subfield_structure` VALUES ('035', 'a', 'System control number', 'System control number', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25897 INSERT INTO `marc_subfield_structure` VALUES ('035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25898 INSERT INTO `marc_subfield_structure` VALUES ('036', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25899 INSERT INTO `marc_subfield_structure` VALUES ('036', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25900 INSERT INTO `marc_subfield_structure` VALUES ('036', 'a', 'Original study number', 'Original study number', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25901 INSERT INTO `marc_subfield_structure` VALUES ('036', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25902 INSERT INTO `marc_subfield_structure` VALUES ('037', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
25903 INSERT INTO `marc_subfield_structure` VALUES ('037', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25904 INSERT INTO `marc_subfield_structure` VALUES ('037', 'a', 'Stock number', 'Stock number', 0, 0, '', 9, '', '', '', 0, -1, 'KT', '', '');
25905 INSERT INTO `marc_subfield_structure` VALUES ('037', 'b', 'Source of stock number/acquisition', 'Source of stock number/acquisition', 0, 0, '', 0, '', '', '', 0, -1, 'KT', '', '');
25906 INSERT INTO `marc_subfield_structure` VALUES ('037', 'c', 'Terms of availability', 'Terms of availability', 1, 0, '', 9, '', '', '', 0, -1, 'KT', '', '');
25907 INSERT INTO `marc_subfield_structure` VALUES ('037', 'f', 'Form of issue', 'Form of issue', 1, 0, '', 9, '', '', '', 0, -1, 'KT', '', '');
25908 INSERT INTO `marc_subfield_structure` VALUES ('037', 'g', 'Additional format characteristics', 'Additional format characteristics', 1, 0, '', 9, '', '', '', 0, -1, 'KT', '', '');
25909 INSERT INTO `marc_subfield_structure` VALUES ('037', 'n', 'Note', 'Note', 1, 0, '', 9, '', '', '', 0, -1, 'KT', '', '');
25910 INSERT INTO `marc_subfield_structure` VALUES ('038', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25911 INSERT INTO `marc_subfield_structure` VALUES ('038', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25912 INSERT INTO `marc_subfield_structure` VALUES ('038', 'a', 'Record content licensor', 'Record content licensor', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25913 INSERT INTO `marc_subfield_structure` VALUES ('039', 'a', 'Level of rules in bibliographic description', 'Level of rules in bibliographic description', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25914 INSERT INTO `marc_subfield_structure` VALUES ('039', 'b', 'Level of effort used to assign nonsubject heading access points', 'Level of effort used to assign nonsubject heading access points', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25915 INSERT INTO `marc_subfield_structure` VALUES ('039', 'c', 'Level of effort used to assign subject headings', 'Level of effort used to assign subject headings', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25916 INSERT INTO `marc_subfield_structure` VALUES ('039', 'd', 'Level of effort used to assign classification', 'Level of effort used to assign classification', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25917 INSERT INTO `marc_subfield_structure` VALUES ('039', 'e', 'Number of fixed field character positions coded', 'Number of fixed field character positions coded', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25918 INSERT INTO `marc_subfield_structure` VALUES ('040', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25919 INSERT INTO `marc_subfield_structure` VALUES ('040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25920 INSERT INTO `marc_subfield_structure` VALUES ('040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 0, '', 0, '', '', '', 0, -1, 'KT', '', '');
25921 INSERT INTO `marc_subfield_structure` VALUES ('040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25922 INSERT INTO `marc_subfield_structure` VALUES ('040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, '', 0, '', '', '', 0, -1, 'KT', '', '');
25923 INSERT INTO `marc_subfield_structure` VALUES ('040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, '', 0, '', '', '', 0, -1, 'KT', '', '');
25924 INSERT INTO `marc_subfield_structure` VALUES ('040', 'e', 'Description conventions', 'Description conventions', 0, 0, '', 0, '', '', '', 0, -1, 'KT', '', '');
25925 INSERT INTO `marc_subfield_structure` VALUES ('041', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25926 INSERT INTO `marc_subfield_structure` VALUES ('041', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25927 INSERT INTO `marc_subfield_structure` VALUES ('041', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25928 INSERT INTO `marc_subfield_structure` VALUES ('041', 'a', 'Language code of text/sound track or separate title', 'Language code of text/sound track or separate title', 1, 0, '', 0, '', '', '', 0, -1, 'KT', '', '');
25929 INSERT INTO `marc_subfield_structure` VALUES ('041', 'b', 'Language code of summary or abstract/overprinted title or subtitle', 'Language code of summary or abstract/overprinted title or subtitle', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25930 INSERT INTO `marc_subfield_structure` VALUES ('041', 'c', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25931 INSERT INTO `marc_subfield_structure` VALUES ('041', 'd', 'Language code of sung or spoken text', 'Language code of sung or spoken text', 1, 0, '', 0, '', '', '', 0, -1, 'KT', '', '');
25932 INSERT INTO `marc_subfield_structure` VALUES ('041', 'e', 'Language code of librettos', 'Language code of librettos', 1, 0, '', 0, '', '', '', 0, -1, 'KT', '', '');
25933 INSERT INTO `marc_subfield_structure` VALUES ('041', 'f', 'Language code of table of contents', 'Language code of table of contents', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25934 INSERT INTO `marc_subfield_structure` VALUES ('041', 'g', 'Language code of accompanying material other than librettos', 'Language code of accompanying material other than librettos', 1, 0, '', 0, '', '', '', 0, -1, 'KT', '', '');
25935 INSERT INTO `marc_subfield_structure` VALUES ('041', 'h', 'Language code of original and/or intermediate translations of text', 'Language code of original and/or intermediate translations of text', 1, 0, '', 0, '', '', '', 0, -1, 'KT', '', '');
25936 INSERT INTO `marc_subfield_structure` VALUES ('042', 'a', 'Authentication code', 'Authentication code', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25937 INSERT INTO `marc_subfield_structure` VALUES ('043', '2', 'Source of local code', 'Source of local code', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25938 INSERT INTO `marc_subfield_structure` VALUES ('043', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25939 INSERT INTO `marc_subfield_structure` VALUES ('043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25940 INSERT INTO `marc_subfield_structure` VALUES ('043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25941 INSERT INTO `marc_subfield_structure` VALUES ('043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25942 INSERT INTO `marc_subfield_structure` VALUES ('043', 'c', 'ISO code', 'ISO code', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25943 INSERT INTO `marc_subfield_structure` VALUES ('044', '2', 'Source of local subentity code', 'Source of local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25944 INSERT INTO `marc_subfield_structure` VALUES ('044', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25945 INSERT INTO `marc_subfield_structure` VALUES ('044', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25946 INSERT INTO `marc_subfield_structure` VALUES ('044', 'a', 'MARC country code', 'MARC country code', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25947 INSERT INTO `marc_subfield_structure` VALUES ('044', 'b', 'Local subentity code', 'Local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25948 INSERT INTO `marc_subfield_structure` VALUES ('044', 'c', 'ISO country code', 'ISO country code', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25949 INSERT INTO `marc_subfield_structure` VALUES ('045', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25950 INSERT INTO `marc_subfield_structure` VALUES ('045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25951 INSERT INTO `marc_subfield_structure` VALUES ('045', 'a', 'Time period code', 'Time period code', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25952 INSERT INTO `marc_subfield_structure` VALUES ('045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25953 INSERT INTO `marc_subfield_structure` VALUES ('045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25954 INSERT INTO `marc_subfield_structure` VALUES ('046', '2', 'Source of date', 'Source of date', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25955 INSERT INTO `marc_subfield_structure` VALUES ('046', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25956 INSERT INTO `marc_subfield_structure` VALUES ('046', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25957 INSERT INTO `marc_subfield_structure` VALUES ('046', 'a', 'Type of date code', 'Type of date code', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25958 INSERT INTO `marc_subfield_structure` VALUES ('046', 'b', 'Date 1 (B.C. date)', 'Date 1 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25959 INSERT INTO `marc_subfield_structure` VALUES ('046', 'c', 'Date 1 (C.E. date)', 'Date 1 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25960 INSERT INTO `marc_subfield_structure` VALUES ('046', 'd', 'Date 2 (B.C. date)', 'Date 2 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25961 INSERT INTO `marc_subfield_structure` VALUES ('046', 'e', 'Date 2 (C.E. date)', 'Date 2 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25962 INSERT INTO `marc_subfield_structure` VALUES ('046', 'j', 'Date resource modified', 'Date resource modified', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25963 INSERT INTO `marc_subfield_structure` VALUES ('046', 'k', 'Beginning or single date created', 'Beginning or single date created', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25964 INSERT INTO `marc_subfield_structure` VALUES ('046', 'l', 'Ending date created', 'Ending date created', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25965 INSERT INTO `marc_subfield_structure` VALUES ('046', 'm', 'Beginning of date valid', 'Beginning of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25966 INSERT INTO `marc_subfield_structure` VALUES ('046', 'n', 'End of date valid', 'End of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25967 INSERT INTO `marc_subfield_structure` VALUES ('047', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25968 INSERT INTO `marc_subfield_structure` VALUES ('047', 'a', 'Form of musical composition code', 'Form of musical composition code', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25969 INSERT INTO `marc_subfield_structure` VALUES ('048', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25970 INSERT INTO `marc_subfield_structure` VALUES ('048', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25971 INSERT INTO `marc_subfield_structure` VALUES ('048', 'a', 'Performer or ensemble', 'Performer or ensemble', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25972 INSERT INTO `marc_subfield_structure` VALUES ('048', 'b', 'Soloist', 'Soloist', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25973 INSERT INTO `marc_subfield_structure` VALUES ('049', 'a', 'Holding library', 'Holding library', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25974 INSERT INTO `marc_subfield_structure` VALUES ('049', 'c', 'Copy statement', 'Copy statement', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25975 INSERT INTO `marc_subfield_structure` VALUES ('049', 'd', 'Definition of bibliographic subdivisions', 'Definition of bibliographic subdivisions', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25976 INSERT INTO `marc_subfield_structure` VALUES ('049', 'l', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25977 INSERT INTO `marc_subfield_structure` VALUES ('049', 'm', 'Missing elements', 'Missing elements', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25978 INSERT INTO `marc_subfield_structure` VALUES ('049', 'n', 'Notes about holdings', 'Notes about holdings', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25979 INSERT INTO `marc_subfield_structure` VALUES ('049', 'o', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25980 INSERT INTO `marc_subfield_structure` VALUES ('049', 'p', 'Secondary bibliographic subdivision', 'Secondary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25981 INSERT INTO `marc_subfield_structure` VALUES ('049', 'q', 'Third bibliographic subdivision', 'Third bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25982 INSERT INTO `marc_subfield_structure` VALUES ('049', 'r', 'Fourth bibliographic subdivision', 'Fourth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25983 INSERT INTO `marc_subfield_structure` VALUES ('049', 's', 'Fifth bibliographic subdivision', 'Fifth bibliographic subdivision', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25984 INSERT INTO `marc_subfield_structure` VALUES ('049', 't', 'Sixth bibliographic subdivision', 'Sixth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25985 INSERT INTO `marc_subfield_structure` VALUES ('049', 'u', 'Seventh bibliographic subdivision', 'Seventh bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25986 INSERT INTO `marc_subfield_structure` VALUES ('049', 'v', 'Primary bibliographic subdivision', 'Primary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25987 INSERT INTO `marc_subfield_structure` VALUES ('049', 'y', 'Inclusive dates of publication or coverage', 'Inclusive dates of publication or coverage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25988 INSERT INTO `marc_subfield_structure` VALUES ('050', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25989 INSERT INTO `marc_subfield_structure` VALUES ('050', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25990 INSERT INTO `marc_subfield_structure` VALUES ('050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25991 INSERT INTO `marc_subfield_structure` VALUES ('050', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, 0, 'KT', '', '');
25992 INSERT INTO `marc_subfield_structure` VALUES ('050', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, 0, 'KT', '', '');
25993 INSERT INTO `marc_subfield_structure` VALUES ('050', 'd', 'Supplementary class number (MU) [OBSOLETE]', 'Supplementary class number (MU) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25994 INSERT INTO `marc_subfield_structure` VALUES ('051', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25995 INSERT INTO `marc_subfield_structure` VALUES ('051', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25996 INSERT INTO `marc_subfield_structure` VALUES ('051', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25997 INSERT INTO `marc_subfield_structure` VALUES ('051', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25998 INSERT INTO `marc_subfield_structure` VALUES ('052', '2', 'Code Source', 'Code Source', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
25999 INSERT INTO `marc_subfield_structure` VALUES ('052', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26000 INSERT INTO `marc_subfield_structure` VALUES ('052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26001 INSERT INTO `marc_subfield_structure` VALUES ('052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26002 INSERT INTO `marc_subfield_structure` VALUES ('052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26003 INSERT INTO `marc_subfield_structure` VALUES ('052', 'c', 'Subject (MP) [OBSOLETE]', 'Subject (MP) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26004 INSERT INTO `marc_subfield_structure` VALUES ('052', 'd', 'Populated place name', 'Populated place name', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26005 INSERT INTO `marc_subfield_structure` VALUES ('055', '2', 'Source of call/class number', 'Source of call/class number', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26006 INSERT INTO `marc_subfield_structure` VALUES ('055', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26007 INSERT INTO `marc_subfield_structure` VALUES ('055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26008 INSERT INTO `marc_subfield_structure` VALUES ('055', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26009 INSERT INTO `marc_subfield_structure` VALUES ('055', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26010 INSERT INTO `marc_subfield_structure` VALUES ('060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26011 INSERT INTO `marc_subfield_structure` VALUES ('060', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26012 INSERT INTO `marc_subfield_structure` VALUES ('060', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26013 INSERT INTO `marc_subfield_structure` VALUES ('061', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26014 INSERT INTO `marc_subfield_structure` VALUES ('061', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26015 INSERT INTO `marc_subfield_structure` VALUES ('061', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26016 INSERT INTO `marc_subfield_structure` VALUES ('061', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26017 INSERT INTO `marc_subfield_structure` VALUES ('066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26018 INSERT INTO `marc_subfield_structure` VALUES ('066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26019 INSERT INTO `marc_subfield_structure` VALUES ('066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26020 INSERT INTO `marc_subfield_structure` VALUES ('070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26021 INSERT INTO `marc_subfield_structure` VALUES ('070', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26022 INSERT INTO `marc_subfield_structure` VALUES ('070', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26023 INSERT INTO `marc_subfield_structure` VALUES ('071', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26024 INSERT INTO `marc_subfield_structure` VALUES ('071', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26025 INSERT INTO `marc_subfield_structure` VALUES ('071', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26026 INSERT INTO `marc_subfield_structure` VALUES ('071', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26027 INSERT INTO `marc_subfield_structure` VALUES ('072', '2', 'Source', 'Source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26028 INSERT INTO `marc_subfield_structure` VALUES ('072', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26029 INSERT INTO `marc_subfield_structure` VALUES ('072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26030 INSERT INTO `marc_subfield_structure` VALUES ('072', 'a', 'Subject category code', 'Subject category code', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26031 INSERT INTO `marc_subfield_structure` VALUES ('072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26032 INSERT INTO `marc_subfield_structure` VALUES ('074', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26033 INSERT INTO `marc_subfield_structure` VALUES ('074', 'a', 'GPO item number', 'GPO item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'KT', '', '');
26034 INSERT INTO `marc_subfield_structure` VALUES ('074', 'z', 'Canceled/invalid GPO item number', 'Canceled/invalid GPO item number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26035 INSERT INTO `marc_subfield_structure` VALUES ('080', '2', 'Edition identifier', 'Edition identifier', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26036 INSERT INTO `marc_subfield_structure` VALUES ('080', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26037 INSERT INTO `marc_subfield_structure` VALUES ('080', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26038 INSERT INTO `marc_subfield_structure` VALUES ('080', 'a', 'Universal Decimal Classification number', 'Universal Decimal Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26039 INSERT INTO `marc_subfield_structure` VALUES ('080', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26040 INSERT INTO `marc_subfield_structure` VALUES ('080', 'x', 'Common auxiliary subdivision', 'Common auxiliary subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26041 INSERT INTO `marc_subfield_structure` VALUES ('082', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, 0, 'KT', '', '');
26042 INSERT INTO `marc_subfield_structure` VALUES ('082', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', NULL, -6, 'KT', '', '');
26043 INSERT INTO `marc_subfield_structure` VALUES ('082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', NULL, -6, 'KT', '', '');
26044 INSERT INTO `marc_subfield_structure` VALUES ('082', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, 0, 'KT', '', '');
26045 INSERT INTO `marc_subfield_structure` VALUES ('082', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, 0, 'KT', '', '');
26046 INSERT INTO `marc_subfield_structure` VALUES ('084', '2', 'Source of number', 'Source of number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26047 INSERT INTO `marc_subfield_structure` VALUES ('084', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26048 INSERT INTO `marc_subfield_structure` VALUES ('084', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26049 INSERT INTO `marc_subfield_structure` VALUES ('084', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26050 INSERT INTO `marc_subfield_structure` VALUES ('084', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26051 INSERT INTO `marc_subfield_structure` VALUES ('086', '2', 'Number source', 'Number source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'KT', '', '');
26052 INSERT INTO `marc_subfield_structure` VALUES ('086', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26053 INSERT INTO `marc_subfield_structure` VALUES ('086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26054 INSERT INTO `marc_subfield_structure` VALUES ('086', 'a', 'Classification number', 'Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'KT', '', '');
26055 INSERT INTO `marc_subfield_structure` VALUES ('086', 'z', 'Canceled/invalid classification number', 'Canceled/invalid classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26056 INSERT INTO `marc_subfield_structure` VALUES ('087', 'a', 'Report number [OBSOLETE, CAN/MARC]', 'Report number [OBSOLETE, CAN/MARC]', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26057 INSERT INTO `marc_subfield_structure` VALUES ('087', 'z', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26058 INSERT INTO `marc_subfield_structure` VALUES ('088', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26059 INSERT INTO `marc_subfield_structure` VALUES ('088', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26060 INSERT INTO `marc_subfield_structure` VALUES ('088', 'a', 'Report number', 'Report number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26061 INSERT INTO `marc_subfield_structure` VALUES ('088', 'z', 'Canceled/invalid report number', 'Canceled/invalid report number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'KT', '', '');
26062 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26063 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26064 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
26065 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
26066 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
26067 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
26068 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
26069 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
26070 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
26071 INSERT INTO `marc_subfield_structure` VALUES ('09o', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
26072 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
26073 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
26074 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
26075 INSERT INTO `marc_subfield_structure` VALUES ('091', 'a', 'Microfilm shelf location', 'Microfilm shelf location', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26076 INSERT INTO `marc_subfield_structure` VALUES ('092', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, -6, 'KT', '', '');
26077 INSERT INTO `marc_subfield_structure` VALUES ('092', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'KT', '', '');
26078 INSERT INTO `marc_subfield_structure` VALUES ('092', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'KT', '', '');
26079 INSERT INTO `marc_subfield_structure` VALUES ('092', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26080 INSERT INTO `marc_subfield_structure` VALUES ('092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26081 INSERT INTO `marc_subfield_structure` VALUES ('096', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'KT', '', '');
26082 INSERT INTO `marc_subfield_structure` VALUES ('096', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'KT', '', '');
26083 INSERT INTO `marc_subfield_structure` VALUES ('096', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26084 INSERT INTO `marc_subfield_structure` VALUES ('096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26085 INSERT INTO `marc_subfield_structure` VALUES ('098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, '', 0, '', '', '', NULL, -6, 'KT', '', '');
26086 INSERT INTO `marc_subfield_structure` VALUES ('098', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26087 INSERT INTO `marc_subfield_structure` VALUES ('098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26088 INSERT INTO `marc_subfield_structure` VALUES ('099', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, -6, 'KT', '', '');
26089 INSERT INTO `marc_subfield_structure` VALUES ('099', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26090 INSERT INTO `marc_subfield_structure` VALUES ('099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
26091 INSERT INTO `marc_subfield_structure` VALUES ('100', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', 0, -6, 'KT', '', '');
26092 INSERT INTO `marc_subfield_structure` VALUES ('100', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', 0, -6, 'KT', '', '');
26093 INSERT INTO `marc_subfield_structure` VALUES ('100', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', 0, -6, 'KT', '', '');
26094 INSERT INTO `marc_subfield_structure` VALUES ('100', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
26095 INSERT INTO `marc_subfield_structure` VALUES ('100', 'a', 'Personal name', 'Personal name', 0, 0, 'biblio.author', 1, '', '', '', 0, 0, 'KT', '''100b'',''100c'',''100q'',''100d'',''100e'',''110a'',''110b'',''110c'',''110d'',''110e'',''700a'',''700b'',''700c'',''700q'',''700d'',''700e'',''710a'',''710b'',''710c'',''710d'',''710e'',''720a'',''720e'',''900a''', '');
26096 INSERT INTO `marc_subfield_structure` VALUES ('100', 'b', 'Numeration', 'Numeration', 0, 0, '', 1, '', '', '', 0, -1, 'KT', '', '');
26097 INSERT INTO `marc_subfield_structure` VALUES ('100', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 1, '', '', '', 0, -1, 'KT', '', '');
26098 INSERT INTO `marc_subfield_structure` VALUES ('100', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 1, '', '', '', 0, 0, 'KT', '', '');
26099 INSERT INTO `marc_subfield_structure` VALUES ('100', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', 0, -1, 'KT', '', '');
26100 INSERT INTO `marc_subfield_structure` VALUES ('100', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', 0, -6, 'KT', '', '');
26101 INSERT INTO `marc_subfield_structure` VALUES ('100', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', 0, -6, 'KT', '', '');
26102 INSERT INTO `marc_subfield_structure` VALUES ('100', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 1, '', '', '', 0, -6, 'KT', '', '');
26103 INSERT INTO `marc_subfield_structure` VALUES ('100', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', 0, -6, 'KT', '', '');
26104 INSERT INTO `marc_subfield_structure` VALUES ('100', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', 0, -6, 'KT', '', '');
26105 INSERT INTO `marc_subfield_structure` VALUES ('100', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'KT', '', '');
26106 INSERT INTO `marc_subfield_structure` VALUES ('100', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'KT', '', '');
26107 INSERT INTO `marc_subfield_structure` VALUES ('100', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 1, '', '', '', 0, -1, 'KT', '', '');
26108 INSERT INTO `marc_subfield_structure` VALUES ('100', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', 0, -6, 'KT', '', '');
26109 INSERT INTO `marc_subfield_structure` VALUES ('100', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', 0, -6, 'KT', '', '');
26110 INSERT INTO `marc_subfield_structure` VALUES ('110', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', NULL, -6, 'KT', '', '');
26111 INSERT INTO `marc_subfield_structure` VALUES ('110', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', NULL, -6, 'KT', '', '');
26112 INSERT INTO `marc_subfield_structure` VALUES ('110', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', NULL, -6, 'KT', '', '');
26113 INSERT INTO `marc_subfield_structure` VALUES ('110', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
26114 INSERT INTO `marc_subfield_structure` VALUES ('110', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 1, '', '', '', NULL, -1, 'KT', '', '');
26115 INSERT INTO `marc_subfield_structure` VALUES ('110', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 1, '', '', '', NULL, -1, 'KT', '', '');
26116 INSERT INTO `marc_subfield_structure` VALUES ('110', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 1, '', '', '', NULL, -1, 'KT', '', '');
26117 INSERT INTO `marc_subfield_structure` VALUES ('110', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 1, '', '', '', NULL, -1, 'KT', '', '');
26118 INSERT INTO `marc_subfield_structure` VALUES ('110', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', NULL, -1, 'KT', '', '');
26119 INSERT INTO `marc_subfield_structure` VALUES ('110', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'KT', '', '');
26120 INSERT INTO `marc_subfield_structure` VALUES ('110', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', NULL, -6, 'KT', '', '');
26121 INSERT INTO `marc_subfield_structure` VALUES ('110', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', NULL, -6, 'KT', '', '');
26122 INSERT INTO `marc_subfield_structure` VALUES ('110', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'KT', '', '');
26123 INSERT INTO `marc_subfield_structure` VALUES ('110', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 1, '', '', '', NULL, -6, 'KT', '', '');
26124 INSERT INTO `marc_subfield_structure` VALUES ('110', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', NULL, -6, 'KT', '', '');
26125 INSERT INTO `marc_subfield_structure` VALUES ('110', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'KT', '', '');
26126 INSERT INTO `marc_subfield_structure` VALUES ('110', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', NULL, -6, 'KT', '', '');
26127 INSERT INTO `marc_subfield_structure` VALUES ('111', '4', 'Relator code', 'Relator code', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26128 INSERT INTO `marc_subfield_structure` VALUES ('111', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26129 INSERT INTO `marc_subfield_structure` VALUES ('111', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26130 INSERT INTO `marc_subfield_structure` VALUES ('111', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
26131 INSERT INTO `marc_subfield_structure` VALUES ('111', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'KT', '', '');
26132 INSERT INTO `marc_subfield_structure` VALUES ('111', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26133 INSERT INTO `marc_subfield_structure` VALUES ('111', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'KT', '', '');
26134 INSERT INTO `marc_subfield_structure` VALUES ('111', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'KT', '', '');
26135 INSERT INTO `marc_subfield_structure` VALUES ('111', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'KT', '', '');
26136 INSERT INTO `marc_subfield_structure` VALUES ('111', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26137 INSERT INTO `marc_subfield_structure` VALUES ('111', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26138 INSERT INTO `marc_subfield_structure` VALUES ('111', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26139 INSERT INTO `marc_subfield_structure` VALUES ('111', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26140 INSERT INTO `marc_subfield_structure` VALUES ('111', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26141 INSERT INTO `marc_subfield_structure` VALUES ('111', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26142 INSERT INTO `marc_subfield_structure` VALUES ('111', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26143 INSERT INTO `marc_subfield_structure` VALUES ('111', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26144 INSERT INTO `marc_subfield_structure` VALUES ('111', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26145 INSERT INTO `marc_subfield_structure` VALUES ('130', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26146 INSERT INTO `marc_subfield_structure` VALUES ('130', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26147 INSERT INTO `marc_subfield_structure` VALUES ('130', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
26148 INSERT INTO `marc_subfield_structure` VALUES ('130', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26149 INSERT INTO `marc_subfield_structure` VALUES ('130', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26150 INSERT INTO `marc_subfield_structure` VALUES ('130', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26151 INSERT INTO `marc_subfield_structure` VALUES ('130', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26152 INSERT INTO `marc_subfield_structure` VALUES ('130', 'h', 'Medium', 'Medium', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26153 INSERT INTO `marc_subfield_structure` VALUES ('130', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26154 INSERT INTO `marc_subfield_structure` VALUES ('130', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26155 INSERT INTO `marc_subfield_structure` VALUES ('130', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26156 INSERT INTO `marc_subfield_structure` VALUES ('130', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26157 INSERT INTO `marc_subfield_structure` VALUES ('130', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26158 INSERT INTO `marc_subfield_structure` VALUES ('130', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26159 INSERT INTO `marc_subfield_structure` VALUES ('130', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26160 INSERT INTO `marc_subfield_structure` VALUES ('130', 's', 'Version', 'Version', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26161 INSERT INTO `marc_subfield_structure` VALUES ('130', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26162 INSERT INTO `marc_subfield_structure` VALUES ('210', '2', 'Source', 'Source', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26163 INSERT INTO `marc_subfield_structure` VALUES ('210', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26164 INSERT INTO `marc_subfield_structure` VALUES ('210', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26165 INSERT INTO `marc_subfield_structure` VALUES ('210', 'a', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26166 INSERT INTO `marc_subfield_structure` VALUES ('210', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26167 INSERT INTO `marc_subfield_structure` VALUES ('211', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26168 INSERT INTO `marc_subfield_structure` VALUES ('211', 'a', 'Acronym or shortened title', 'Acronym or shortened title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26169 INSERT INTO `marc_subfield_structure` VALUES ('212', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26170 INSERT INTO `marc_subfield_structure` VALUES ('212', 'a', 'Variant access title', 'Variant access title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26171 INSERT INTO `marc_subfield_structure` VALUES ('214', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26172 INSERT INTO `marc_subfield_structure` VALUES ('214', 'a', 'Augmented title', 'Augmented title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26173 INSERT INTO `marc_subfield_structure` VALUES ('222', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26174 INSERT INTO `marc_subfield_structure` VALUES ('222', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26175 INSERT INTO `marc_subfield_structure` VALUES ('222', 'a', 'Key title', 'Key title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26176 INSERT INTO `marc_subfield_structure` VALUES ('222', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26177 INSERT INTO `marc_subfield_structure` VALUES ('240', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26178 INSERT INTO `marc_subfield_structure` VALUES ('240', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26179 INSERT INTO `marc_subfield_structure` VALUES ('240', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
26180 INSERT INTO `marc_subfield_structure` VALUES ('240', 'a', 'Uniform title', 'Uniform title', 0, 0, 'biblio.unititle', 2, '', '', '', 1, -1, 'KT', '', '');
26181 INSERT INTO `marc_subfield_structure` VALUES ('240', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26182 INSERT INTO `marc_subfield_structure` VALUES ('240', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26183 INSERT INTO `marc_subfield_structure` VALUES ('240', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26184 INSERT INTO `marc_subfield_structure` VALUES ('240', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'KT', '', '');
26185 INSERT INTO `marc_subfield_structure` VALUES ('240', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26186 INSERT INTO `marc_subfield_structure` VALUES ('240', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'KT', '', '');
26187 INSERT INTO `marc_subfield_structure` VALUES ('240', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26188 INSERT INTO `marc_subfield_structure` VALUES ('240', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26189 INSERT INTO `marc_subfield_structure` VALUES ('240', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26190 INSERT INTO `marc_subfield_structure` VALUES ('240', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26191 INSERT INTO `marc_subfield_structure` VALUES ('240', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26192 INSERT INTO `marc_subfield_structure` VALUES ('240', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'KT', '', '');
26193 INSERT INTO `marc_subfield_structure` VALUES ('241', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26194 INSERT INTO `marc_subfield_structure` VALUES ('241', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26195 INSERT INTO `marc_subfield_structure` VALUES ('242', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26196 INSERT INTO `marc_subfield_structure` VALUES ('242', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26197 INSERT INTO `marc_subfield_structure` VALUES ('242', 'a', 'Title', 'Title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26198 INSERT INTO `marc_subfield_structure` VALUES ('242', 'b', 'Remainder of title', 'Remainder of title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26199 INSERT INTO `marc_subfield_structure` VALUES ('242', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26200 INSERT INTO `marc_subfield_structure` VALUES ('242', 'd', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26201 INSERT INTO `marc_subfield_structure` VALUES ('242', 'e', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26202 INSERT INTO `marc_subfield_structure` VALUES ('242', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26203 INSERT INTO `marc_subfield_structure` VALUES ('242', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26204 INSERT INTO `marc_subfield_structure` VALUES ('242', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26205 INSERT INTO `marc_subfield_structure` VALUES ('242', 'y', 'Language code of translated title', 'Language code of translated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'KT', '', '');
26206 INSERT INTO `marc_subfield_structure` VALUES ('243', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26207 INSERT INTO `marc_subfield_structure` VALUES ('243', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26208 INSERT INTO `marc_subfield_structure` VALUES ('243', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
26209 INSERT INTO `marc_subfield_structure` VALUES ('243', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 2, '', '', '', 1, -1, 'KT', '', '');
26210 INSERT INTO `marc_subfield_structure` VALUES ('243', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26211 INSERT INTO `marc_subfield_structure` VALUES ('243', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26212 INSERT INTO `marc_subfield_structure` VALUES ('243', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26213 INSERT INTO `marc_subfield_structure` VALUES ('243', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'KT', '', '');
26214 INSERT INTO `marc_subfield_structure` VALUES ('243', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26215 INSERT INTO `marc_subfield_structure` VALUES ('243', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'KT', '', '');
26216 INSERT INTO `marc_subfield_structure` VALUES ('243', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26217 INSERT INTO `marc_subfield_structure` VALUES ('243', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26218 INSERT INTO `marc_subfield_structure` VALUES ('243', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26219 INSERT INTO `marc_subfield_structure` VALUES ('243', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26220 INSERT INTO `marc_subfield_structure` VALUES ('243', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'KT', '', '');
26221 INSERT INTO `marc_subfield_structure` VALUES ('243', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'KT', '', '');
26222 INSERT INTO `marc_subfield_structure` VALUES ('245', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26223 INSERT INTO `marc_subfield_structure` VALUES ('245', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26224 INSERT INTO `marc_subfield_structure` VALUES ('245', 'a', 'Title', 'Title', 0, 1, 'biblio.title', 2, '', '', '', NULL, 0, 'KT', '''245b'',''245f'',''245g'',''245k'',''245n'',''245p'',''245s'',''245h'',''246i'',''246a'',''246b'',''246f'',''246g'',''246n'',''246p'',''246h'',''242a'',''242b'',''242n'',''242p'',''242h''', '');
26225 INSERT INTO `marc_subfield_structure` VALUES ('245', 'b', 'Remainder of title', 'Remainder of title', 0, 0, 'bibliosubtitle.subtitle', 2, '', '', '', NULL, 0, 'KT', '', '');
26226 INSERT INTO `marc_subfield_structure` VALUES ('245', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 2, '', '', '', NULL, 0, 'KT', '', '');
26227 INSERT INTO `marc_subfield_structure` VALUES ('245', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series: (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26228 INSERT INTO `marc_subfield_structure` VALUES ('245', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26229 INSERT INTO `marc_subfield_structure` VALUES ('245', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26230 INSERT INTO `marc_subfield_structure` VALUES ('245', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26231 INSERT INTO `marc_subfield_structure` VALUES ('245', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, 0, 'KT', '', '');
26232 INSERT INTO `marc_subfield_structure` VALUES ('245', 'k', 'Form', 'Form', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26233 INSERT INTO `marc_subfield_structure` VALUES ('245', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26234 INSERT INTO `marc_subfield_structure` VALUES ('245', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26235 INSERT INTO `marc_subfield_structure` VALUES ('245', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26236 INSERT INTO `marc_subfield_structure` VALUES ('246', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26237 INSERT INTO `marc_subfield_structure` VALUES ('246', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26238 INSERT INTO `marc_subfield_structure` VALUES ('246', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26239 INSERT INTO `marc_subfield_structure` VALUES ('246', 'a', 'Title proper/short title', 'Title proper/short title', 0, 0, '', 2, '', '', '', NULL, -1, 'KT', '', '');
26240 INSERT INTO `marc_subfield_structure` VALUES ('246', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -1, 'KT', '', '');
26241 INSERT INTO `marc_subfield_structure` VALUES ('246', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26242 INSERT INTO `marc_subfield_structure` VALUES ('246', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26243 INSERT INTO `marc_subfield_structure` VALUES ('246', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26244 INSERT INTO `marc_subfield_structure` VALUES ('246', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26245 INSERT INTO `marc_subfield_structure` VALUES ('246', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -1, 'KT', '', '');
26246 INSERT INTO `marc_subfield_structure` VALUES ('246', 'i', 'Display text', 'Display text', 0, 0, '', 2, '', '', '', NULL, -1, 'KT', '', '');
26247 INSERT INTO `marc_subfield_structure` VALUES ('246', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26248 INSERT INTO `marc_subfield_structure` VALUES ('246', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26249 INSERT INTO `marc_subfield_structure` VALUES ('247', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26250 INSERT INTO `marc_subfield_structure` VALUES ('247', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26251 INSERT INTO `marc_subfield_structure` VALUES ('247', 'a', 'Title', 'Title', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26252 INSERT INTO `marc_subfield_structure` VALUES ('247', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26253 INSERT INTO `marc_subfield_structure` VALUES ('247', 'd', 'Designation of section (SE) [OBSOLETE]', 'Designation of section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26254 INSERT INTO `marc_subfield_structure` VALUES ('247', 'e', 'Name of part/section (SE) [OBSOLETE]', 'Name of part/section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26255 INSERT INTO `marc_subfield_structure` VALUES ('247', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26256 INSERT INTO `marc_subfield_structure` VALUES ('247', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26257 INSERT INTO `marc_subfield_structure` VALUES ('247', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26258 INSERT INTO `marc_subfield_structure` VALUES ('247', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26259 INSERT INTO `marc_subfield_structure` VALUES ('247', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26260 INSERT INTO `marc_subfield_structure` VALUES ('247', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26261 INSERT INTO `marc_subfield_structure` VALUES ('250', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26262 INSERT INTO `marc_subfield_structure` VALUES ('250', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26263 INSERT INTO `marc_subfield_structure` VALUES ('250', 'a', 'Edition statement', 'Edition statement', 0, 0, '', 2, '', '', '', NULL, -1, 'KT', '', '');
26264 INSERT INTO `marc_subfield_structure` VALUES ('250', 'b', 'Remainder of edition statement', 'Remainder of edition statement', 0, 0, '', 2, '', '', '', NULL, -1, 'KT', '', '');
26265 INSERT INTO `marc_subfield_structure` VALUES ('254', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26266 INSERT INTO `marc_subfield_structure` VALUES ('254', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26267 INSERT INTO `marc_subfield_structure` VALUES ('254', 'a', 'Musical presentation statement', 'Musical presentation statement', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26268 INSERT INTO `marc_subfield_structure` VALUES ('255', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26269 INSERT INTO `marc_subfield_structure` VALUES ('255', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26270 INSERT INTO `marc_subfield_structure` VALUES ('255', 'a', 'Statement of scale', 'Statement of scale', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26271 INSERT INTO `marc_subfield_structure` VALUES ('255', 'b', 'Statement of projection', 'Statement of projection', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26272 INSERT INTO `marc_subfield_structure` VALUES ('255', 'c', 'Statement of coordinates', 'Statement of coordinates', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26273 INSERT INTO `marc_subfield_structure` VALUES ('255', 'd', 'Statement of zone', 'Statement of zone', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26274 INSERT INTO `marc_subfield_structure` VALUES ('255', 'e', 'Statement of equinox', 'Statement of equinox', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26275 INSERT INTO `marc_subfield_structure` VALUES ('255', 'f', 'Outer G-ring coordinate pairs', 'Outer G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26276 INSERT INTO `marc_subfield_structure` VALUES ('255', 'g', 'Exclusion G-ring coordinate pairs', 'Exclusion G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26277 INSERT INTO `marc_subfield_structure` VALUES ('256', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26278 INSERT INTO `marc_subfield_structure` VALUES ('256', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26279 INSERT INTO `marc_subfield_structure` VALUES ('256', 'a', 'Computer file characteristics', 'Computer file characteristics', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26280 INSERT INTO `marc_subfield_structure` VALUES ('257', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26281 INSERT INTO `marc_subfield_structure` VALUES ('257', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26282 INSERT INTO `marc_subfield_structure` VALUES ('257', 'a', 'Country of producing entity', 'Country of producing entity', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26283 INSERT INTO `marc_subfield_structure` VALUES ('258', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26284 INSERT INTO `marc_subfield_structure` VALUES ('258', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26285 INSERT INTO `marc_subfield_structure` VALUES ('258', 'a', 'Issuing jurisdiction', 'Issuing jurisdiction', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26286 INSERT INTO `marc_subfield_structure` VALUES ('258', 'b', 'Denomination', 'Denomination', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26287 INSERT INTO `marc_subfield_structure` VALUES ('260', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26288 INSERT INTO `marc_subfield_structure` VALUES ('260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26289 INSERT INTO `marc_subfield_structure` VALUES ('260', 'a', 'Place of publication, distribution, etc', 'Place of publication, distribution, etc', 1, 0, 'biblioitems.place', 2, '', '', '', NULL, 0, 'KT', '', '');
26290 INSERT INTO `marc_subfield_structure` VALUES ('260', 'b', 'Name of publisher, distributor, etc', 'Name of publisher, distributor, etc', 1, 0, 'biblioitems.publishercode', 2, '', '', '', NULL, 0, 'KT', '', '');
26291 INSERT INTO `marc_subfield_structure` VALUES ('260', 'c', 'Date of copyright, publication, distribution, release, etc', 'Date of publication, distribution, etc', 1, 0, 'biblio.copyrightdate', 2, '', '', '', NULL, 0, 'KT', '', '');
26292 INSERT INTO `marc_subfield_structure` VALUES ('260', 'd', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26293 INSERT INTO `marc_subfield_structure` VALUES ('260', 'e', 'Place of manufacture', 'Place of manufacture', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26294 INSERT INTO `marc_subfield_structure` VALUES ('260', 'f', 'Manufacturer', 'Manufacturer', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26295 INSERT INTO `marc_subfield_structure` VALUES ('260', 'g', 'Date of manufacture', 'Date of manufacture', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26296 INSERT INTO `marc_subfield_structure` VALUES ('260', 'k', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26297 INSERT INTO `marc_subfield_structure` VALUES ('260', 'l', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26298 INSERT INTO `marc_subfield_structure` VALUES ('261', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26299 INSERT INTO `marc_subfield_structure` VALUES ('261', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26300 INSERT INTO `marc_subfield_structure` VALUES ('261', 'a', 'Producing company', 'Producing company', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26301 INSERT INTO `marc_subfield_structure` VALUES ('261', 'b', 'Releasing company (primary distributor)', 'Releasing company (primary distributor)', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26302 INSERT INTO `marc_subfield_structure` VALUES ('261', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26303 INSERT INTO `marc_subfield_structure` VALUES ('261', 'd', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26304 INSERT INTO `marc_subfield_structure` VALUES ('261', 'e', 'Contractual producer', 'Contractual producer', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26305 INSERT INTO `marc_subfield_structure` VALUES ('261', 'f', 'Place of production, release, etc.', 'Place of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26306 INSERT INTO `marc_subfield_structure` VALUES ('262', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26307 INSERT INTO `marc_subfield_structure` VALUES ('262', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26308 INSERT INTO `marc_subfield_structure` VALUES ('262', 'a', 'Place of production, release, etc.', 'Place of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26309 INSERT INTO `marc_subfield_structure` VALUES ('262', 'b', 'Publisher or trade name', 'Publisher or trade name', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26310 INSERT INTO `marc_subfield_structure` VALUES ('262', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26311 INSERT INTO `marc_subfield_structure` VALUES ('262', 'k', 'Serial identification', 'Serial identification', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26312 INSERT INTO `marc_subfield_structure` VALUES ('262', 'l', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26313 INSERT INTO `marc_subfield_structure` VALUES ('263', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26314 INSERT INTO `marc_subfield_structure` VALUES ('263', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26315 INSERT INTO `marc_subfield_structure` VALUES ('263', 'a', 'Projected publication date', 'Projected publication date', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26316 INSERT INTO `marc_subfield_structure` VALUES ('265', '6', 'Linkage [OBSOLETE]', 'Linkage [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26317 INSERT INTO `marc_subfield_structure` VALUES ('265', 'a', 'Source for acquisition/subscription address [OBSOLETE]', 'Source for acquisition/subscription address [OBSOLETE]', 1, 0, '', 2, '', '', '', NULL, -6, 'KT', '', '');
26318 INSERT INTO `marc_subfield_structure` VALUES ('270', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
26319 INSERT INTO `marc_subfield_structure` VALUES ('270', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
26320 INSERT INTO `marc_subfield_structure` VALUES ('270', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
26321 INSERT INTO `marc_subfield_structure` VALUES ('270', 'a', 'Address', 'Address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'KT', '', '');
26322 INSERT INTO `marc_subfield_structure` VALUES ('270', 'b', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'KT', '', '');
26323 INSERT INTO `marc_subfield_structure` VALUES ('270', 'c', 'State or province', 'State or province', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
26324 INSERT INTO `marc_subfield_structure` VALUES ('270', 'd', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'KT', '', '');
26325 INSERT INTO `marc_subfield_structure` VALUES ('270', 'e', 'Postal code', 'Postal code', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'KT', '', '');
26326 INSERT INTO `marc_subfield_structure` VALUES ('270', 'f', 'Terms preceding attention name', 'Terms preceding attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'KT', '', '');
26327 INSERT INTO `marc_subfield_structure` VALUES ('270', 'g', 'Attention name', 'Attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'KT', '', '');
26328 INSERT INTO `marc_subfield_structure` VALUES ('270', 'h', 'Attention position', 'Attention position', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'KT', '', '');
26329 INSERT INTO `marc_subfield_structure` VALUES ('270', 'i', 'Type of address', 'Type of address', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'KT', '', '');
26330 INSERT INTO `marc_subfield_structure` VALUES ('270', 'j', 'Specialized telephone number', 'Specialized telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'KT', '', '');
26331 INSERT INTO `marc_subfield_structure` VALUES ('270', 'k', 'Telephone number', 'Telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'KT', '', '');
26332 INSERT INTO `marc_subfield_structure` VALUES ('270', 'l', 'Fax number', 'Fax number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'KT', '', '');
26333 INSERT INTO `marc_subfield_structure` VALUES ('270', 'm', 'Electronic mail address', 'Electronic mail address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'KT', '', '');
26334 INSERT INTO `marc_subfield_structure` VALUES ('270', 'n', 'TDD or TTY number', 'TDD or TTY number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'KT', '', '');
26335 INSERT INTO `marc_subfield_structure` VALUES ('270', 'p', 'Contact person', 'Contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'KT', '', '');
26336 INSERT INTO `marc_subfield_structure` VALUES ('270', 'q', 'Title of contact person', 'Title of contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'KT', '', '');
26337 INSERT INTO `marc_subfield_structure` VALUES ('270', 'r', 'Hours', 'Hours', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'KT', '', '');
26338 INSERT INTO `marc_subfield_structure` VALUES ('270', 'z', 'Public note', 'Public note', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'KT', '', '');
26339 INSERT INTO `marc_subfield_structure` VALUES ('300', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26340 INSERT INTO `marc_subfield_structure` VALUES ('300', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26341 INSERT INTO `marc_subfield_structure` VALUES ('300', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26342 INSERT INTO `marc_subfield_structure` VALUES ('300', 'a', 'Extent (number of primary material components followed by format)', 'Extent', 1, 1, 'biblioitems.pages', 3, '', '', '', NULL, 0, 'KT', '', '');
26343 INSERT INTO `marc_subfield_structure` VALUES ('300', 'b', 'Other physical details', 'Other physical details', 0, 0, 'biblioitems.illus', 3, '', '', '', 0, 0, 'KT', '', '');
26344 INSERT INTO `marc_subfield_structure` VALUES ('300', 'c', 'Dimensions', 'Dimensions', 1, 0, 'biblioitems.size', 3, '', '', '', NULL, 0, 'KT', '', '');
26345 INSERT INTO `marc_subfield_structure` VALUES ('300', 'd', 'Accompanying material [OBSOLETE, CAN/MARC]', 'Accompanying material [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26346 INSERT INTO `marc_subfield_structure` VALUES ('300', 'e', 'Accompanying material (number of secondary material compontents followed by format : physical characteristics ; size. repeated for each type of accompanying material.)', 'Accompanying material', 0, 0, '', 3, '', '', '', NULL, 0, 'KT', '', '');
26347 INSERT INTO `marc_subfield_structure` VALUES ('300', 'f', 'Type of unit', 'Type of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'KT', '', '');
26348 INSERT INTO `marc_subfield_structure` VALUES ('300', 'g', 'Size of unit', 'Size of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'KT', '', '');
26349 INSERT INTO `marc_subfield_structure` VALUES ('300', 'k', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26350 INSERT INTO `marc_subfield_structure` VALUES ('300', 'm', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26351 INSERT INTO `marc_subfield_structure` VALUES ('300', 'n', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26352 INSERT INTO `marc_subfield_structure` VALUES ('301', 'a', 'Extent of item', 'Extent of item', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26353 INSERT INTO `marc_subfield_structure` VALUES ('301', 'b', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26354 INSERT INTO `marc_subfield_structure` VALUES ('301', 'c', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', NULL, NULL, -6, 'KT', '', '');
26355 INSERT INTO `marc_subfield_structure` VALUES ('301', 'd', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26356 INSERT INTO `marc_subfield_structure` VALUES ('301', 'e', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26357 INSERT INTO `marc_subfield_structure` VALUES ('301', 'f', 'Speed', 'Speed', 0, 0, '', 3, '', '', NULL, NULL, -6, 'KT', '', '');
26358 INSERT INTO `marc_subfield_structure` VALUES ('302', 'a', 'Page count', 'Page count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'KT', '', '');
26359 INSERT INTO `marc_subfield_structure` VALUES ('303', 'a', 'Unit count', 'Unit count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'KT', '', '');
26360 INSERT INTO `marc_subfield_structure` VALUES ('304', 'a', 'Linear footage', 'Linear footage', 0, 0, '', 3, '', '', NULL, NULL, -6, 'KT', '', '');
26361 INSERT INTO `marc_subfield_structure` VALUES ('305', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26362 INSERT INTO `marc_subfield_structure` VALUES ('305', 'a', 'Extent', 'Extent', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26363 INSERT INTO `marc_subfield_structure` VALUES ('305', 'b', 'Other physical details', 'Other physical details', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26364 INSERT INTO `marc_subfield_structure` VALUES ('305', 'c', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', NULL, NULL, -6, 'KT', '', '');
26365 INSERT INTO `marc_subfield_structure` VALUES ('305', 'd', 'Microgroove or standard', 'Microgroove or standard', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26366 INSERT INTO `marc_subfield_structure` VALUES ('305', 'e', 'Stereophonic, monaural', 'Stereophonic, monaural', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26367 INSERT INTO `marc_subfield_structure` VALUES ('305', 'f', 'Number of tracks', 'Number of tracks', 0, 0, '', 3, '', '', NULL, NULL, -6, 'KT', '', '');
26368 INSERT INTO `marc_subfield_structure` VALUES ('305', 'm', 'Serial identification', 'Serial identification', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26369 INSERT INTO `marc_subfield_structure` VALUES ('305', 'n', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 3, '', '', NULL, NULL, -6, 'KT', '', '');
26370 INSERT INTO `marc_subfield_structure` VALUES ('306', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26371 INSERT INTO `marc_subfield_structure` VALUES ('306', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26372 INSERT INTO `marc_subfield_structure` VALUES ('306', 'a', 'Playing time', 'Playing time', 0, 0, '', 3, '', '', '', NULL, -1, 'KT', '', '');
26373 INSERT INTO `marc_subfield_structure` VALUES ('307', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26374 INSERT INTO `marc_subfield_structure` VALUES ('307', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26375 INSERT INTO `marc_subfield_structure` VALUES ('307', 'a', 'Hours', 'Hours', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26376 INSERT INTO `marc_subfield_structure` VALUES ('307', 'b', 'Additional information', 'Additional information', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26377 INSERT INTO `marc_subfield_structure` VALUES ('308', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26378 INSERT INTO `marc_subfield_structure` VALUES ('308', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26379 INSERT INTO `marc_subfield_structure` VALUES ('308', 'a', 'Number of reels', 'Number of reels', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26380 INSERT INTO `marc_subfield_structure` VALUES ('308', 'b', 'Footage', 'Footage', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26381 INSERT INTO `marc_subfield_structure` VALUES ('308', 'c', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26382 INSERT INTO `marc_subfield_structure` VALUES ('308', 'd', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26383 INSERT INTO `marc_subfield_structure` VALUES ('308', 'e', 'Width', 'Width', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26384 INSERT INTO `marc_subfield_structure` VALUES ('308', 'f', 'Presentation format', 'Presentation format', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26385 INSERT INTO `marc_subfield_structure` VALUES ('310', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26386 INSERT INTO `marc_subfield_structure` VALUES ('310', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26387 INSERT INTO `marc_subfield_structure` VALUES ('310', 'a', 'Current publication frequency', 'Current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26388 INSERT INTO `marc_subfield_structure` VALUES ('310', 'b', 'Date of current publication frequency', 'Date of current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26389 INSERT INTO `marc_subfield_structure` VALUES ('315', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26390 INSERT INTO `marc_subfield_structure` VALUES ('315', 'a', 'Frequency', 'Frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26391 INSERT INTO `marc_subfield_structure` VALUES ('315', 'b', 'Dates of frequency', 'Dates of frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26392 INSERT INTO `marc_subfield_structure` VALUES ('321', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26393 INSERT INTO `marc_subfield_structure` VALUES ('321', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26394 INSERT INTO `marc_subfield_structure` VALUES ('321', 'a', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26395 INSERT INTO `marc_subfield_structure` VALUES ('321', 'b', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26396 INSERT INTO `marc_subfield_structure` VALUES ('340', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26397 INSERT INTO `marc_subfield_structure` VALUES ('340', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26398 INSERT INTO `marc_subfield_structure` VALUES ('340', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26399 INSERT INTO `marc_subfield_structure` VALUES ('340', 'a', 'Material base and configuration', 'Material base and configuration', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26400 INSERT INTO `marc_subfield_structure` VALUES ('340', 'b', 'Dimensions', 'Dimensions', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26401 INSERT INTO `marc_subfield_structure` VALUES ('340', 'c', 'Materials applied to surface', 'Materials applied to surface', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26402 INSERT INTO `marc_subfield_structure` VALUES ('340', 'd', 'Information recording technique', 'Information recording technique', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26403 INSERT INTO `marc_subfield_structure` VALUES ('340', 'e', 'Support', 'Support', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26404 INSERT INTO `marc_subfield_structure` VALUES ('340', 'f', 'Production rate/ratio', 'Production rate/ratio', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26405 INSERT INTO `marc_subfield_structure` VALUES ('340', 'h', 'Location within medium', 'Location within medium', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26406 INSERT INTO `marc_subfield_structure` VALUES ('340', 'i', 'Technical specifications of medium', 'Technical specifications of medium', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26407 INSERT INTO `marc_subfield_structure` VALUES ('342', '2', 'Reference method used', 'Reference method used', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26408 INSERT INTO `marc_subfield_structure` VALUES ('342', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26409 INSERT INTO `marc_subfield_structure` VALUES ('342', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26410 INSERT INTO `marc_subfield_structure` VALUES ('342', 'a', 'Name', 'Name', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26411 INSERT INTO `marc_subfield_structure` VALUES ('342', 'b', 'Coordinate or distance units', 'Coordinate or distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26412 INSERT INTO `marc_subfield_structure` VALUES ('342', 'c', 'Latitude resolution', 'Latitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26413 INSERT INTO `marc_subfield_structure` VALUES ('342', 'd', 'Longitude resolution', 'Longitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26414 INSERT INTO `marc_subfield_structure` VALUES ('342', 'e', 'Standard parallel or oblique line latitude', 'Standard parallel or oblique line latitude', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26415 INSERT INTO `marc_subfield_structure` VALUES ('342', 'f', 'Oblique line longitude', 'Oblique line longitude', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26416 INSERT INTO `marc_subfield_structure` VALUES ('342', 'g', 'Longitude of central meridian or projection center', 'Longitude of central meridian or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26417 INSERT INTO `marc_subfield_structure` VALUES ('342', 'h', 'Latitude of projection origin or projection center', 'Latitude of projection origin or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26418 INSERT INTO `marc_subfield_structure` VALUES ('342', 'i', 'False easting', 'False easting', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26419 INSERT INTO `marc_subfield_structure` VALUES ('342', 'j', 'False northing', 'False northing', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26420 INSERT INTO `marc_subfield_structure` VALUES ('342', 'k', 'Scale factor', 'Scale factor', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26421 INSERT INTO `marc_subfield_structure` VALUES ('342', 'l', 'Height of perspective point above surface', 'Height of perspective point above surface', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26422 INSERT INTO `marc_subfield_structure` VALUES ('342', 'm', 'Azimuthal angle', 'Azimuthal angle', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26423 INSERT INTO `marc_subfield_structure` VALUES ('342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole', 'Azimuth measure point longitude or straight vertical longitude from pole', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26424 INSERT INTO `marc_subfield_structure` VALUES ('342', 'o', 'Landsat number and path number', 'Landsat number and path number', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26425 INSERT INTO `marc_subfield_structure` VALUES ('342', 'p', 'Zone identifier', 'Zone identifier', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26426 INSERT INTO `marc_subfield_structure` VALUES ('342', 'q', 'Ellipsoid name', 'Ellipsoid name', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26427 INSERT INTO `marc_subfield_structure` VALUES ('342', 'r', 'Semi-major axis', 'Semi-major axis', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26428 INSERT INTO `marc_subfield_structure` VALUES ('342', 's', 'Denominator of flattening ratio', 'Denominator of flattening ratio', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26429 INSERT INTO `marc_subfield_structure` VALUES ('342', 't', 'Vertical resolution', 'Vertical resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26430 INSERT INTO `marc_subfield_structure` VALUES ('342', 'u', 'Vertical encoding method', 'Vertical encoding method', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26431 INSERT INTO `marc_subfield_structure` VALUES ('342', 'v', 'Local planar, local, or other projection or grid description', 'Local planar, local, or other projection or grid description', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26432 INSERT INTO `marc_subfield_structure` VALUES ('342', 'w', 'Local planar or local georeference information', 'Local planar or local georeference information', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26433 INSERT INTO `marc_subfield_structure` VALUES ('343', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26434 INSERT INTO `marc_subfield_structure` VALUES ('343', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26435 INSERT INTO `marc_subfield_structure` VALUES ('343', 'a', 'Planar coordinate encoding method', 'Planar coordinate encoding method', 1, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26436 INSERT INTO `marc_subfield_structure` VALUES ('343', 'b', 'Planar distance units', 'Planar distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26437 INSERT INTO `marc_subfield_structure` VALUES ('343', 'c', 'Abscissa resolution', 'Abscissa resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26438 INSERT INTO `marc_subfield_structure` VALUES ('343', 'd', 'Ordinate resolution', 'Ordinate resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26439 INSERT INTO `marc_subfield_structure` VALUES ('343', 'e', 'Distance resolution', 'Distance resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26440 INSERT INTO `marc_subfield_structure` VALUES ('343', 'f', 'Bearing resolution', 'Bearing resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26441 INSERT INTO `marc_subfield_structure` VALUES ('343', 'g', 'Bearing unit', 'Bearing unit', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26442 INSERT INTO `marc_subfield_structure` VALUES ('343', 'h', 'Bearing reference direction', 'Bearing reference direction', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26443 INSERT INTO `marc_subfield_structure` VALUES ('343', 'i', 'Bearing reference meridian', 'Bearing reference meridian', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
26444 INSERT INTO `marc_subfield_structure` VALUES ('350', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26445 INSERT INTO `marc_subfield_structure` VALUES ('350', 'a', 'Price', 'Price', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26446 INSERT INTO `marc_subfield_structure` VALUES ('350', 'b', 'Form of issue', 'Form of issue', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26447 INSERT INTO `marc_subfield_structure` VALUES ('351', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26448 INSERT INTO `marc_subfield_structure` VALUES ('351', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26449 INSERT INTO `marc_subfield_structure` VALUES ('351', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26450 INSERT INTO `marc_subfield_structure` VALUES ('351', 'a', 'Organization', 'Organization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26451 INSERT INTO `marc_subfield_structure` VALUES ('351', 'b', 'Arrangement', 'Arrangement', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26452 INSERT INTO `marc_subfield_structure` VALUES ('351', 'c', 'Hierarchical level', 'Hierarchical level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26453 INSERT INTO `marc_subfield_structure` VALUES ('352', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26454 INSERT INTO `marc_subfield_structure` VALUES ('352', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26455 INSERT INTO `marc_subfield_structure` VALUES ('352', 'a', 'Direct reference method', 'Direct reference method', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26456 INSERT INTO `marc_subfield_structure` VALUES ('352', 'b', 'Object type', 'Object type', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26457 INSERT INTO `marc_subfield_structure` VALUES ('352', 'c', 'Object count', 'Object count', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26458 INSERT INTO `marc_subfield_structure` VALUES ('352', 'd', 'Row count', 'Row count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26459 INSERT INTO `marc_subfield_structure` VALUES ('352', 'e', 'Column count', 'Column count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26460 INSERT INTO `marc_subfield_structure` VALUES ('352', 'f', 'Vertical count', 'Vertical count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26461 INSERT INTO `marc_subfield_structure` VALUES ('352', 'g', 'VPF topology level', 'VPF topology level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26462 INSERT INTO `marc_subfield_structure` VALUES ('352', 'i', 'Indirect reference description', 'Indirect reference description', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26463 INSERT INTO `marc_subfield_structure` VALUES ('355', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26464 INSERT INTO `marc_subfield_structure` VALUES ('355', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26465 INSERT INTO `marc_subfield_structure` VALUES ('355', 'a', 'Security classification', 'Security classification', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26466 INSERT INTO `marc_subfield_structure` VALUES ('355', 'b', 'Handling instructions', 'Handling instructions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26467 INSERT INTO `marc_subfield_structure` VALUES ('355', 'c', 'External dissemination information', 'External dissemination information', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26468 INSERT INTO `marc_subfield_structure` VALUES ('355', 'd', 'Downgrading or declassification event', 'Downgrading or declassification event', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26469 INSERT INTO `marc_subfield_structure` VALUES ('355', 'e', 'Classification system', 'Classification system', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26470 INSERT INTO `marc_subfield_structure` VALUES ('355', 'f', 'Country of origin code', 'Country of origin code', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26471 INSERT INTO `marc_subfield_structure` VALUES ('355', 'g', 'Downgrading date', 'Downgrading date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26472 INSERT INTO `marc_subfield_structure` VALUES ('355', 'h', 'Declassification date', 'Declassification date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26473 INSERT INTO `marc_subfield_structure` VALUES ('355', 'j', 'Authorization', 'Authorization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26474 INSERT INTO `marc_subfield_structure` VALUES ('357', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26475 INSERT INTO `marc_subfield_structure` VALUES ('357', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26476 INSERT INTO `marc_subfield_structure` VALUES ('357', 'a', 'Originator control term', 'Originator control term', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26477 INSERT INTO `marc_subfield_structure` VALUES ('357', 'b', 'Originating agency', 'Originating agency', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26478 INSERT INTO `marc_subfield_structure` VALUES ('357', 'c', 'Authorized recipients of material', 'Authorized recipients of material', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26479 INSERT INTO `marc_subfield_structure` VALUES ('357', 'g', 'Other restrictions', 'Other restrictions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26480 INSERT INTO `marc_subfield_structure` VALUES ('359', 'a', 'Rental price', 'Rental price', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26481 INSERT INTO `marc_subfield_structure` VALUES ('362', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26482 INSERT INTO `marc_subfield_structure` VALUES ('362', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26483 INSERT INTO `marc_subfield_structure` VALUES ('362', 'a', 'Dates of publication and/or sequential designation', 'Dates of publication and/or sequential designation', 0, 0, 'biblioitems.volumedesc', 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26484 INSERT INTO `marc_subfield_structure` VALUES ('362', 'z', 'Source of information', 'Source of information', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'KT', '', '');
26485 INSERT INTO `marc_subfield_structure` VALUES ('365', '2', 'Source of price type code', 'Source of price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26486 INSERT INTO `marc_subfield_structure` VALUES ('365', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
26487 INSERT INTO `marc_subfield_structure` VALUES ('365', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
26488 INSERT INTO `marc_subfield_structure` VALUES ('365', 'a', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26489 INSERT INTO `marc_subfield_structure` VALUES ('365', 'b', 'Price amount', 'Price amount', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26490 INSERT INTO `marc_subfield_structure` VALUES ('365', 'c', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26491 INSERT INTO `marc_subfield_structure` VALUES ('365', 'd', 'Unit of pricing', 'Unit of pricing', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26492 INSERT INTO `marc_subfield_structure` VALUES ('365', 'e', 'Price note', 'Price note', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26493 INSERT INTO `marc_subfield_structure` VALUES ('365', 'f', 'Price effective from', 'Price effective from', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26494 INSERT INTO `marc_subfield_structure` VALUES ('365', 'g', 'Price effective until', 'Price effective until', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26495 INSERT INTO `marc_subfield_structure` VALUES ('365', 'h', 'Tax rate 1', 'Tax rate 1', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26496 INSERT INTO `marc_subfield_structure` VALUES ('365', 'i', 'Tax rate 2', 'Tax rate 2', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26497 INSERT INTO `marc_subfield_structure` VALUES ('365', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26498 INSERT INTO `marc_subfield_structure` VALUES ('365', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26499 INSERT INTO `marc_subfield_structure` VALUES ('365', 'm', 'Identification of pricing entity', 'Identification of pricing entity', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26500 INSERT INTO `marc_subfield_structure` VALUES ('366', '2', 'Source of availability status code', 'Source of availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26501 INSERT INTO `marc_subfield_structure` VALUES ('366', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
26502 INSERT INTO `marc_subfield_structure` VALUES ('366', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
26503 INSERT INTO `marc_subfield_structure` VALUES ('366', 'a', 'Publishers\' compressed title identification', 'Publishers\' compressed title identification', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26504 INSERT INTO `marc_subfield_structure` VALUES ('366', 'b', 'Detailed date of publication', 'Detailed date of publication', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26505 INSERT INTO `marc_subfield_structure` VALUES ('366', 'c', 'Availability status code', 'Availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26506 INSERT INTO `marc_subfield_structure` VALUES ('366', 'd', 'Expected next availability date', 'Expected next availability date', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26507 INSERT INTO `marc_subfield_structure` VALUES ('366', 'e', 'Note', 'Note', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26508 INSERT INTO `marc_subfield_structure` VALUES ('366', 'f', 'Publishers\' discount category', 'Publishers\' discount category', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26509 INSERT INTO `marc_subfield_structure` VALUES ('366', 'g', 'Date made out of print', 'Date made out of print', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26510 INSERT INTO `marc_subfield_structure` VALUES ('366', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26511 INSERT INTO `marc_subfield_structure` VALUES ('366', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26512 INSERT INTO `marc_subfield_structure` VALUES ('366', 'm', 'Identification of agency', 'Identification of agency', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26513 INSERT INTO `marc_subfield_structure` VALUES ('400', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', 0, -6, 'KT', '', '');
26514 INSERT INTO `marc_subfield_structure` VALUES ('400', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', 0, -6, 'KT', '', '');
26515 INSERT INTO `marc_subfield_structure` VALUES ('400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', 0, -6, 'KT', '', '');
26516 INSERT INTO `marc_subfield_structure` VALUES ('400', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
26517 INSERT INTO `marc_subfield_structure` VALUES ('400', 'a', 'Personal name', 'Personal name', 0, 0, '', 4, '', '', '', 0, -6, 'KT', '', '');
26518 INSERT INTO `marc_subfield_structure` VALUES ('400', 'b', 'Numeration', 'Numeration', 0, 0, '', 4, '', '', '', 0, -6, 'KT', '', '');
26519 INSERT INTO `marc_subfield_structure` VALUES ('400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 4, '', '', '', 0, -6, 'KT', '', '');
26520 INSERT INTO `marc_subfield_structure` VALUES ('400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 4, '', '', '', 0, -6, 'KT', '', '');
26521 INSERT INTO `marc_subfield_structure` VALUES ('400', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', 0, -6, 'KT', '', '');
26522 INSERT INTO `marc_subfield_structure` VALUES ('400', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', 0, -6, 'KT', '', '');
26523 INSERT INTO `marc_subfield_structure` VALUES ('400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', 0, -6, 'KT', '', '');
26524 INSERT INTO `marc_subfield_structure` VALUES ('400', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', 0, -6, 'KT', '', '');
26525 INSERT INTO `marc_subfield_structure` VALUES ('400', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', 0, -6, 'KT', '', '');
26526 INSERT INTO `marc_subfield_structure` VALUES ('400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'KT', '', '');
26527 INSERT INTO `marc_subfield_structure` VALUES ('400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'KT', '', '');
26528 INSERT INTO `marc_subfield_structure` VALUES ('400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 4, '', '', '', 0, -6, 'KT', '', '');
26529 INSERT INTO `marc_subfield_structure` VALUES ('400', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', 0, -6, 'KT', '', '');
26530 INSERT INTO `marc_subfield_structure` VALUES ('400', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', 0, -6, 'KT', '', '');
26531 INSERT INTO `marc_subfield_structure` VALUES ('400', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26532 INSERT INTO `marc_subfield_structure` VALUES ('400', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26533 INSERT INTO `marc_subfield_structure` VALUES ('410', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26534 INSERT INTO `marc_subfield_structure` VALUES ('410', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26535 INSERT INTO `marc_subfield_structure` VALUES ('410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26536 INSERT INTO `marc_subfield_structure` VALUES ('410', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'KT', '', '');
26537 INSERT INTO `marc_subfield_structure` VALUES ('410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26538 INSERT INTO `marc_subfield_structure` VALUES ('410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26539 INSERT INTO `marc_subfield_structure` VALUES ('410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26540 INSERT INTO `marc_subfield_structure` VALUES ('410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26541 INSERT INTO `marc_subfield_structure` VALUES ('410', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26542 INSERT INTO `marc_subfield_structure` VALUES ('410', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26543 INSERT INTO `marc_subfield_structure` VALUES ('410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26544 INSERT INTO `marc_subfield_structure` VALUES ('410', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26545 INSERT INTO `marc_subfield_structure` VALUES ('410', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26546 INSERT INTO `marc_subfield_structure` VALUES ('410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26547 INSERT INTO `marc_subfield_structure` VALUES ('410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26548 INSERT INTO `marc_subfield_structure` VALUES ('410', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26549 INSERT INTO `marc_subfield_structure` VALUES ('410', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26550 INSERT INTO `marc_subfield_structure` VALUES ('410', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26551 INSERT INTO `marc_subfield_structure` VALUES ('410', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26552 INSERT INTO `marc_subfield_structure` VALUES ('411', '4', 'Relator code', 'Relator code', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'KT', '', '');
26553 INSERT INTO `marc_subfield_structure` VALUES ('411', '6', 'Linkage', 'Linkage', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'KT', '', '');
26554 INSERT INTO `marc_subfield_structure` VALUES ('411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'KT', '', '');
26555 INSERT INTO `marc_subfield_structure` VALUES ('411', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
26556 INSERT INTO `marc_subfield_structure` VALUES ('411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'KT', '', '');
26557 INSERT INTO `marc_subfield_structure` VALUES ('411', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'KT', '', '');
26558 INSERT INTO `marc_subfield_structure` VALUES ('411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'KT', '', '');
26559 INSERT INTO `marc_subfield_structure` VALUES ('411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'KT', '', '');
26560 INSERT INTO `marc_subfield_structure` VALUES ('411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'KT', '', '');
26561 INSERT INTO `marc_subfield_structure` VALUES ('411', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'KT', '', '');
26562 INSERT INTO `marc_subfield_structure` VALUES ('411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'KT', '', '');
26563 INSERT INTO `marc_subfield_structure` VALUES ('411', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'KT', '', '');
26564 INSERT INTO `marc_subfield_structure` VALUES ('411', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'KT', '', '');
26565 INSERT INTO `marc_subfield_structure` VALUES ('411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'KT', '', '');
26566 INSERT INTO `marc_subfield_structure` VALUES ('411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'KT', '', '');
26567 INSERT INTO `marc_subfield_structure` VALUES ('411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'KT', '', '');
26568 INSERT INTO `marc_subfield_structure` VALUES ('411', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'KT', '', '');
26569 INSERT INTO `marc_subfield_structure` VALUES ('411', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'KT', '', '');
26570 INSERT INTO `marc_subfield_structure` VALUES ('411', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26571 INSERT INTO `marc_subfield_structure` VALUES ('411', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26572 INSERT INTO `marc_subfield_structure` VALUES ('440', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26573 INSERT INTO `marc_subfield_structure` VALUES ('440', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26574 INSERT INTO `marc_subfield_structure` VALUES ('440', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
26575 INSERT INTO `marc_subfield_structure` VALUES ('440', 'a', 'Title', 'Title', 0, 0, 'biblio.seriestitle', 4, '', '', '', NULL, 0, 'KT', '', '');
26576 INSERT INTO `marc_subfield_structure` VALUES ('440', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 'biblioitems.number', 4, '', '', '', NULL, 0, 'KT', '', '');
26577 INSERT INTO `marc_subfield_structure` VALUES ('440', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, 0, 'KT', '', '');
26578 INSERT INTO `marc_subfield_structure` VALUES ('440', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, 'biblioitems.volume', 4, '', '', '', NULL, 0, 'KT', '', '');
26579 INSERT INTO `marc_subfield_structure` VALUES ('440', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, 0, 'KT', '', '');
26580 INSERT INTO `marc_subfield_structure` VALUES ('490', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26581 INSERT INTO `marc_subfield_structure` VALUES ('490', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', NULL, NULL, -6, 'KT', '', '');
26582 INSERT INTO `marc_subfield_structure` VALUES ('490', 'a', 'Series statement', 'Series statement', 1, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26583 INSERT INTO `marc_subfield_structure` VALUES ('490', 'l', 'Library of Congress call number', 'Library of Congress call number', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26584 INSERT INTO `marc_subfield_structure` VALUES ('490', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 1, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26585 INSERT INTO `marc_subfield_structure` VALUES ('490', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'KT', '', '');
26586 INSERT INTO `marc_subfield_structure` VALUES ('500', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26587 INSERT INTO `marc_subfield_structure` VALUES ('500', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26588 INSERT INTO `marc_subfield_structure` VALUES ('500', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26589 INSERT INTO `marc_subfield_structure` VALUES ('500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26590 INSERT INTO `marc_subfield_structure` VALUES ('500', 'a', 'General note', 'General note', 0, 0, 'biblio.notes', 5, '', '', '', NULL, -1, 'KT', '', '');
26591 INSERT INTO `marc_subfield_structure` VALUES ('500', 'l', 'Library of Congress call number (SE) [OBSOLETE]', 'Library of Congress call number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26592 INSERT INTO `marc_subfield_structure` VALUES ('500', 'n', 'n (RLIN) [OBSOLETE]', 'n (RLIN) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26593 INSERT INTO `marc_subfield_structure` VALUES ('500', 'x', 'International Standard Serial Number (SE) [OBSOLETE]', 'International Standard Serial Number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26594 INSERT INTO `marc_subfield_structure` VALUES ('500', 'z', 'Source of note information (AM SE) [OBSOLETE]', 'Source of note information (AM SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26595 INSERT INTO `marc_subfield_structure` VALUES ('501', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26596 INSERT INTO `marc_subfield_structure` VALUES ('501', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26597 INSERT INTO `marc_subfield_structure` VALUES ('501', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26598 INSERT INTO `marc_subfield_structure` VALUES ('501', 'a', 'With note', 'With note', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26599 INSERT INTO `marc_subfield_structure` VALUES ('502', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26600 INSERT INTO `marc_subfield_structure` VALUES ('502', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26601 INSERT INTO `marc_subfield_structure` VALUES ('502', 'a', 'Dissertation note', 'Dissertation note', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26602 INSERT INTO `marc_subfield_structure` VALUES ('503', '8', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26603 INSERT INTO `marc_subfield_structure` VALUES ('503', 'a', 'Bibliographic history note', 'Bibliographic history note', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26604 INSERT INTO `marc_subfield_structure` VALUES ('504', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26605 INSERT INTO `marc_subfield_structure` VALUES ('504', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26606 INSERT INTO `marc_subfield_structure` VALUES ('504', 'a', 'Bibliography, etc', 'Bibliography, etc', 0, 0, '', 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26607 INSERT INTO `marc_subfield_structure` VALUES ('504', 'b', 'Number of references', 'Number of references', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26608 INSERT INTO `marc_subfield_structure` VALUES ('505', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26609 INSERT INTO `marc_subfield_structure` VALUES ('505', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26610 INSERT INTO `marc_subfield_structure` VALUES ('505', 'a', 'Formatted contents note', 'Formatted contents note', 0, 0, '', 5, '', '', '', NULL, -1, 'KT', '', '');
26611 INSERT INTO `marc_subfield_structure` VALUES ('505', 'g', 'Miscellaneous information', 'Miscellaneous information', 1, 0, '', 5, '', '', '', NULL, -1, 'KT', '', '');
26612 INSERT INTO `marc_subfield_structure` VALUES ('505', 'r', 'Statement of responsibility', 'Statement of responsibility', 1, 0, '', 5, '', '', '', NULL, -1, 'KT', '', '');
26613 INSERT INTO `marc_subfield_structure` VALUES ('505', 't', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -1, 'KT', '', '');
26614 INSERT INTO `marc_subfield_structure` VALUES ('505', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'KT', '', '');
26615 INSERT INTO `marc_subfield_structure` VALUES ('506', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26616 INSERT INTO `marc_subfield_structure` VALUES ('506', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26617 INSERT INTO `marc_subfield_structure` VALUES ('506', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26618 INSERT INTO `marc_subfield_structure` VALUES ('506', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26619 INSERT INTO `marc_subfield_structure` VALUES ('506', 'a', 'Terms governing access', 'Terms governing access', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26620 INSERT INTO `marc_subfield_structure` VALUES ('506', 'b', 'Jurisdiction', 'Jurisdiction', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26621 INSERT INTO `marc_subfield_structure` VALUES ('506', 'c', 'Physical access provisions', 'Physical access provisions', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26622 INSERT INTO `marc_subfield_structure` VALUES ('506', 'd', 'Authorized users', 'Authorized users', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26623 INSERT INTO `marc_subfield_structure` VALUES ('506', 'e', 'Authorization', 'Authorization', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26624 INSERT INTO `marc_subfield_structure` VALUES ('506', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'KT', '', '');
26625 INSERT INTO `marc_subfield_structure` VALUES ('507', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26626 INSERT INTO `marc_subfield_structure` VALUES ('507', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26627 INSERT INTO `marc_subfield_structure` VALUES ('507', 'a', 'Representative fraction of scale note', 'Representative fraction of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26628 INSERT INTO `marc_subfield_structure` VALUES ('507', 'b', 'Remainder of scale note', 'Remainder of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26629 INSERT INTO `marc_subfield_structure` VALUES ('508', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26630 INSERT INTO `marc_subfield_structure` VALUES ('508', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26631 INSERT INTO `marc_subfield_structure` VALUES ('508', 'a', 'Creation/production credits note', 'Creation/production credits note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26632 INSERT INTO `marc_subfield_structure` VALUES ('509', 'a', 'Informal Notes', 'Informal Notes', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26633 INSERT INTO `marc_subfield_structure` VALUES ('510', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26634 INSERT INTO `marc_subfield_structure` VALUES ('510', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26635 INSERT INTO `marc_subfield_structure` VALUES ('510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26636 INSERT INTO `marc_subfield_structure` VALUES ('510', 'a', 'Name of source', 'Name of source', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26637 INSERT INTO `marc_subfield_structure` VALUES ('510', 'b', 'Coverage of source', 'Coverage of source', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26638 INSERT INTO `marc_subfield_structure` VALUES ('510', 'c', 'Location within source', 'Location within source', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26639 INSERT INTO `marc_subfield_structure` VALUES ('510', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26640 INSERT INTO `marc_subfield_structure` VALUES ('511', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26641 INSERT INTO `marc_subfield_structure` VALUES ('511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26642 INSERT INTO `marc_subfield_structure` VALUES ('511', 'a', 'Participant or performer note', 'Participant or performer note', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26643 INSERT INTO `marc_subfield_structure` VALUES ('512', '6', 'Linkage', 'Linkage', 0, 0, '', -1, '', '', '', NULL, -6, 'KT', '', '');
26644 INSERT INTO `marc_subfield_structure` VALUES ('512', 'a', 'Earlier or later volumes separately cataloged note', 'Earlier or later volumes separately cataloged note', 0, 0, '', -1, '', '', '', NULL, -6, 'KT', '', '');
26645 INSERT INTO `marc_subfield_structure` VALUES ('513', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26646 INSERT INTO `marc_subfield_structure` VALUES ('513', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26647 INSERT INTO `marc_subfield_structure` VALUES ('513', 'a', 'Type of report', 'Type of report', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26648 INSERT INTO `marc_subfield_structure` VALUES ('513', 'b', 'Period covered', 'Period covered', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26649 INSERT INTO `marc_subfield_structure` VALUES ('514', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26650 INSERT INTO `marc_subfield_structure` VALUES ('514', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26651 INSERT INTO `marc_subfield_structure` VALUES ('514', 'a', 'Attribute accuracy report', 'Attribute accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26652 INSERT INTO `marc_subfield_structure` VALUES ('514', 'b', 'Attribute accuracy value', 'Attribute accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26653 INSERT INTO `marc_subfield_structure` VALUES ('514', 'c', 'Attribute accuracy explanation', 'Attribute accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26654 INSERT INTO `marc_subfield_structure` VALUES ('514', 'd', 'Logical consistency report', 'Logical consistency report', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26655 INSERT INTO `marc_subfield_structure` VALUES ('514', 'e', 'Completeness report', 'Completeness report', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26656 INSERT INTO `marc_subfield_structure` VALUES ('514', 'f', 'Horizontal position accuracy report', 'Horizontal position accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26657 INSERT INTO `marc_subfield_structure` VALUES ('514', 'g', 'Horizontal position accuracy value', 'Horizontal position accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26658 INSERT INTO `marc_subfield_structure` VALUES ('514', 'h', 'Horizontal position accuracy explanation', 'Horizontal position accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26659 INSERT INTO `marc_subfield_structure` VALUES ('514', 'i', 'Vertical positional accuracy report', 'Vertical positional accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26660 INSERT INTO `marc_subfield_structure` VALUES ('514', 'j', 'Vertical positional accuracy value', 'Vertical positional accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26661 INSERT INTO `marc_subfield_structure` VALUES ('514', 'k', 'Vertical positional accuracy explanation', 'Vertical positional accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26662 INSERT INTO `marc_subfield_structure` VALUES ('514', 'm', 'Cloud cover', 'Cloud cover', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26663 INSERT INTO `marc_subfield_structure` VALUES ('514', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'KT', '', '');
26664 INSERT INTO `marc_subfield_structure` VALUES ('514', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26665 INSERT INTO `marc_subfield_structure` VALUES ('515', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26666 INSERT INTO `marc_subfield_structure` VALUES ('515', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26667 INSERT INTO `marc_subfield_structure` VALUES ('515', 'a', 'Numbering peculiarities note', 'Numbering peculiarities note', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26668 INSERT INTO `marc_subfield_structure` VALUES ('515', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, '', -1, '', '', '', NULL, -6, 'KT', '', '');
26669 INSERT INTO `marc_subfield_structure` VALUES ('516', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26670 INSERT INTO `marc_subfield_structure` VALUES ('516', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26671 INSERT INTO `marc_subfield_structure` VALUES ('516', 'a', 'Type of computer file or data note', 'Type of computer file or data note', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26672 INSERT INTO `marc_subfield_structure` VALUES ('517', 'a', 'Different formats', 'Different formats', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26673 INSERT INTO `marc_subfield_structure` VALUES ('517', 'b', 'Content descriptors', 'Content descriptors', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26674 INSERT INTO `marc_subfield_structure` VALUES ('517', 'c', 'Additional animation techniques', 'Additional animation techniques', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26675 INSERT INTO `marc_subfield_structure` VALUES ('518', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26676 INSERT INTO `marc_subfield_structure` VALUES ('518', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26677 INSERT INTO `marc_subfield_structure` VALUES ('518', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26678 INSERT INTO `marc_subfield_structure` VALUES ('518', 'a', 'Date/time and place of an event note', 'Date/time and place of an event note', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26679 INSERT INTO `marc_subfield_structure` VALUES ('520', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26680 INSERT INTO `marc_subfield_structure` VALUES ('520', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26681 INSERT INTO `marc_subfield_structure` VALUES ('520', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26682 INSERT INTO `marc_subfield_structure` VALUES ('520', 'a', 'Summary, etc', 'Summary, etc', 0, 0, 'biblio.abstract', 5, '', '', '', NULL, -1, 'KT', '', '');
26683 INSERT INTO `marc_subfield_structure` VALUES ('520', 'b', 'Expansion of summary note', 'Expansion of summary note', 0, 0, '', 5, '', '', '', NULL, -1, 'KT', '', '');
26684 INSERT INTO `marc_subfield_structure` VALUES ('520', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'KT', '', '');
26685 INSERT INTO `marc_subfield_structure` VALUES ('520', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26686 INSERT INTO `marc_subfield_structure` VALUES ('521', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26687 INSERT INTO `marc_subfield_structure` VALUES ('521', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26688 INSERT INTO `marc_subfield_structure` VALUES ('521', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26689 INSERT INTO `marc_subfield_structure` VALUES ('521', 'a', 'Target audience note', 'Target audience note', 1, 0, NULL, 5, NULL, NULL, '', NULL, 0, 'KT', '', '');
26690 INSERT INTO `marc_subfield_structure` VALUES ('521', 'b', 'Source', 'Source', 0, 0, NULL, 5, NULL, NULL, '', NULL, 0, 'KT', '', '');
26691 INSERT INTO `marc_subfield_structure` VALUES ('522', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26692 INSERT INTO `marc_subfield_structure` VALUES ('522', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26693 INSERT INTO `marc_subfield_structure` VALUES ('522', 'a', 'Geographic coverage note', 'Geographic coverage note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'KT', '', '');
26694 INSERT INTO `marc_subfield_structure` VALUES ('523', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26695 INSERT INTO `marc_subfield_structure` VALUES ('523', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26696 INSERT INTO `marc_subfield_structure` VALUES ('523', 'a', 'Time period of content note', 'Time period of content note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26697 INSERT INTO `marc_subfield_structure` VALUES ('524', '2', 'Source of schema used', 'Source of schema used', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26698 INSERT INTO `marc_subfield_structure` VALUES ('524', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26699 INSERT INTO `marc_subfield_structure` VALUES ('524', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26700 INSERT INTO `marc_subfield_structure` VALUES ('524', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26701 INSERT INTO `marc_subfield_structure` VALUES ('524', 'a', 'Preferred citation of described materials note', 'Preferred citation of described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26702 INSERT INTO `marc_subfield_structure` VALUES ('525', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26703 INSERT INTO `marc_subfield_structure` VALUES ('525', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26704 INSERT INTO `marc_subfield_structure` VALUES ('525', 'a', 'Supplement note', 'Supplement note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26705 INSERT INTO `marc_subfield_structure` VALUES ('525', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26706 INSERT INTO `marc_subfield_structure` VALUES ('526', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26707 INSERT INTO `marc_subfield_structure` VALUES ('526', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26708 INSERT INTO `marc_subfield_structure` VALUES ('526', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26709 INSERT INTO `marc_subfield_structure` VALUES ('526', 'a', 'Program name', 'Program name', 0, 0, '', 5, '', '', '', NULL, -1, 'KT', '', '');
26710 INSERT INTO `marc_subfield_structure` VALUES ('526', 'b', 'Interest level', 'Interest level', 0, 0, '', 5, '', '', '', NULL, -1, 'KT', '', '');
26711 INSERT INTO `marc_subfield_structure` VALUES ('526', 'c', 'Reading level', 'Reading level', 0, 0, '', 5, '', '', '', NULL, -1, 'KT', '', '');
26712 INSERT INTO `marc_subfield_structure` VALUES ('526', 'd', 'Title point value', 'Title point value', 0, 0, '', 5, '', '', '', NULL, -1, 'KT', '', '');
26713 INSERT INTO `marc_subfield_structure` VALUES ('526', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26714 INSERT INTO `marc_subfield_structure` VALUES ('526', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 5, '', '', '', NULL, 6, 'KT', '', '');
26715 INSERT INTO `marc_subfield_structure` VALUES ('526', 'z', 'Public note', 'Public note', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26716 INSERT INTO `marc_subfield_structure` VALUES ('527', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26717 INSERT INTO `marc_subfield_structure` VALUES ('527', 'a', 'Censorship note', 'Censorship note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26718 INSERT INTO `marc_subfield_structure` VALUES ('530', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26719 INSERT INTO `marc_subfield_structure` VALUES ('530', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26720 INSERT INTO `marc_subfield_structure` VALUES ('530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26721 INSERT INTO `marc_subfield_structure` VALUES ('530', 'a', 'Additional physical form available note', 'Additional physical form available note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26722 INSERT INTO `marc_subfield_structure` VALUES ('530', 'b', 'Availability source', 'Availability source', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26723 INSERT INTO `marc_subfield_structure` VALUES ('530', 'c', 'Availability conditions', 'Availability conditions', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26724 INSERT INTO `marc_subfield_structure` VALUES ('530', 'd', 'Order number', 'Order number', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26725 INSERT INTO `marc_subfield_structure` VALUES ('530', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'KT', '', '');
26726 INSERT INTO `marc_subfield_structure` VALUES ('530', 'z', 'Source of note information (AM CF VM SE) [OBSOLETE]', 'Source of note information (AM CF VM SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26727 INSERT INTO `marc_subfield_structure` VALUES ('533', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26728 INSERT INTO `marc_subfield_structure` VALUES ('533', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26729 INSERT INTO `marc_subfield_structure` VALUES ('533', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26730 INSERT INTO `marc_subfield_structure` VALUES ('533', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26731 INSERT INTO `marc_subfield_structure` VALUES ('533', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26732 INSERT INTO `marc_subfield_structure` VALUES ('533', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26733 INSERT INTO `marc_subfield_structure` VALUES ('533', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26734 INSERT INTO `marc_subfield_structure` VALUES ('533', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26735 INSERT INTO `marc_subfield_structure` VALUES ('533', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26736 INSERT INTO `marc_subfield_structure` VALUES ('533', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26737 INSERT INTO `marc_subfield_structure` VALUES ('533', 'm', 'Dates and/or sequential designation of issues reproduced', 'Dates and/or sequential designation of issues reproduced', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26738 INSERT INTO `marc_subfield_structure` VALUES ('533', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26739 INSERT INTO `marc_subfield_structure` VALUES ('534', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26740 INSERT INTO `marc_subfield_structure` VALUES ('534', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26741 INSERT INTO `marc_subfield_structure` VALUES ('534', 'a', 'Main entry of original', 'Main entry of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26742 INSERT INTO `marc_subfield_structure` VALUES ('534', 'b', 'Edition statement of original', 'Edition statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26743 INSERT INTO `marc_subfield_structure` VALUES ('534', 'c', 'Publication, distribution, etc', 'Publication, distribution, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26744 INSERT INTO `marc_subfield_structure` VALUES ('534', 'e', 'Physical description, etc', 'Physical description, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26745 INSERT INTO `marc_subfield_structure` VALUES ('534', 'f', 'Series statement of original', 'Series statement of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26746 INSERT INTO `marc_subfield_structure` VALUES ('534', 'k', 'Key title of original', 'Key title of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26747 INSERT INTO `marc_subfield_structure` VALUES ('534', 'l', 'Location of original', 'Location of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26748 INSERT INTO `marc_subfield_structure` VALUES ('534', 'm', 'Material specific details', 'Material specific details', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26749 INSERT INTO `marc_subfield_structure` VALUES ('534', 'n', 'Note about original', 'Note about original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26750 INSERT INTO `marc_subfield_structure` VALUES ('534', 'p', 'Introductory phrase', 'Introductory phrase', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26751 INSERT INTO `marc_subfield_structure` VALUES ('534', 't', 'Title statement of original', 'Title statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26752 INSERT INTO `marc_subfield_structure` VALUES ('534', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26753 INSERT INTO `marc_subfield_structure` VALUES ('534', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26754 INSERT INTO `marc_subfield_structure` VALUES ('535', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26755 INSERT INTO `marc_subfield_structure` VALUES ('535', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26756 INSERT INTO `marc_subfield_structure` VALUES ('535', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26757 INSERT INTO `marc_subfield_structure` VALUES ('535', 'a', 'Custodian', 'Custodian', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26758 INSERT INTO `marc_subfield_structure` VALUES ('535', 'b', 'Postal address', 'Postal address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26759 INSERT INTO `marc_subfield_structure` VALUES ('535', 'c', 'Country', 'Country', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26760 INSERT INTO `marc_subfield_structure` VALUES ('535', 'd', 'Telecommunications address', 'Telecommunications address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26761 INSERT INTO `marc_subfield_structure` VALUES ('535', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26762 INSERT INTO `marc_subfield_structure` VALUES ('536', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26763 INSERT INTO `marc_subfield_structure` VALUES ('536', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26764 INSERT INTO `marc_subfield_structure` VALUES ('536', 'a', 'Text of note', 'Text of note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26765 INSERT INTO `marc_subfield_structure` VALUES ('536', 'b', 'Contract number', 'Contract number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26766 INSERT INTO `marc_subfield_structure` VALUES ('536', 'c', 'Grant number', 'Grant number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26767 INSERT INTO `marc_subfield_structure` VALUES ('536', 'd', 'Undifferentiated number', 'Undifferentiated number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26768 INSERT INTO `marc_subfield_structure` VALUES ('536', 'e', 'Program element number', 'Program element number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26769 INSERT INTO `marc_subfield_structure` VALUES ('536', 'f', 'Project number', 'Project number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26770 INSERT INTO `marc_subfield_structure` VALUES ('536', 'g', 'Task number', 'Task number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26771 INSERT INTO `marc_subfield_structure` VALUES ('536', 'h', 'Work unit number', 'Work unit number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26772 INSERT INTO `marc_subfield_structure` VALUES ('537', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26773 INSERT INTO `marc_subfield_structure` VALUES ('537', 'a', 'Source of data note', 'Source of data note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26774 INSERT INTO `marc_subfield_structure` VALUES ('538', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26775 INSERT INTO `marc_subfield_structure` VALUES ('538', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26776 INSERT INTO `marc_subfield_structure` VALUES ('538', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26777 INSERT INTO `marc_subfield_structure` VALUES ('538', 'a', 'System details note', 'System details note', 0, 0, '', 5, '', '', '', NULL, -1, 'KT', '', '');
26778 INSERT INTO `marc_subfield_structure` VALUES ('538', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -1, 'KT', '', '');
26779 INSERT INTO `marc_subfield_structure` VALUES ('538', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'KT', '', '');
26780 INSERT INTO `marc_subfield_structure` VALUES ('540', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26781 INSERT INTO `marc_subfield_structure` VALUES ('540', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26782 INSERT INTO `marc_subfield_structure` VALUES ('540', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26783 INSERT INTO `marc_subfield_structure` VALUES ('540', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26784 INSERT INTO `marc_subfield_structure` VALUES ('540', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26785 INSERT INTO `marc_subfield_structure` VALUES ('540', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26786 INSERT INTO `marc_subfield_structure` VALUES ('540', 'c', 'Authorization', 'Authorization', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26787 INSERT INTO `marc_subfield_structure` VALUES ('540', 'd', 'Authorized users', 'Authorized users', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26788 INSERT INTO `marc_subfield_structure` VALUES ('540', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'KT', '', '');
26789 INSERT INTO `marc_subfield_structure` VALUES ('541', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
26790 INSERT INTO `marc_subfield_structure` VALUES ('541', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
26791 INSERT INTO `marc_subfield_structure` VALUES ('541', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
26792 INSERT INTO `marc_subfield_structure` VALUES ('541', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
26793 INSERT INTO `marc_subfield_structure` VALUES ('541', 'a', 'Source of acquisition', 'Source of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'KT', '', '');
26794 INSERT INTO `marc_subfield_structure` VALUES ('541', 'b', 'Address', 'Address', 0, 0, '', 9, '', '', '', NULL, 1, 'KT', '', '');
26795 INSERT INTO `marc_subfield_structure` VALUES ('541', 'c', 'Method of acquisition', 'Method of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'KT', '', '');
26796 INSERT INTO `marc_subfield_structure` VALUES ('541', 'd', 'Date of acquisition', 'Date of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'KT', '', '');
26797 INSERT INTO `marc_subfield_structure` VALUES ('541', 'e', 'Accession number', 'Accession number', 0, 0, '', 9, '', '', '', NULL, 1, 'KT', '', '');
26798 INSERT INTO `marc_subfield_structure` VALUES ('541', 'f', 'Owner', 'Owner', 0, 0, '', 9, '', '', '', NULL, 1, 'KT', '', '');
26799 INSERT INTO `marc_subfield_structure` VALUES ('541', 'h', 'Purchase price', 'Purchase price', 0, 0, '', 9, '', '', '', NULL, 1, 'KT', '', '');
26800 INSERT INTO `marc_subfield_structure` VALUES ('541', 'n', 'Extent', 'Extent', 0, 0, '', 9, '', '', '', NULL, 1, 'KT', '', '');
26801 INSERT INTO `marc_subfield_structure` VALUES ('541', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, 1, 'KT', '', '');
26802 INSERT INTO `marc_subfield_structure` VALUES ('543', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26803 INSERT INTO `marc_subfield_structure` VALUES ('543', 'a', 'Solicitation information note', 'Solicitation information note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26804 INSERT INTO `marc_subfield_structure` VALUES ('544', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26805 INSERT INTO `marc_subfield_structure` VALUES ('544', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26806 INSERT INTO `marc_subfield_structure` VALUES ('544', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26807 INSERT INTO `marc_subfield_structure` VALUES ('544', 'a', 'Custodian', 'Custodian', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26808 INSERT INTO `marc_subfield_structure` VALUES ('544', 'b', 'Address', 'Address', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26809 INSERT INTO `marc_subfield_structure` VALUES ('544', 'c', 'Country', 'Country', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26810 INSERT INTO `marc_subfield_structure` VALUES ('544', 'd', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26811 INSERT INTO `marc_subfield_structure` VALUES ('544', 'e', 'Provenance', 'Provenance', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26812 INSERT INTO `marc_subfield_structure` VALUES ('544', 'n', 'Note', 'Note', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26813 INSERT INTO `marc_subfield_structure` VALUES ('545', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26814 INSERT INTO `marc_subfield_structure` VALUES ('545', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26815 INSERT INTO `marc_subfield_structure` VALUES ('545', 'a', 'Biographical or historical note', 'Biographical or historical note', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26816 INSERT INTO `marc_subfield_structure` VALUES ('545', 'b', 'Expansion', 'Expansion', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26817 INSERT INTO `marc_subfield_structure` VALUES ('545', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'KT', '', '');
26818 INSERT INTO `marc_subfield_structure` VALUES ('546', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26819 INSERT INTO `marc_subfield_structure` VALUES ('546', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26820 INSERT INTO `marc_subfield_structure` VALUES ('546', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26821 INSERT INTO `marc_subfield_structure` VALUES ('546', 'a', 'Language note', 'Language note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'KT', '', '');
26822 INSERT INTO `marc_subfield_structure` VALUES ('546', 'b', 'Information code or alphabet', 'Information code or alphabet', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'KT', '', '');
26823 INSERT INTO `marc_subfield_structure` VALUES ('546', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26824 INSERT INTO `marc_subfield_structure` VALUES ('547', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26825 INSERT INTO `marc_subfield_structure` VALUES ('547', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26826 INSERT INTO `marc_subfield_structure` VALUES ('547', 'a', 'Former title complexity note', 'Former title complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26827 INSERT INTO `marc_subfield_structure` VALUES ('547', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26828 INSERT INTO `marc_subfield_structure` VALUES ('550', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26829 INSERT INTO `marc_subfield_structure` VALUES ('550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26830 INSERT INTO `marc_subfield_structure` VALUES ('550', 'a', 'Issuing body note', 'Issuing body note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26831 INSERT INTO `marc_subfield_structure` VALUES ('550', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26832 INSERT INTO `marc_subfield_structure` VALUES ('552', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26833 INSERT INTO `marc_subfield_structure` VALUES ('552', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26834 INSERT INTO `marc_subfield_structure` VALUES ('552', 'a', 'Entity type label', 'Entity type label', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26835 INSERT INTO `marc_subfield_structure` VALUES ('552', 'b', 'Entity type definition and source', 'Entity type definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26836 INSERT INTO `marc_subfield_structure` VALUES ('552', 'c', 'Attribute label', 'Attribute label', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26837 INSERT INTO `marc_subfield_structure` VALUES ('552', 'd', 'Attribute definition and source', 'Attribute definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26838 INSERT INTO `marc_subfield_structure` VALUES ('552', 'e', 'Enumerated domain value', 'Enumerated domain value', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26839 INSERT INTO `marc_subfield_structure` VALUES ('552', 'f', 'Enumerated domain value definition and source', 'Enumerated domain value definition and source', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26840 INSERT INTO `marc_subfield_structure` VALUES ('552', 'g', 'Range domain minimum and maximum', 'Range domain minimum and maximum', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26841 INSERT INTO `marc_subfield_structure` VALUES ('552', 'h', 'Codeset name and source', 'Codeset name and source', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26842 INSERT INTO `marc_subfield_structure` VALUES ('552', 'i', 'Unrepresentable domain', 'Unrepresentable domain', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26843 INSERT INTO `marc_subfield_structure` VALUES ('552', 'j', 'Attribute units of measurement and resolution', 'Attribute units of measurement and resolution', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26844 INSERT INTO `marc_subfield_structure` VALUES ('552', 'k', 'Beginning date and ending date of attribute values', 'Beginning date and ending date of attribute values', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26845 INSERT INTO `marc_subfield_structure` VALUES ('552', 'l', 'Attribute value accuracy', 'Attribute value accuracy', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26846 INSERT INTO `marc_subfield_structure` VALUES ('552', 'm', 'Attribute value accuracy explanation', 'Attribute value accuracy explanation', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26847 INSERT INTO `marc_subfield_structure` VALUES ('552', 'n', 'Attribute measurement frequency', 'Attribute measurement frequency', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26848 INSERT INTO `marc_subfield_structure` VALUES ('552', 'o', 'Entity and attribute overview', 'Entity and attribute overview', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26849 INSERT INTO `marc_subfield_structure` VALUES ('552', 'p', 'Entity and attribute detail citation', 'Entity and attribute detail citation', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26850 INSERT INTO `marc_subfield_structure` VALUES ('552', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'KT', '', '');
26851 INSERT INTO `marc_subfield_structure` VALUES ('552', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26852 INSERT INTO `marc_subfield_structure` VALUES ('555', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26853 INSERT INTO `marc_subfield_structure` VALUES ('555', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26854 INSERT INTO `marc_subfield_structure` VALUES ('555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26855 INSERT INTO `marc_subfield_structure` VALUES ('555', 'a', 'Cumulative index/finding aids note', 'Cumulative index/finding aids note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26856 INSERT INTO `marc_subfield_structure` VALUES ('555', 'b', 'Availability source', 'Availability source', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26857 INSERT INTO `marc_subfield_structure` VALUES ('555', 'c', 'Degree of control', 'Degree of control', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26858 INSERT INTO `marc_subfield_structure` VALUES ('555', 'd', 'Bibliographic reference', 'Bibliographic reference', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26859 INSERT INTO `marc_subfield_structure` VALUES ('555', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'KT', '', '');
26860 INSERT INTO `marc_subfield_structure` VALUES ('556', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26861 INSERT INTO `marc_subfield_structure` VALUES ('556', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26862 INSERT INTO `marc_subfield_structure` VALUES ('556', 'a', 'Information about documentation note', 'Information about documentation note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26863 INSERT INTO `marc_subfield_structure` VALUES ('556', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26864 INSERT INTO `marc_subfield_structure` VALUES ('561', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26865 INSERT INTO `marc_subfield_structure` VALUES ('561', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26866 INSERT INTO `marc_subfield_structure` VALUES ('561', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26867 INSERT INTO `marc_subfield_structure` VALUES ('561', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26868 INSERT INTO `marc_subfield_structure` VALUES ('561', 'a', 'History', 'History', 0, 0, '', 5, '', '', '', NULL, 6, 'KT', '', '');
26869 INSERT INTO `marc_subfield_structure` VALUES ('561', 'b', 'Time of collation [OBSOLETE]', 'Time of collation [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, 6, 'KT', '', '');
26870 INSERT INTO `marc_subfield_structure` VALUES ('562', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26871 INSERT INTO `marc_subfield_structure` VALUES ('562', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26872 INSERT INTO `marc_subfield_structure` VALUES ('562', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26873 INSERT INTO `marc_subfield_structure` VALUES ('562', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26874 INSERT INTO `marc_subfield_structure` VALUES ('562', 'a', 'Identifying markings', 'Identifying markings', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26875 INSERT INTO `marc_subfield_structure` VALUES ('562', 'b', 'Copy identification', 'Copy identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26876 INSERT INTO `marc_subfield_structure` VALUES ('562', 'c', 'Version identification', 'Version identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26877 INSERT INTO `marc_subfield_structure` VALUES ('562', 'd', 'Presentation format', 'Presentation format', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26878 INSERT INTO `marc_subfield_structure` VALUES ('562', 'e', 'Number of copies', 'Number of copies', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26879 INSERT INTO `marc_subfield_structure` VALUES ('563', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26880 INSERT INTO `marc_subfield_structure` VALUES ('563', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'KT', '', '');
26881 INSERT INTO `marc_subfield_structure` VALUES ('563', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26882 INSERT INTO `marc_subfield_structure` VALUES ('563', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26883 INSERT INTO `marc_subfield_structure` VALUES ('563', 'a', 'Binding note', 'Binding note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26884 INSERT INTO `marc_subfield_structure` VALUES ('563', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'KT', '', '');
26885 INSERT INTO `marc_subfield_structure` VALUES ('565', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26886 INSERT INTO `marc_subfield_structure` VALUES ('565', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26887 INSERT INTO `marc_subfield_structure` VALUES ('565', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26888 INSERT INTO `marc_subfield_structure` VALUES ('565', 'a', 'Number of cases/variables', 'Number of cases/variables', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26889 INSERT INTO `marc_subfield_structure` VALUES ('565', 'b', 'Name of variable', 'Name of variable', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26890 INSERT INTO `marc_subfield_structure` VALUES ('565', 'c', 'Unit of analysis', 'Unit of analysis', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26891 INSERT INTO `marc_subfield_structure` VALUES ('565', 'd', 'Universe of data', 'Universe of data', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26892 INSERT INTO `marc_subfield_structure` VALUES ('565', 'e', 'Filing scheme or code', 'Filing scheme or code', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26893 INSERT INTO `marc_subfield_structure` VALUES ('567', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26894 INSERT INTO `marc_subfield_structure` VALUES ('567', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26895 INSERT INTO `marc_subfield_structure` VALUES ('567', 'a', 'Methodology note', 'Methodology note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26896 INSERT INTO `marc_subfield_structure` VALUES ('570', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26897 INSERT INTO `marc_subfield_structure` VALUES ('570', 'a', 'Editor note', 'Editor note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26898 INSERT INTO `marc_subfield_structure` VALUES ('570', 'z', 'Source of note information', 'Source of note information', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26899 INSERT INTO `marc_subfield_structure` VALUES ('580', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26900 INSERT INTO `marc_subfield_structure` VALUES ('580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26901 INSERT INTO `marc_subfield_structure` VALUES ('580', 'a', 'Linking entry complexity note', 'Linking entry complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26902 INSERT INTO `marc_subfield_structure` VALUES ('580', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26903 INSERT INTO `marc_subfield_structure` VALUES ('581', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26904 INSERT INTO `marc_subfield_structure` VALUES ('581', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26905 INSERT INTO `marc_subfield_structure` VALUES ('581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26906 INSERT INTO `marc_subfield_structure` VALUES ('581', 'a', 'Publications about described materials note', 'Publications about described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26907 INSERT INTO `marc_subfield_structure` VALUES ('581', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26908 INSERT INTO `marc_subfield_structure` VALUES ('582', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26909 INSERT INTO `marc_subfield_structure` VALUES ('582', 'a', 'Related computer files note', 'Related computer files note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26910 INSERT INTO `marc_subfield_structure` VALUES ('583', '2', 'Source of term', 'Source of term', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
26911 INSERT INTO `marc_subfield_structure` VALUES ('583', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
26912 INSERT INTO `marc_subfield_structure` VALUES ('583', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
26913 INSERT INTO `marc_subfield_structure` VALUES ('583', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
26914 INSERT INTO `marc_subfield_structure` VALUES ('583', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
26915 INSERT INTO `marc_subfield_structure` VALUES ('583', 'a', 'Action', 'Action', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26916 INSERT INTO `marc_subfield_structure` VALUES ('583', 'b', 'Action identification', 'Action identification', 1, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26917 INSERT INTO `marc_subfield_structure` VALUES ('583', 'c', 'Time/date of action', 'Time/date of action', 1, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26918 INSERT INTO `marc_subfield_structure` VALUES ('583', 'd', 'Action interval', 'Action interval', 1, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26919 INSERT INTO `marc_subfield_structure` VALUES ('583', 'e', 'Contingency for action', 'Contingency for action', 1, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26920 INSERT INTO `marc_subfield_structure` VALUES ('583', 'f', 'Authorization', 'Authorization', 1, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26921 INSERT INTO `marc_subfield_structure` VALUES ('583', 'h', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26922 INSERT INTO `marc_subfield_structure` VALUES ('583', 'i', 'Method of action', 'Method of action', 1, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26923 INSERT INTO `marc_subfield_structure` VALUES ('583', 'j', 'Site of action', 'Site of action', 1, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26924 INSERT INTO `marc_subfield_structure` VALUES ('583', 'k', 'Action agent', 'Action agent', 1, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26925 INSERT INTO `marc_subfield_structure` VALUES ('583', 'l', 'Status', 'Status', 1, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26926 INSERT INTO `marc_subfield_structure` VALUES ('583', 'n', 'Extent', 'Extent', 1, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26927 INSERT INTO `marc_subfield_structure` VALUES ('583', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26928 INSERT INTO `marc_subfield_structure` VALUES ('583', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -1, 'KT', '', '');
26929 INSERT INTO `marc_subfield_structure` VALUES ('583', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', NULL, 4, 'KT', '', '');
26930 INSERT INTO `marc_subfield_structure` VALUES ('583', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', NULL, -1, 'KT', '', '');
26931 INSERT INTO `marc_subfield_structure` VALUES ('584', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26932 INSERT INTO `marc_subfield_structure` VALUES ('584', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26933 INSERT INTO `marc_subfield_structure` VALUES ('584', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26934 INSERT INTO `marc_subfield_structure` VALUES ('584', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26935 INSERT INTO `marc_subfield_structure` VALUES ('584', 'a', 'Accumulation', 'Accumulation', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26936 INSERT INTO `marc_subfield_structure` VALUES ('584', 'b', 'Frequency of use', 'Frequency of use', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26937 INSERT INTO `marc_subfield_structure` VALUES ('585', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26938 INSERT INTO `marc_subfield_structure` VALUES ('585', '5', 'Institution to which field applies', 'Institution to which field applies', 0, -6, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26939 INSERT INTO `marc_subfield_structure` VALUES ('585', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26940 INSERT INTO `marc_subfield_structure` VALUES ('585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26941 INSERT INTO `marc_subfield_structure` VALUES ('585', 'a', 'Exhibitions note', 'Exhibitions note', 0, 0, '', 5, '', '', '', NULL, -6, 'KT', '', '');
26942 INSERT INTO `marc_subfield_structure` VALUES ('586', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26943 INSERT INTO `marc_subfield_structure` VALUES ('586', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26944 INSERT INTO `marc_subfield_structure` VALUES ('586', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26945 INSERT INTO `marc_subfield_structure` VALUES ('586', 'a', 'Awards note', 'Awards note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'KT', '', '');
26946 INSERT INTO `marc_subfield_structure` VALUES ('590', '6', 'Linkage (RLIN)', 'Linkage (RLIN)', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26947 INSERT INTO `marc_subfield_structure` VALUES ('590', '8', 'Field link and sequence number (RLIN)', 'Field link and sequence number (RLIN)', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26948 INSERT INTO `marc_subfield_structure` VALUES ('590', 'a', 'Local note', 'Local note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26949 INSERT INTO `marc_subfield_structure` VALUES ('590', 'b', 'Provenance (VM) [OBSOLETE]', 'Provenance (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26950 INSERT INTO `marc_subfield_structure` VALUES ('590', 'c', 'Condition of individual reels (VM) [OBSOLETE]', 'Condition of individual reels (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26951 INSERT INTO `marc_subfield_structure` VALUES ('590', 'd', 'Origin of safety copy (VM) [OBSOLETE]', 'Origin of safety copy (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'KT', '', '');
26952 INSERT INTO `marc_subfield_structure` VALUES ('600', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
26953 INSERT INTO `marc_subfield_structure` VALUES ('600', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26954 INSERT INTO `marc_subfield_structure` VALUES ('600', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26955 INSERT INTO `marc_subfield_structure` VALUES ('600', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26956 INSERT INTO `marc_subfield_structure` VALUES ('600', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26957 INSERT INTO `marc_subfield_structure` VALUES ('600', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
26958 INSERT INTO `marc_subfield_structure` VALUES ('600', 'a', 'Personal name', 'Personal name', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
26959 INSERT INTO `marc_subfield_structure` VALUES ('600', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
26960 INSERT INTO `marc_subfield_structure` VALUES ('600', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
26961 INSERT INTO `marc_subfield_structure` VALUES ('600', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
26962 INSERT INTO `marc_subfield_structure` VALUES ('600', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26963 INSERT INTO `marc_subfield_structure` VALUES ('600', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26964 INSERT INTO `marc_subfield_structure` VALUES ('600', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26965 INSERT INTO `marc_subfield_structure` VALUES ('600', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26966 INSERT INTO `marc_subfield_structure` VALUES ('600', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26967 INSERT INTO `marc_subfield_structure` VALUES ('600', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26968 INSERT INTO `marc_subfield_structure` VALUES ('600', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26969 INSERT INTO `marc_subfield_structure` VALUES ('600', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26970 INSERT INTO `marc_subfield_structure` VALUES ('600', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26971 INSERT INTO `marc_subfield_structure` VALUES ('600', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26972 INSERT INTO `marc_subfield_structure` VALUES ('600', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26973 INSERT INTO `marc_subfield_structure` VALUES ('600', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
26974 INSERT INTO `marc_subfield_structure` VALUES ('600', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26975 INSERT INTO `marc_subfield_structure` VALUES ('600', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26976 INSERT INTO `marc_subfield_structure` VALUES ('600', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
26977 INSERT INTO `marc_subfield_structure` VALUES ('600', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26978 INSERT INTO `marc_subfield_structure` VALUES ('600', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
26979 INSERT INTO `marc_subfield_structure` VALUES ('600', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
26980 INSERT INTO `marc_subfield_structure` VALUES ('600', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
26981 INSERT INTO `marc_subfield_structure` VALUES ('600', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
26982 INSERT INTO `marc_subfield_structure` VALUES ('610', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
26983 INSERT INTO `marc_subfield_structure` VALUES ('610', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26984 INSERT INTO `marc_subfield_structure` VALUES ('610', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26985 INSERT INTO `marc_subfield_structure` VALUES ('610', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26986 INSERT INTO `marc_subfield_structure` VALUES ('610', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26987 INSERT INTO `marc_subfield_structure` VALUES ('610', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
26988 INSERT INTO `marc_subfield_structure` VALUES ('610', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
26989 INSERT INTO `marc_subfield_structure` VALUES ('610', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
26990 INSERT INTO `marc_subfield_structure` VALUES ('610', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
26991 INSERT INTO `marc_subfield_structure` VALUES ('610', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
26992 INSERT INTO `marc_subfield_structure` VALUES ('610', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26993 INSERT INTO `marc_subfield_structure` VALUES ('610', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26994 INSERT INTO `marc_subfield_structure` VALUES ('610', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26995 INSERT INTO `marc_subfield_structure` VALUES ('610', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26996 INSERT INTO `marc_subfield_structure` VALUES ('610', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26997 INSERT INTO `marc_subfield_structure` VALUES ('610', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26998 INSERT INTO `marc_subfield_structure` VALUES ('610', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
26999 INSERT INTO `marc_subfield_structure` VALUES ('610', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27000 INSERT INTO `marc_subfield_structure` VALUES ('610', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27001 INSERT INTO `marc_subfield_structure` VALUES ('610', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27002 INSERT INTO `marc_subfield_structure` VALUES ('610', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27003 INSERT INTO `marc_subfield_structure` VALUES ('610', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27004 INSERT INTO `marc_subfield_structure` VALUES ('610', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27005 INSERT INTO `marc_subfield_structure` VALUES ('610', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27006 INSERT INTO `marc_subfield_structure` VALUES ('610', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27007 INSERT INTO `marc_subfield_structure` VALUES ('610', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27008 INSERT INTO `marc_subfield_structure` VALUES ('610', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27009 INSERT INTO `marc_subfield_structure` VALUES ('610', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27010 INSERT INTO `marc_subfield_structure` VALUES ('611', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27011 INSERT INTO `marc_subfield_structure` VALUES ('611', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27012 INSERT INTO `marc_subfield_structure` VALUES ('611', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27013 INSERT INTO `marc_subfield_structure` VALUES ('611', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27014 INSERT INTO `marc_subfield_structure` VALUES ('611', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27015 INSERT INTO `marc_subfield_structure` VALUES ('611', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
27016 INSERT INTO `marc_subfield_structure` VALUES ('611', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27017 INSERT INTO `marc_subfield_structure` VALUES ('611', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'KT', '', '');
27018 INSERT INTO `marc_subfield_structure` VALUES ('611', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27019 INSERT INTO `marc_subfield_structure` VALUES ('611', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27020 INSERT INTO `marc_subfield_structure` VALUES ('611', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27021 INSERT INTO `marc_subfield_structure` VALUES ('611', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27022 INSERT INTO `marc_subfield_structure` VALUES ('611', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27023 INSERT INTO `marc_subfield_structure` VALUES ('611', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27024 INSERT INTO `marc_subfield_structure` VALUES ('611', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27025 INSERT INTO `marc_subfield_structure` VALUES ('611', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27026 INSERT INTO `marc_subfield_structure` VALUES ('611', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27027 INSERT INTO `marc_subfield_structure` VALUES ('611', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27028 INSERT INTO `marc_subfield_structure` VALUES ('611', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27029 INSERT INTO `marc_subfield_structure` VALUES ('611', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27030 INSERT INTO `marc_subfield_structure` VALUES ('611', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27031 INSERT INTO `marc_subfield_structure` VALUES ('611', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27032 INSERT INTO `marc_subfield_structure` VALUES ('611', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27033 INSERT INTO `marc_subfield_structure` VALUES ('611', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27034 INSERT INTO `marc_subfield_structure` VALUES ('611', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27035 INSERT INTO `marc_subfield_structure` VALUES ('611', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27036 INSERT INTO `marc_subfield_structure` VALUES ('630', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27037 INSERT INTO `marc_subfield_structure` VALUES ('630', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27038 INSERT INTO `marc_subfield_structure` VALUES ('630', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27039 INSERT INTO `marc_subfield_structure` VALUES ('630', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27040 INSERT INTO `marc_subfield_structure` VALUES ('630', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27041 INSERT INTO `marc_subfield_structure` VALUES ('630', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
27042 INSERT INTO `marc_subfield_structure` VALUES ('630', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27043 INSERT INTO `marc_subfield_structure` VALUES ('630', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27044 INSERT INTO `marc_subfield_structure` VALUES ('630', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27045 INSERT INTO `marc_subfield_structure` VALUES ('630', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27046 INSERT INTO `marc_subfield_structure` VALUES ('630', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27047 INSERT INTO `marc_subfield_structure` VALUES ('630', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27048 INSERT INTO `marc_subfield_structure` VALUES ('630', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27049 INSERT INTO `marc_subfield_structure` VALUES ('630', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27050 INSERT INTO `marc_subfield_structure` VALUES ('630', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27051 INSERT INTO `marc_subfield_structure` VALUES ('630', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27052 INSERT INTO `marc_subfield_structure` VALUES ('630', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27053 INSERT INTO `marc_subfield_structure` VALUES ('630', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27054 INSERT INTO `marc_subfield_structure` VALUES ('630', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27055 INSERT INTO `marc_subfield_structure` VALUES ('630', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27056 INSERT INTO `marc_subfield_structure` VALUES ('630', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27057 INSERT INTO `marc_subfield_structure` VALUES ('630', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27058 INSERT INTO `marc_subfield_structure` VALUES ('630', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27059 INSERT INTO `marc_subfield_structure` VALUES ('630', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27060 INSERT INTO `marc_subfield_structure` VALUES ('630', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27061 INSERT INTO `marc_subfield_structure` VALUES ('648', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27062 INSERT INTO `marc_subfield_structure` VALUES ('648', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27063 INSERT INTO `marc_subfield_structure` VALUES ('648', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27064 INSERT INTO `marc_subfield_structure` VALUES ('648', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27065 INSERT INTO `marc_subfield_structure` VALUES ('648', 'a', 'Chronological term', 'Chronological term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27066 INSERT INTO `marc_subfield_structure` VALUES ('648', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27067 INSERT INTO `marc_subfield_structure` VALUES ('648', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27068 INSERT INTO `marc_subfield_structure` VALUES ('648', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27069 INSERT INTO `marc_subfield_structure` VALUES ('648', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27070 INSERT INTO `marc_subfield_structure` VALUES ('650', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, 0, 'KT', '', '');
27071 INSERT INTO `marc_subfield_structure` VALUES ('650', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'KT', '', '');
27072 INSERT INTO `marc_subfield_structure` VALUES ('650', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27073 INSERT INTO `marc_subfield_structure` VALUES ('650', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'KT', '', '');
27074 INSERT INTO `marc_subfield_structure` VALUES ('650', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'KT', '', '');
27075 INSERT INTO `marc_subfield_structure` VALUES ('650', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
27076 INSERT INTO `marc_subfield_structure` VALUES ('650', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 'bibliosubject.subject', 6, '', '', '', 0, 0, 'KT', '''6003'',''600a'',''600b'',''600c'',''600d'',''600e'',''600f'',''600g'',''600h'',''600k'',''600l'',''600m'',''600n'',''600o'',''600p'',''600r'',''600s'',''600t'',''600u'',''600x'',''600z'',''600y'',''600v'',''6103'',''610a'',''610b'',''610c'',''610d'',''610e'',''610f'',''610g'',''610h'',''610k'',''610l'',''610m'',''610n'',''610o'',''610p'',''610r'',''610s'',''610t'',''610u'',''610x'',''610z'',''610y'',''610v'',''6113'',''611a'',''611b'',''611c'',''611d'',''611e'',''611f'',''611g'',''611h'',''611k'',''611l'',''611m'',''611n'',''611o'',''611p'',''611r'',''611s'',''611t'',''611u'',''611x'',''611z'',''611y'',''611v'',''630a'',''630b'',''630c'',''630d'',''630e'',''630f'',''630g'',''630h'',''630k'',''630l'',''630m'',''630n'',''630o'',''630p'',''630r'',''630s'',''630t'',''630x'',''630z'',''630y'',''630v'',''6483'',''648a'',''648x'',''648z'',''648y'',''648v'',''6503'',''650b'',''650c'',''650d'',''650e'',''650x'',''650z'',''650y'',''650v'',''6513'',''651a'',''651b'',''651c'',''651d'',''651e'',''651x'',''651z'',''651y'',''651v'',''653a'',''6543'',''654a'',''654b'',''654x'',''654z'',''654y'',''654v'',''6553'',''655a'',''655b'',''655x'',''655z'',''655y'',''655v'',''6563'',''656a'',''656k'',''656x'',''656z'',''656y'',''656v'',''6573'',''657a'',''657x'',''657z'',''657y'',''657v'',''658a'',''658b'',''658c'',''658d'',''658v''', '');
27077 INSERT INTO `marc_subfield_structure` VALUES ('650', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'KT', '', '');
27078 INSERT INTO `marc_subfield_structure` VALUES ('650', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'KT', '', '');
27079 INSERT INTO `marc_subfield_structure` VALUES ('650', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -1, 'KT', '', '');
27080 INSERT INTO `marc_subfield_structure` VALUES ('650', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -1, 'KT', '', '');
27081 INSERT INTO `marc_subfield_structure` VALUES ('650', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'KT', '', '');
27082 INSERT INTO `marc_subfield_structure` VALUES ('650', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'KT', '', '');
27083 INSERT INTO `marc_subfield_structure` VALUES ('650', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'KT', '', '');
27084 INSERT INTO `marc_subfield_structure` VALUES ('650', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'KT', '', '');
27085 INSERT INTO `marc_subfield_structure` VALUES ('651', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27086 INSERT INTO `marc_subfield_structure` VALUES ('651', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27087 INSERT INTO `marc_subfield_structure` VALUES ('651', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27088 INSERT INTO `marc_subfield_structure` VALUES ('651', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27089 INSERT INTO `marc_subfield_structure` VALUES ('651', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27090 INSERT INTO `marc_subfield_structure` VALUES ('651', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
27091 INSERT INTO `marc_subfield_structure` VALUES ('651', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27092 INSERT INTO `marc_subfield_structure` VALUES ('651', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27093 INSERT INTO `marc_subfield_structure` VALUES ('651', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27094 INSERT INTO `marc_subfield_structure` VALUES ('651', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27095 INSERT INTO `marc_subfield_structure` VALUES ('651', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27096 INSERT INTO `marc_subfield_structure` VALUES ('651', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27097 INSERT INTO `marc_subfield_structure` VALUES ('651', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27098 INSERT INTO `marc_subfield_structure` VALUES ('652', 'a', 'Geographic name of place element', 'Geographic name of place element', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27099 INSERT INTO `marc_subfield_structure` VALUES ('652', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27100 INSERT INTO `marc_subfield_structure` VALUES ('652', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27101 INSERT INTO `marc_subfield_structure` VALUES ('652', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27102 INSERT INTO `marc_subfield_structure` VALUES ('653', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27103 INSERT INTO `marc_subfield_structure` VALUES ('653', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27104 INSERT INTO `marc_subfield_structure` VALUES ('653', 'a', 'Uncontrolled term', 'Uncontrolled term', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'KT', '', '');
27105 INSERT INTO `marc_subfield_structure` VALUES ('654', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27106 INSERT INTO `marc_subfield_structure` VALUES ('654', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27107 INSERT INTO `marc_subfield_structure` VALUES ('654', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27108 INSERT INTO `marc_subfield_structure` VALUES ('654', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27109 INSERT INTO `marc_subfield_structure` VALUES ('654', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27110 INSERT INTO `marc_subfield_structure` VALUES ('654', 'a', 'Focus term', 'Focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27111 INSERT INTO `marc_subfield_structure` VALUES ('654', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27112 INSERT INTO `marc_subfield_structure` VALUES ('654', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27113 INSERT INTO `marc_subfield_structure` VALUES ('654', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27114 INSERT INTO `marc_subfield_structure` VALUES ('654', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27115 INSERT INTO `marc_subfield_structure` VALUES ('654', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27116 INSERT INTO `marc_subfield_structure` VALUES ('654', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27117 INSERT INTO `marc_subfield_structure` VALUES ('654', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27118 INSERT INTO `marc_subfield_structure` VALUES ('655', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27119 INSERT INTO `marc_subfield_structure` VALUES ('655', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27120 INSERT INTO `marc_subfield_structure` VALUES ('655', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27121 INSERT INTO `marc_subfield_structure` VALUES ('655', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27122 INSERT INTO `marc_subfield_structure` VALUES ('655', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27123 INSERT INTO `marc_subfield_structure` VALUES ('655', 'a', 'Genre/form data or focus term', 'Genre/form data or focus term', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27124 INSERT INTO `marc_subfield_structure` VALUES ('655', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27125 INSERT INTO `marc_subfield_structure` VALUES ('655', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27126 INSERT INTO `marc_subfield_structure` VALUES ('655', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27127 INSERT INTO `marc_subfield_structure` VALUES ('655', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27128 INSERT INTO `marc_subfield_structure` VALUES ('655', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27129 INSERT INTO `marc_subfield_structure` VALUES ('655', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27130 INSERT INTO `marc_subfield_structure` VALUES ('656', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27131 INSERT INTO `marc_subfield_structure` VALUES ('656', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27132 INSERT INTO `marc_subfield_structure` VALUES ('656', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27133 INSERT INTO `marc_subfield_structure` VALUES ('656', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27134 INSERT INTO `marc_subfield_structure` VALUES ('656', 'a', 'Occupation', 'Occupation', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27135 INSERT INTO `marc_subfield_structure` VALUES ('656', 'k', 'Form', 'Form', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27136 INSERT INTO `marc_subfield_structure` VALUES ('656', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27137 INSERT INTO `marc_subfield_structure` VALUES ('656', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27138 INSERT INTO `marc_subfield_structure` VALUES ('656', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27139 INSERT INTO `marc_subfield_structure` VALUES ('656', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27140 INSERT INTO `marc_subfield_structure` VALUES ('657', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27141 INSERT INTO `marc_subfield_structure` VALUES ('657', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27142 INSERT INTO `marc_subfield_structure` VALUES ('657', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27143 INSERT INTO `marc_subfield_structure` VALUES ('657', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27144 INSERT INTO `marc_subfield_structure` VALUES ('657', 'a', 'Function', 'Function', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27145 INSERT INTO `marc_subfield_structure` VALUES ('657', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27146 INSERT INTO `marc_subfield_structure` VALUES ('657', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27147 INSERT INTO `marc_subfield_structure` VALUES ('657', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27148 INSERT INTO `marc_subfield_structure` VALUES ('657', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27149 INSERT INTO `marc_subfield_structure` VALUES ('658', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27150 INSERT INTO `marc_subfield_structure` VALUES ('658', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27151 INSERT INTO `marc_subfield_structure` VALUES ('658', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27152 INSERT INTO `marc_subfield_structure` VALUES ('658', 'a', 'Main curriculum objective', 'Main curriculum objective', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27153 INSERT INTO `marc_subfield_structure` VALUES ('658', 'b', 'Subordinate curriculum objective', 'Subordinate curriculum objective', 1, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27154 INSERT INTO `marc_subfield_structure` VALUES ('658', 'c', 'Curriculum code', 'Curriculum code', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27155 INSERT INTO `marc_subfield_structure` VALUES ('658', 'd', 'Correlation factor', 'Correlation factor', 0, 0, '', 6, '', '', '', NULL, -1, 'KT', '', '');
27156 INSERT INTO `marc_subfield_structure` VALUES ('662', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27157 INSERT INTO `marc_subfield_structure` VALUES ('662', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27158 INSERT INTO `marc_subfield_structure` VALUES ('662', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27159 INSERT INTO `marc_subfield_structure` VALUES ('662', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27160 INSERT INTO `marc_subfield_structure` VALUES ('662', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27161 INSERT INTO `marc_subfield_structure` VALUES ('662', 'a', 'Country or larger entity', 'Country or larger entity', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27162 INSERT INTO `marc_subfield_structure` VALUES ('662', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27163 INSERT INTO `marc_subfield_structure` VALUES ('662', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27164 INSERT INTO `marc_subfield_structure` VALUES ('662', 'd', 'City', 'City', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27165 INSERT INTO `marc_subfield_structure` VALUES ('662', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27166 INSERT INTO `marc_subfield_structure` VALUES ('662', 'f', 'City subsection', 'City subsection', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27167 INSERT INTO `marc_subfield_structure` VALUES ('662', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27168 INSERT INTO `marc_subfield_structure` VALUES ('662', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27169 INSERT INTO `marc_subfield_structure` VALUES ('690', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'KT', '', '');
27170 INSERT INTO `marc_subfield_structure` VALUES ('690', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, -6, 'KT', '', '');
27171 INSERT INTO `marc_subfield_structure` VALUES ('690', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'KT', '', '');
27172 INSERT INTO `marc_subfield_structure` VALUES ('690', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'KT', '', '');
27173 INSERT INTO `marc_subfield_structure` VALUES ('690', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'KT', '', '');
27174 INSERT INTO `marc_subfield_structure` VALUES ('690', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
27175 INSERT INTO `marc_subfield_structure` VALUES ('690', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'KT', '', '');
27176 INSERT INTO `marc_subfield_structure` VALUES ('690', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'KT', '', '');
27177 INSERT INTO `marc_subfield_structure` VALUES ('690', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'KT', '', '');
27178 INSERT INTO `marc_subfield_structure` VALUES ('690', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -6, 'KT', '', '');
27179 INSERT INTO `marc_subfield_structure` VALUES ('690', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -6, 'KT', '', '');
27180 INSERT INTO `marc_subfield_structure` VALUES ('690', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'KT', '', '');
27181 INSERT INTO `marc_subfield_structure` VALUES ('690', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'KT', '', '');
27182 INSERT INTO `marc_subfield_structure` VALUES ('690', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'KT', '', '');
27183 INSERT INTO `marc_subfield_structure` VALUES ('690', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'KT', '', '');
27184 INSERT INTO `marc_subfield_structure` VALUES ('691', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'KT', '', '');
27185 INSERT INTO `marc_subfield_structure` VALUES ('691', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27186 INSERT INTO `marc_subfield_structure` VALUES ('691', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27187 INSERT INTO `marc_subfield_structure` VALUES ('691', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27188 INSERT INTO `marc_subfield_structure` VALUES ('691', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27189 INSERT INTO `marc_subfield_structure` VALUES ('691', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
27190 INSERT INTO `marc_subfield_structure` VALUES ('691', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27191 INSERT INTO `marc_subfield_structure` VALUES ('691', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27192 INSERT INTO `marc_subfield_structure` VALUES ('691', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27193 INSERT INTO `marc_subfield_structure` VALUES ('691', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27194 INSERT INTO `marc_subfield_structure` VALUES ('691', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27195 INSERT INTO `marc_subfield_structure` VALUES ('691', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27196 INSERT INTO `marc_subfield_structure` VALUES ('696', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'KT', '', '');
27197 INSERT INTO `marc_subfield_structure` VALUES ('696', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27198 INSERT INTO `marc_subfield_structure` VALUES ('696', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27199 INSERT INTO `marc_subfield_structure` VALUES ('696', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27200 INSERT INTO `marc_subfield_structure` VALUES ('696', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27201 INSERT INTO `marc_subfield_structure` VALUES ('696', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27202 INSERT INTO `marc_subfield_structure` VALUES ('696', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
27203 INSERT INTO `marc_subfield_structure` VALUES ('696', 'a', 'Personal name', 'Personal name', 0, 0, '', 3, '', '', '', NULL, -6, 'KT', '', '');
27204 INSERT INTO `marc_subfield_structure` VALUES ('696', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27205 INSERT INTO `marc_subfield_structure` VALUES ('696', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27206 INSERT INTO `marc_subfield_structure` VALUES ('696', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27207 INSERT INTO `marc_subfield_structure` VALUES ('696', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27208 INSERT INTO `marc_subfield_structure` VALUES ('696', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27209 INSERT INTO `marc_subfield_structure` VALUES ('696', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27210 INSERT INTO `marc_subfield_structure` VALUES ('696', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27211 INSERT INTO `marc_subfield_structure` VALUES ('696', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27212 INSERT INTO `marc_subfield_structure` VALUES ('696', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27213 INSERT INTO `marc_subfield_structure` VALUES ('696', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27214 INSERT INTO `marc_subfield_structure` VALUES ('696', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27215 INSERT INTO `marc_subfield_structure` VALUES ('696', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27216 INSERT INTO `marc_subfield_structure` VALUES ('696', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27217 INSERT INTO `marc_subfield_structure` VALUES ('696', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27218 INSERT INTO `marc_subfield_structure` VALUES ('696', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27219 INSERT INTO `marc_subfield_structure` VALUES ('696', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27220 INSERT INTO `marc_subfield_structure` VALUES ('696', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27221 INSERT INTO `marc_subfield_structure` VALUES ('696', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27222 INSERT INTO `marc_subfield_structure` VALUES ('696', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27223 INSERT INTO `marc_subfield_structure` VALUES ('696', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27224 INSERT INTO `marc_subfield_structure` VALUES ('696', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27225 INSERT INTO `marc_subfield_structure` VALUES ('696', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27226 INSERT INTO `marc_subfield_structure` VALUES ('696', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27227 INSERT INTO `marc_subfield_structure` VALUES ('697', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'KT', '', '');
27228 INSERT INTO `marc_subfield_structure` VALUES ('697', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27229 INSERT INTO `marc_subfield_structure` VALUES ('697', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27230 INSERT INTO `marc_subfield_structure` VALUES ('697', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27231 INSERT INTO `marc_subfield_structure` VALUES ('697', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27232 INSERT INTO `marc_subfield_structure` VALUES ('697', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27233 INSERT INTO `marc_subfield_structure` VALUES ('697', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
27234 INSERT INTO `marc_subfield_structure` VALUES ('697', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27235 INSERT INTO `marc_subfield_structure` VALUES ('697', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27236 INSERT INTO `marc_subfield_structure` VALUES ('697', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27237 INSERT INTO `marc_subfield_structure` VALUES ('697', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27238 INSERT INTO `marc_subfield_structure` VALUES ('697', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27239 INSERT INTO `marc_subfield_structure` VALUES ('697', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27240 INSERT INTO `marc_subfield_structure` VALUES ('697', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27241 INSERT INTO `marc_subfield_structure` VALUES ('697', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27242 INSERT INTO `marc_subfield_structure` VALUES ('697', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27243 INSERT INTO `marc_subfield_structure` VALUES ('697', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27244 INSERT INTO `marc_subfield_structure` VALUES ('697', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27245 INSERT INTO `marc_subfield_structure` VALUES ('697', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27246 INSERT INTO `marc_subfield_structure` VALUES ('697', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27247 INSERT INTO `marc_subfield_structure` VALUES ('697', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27248 INSERT INTO `marc_subfield_structure` VALUES ('697', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27249 INSERT INTO `marc_subfield_structure` VALUES ('697', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27250 INSERT INTO `marc_subfield_structure` VALUES ('697', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27251 INSERT INTO `marc_subfield_structure` VALUES ('697', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27252 INSERT INTO `marc_subfield_structure` VALUES ('697', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27253 INSERT INTO `marc_subfield_structure` VALUES ('697', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27254 INSERT INTO `marc_subfield_structure` VALUES ('697', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27255 INSERT INTO `marc_subfield_structure` VALUES ('697', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
27256 INSERT INTO `marc_subfield_structure` VALUES ('698', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'KT', '', '');
27257 INSERT INTO `marc_subfield_structure` VALUES ('698', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27258 INSERT INTO `marc_subfield_structure` VALUES ('698', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27259 INSERT INTO `marc_subfield_structure` VALUES ('698', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27260 INSERT INTO `marc_subfield_structure` VALUES ('698', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27261 INSERT INTO `marc_subfield_structure` VALUES ('698', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27262 INSERT INTO `marc_subfield_structure` VALUES ('698', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
27263 INSERT INTO `marc_subfield_structure` VALUES ('698', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27264 INSERT INTO `marc_subfield_structure` VALUES ('698', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'KT', '', '');
27265 INSERT INTO `marc_subfield_structure` VALUES ('698', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27266 INSERT INTO `marc_subfield_structure` VALUES ('698', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27267 INSERT INTO `marc_subfield_structure` VALUES ('698', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27268 INSERT INTO `marc_subfield_structure` VALUES ('698', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27269 INSERT INTO `marc_subfield_structure` VALUES ('698', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27270 INSERT INTO `marc_subfield_structure` VALUES ('698', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27271 INSERT INTO `marc_subfield_structure` VALUES ('698', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27272 INSERT INTO `marc_subfield_structure` VALUES ('698', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27273 INSERT INTO `marc_subfield_structure` VALUES ('698', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27274 INSERT INTO `marc_subfield_structure` VALUES ('698', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27275 INSERT INTO `marc_subfield_structure` VALUES ('698', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27276 INSERT INTO `marc_subfield_structure` VALUES ('698', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27277 INSERT INTO `marc_subfield_structure` VALUES ('698', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27278 INSERT INTO `marc_subfield_structure` VALUES ('698', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27279 INSERT INTO `marc_subfield_structure` VALUES ('698', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27280 INSERT INTO `marc_subfield_structure` VALUES ('698', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27281 INSERT INTO `marc_subfield_structure` VALUES ('698', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27282 INSERT INTO `marc_subfield_structure` VALUES ('698', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27283 INSERT INTO `marc_subfield_structure` VALUES ('699', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'KT', '', '');
27284 INSERT INTO `marc_subfield_structure` VALUES ('699', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27285 INSERT INTO `marc_subfield_structure` VALUES ('699', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27286 INSERT INTO `marc_subfield_structure` VALUES ('699', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27287 INSERT INTO `marc_subfield_structure` VALUES ('699', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27288 INSERT INTO `marc_subfield_structure` VALUES ('699', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'KT', '', '');
27289 INSERT INTO `marc_subfield_structure` VALUES ('699', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27290 INSERT INTO `marc_subfield_structure` VALUES ('699', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27291 INSERT INTO `marc_subfield_structure` VALUES ('699', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27292 INSERT INTO `marc_subfield_structure` VALUES ('699', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27293 INSERT INTO `marc_subfield_structure` VALUES ('699', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27294 INSERT INTO `marc_subfield_structure` VALUES ('699', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27295 INSERT INTO `marc_subfield_structure` VALUES ('699', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27296 INSERT INTO `marc_subfield_structure` VALUES ('699', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27297 INSERT INTO `marc_subfield_structure` VALUES ('699', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27298 INSERT INTO `marc_subfield_structure` VALUES ('699', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27299 INSERT INTO `marc_subfield_structure` VALUES ('699', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27300 INSERT INTO `marc_subfield_structure` VALUES ('699', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27301 INSERT INTO `marc_subfield_structure` VALUES ('699', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27302 INSERT INTO `marc_subfield_structure` VALUES ('699', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27303 INSERT INTO `marc_subfield_structure` VALUES ('699', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27304 INSERT INTO `marc_subfield_structure` VALUES ('699', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27305 INSERT INTO `marc_subfield_structure` VALUES ('699', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'KT', '', '');
27306 INSERT INTO `marc_subfield_structure` VALUES ('700', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27307 INSERT INTO `marc_subfield_structure` VALUES ('700', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27308 INSERT INTO `marc_subfield_structure` VALUES ('700', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27309 INSERT INTO `marc_subfield_structure` VALUES ('700', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27310 INSERT INTO `marc_subfield_structure` VALUES ('700', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27311 INSERT INTO `marc_subfield_structure` VALUES ('700', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'KT', '', '');
27312 INSERT INTO `marc_subfield_structure` VALUES ('700', 'a', 'Personal name', 'Personal name', 0, 0, 'additionalauthors.author', 7, '', '', '', NULL, -1, 'KT', '', '');
27313 INSERT INTO `marc_subfield_structure` VALUES ('700', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -1, 'KT', '', '');
27314 INSERT INTO `marc_subfield_structure` VALUES ('700', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -1, 'KT', '', '');
27315 INSERT INTO `marc_subfield_structure` VALUES ('700', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -1, 'KT', '', '');
27316 INSERT INTO `marc_subfield_structure` VALUES ('700', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'KT', '', '');
27317 INSERT INTO `marc_subfield_structure` VALUES ('700', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27318 INSERT INTO `marc_subfield_structure` VALUES ('700', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27319 INSERT INTO `marc_subfield_structure` VALUES ('700', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27320 INSERT INTO `marc_subfield_structure` VALUES ('700', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27321 INSERT INTO `marc_subfield_structure` VALUES ('700', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27322 INSERT INTO `marc_subfield_structure` VALUES ('700', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27323 INSERT INTO `marc_subfield_structure` VALUES ('700', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27324 INSERT INTO `marc_subfield_structure` VALUES ('700', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27325 INSERT INTO `marc_subfield_structure` VALUES ('700', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27326 INSERT INTO `marc_subfield_structure` VALUES ('700', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27327 INSERT INTO `marc_subfield_structure` VALUES ('700', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -1, 'KT', '', '');
27328 INSERT INTO `marc_subfield_structure` VALUES ('700', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27329 INSERT INTO `marc_subfield_structure` VALUES ('700', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27330 INSERT INTO `marc_subfield_structure` VALUES ('700', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27331 INSERT INTO `marc_subfield_structure` VALUES ('700', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27332 INSERT INTO `marc_subfield_structure` VALUES ('700', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27333 INSERT INTO `marc_subfield_structure` VALUES ('705', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27334 INSERT INTO `marc_subfield_structure` VALUES ('705', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27335 INSERT INTO `marc_subfield_structure` VALUES ('705', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27336 INSERT INTO `marc_subfield_structure` VALUES ('705', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27337 INSERT INTO `marc_subfield_structure` VALUES ('705', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27338 INSERT INTO `marc_subfield_structure` VALUES ('705', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27339 INSERT INTO `marc_subfield_structure` VALUES ('705', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27340 INSERT INTO `marc_subfield_structure` VALUES ('705', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27341 INSERT INTO `marc_subfield_structure` VALUES ('705', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27342 INSERT INTO `marc_subfield_structure` VALUES ('705', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27343 INSERT INTO `marc_subfield_structure` VALUES ('705', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27344 INSERT INTO `marc_subfield_structure` VALUES ('705', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27345 INSERT INTO `marc_subfield_structure` VALUES ('705', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27346 INSERT INTO `marc_subfield_structure` VALUES ('705', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27347 INSERT INTO `marc_subfield_structure` VALUES ('705', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27348 INSERT INTO `marc_subfield_structure` VALUES ('705', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27349 INSERT INTO `marc_subfield_structure` VALUES ('705', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27350 INSERT INTO `marc_subfield_structure` VALUES ('710', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27351 INSERT INTO `marc_subfield_structure` VALUES ('710', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27352 INSERT INTO `marc_subfield_structure` VALUES ('710', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27353 INSERT INTO `marc_subfield_structure` VALUES ('710', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27354 INSERT INTO `marc_subfield_structure` VALUES ('710', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27355 INSERT INTO `marc_subfield_structure` VALUES ('710', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'KT', '', '');
27356 INSERT INTO `marc_subfield_structure` VALUES ('710', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -1, 'KT', '', '');
27357 INSERT INTO `marc_subfield_structure` VALUES ('710', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -1, 'KT', '', '');
27358 INSERT INTO `marc_subfield_structure` VALUES ('710', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -1, 'KT', '', '');
27359 INSERT INTO `marc_subfield_structure` VALUES ('710', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -1, 'KT', '', '');
27360 INSERT INTO `marc_subfield_structure` VALUES ('710', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'KT', '', '');
27361 INSERT INTO `marc_subfield_structure` VALUES ('710', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27362 INSERT INTO `marc_subfield_structure` VALUES ('710', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27363 INSERT INTO `marc_subfield_structure` VALUES ('710', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27364 INSERT INTO `marc_subfield_structure` VALUES ('710', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27365 INSERT INTO `marc_subfield_structure` VALUES ('710', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27366 INSERT INTO `marc_subfield_structure` VALUES ('710', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27367 INSERT INTO `marc_subfield_structure` VALUES ('710', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27368 INSERT INTO `marc_subfield_structure` VALUES ('710', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27369 INSERT INTO `marc_subfield_structure` VALUES ('710', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27370 INSERT INTO `marc_subfield_structure` VALUES ('710', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27371 INSERT INTO `marc_subfield_structure` VALUES ('710', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27372 INSERT INTO `marc_subfield_structure` VALUES ('710', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27373 INSERT INTO `marc_subfield_structure` VALUES ('710', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27374 INSERT INTO `marc_subfield_structure` VALUES ('710', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27375 INSERT INTO `marc_subfield_structure` VALUES ('711', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27376 INSERT INTO `marc_subfield_structure` VALUES ('711', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27377 INSERT INTO `marc_subfield_structure` VALUES ('711', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27378 INSERT INTO `marc_subfield_structure` VALUES ('711', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27379 INSERT INTO `marc_subfield_structure` VALUES ('711', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27380 INSERT INTO `marc_subfield_structure` VALUES ('711', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'KT', '', '');
27381 INSERT INTO `marc_subfield_structure` VALUES ('711', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'KT', '', '');
27382 INSERT INTO `marc_subfield_structure` VALUES ('711', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27383 INSERT INTO `marc_subfield_structure` VALUES ('711', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'KT', '', '');
27384 INSERT INTO `marc_subfield_structure` VALUES ('711', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'KT', '', '');
27385 INSERT INTO `marc_subfield_structure` VALUES ('711', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'KT', '', '');
27386 INSERT INTO `marc_subfield_structure` VALUES ('711', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27387 INSERT INTO `marc_subfield_structure` VALUES ('711', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27388 INSERT INTO `marc_subfield_structure` VALUES ('711', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27389 INSERT INTO `marc_subfield_structure` VALUES ('711', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27390 INSERT INTO `marc_subfield_structure` VALUES ('711', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27391 INSERT INTO `marc_subfield_structure` VALUES ('711', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27392 INSERT INTO `marc_subfield_structure` VALUES ('711', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27393 INSERT INTO `marc_subfield_structure` VALUES ('711', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27394 INSERT INTO `marc_subfield_structure` VALUES ('711', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27395 INSERT INTO `marc_subfield_structure` VALUES ('711', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27396 INSERT INTO `marc_subfield_structure` VALUES ('711', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27397 INSERT INTO `marc_subfield_structure` VALUES ('711', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27398 INSERT INTO `marc_subfield_structure` VALUES ('715', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'KT', '', '');
27399 INSERT INTO `marc_subfield_structure` VALUES ('715', 'a', 'Corporate name or jurisdiction name', 'Corporate name or jurisdiction name', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27400 INSERT INTO `marc_subfield_structure` VALUES ('715', 'b', 'Subordinate unit', 'Subordinate unit', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27401 INSERT INTO `marc_subfield_structure` VALUES ('715', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27402 INSERT INTO `marc_subfield_structure` VALUES ('715', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27403 INSERT INTO `marc_subfield_structure` VALUES ('715', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27404 INSERT INTO `marc_subfield_structure` VALUES ('715', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27405 INSERT INTO `marc_subfield_structure` VALUES ('715', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27406 INSERT INTO `marc_subfield_structure` VALUES ('715', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27407 INSERT INTO `marc_subfield_structure` VALUES ('715', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27408 INSERT INTO `marc_subfield_structure` VALUES ('715', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27409 INSERT INTO `marc_subfield_structure` VALUES ('715', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27410 INSERT INTO `marc_subfield_structure` VALUES ('715', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27411 INSERT INTO `marc_subfield_structure` VALUES ('715', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27412 INSERT INTO `marc_subfield_structure` VALUES ('715', 'u', 'Nonprinting information', 'Nonprinting information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27413 INSERT INTO `marc_subfield_structure` VALUES ('720', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27414 INSERT INTO `marc_subfield_structure` VALUES ('720', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27415 INSERT INTO `marc_subfield_structure` VALUES ('720', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27416 INSERT INTO `marc_subfield_structure` VALUES ('720', 'a', 'Name', 'Name', 0, 0, '', 7, NULL, NULL, '', NULL, -1, 'KT', '', '');
27417 INSERT INTO `marc_subfield_structure` VALUES ('720', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'KT', '', '');
27418 INSERT INTO `marc_subfield_structure` VALUES ('730', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27419 INSERT INTO `marc_subfield_structure` VALUES ('730', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27420 INSERT INTO `marc_subfield_structure` VALUES ('730', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27421 INSERT INTO `marc_subfield_structure` VALUES ('730', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27422 INSERT INTO `marc_subfield_structure` VALUES ('730', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'KT', '', '');
27423 INSERT INTO `marc_subfield_structure` VALUES ('730', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27424 INSERT INTO `marc_subfield_structure` VALUES ('730', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27425 INSERT INTO `marc_subfield_structure` VALUES ('730', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27426 INSERT INTO `marc_subfield_structure` VALUES ('730', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27427 INSERT INTO `marc_subfield_structure` VALUES ('730', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27428 INSERT INTO `marc_subfield_structure` VALUES ('730', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27429 INSERT INTO `marc_subfield_structure` VALUES ('730', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27430 INSERT INTO `marc_subfield_structure` VALUES ('730', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27431 INSERT INTO `marc_subfield_structure` VALUES ('730', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27432 INSERT INTO `marc_subfield_structure` VALUES ('730', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27433 INSERT INTO `marc_subfield_structure` VALUES ('730', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27434 INSERT INTO `marc_subfield_structure` VALUES ('730', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27435 INSERT INTO `marc_subfield_structure` VALUES ('730', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27436 INSERT INTO `marc_subfield_structure` VALUES ('730', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27437 INSERT INTO `marc_subfield_structure` VALUES ('730', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27438 INSERT INTO `marc_subfield_structure` VALUES ('740', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27439 INSERT INTO `marc_subfield_structure` VALUES ('740', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27440 INSERT INTO `marc_subfield_structure` VALUES ('740', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27441 INSERT INTO `marc_subfield_structure` VALUES ('740', 'a', 'Uncontrolled related/analytical title', 'Uncontrolled related/analytical title', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27442 INSERT INTO `marc_subfield_structure` VALUES ('740', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27443 INSERT INTO `marc_subfield_structure` VALUES ('740', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27444 INSERT INTO `marc_subfield_structure` VALUES ('740', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27445 INSERT INTO `marc_subfield_structure` VALUES ('752', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27446 INSERT INTO `marc_subfield_structure` VALUES ('752', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27447 INSERT INTO `marc_subfield_structure` VALUES ('752', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27448 INSERT INTO `marc_subfield_structure` VALUES ('752', 'a', 'Country or larger entity', 'Country or larger entity', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27449 INSERT INTO `marc_subfield_structure` VALUES ('752', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27450 INSERT INTO `marc_subfield_structure` VALUES ('752', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27451 INSERT INTO `marc_subfield_structure` VALUES ('752', 'd', 'City', 'City', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27452 INSERT INTO `marc_subfield_structure` VALUES ('752', 'f', 'City subsection', 'City subsection', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27453 INSERT INTO `marc_subfield_structure` VALUES ('752', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27454 INSERT INTO `marc_subfield_structure` VALUES ('752', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27455 INSERT INTO `marc_subfield_structure` VALUES ('753', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27456 INSERT INTO `marc_subfield_structure` VALUES ('753', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27457 INSERT INTO `marc_subfield_structure` VALUES ('753', 'a', 'Make and model of machine', 'Make and model of machine', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27458 INSERT INTO `marc_subfield_structure` VALUES ('753', 'b', 'Programming language', 'Programming language', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27459 INSERT INTO `marc_subfield_structure` VALUES ('753', 'c', 'Operating system', 'Operating system', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27460 INSERT INTO `marc_subfield_structure` VALUES ('754', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27461 INSERT INTO `marc_subfield_structure` VALUES ('754', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27462 INSERT INTO `marc_subfield_structure` VALUES ('754', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27463 INSERT INTO `marc_subfield_structure` VALUES ('754', 'a', 'Taxonomic name', 'Taxonomic name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27464 INSERT INTO `marc_subfield_structure` VALUES ('754', 'c', 'Taxonomic category', 'Taxonomic category', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27465 INSERT INTO `marc_subfield_structure` VALUES ('754', 'd', 'Common or alternative name', 'Common or alternative name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27466 INSERT INTO `marc_subfield_structure` VALUES ('754', 'x', 'Non-public note', 'Non-public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27467 INSERT INTO `marc_subfield_structure` VALUES ('754', 'z', 'Public note', 'Public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27468 INSERT INTO `marc_subfield_structure` VALUES ('755', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27469 INSERT INTO `marc_subfield_structure` VALUES ('755', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27470 INSERT INTO `marc_subfield_structure` VALUES ('755', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27471 INSERT INTO `marc_subfield_structure` VALUES ('755', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27472 INSERT INTO `marc_subfield_structure` VALUES ('755', 'a', 'Access term', 'Access term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27473 INSERT INTO `marc_subfield_structure` VALUES ('755', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27474 INSERT INTO `marc_subfield_structure` VALUES ('755', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27475 INSERT INTO `marc_subfield_structure` VALUES ('755', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27476 INSERT INTO `marc_subfield_structure` VALUES ('760', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27477 INSERT INTO `marc_subfield_structure` VALUES ('760', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27478 INSERT INTO `marc_subfield_structure` VALUES ('760', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27479 INSERT INTO `marc_subfield_structure` VALUES ('760', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27480 INSERT INTO `marc_subfield_structure` VALUES ('760', 'b', 'Edition', 'Edition', 0, 0, NULL, -6, NULL, NULL, '', NULL, 0, 'KT', '', '');
27481 INSERT INTO `marc_subfield_structure` VALUES ('760', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27482 INSERT INTO `marc_subfield_structure` VALUES ('760', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27483 INSERT INTO `marc_subfield_structure` VALUES ('760', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27484 INSERT INTO `marc_subfield_structure` VALUES ('760', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27485 INSERT INTO `marc_subfield_structure` VALUES ('760', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27486 INSERT INTO `marc_subfield_structure` VALUES ('760', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27487 INSERT INTO `marc_subfield_structure` VALUES ('760', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27488 INSERT INTO `marc_subfield_structure` VALUES ('760', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27489 INSERT INTO `marc_subfield_structure` VALUES ('760', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27490 INSERT INTO `marc_subfield_structure` VALUES ('760', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27491 INSERT INTO `marc_subfield_structure` VALUES ('760', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27492 INSERT INTO `marc_subfield_structure` VALUES ('760', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27493 INSERT INTO `marc_subfield_structure` VALUES ('760', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27494 INSERT INTO `marc_subfield_structure` VALUES ('760', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27495 INSERT INTO `marc_subfield_structure` VALUES ('762', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27496 INSERT INTO `marc_subfield_structure` VALUES ('762', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27497 INSERT INTO `marc_subfield_structure` VALUES ('762', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27498 INSERT INTO `marc_subfield_structure` VALUES ('762', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27499 INSERT INTO `marc_subfield_structure` VALUES ('762', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27500 INSERT INTO `marc_subfield_structure` VALUES ('762', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27501 INSERT INTO `marc_subfield_structure` VALUES ('762', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27502 INSERT INTO `marc_subfield_structure` VALUES ('762', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27503 INSERT INTO `marc_subfield_structure` VALUES ('762', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27504 INSERT INTO `marc_subfield_structure` VALUES ('762', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27505 INSERT INTO `marc_subfield_structure` VALUES ('762', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27506 INSERT INTO `marc_subfield_structure` VALUES ('762', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27507 INSERT INTO `marc_subfield_structure` VALUES ('762', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27508 INSERT INTO `marc_subfield_structure` VALUES ('762', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27509 INSERT INTO `marc_subfield_structure` VALUES ('762', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27510 INSERT INTO `marc_subfield_structure` VALUES ('762', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27511 INSERT INTO `marc_subfield_structure` VALUES ('762', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27512 INSERT INTO `marc_subfield_structure` VALUES ('762', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27513 INSERT INTO `marc_subfield_structure` VALUES ('762', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27514 INSERT INTO `marc_subfield_structure` VALUES ('765', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27515 INSERT INTO `marc_subfield_structure` VALUES ('765', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27516 INSERT INTO `marc_subfield_structure` VALUES ('765', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27517 INSERT INTO `marc_subfield_structure` VALUES ('765', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27518 INSERT INTO `marc_subfield_structure` VALUES ('765', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27519 INSERT INTO `marc_subfield_structure` VALUES ('765', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27520 INSERT INTO `marc_subfield_structure` VALUES ('765', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27521 INSERT INTO `marc_subfield_structure` VALUES ('765', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27522 INSERT INTO `marc_subfield_structure` VALUES ('765', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27523 INSERT INTO `marc_subfield_structure` VALUES ('765', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27524 INSERT INTO `marc_subfield_structure` VALUES ('765', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27525 INSERT INTO `marc_subfield_structure` VALUES ('765', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27526 INSERT INTO `marc_subfield_structure` VALUES ('765', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27527 INSERT INTO `marc_subfield_structure` VALUES ('765', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27528 INSERT INTO `marc_subfield_structure` VALUES ('765', 'q', 'Parallel title (BK SE)  [OBSOLETE]', 'Parallel title (BK SE)  [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27529 INSERT INTO `marc_subfield_structure` VALUES ('765', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27530 INSERT INTO `marc_subfield_structure` VALUES ('765', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27531 INSERT INTO `marc_subfield_structure` VALUES ('765', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27532 INSERT INTO `marc_subfield_structure` VALUES ('765', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27533 INSERT INTO `marc_subfield_structure` VALUES ('765', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27534 INSERT INTO `marc_subfield_structure` VALUES ('765', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27535 INSERT INTO `marc_subfield_structure` VALUES ('765', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27536 INSERT INTO `marc_subfield_structure` VALUES ('765', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27537 INSERT INTO `marc_subfield_structure` VALUES ('767', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27538 INSERT INTO `marc_subfield_structure` VALUES ('767', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27539 INSERT INTO `marc_subfield_structure` VALUES ('767', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27540 INSERT INTO `marc_subfield_structure` VALUES ('767', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27541 INSERT INTO `marc_subfield_structure` VALUES ('767', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27542 INSERT INTO `marc_subfield_structure` VALUES ('767', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27543 INSERT INTO `marc_subfield_structure` VALUES ('767', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27544 INSERT INTO `marc_subfield_structure` VALUES ('767', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27545 INSERT INTO `marc_subfield_structure` VALUES ('767', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27546 INSERT INTO `marc_subfield_structure` VALUES ('767', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27547 INSERT INTO `marc_subfield_structure` VALUES ('767', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27548 INSERT INTO `marc_subfield_structure` VALUES ('767', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27549 INSERT INTO `marc_subfield_structure` VALUES ('767', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27550 INSERT INTO `marc_subfield_structure` VALUES ('767', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27551 INSERT INTO `marc_subfield_structure` VALUES ('767', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27552 INSERT INTO `marc_subfield_structure` VALUES ('767', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27553 INSERT INTO `marc_subfield_structure` VALUES ('767', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27554 INSERT INTO `marc_subfield_structure` VALUES ('767', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27555 INSERT INTO `marc_subfield_structure` VALUES ('767', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27556 INSERT INTO `marc_subfield_structure` VALUES ('767', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27557 INSERT INTO `marc_subfield_structure` VALUES ('767', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27558 INSERT INTO `marc_subfield_structure` VALUES ('767', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27559 INSERT INTO `marc_subfield_structure` VALUES ('767', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27560 INSERT INTO `marc_subfield_structure` VALUES ('770', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27561 INSERT INTO `marc_subfield_structure` VALUES ('770', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27562 INSERT INTO `marc_subfield_structure` VALUES ('770', '8', 'Field link and sequence number', 'Field link and sequence number ', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27563 INSERT INTO `marc_subfield_structure` VALUES ('770', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27564 INSERT INTO `marc_subfield_structure` VALUES ('770', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27565 INSERT INTO `marc_subfield_structure` VALUES ('770', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27566 INSERT INTO `marc_subfield_structure` VALUES ('770', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27567 INSERT INTO `marc_subfield_structure` VALUES ('770', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27568 INSERT INTO `marc_subfield_structure` VALUES ('770', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27569 INSERT INTO `marc_subfield_structure` VALUES ('770', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27570 INSERT INTO `marc_subfield_structure` VALUES ('770', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27571 INSERT INTO `marc_subfield_structure` VALUES ('770', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27572 INSERT INTO `marc_subfield_structure` VALUES ('770', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27573 INSERT INTO `marc_subfield_structure` VALUES ('770', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27574 INSERT INTO `marc_subfield_structure` VALUES ('770', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27575 INSERT INTO `marc_subfield_structure` VALUES ('770', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27576 INSERT INTO `marc_subfield_structure` VALUES ('770', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27577 INSERT INTO `marc_subfield_structure` VALUES ('770', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27578 INSERT INTO `marc_subfield_structure` VALUES ('770', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27579 INSERT INTO `marc_subfield_structure` VALUES ('770', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27580 INSERT INTO `marc_subfield_structure` VALUES ('770', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27581 INSERT INTO `marc_subfield_structure` VALUES ('770', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27582 INSERT INTO `marc_subfield_structure` VALUES ('770', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27583 INSERT INTO `marc_subfield_structure` VALUES ('772', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27584 INSERT INTO `marc_subfield_structure` VALUES ('772', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27585 INSERT INTO `marc_subfield_structure` VALUES ('772', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27586 INSERT INTO `marc_subfield_structure` VALUES ('772', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27587 INSERT INTO `marc_subfield_structure` VALUES ('772', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27588 INSERT INTO `marc_subfield_structure` VALUES ('772', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27589 INSERT INTO `marc_subfield_structure` VALUES ('772', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27590 INSERT INTO `marc_subfield_structure` VALUES ('772', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27591 INSERT INTO `marc_subfield_structure` VALUES ('772', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27592 INSERT INTO `marc_subfield_structure` VALUES ('772', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27593 INSERT INTO `marc_subfield_structure` VALUES ('772', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27594 INSERT INTO `marc_subfield_structure` VALUES ('772', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27595 INSERT INTO `marc_subfield_structure` VALUES ('772', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27596 INSERT INTO `marc_subfield_structure` VALUES ('772', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27597 INSERT INTO `marc_subfield_structure` VALUES ('772', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27598 INSERT INTO `marc_subfield_structure` VALUES ('772', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27599 INSERT INTO `marc_subfield_structure` VALUES ('772', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27600 INSERT INTO `marc_subfield_structure` VALUES ('772', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27601 INSERT INTO `marc_subfield_structure` VALUES ('772', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27602 INSERT INTO `marc_subfield_structure` VALUES ('772', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27603 INSERT INTO `marc_subfield_structure` VALUES ('772', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27604 INSERT INTO `marc_subfield_structure` VALUES ('772', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27605 INSERT INTO `marc_subfield_structure` VALUES ('772', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27606 INSERT INTO `marc_subfield_structure` VALUES ('773', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27607 INSERT INTO `marc_subfield_structure` VALUES ('773', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27608 INSERT INTO `marc_subfield_structure` VALUES ('773', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27609 INSERT INTO `marc_subfield_structure` VALUES ('773', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27610 INSERT INTO `marc_subfield_structure` VALUES ('773', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27611 INSERT INTO `marc_subfield_structure` VALUES ('773', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27612 INSERT INTO `marc_subfield_structure` VALUES ('773', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27613 INSERT INTO `marc_subfield_structure` VALUES ('773', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27614 INSERT INTO `marc_subfield_structure` VALUES ('773', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27615 INSERT INTO `marc_subfield_structure` VALUES ('773', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27616 INSERT INTO `marc_subfield_structure` VALUES ('773', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27617 INSERT INTO `marc_subfield_structure` VALUES ('773', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27618 INSERT INTO `marc_subfield_structure` VALUES ('773', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27619 INSERT INTO `marc_subfield_structure` VALUES ('773', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27620 INSERT INTO `marc_subfield_structure` VALUES ('773', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27621 INSERT INTO `marc_subfield_structure` VALUES ('773', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27622 INSERT INTO `marc_subfield_structure` VALUES ('773', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27623 INSERT INTO `marc_subfield_structure` VALUES ('773', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27624 INSERT INTO `marc_subfield_structure` VALUES ('773', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27625 INSERT INTO `marc_subfield_structure` VALUES ('773', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27626 INSERT INTO `marc_subfield_structure` VALUES ('773', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27627 INSERT INTO `marc_subfield_structure` VALUES ('773', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27628 INSERT INTO `marc_subfield_structure` VALUES ('773', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27629 INSERT INTO `marc_subfield_structure` VALUES ('774', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27630 INSERT INTO `marc_subfield_structure` VALUES ('774', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27631 INSERT INTO `marc_subfield_structure` VALUES ('774', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27632 INSERT INTO `marc_subfield_structure` VALUES ('774', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27633 INSERT INTO `marc_subfield_structure` VALUES ('774', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27634 INSERT INTO `marc_subfield_structure` VALUES ('774', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27635 INSERT INTO `marc_subfield_structure` VALUES ('774', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27636 INSERT INTO `marc_subfield_structure` VALUES ('774', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27637 INSERT INTO `marc_subfield_structure` VALUES ('774', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27638 INSERT INTO `marc_subfield_structure` VALUES ('774', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27639 INSERT INTO `marc_subfield_structure` VALUES ('774', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27640 INSERT INTO `marc_subfield_structure` VALUES ('774', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27641 INSERT INTO `marc_subfield_structure` VALUES ('774', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27642 INSERT INTO `marc_subfield_structure` VALUES ('774', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27643 INSERT INTO `marc_subfield_structure` VALUES ('774', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27644 INSERT INTO `marc_subfield_structure` VALUES ('774', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27645 INSERT INTO `marc_subfield_structure` VALUES ('774', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27646 INSERT INTO `marc_subfield_structure` VALUES ('774', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27647 INSERT INTO `marc_subfield_structure` VALUES ('774', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27648 INSERT INTO `marc_subfield_structure` VALUES ('774', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27649 INSERT INTO `marc_subfield_structure` VALUES ('774', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27650 INSERT INTO `marc_subfield_structure` VALUES ('774', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27651 INSERT INTO `marc_subfield_structure` VALUES ('775', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27652 INSERT INTO `marc_subfield_structure` VALUES ('775', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27653 INSERT INTO `marc_subfield_structure` VALUES ('775', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27654 INSERT INTO `marc_subfield_structure` VALUES ('775', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27655 INSERT INTO `marc_subfield_structure` VALUES ('775', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27656 INSERT INTO `marc_subfield_structure` VALUES ('775', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27657 INSERT INTO `marc_subfield_structure` VALUES ('775', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27658 INSERT INTO `marc_subfield_structure` VALUES ('775', 'e', 'Language code', 'Language code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27659 INSERT INTO `marc_subfield_structure` VALUES ('775', 'f', 'Country code', 'Country code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27660 INSERT INTO `marc_subfield_structure` VALUES ('775', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27661 INSERT INTO `marc_subfield_structure` VALUES ('775', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27662 INSERT INTO `marc_subfield_structure` VALUES ('775', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27663 INSERT INTO `marc_subfield_structure` VALUES ('775', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27664 INSERT INTO `marc_subfield_structure` VALUES ('775', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27665 INSERT INTO `marc_subfield_structure` VALUES ('775', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27666 INSERT INTO `marc_subfield_structure` VALUES ('775', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27667 INSERT INTO `marc_subfield_structure` VALUES ('775', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27668 INSERT INTO `marc_subfield_structure` VALUES ('775', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27669 INSERT INTO `marc_subfield_structure` VALUES ('775', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27670 INSERT INTO `marc_subfield_structure` VALUES ('775', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27671 INSERT INTO `marc_subfield_structure` VALUES ('775', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27672 INSERT INTO `marc_subfield_structure` VALUES ('775', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27673 INSERT INTO `marc_subfield_structure` VALUES ('775', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27674 INSERT INTO `marc_subfield_structure` VALUES ('775', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27675 INSERT INTO `marc_subfield_structure` VALUES ('775', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27676 INSERT INTO `marc_subfield_structure` VALUES ('776', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27677 INSERT INTO `marc_subfield_structure` VALUES ('776', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27678 INSERT INTO `marc_subfield_structure` VALUES ('776', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27679 INSERT INTO `marc_subfield_structure` VALUES ('776', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27680 INSERT INTO `marc_subfield_structure` VALUES ('776', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27681 INSERT INTO `marc_subfield_structure` VALUES ('776', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27682 INSERT INTO `marc_subfield_structure` VALUES ('776', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27683 INSERT INTO `marc_subfield_structure` VALUES ('776', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27684 INSERT INTO `marc_subfield_structure` VALUES ('776', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27685 INSERT INTO `marc_subfield_structure` VALUES ('776', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27686 INSERT INTO `marc_subfield_structure` VALUES ('776', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27687 INSERT INTO `marc_subfield_structure` VALUES ('776', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27688 INSERT INTO `marc_subfield_structure` VALUES ('776', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27689 INSERT INTO `marc_subfield_structure` VALUES ('776', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27690 INSERT INTO `marc_subfield_structure` VALUES ('776', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27691 INSERT INTO `marc_subfield_structure` VALUES ('776', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27692 INSERT INTO `marc_subfield_structure` VALUES ('776', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27693 INSERT INTO `marc_subfield_structure` VALUES ('776', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27694 INSERT INTO `marc_subfield_structure` VALUES ('776', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27695 INSERT INTO `marc_subfield_structure` VALUES ('776', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27696 INSERT INTO `marc_subfield_structure` VALUES ('776', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27697 INSERT INTO `marc_subfield_structure` VALUES ('776', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27698 INSERT INTO `marc_subfield_structure` VALUES ('776', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27699 INSERT INTO `marc_subfield_structure` VALUES ('777', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27700 INSERT INTO `marc_subfield_structure` VALUES ('777', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27701 INSERT INTO `marc_subfield_structure` VALUES ('777', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27702 INSERT INTO `marc_subfield_structure` VALUES ('777', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27703 INSERT INTO `marc_subfield_structure` VALUES ('777', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27704 INSERT INTO `marc_subfield_structure` VALUES ('777', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27705 INSERT INTO `marc_subfield_structure` VALUES ('777', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27706 INSERT INTO `marc_subfield_structure` VALUES ('777', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27707 INSERT INTO `marc_subfield_structure` VALUES ('777', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27708 INSERT INTO `marc_subfield_structure` VALUES ('777', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27709 INSERT INTO `marc_subfield_structure` VALUES ('777', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27710 INSERT INTO `marc_subfield_structure` VALUES ('777', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27711 INSERT INTO `marc_subfield_structure` VALUES ('777', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27712 INSERT INTO `marc_subfield_structure` VALUES ('777', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27713 INSERT INTO `marc_subfield_structure` VALUES ('777', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27714 INSERT INTO `marc_subfield_structure` VALUES ('777', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27715 INSERT INTO `marc_subfield_structure` VALUES ('777', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27716 INSERT INTO `marc_subfield_structure` VALUES ('777', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27717 INSERT INTO `marc_subfield_structure` VALUES ('777', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27718 INSERT INTO `marc_subfield_structure` VALUES ('777', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27719 INSERT INTO `marc_subfield_structure` VALUES ('780', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27720 INSERT INTO `marc_subfield_structure` VALUES ('780', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27721 INSERT INTO `marc_subfield_structure` VALUES ('780', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27722 INSERT INTO `marc_subfield_structure` VALUES ('780', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27723 INSERT INTO `marc_subfield_structure` VALUES ('780', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27724 INSERT INTO `marc_subfield_structure` VALUES ('780', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27725 INSERT INTO `marc_subfield_structure` VALUES ('780', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27726 INSERT INTO `marc_subfield_structure` VALUES ('780', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27727 INSERT INTO `marc_subfield_structure` VALUES ('780', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27728 INSERT INTO `marc_subfield_structure` VALUES ('780', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27729 INSERT INTO `marc_subfield_structure` VALUES ('780', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27730 INSERT INTO `marc_subfield_structure` VALUES ('780', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27731 INSERT INTO `marc_subfield_structure` VALUES ('780', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27732 INSERT INTO `marc_subfield_structure` VALUES ('780', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27733 INSERT INTO `marc_subfield_structure` VALUES ('780', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27734 INSERT INTO `marc_subfield_structure` VALUES ('780', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27735 INSERT INTO `marc_subfield_structure` VALUES ('780', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27736 INSERT INTO `marc_subfield_structure` VALUES ('780', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27737 INSERT INTO `marc_subfield_structure` VALUES ('780', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27738 INSERT INTO `marc_subfield_structure` VALUES ('780', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27739 INSERT INTO `marc_subfield_structure` VALUES ('780', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27740 INSERT INTO `marc_subfield_structure` VALUES ('780', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27741 INSERT INTO `marc_subfield_structure` VALUES ('780', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27742 INSERT INTO `marc_subfield_structure` VALUES ('785', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27743 INSERT INTO `marc_subfield_structure` VALUES ('785', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27744 INSERT INTO `marc_subfield_structure` VALUES ('785', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27745 INSERT INTO `marc_subfield_structure` VALUES ('785', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27746 INSERT INTO `marc_subfield_structure` VALUES ('785', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27747 INSERT INTO `marc_subfield_structure` VALUES ('785', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27748 INSERT INTO `marc_subfield_structure` VALUES ('785', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27749 INSERT INTO `marc_subfield_structure` VALUES ('785', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27750 INSERT INTO `marc_subfield_structure` VALUES ('785', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27751 INSERT INTO `marc_subfield_structure` VALUES ('785', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27752 INSERT INTO `marc_subfield_structure` VALUES ('785', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27753 INSERT INTO `marc_subfield_structure` VALUES ('785', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27754 INSERT INTO `marc_subfield_structure` VALUES ('785', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27755 INSERT INTO `marc_subfield_structure` VALUES ('785', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27756 INSERT INTO `marc_subfield_structure` VALUES ('785', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27757 INSERT INTO `marc_subfield_structure` VALUES ('785', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27758 INSERT INTO `marc_subfield_structure` VALUES ('785', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27759 INSERT INTO `marc_subfield_structure` VALUES ('785', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27760 INSERT INTO `marc_subfield_structure` VALUES ('785', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27761 INSERT INTO `marc_subfield_structure` VALUES ('785', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27762 INSERT INTO `marc_subfield_structure` VALUES ('785', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27763 INSERT INTO `marc_subfield_structure` VALUES ('785', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27764 INSERT INTO `marc_subfield_structure` VALUES ('785', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27765 INSERT INTO `marc_subfield_structure` VALUES ('786', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27766 INSERT INTO `marc_subfield_structure` VALUES ('786', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27767 INSERT INTO `marc_subfield_structure` VALUES ('786', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27768 INSERT INTO `marc_subfield_structure` VALUES ('786', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27769 INSERT INTO `marc_subfield_structure` VALUES ('786', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27770 INSERT INTO `marc_subfield_structure` VALUES ('786', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27771 INSERT INTO `marc_subfield_structure` VALUES ('786', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27772 INSERT INTO `marc_subfield_structure` VALUES ('786', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27773 INSERT INTO `marc_subfield_structure` VALUES ('786', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27774 INSERT INTO `marc_subfield_structure` VALUES ('786', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27775 INSERT INTO `marc_subfield_structure` VALUES ('786', 'j', 'Period of content', 'Period of content', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27776 INSERT INTO `marc_subfield_structure` VALUES ('786', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27777 INSERT INTO `marc_subfield_structure` VALUES ('786', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27778 INSERT INTO `marc_subfield_structure` VALUES ('786', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27779 INSERT INTO `marc_subfield_structure` VALUES ('786', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27780 INSERT INTO `marc_subfield_structure` VALUES ('786', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27781 INSERT INTO `marc_subfield_structure` VALUES ('786', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27782 INSERT INTO `marc_subfield_structure` VALUES ('786', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27783 INSERT INTO `marc_subfield_structure` VALUES ('786', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27784 INSERT INTO `marc_subfield_structure` VALUES ('786', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27785 INSERT INTO `marc_subfield_structure` VALUES ('786', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27786 INSERT INTO `marc_subfield_structure` VALUES ('786', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27787 INSERT INTO `marc_subfield_structure` VALUES ('786', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27788 INSERT INTO `marc_subfield_structure` VALUES ('786', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27789 INSERT INTO `marc_subfield_structure` VALUES ('787', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27790 INSERT INTO `marc_subfield_structure` VALUES ('787', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27791 INSERT INTO `marc_subfield_structure` VALUES ('787', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27792 INSERT INTO `marc_subfield_structure` VALUES ('787', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27793 INSERT INTO `marc_subfield_structure` VALUES ('787', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27794 INSERT INTO `marc_subfield_structure` VALUES ('787', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27795 INSERT INTO `marc_subfield_structure` VALUES ('787', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27796 INSERT INTO `marc_subfield_structure` VALUES ('787', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27797 INSERT INTO `marc_subfield_structure` VALUES ('787', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27798 INSERT INTO `marc_subfield_structure` VALUES ('787', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27799 INSERT INTO `marc_subfield_structure` VALUES ('787', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27800 INSERT INTO `marc_subfield_structure` VALUES ('787', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27801 INSERT INTO `marc_subfield_structure` VALUES ('787', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27802 INSERT INTO `marc_subfield_structure` VALUES ('787', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27803 INSERT INTO `marc_subfield_structure` VALUES ('787', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27804 INSERT INTO `marc_subfield_structure` VALUES ('787', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27805 INSERT INTO `marc_subfield_structure` VALUES ('787', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27806 INSERT INTO `marc_subfield_structure` VALUES ('787', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27807 INSERT INTO `marc_subfield_structure` VALUES ('787', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27808 INSERT INTO `marc_subfield_structure` VALUES ('787', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27809 INSERT INTO `marc_subfield_structure` VALUES ('787', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27810 INSERT INTO `marc_subfield_structure` VALUES ('787', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27811 INSERT INTO `marc_subfield_structure` VALUES ('787', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27812 INSERT INTO `marc_subfield_structure` VALUES ('789', '%', '%', '%', 0, 0, '', 7, '', '', '', 0, -6, 'KT', '', '');
27813 INSERT INTO `marc_subfield_structure` VALUES ('789', '2', '2', '2', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27814 INSERT INTO `marc_subfield_structure` VALUES ('789', '3', '3', '3', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27815 INSERT INTO `marc_subfield_structure` VALUES ('789', '4', '4', '4', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27816 INSERT INTO `marc_subfield_structure` VALUES ('789', '5', '5', '5', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27817 INSERT INTO `marc_subfield_structure` VALUES ('789', '6', '6', '6', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27818 INSERT INTO `marc_subfield_structure` VALUES ('789', '7', '7', '7', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27819 INSERT INTO `marc_subfield_structure` VALUES ('789', '8', '8', '8', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27820 INSERT INTO `marc_subfield_structure` VALUES ('789', '9', '9', '9', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27821 INSERT INTO `marc_subfield_structure` VALUES ('789', 'a', 'a', 'a', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27822 INSERT INTO `marc_subfield_structure` VALUES ('789', 'b', 'b', 'b', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27823 INSERT INTO `marc_subfield_structure` VALUES ('789', 'c', 'c', 'c', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27824 INSERT INTO `marc_subfield_structure` VALUES ('789', 'd', 'd', 'd', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27825 INSERT INTO `marc_subfield_structure` VALUES ('789', 'e', 'e', 'e', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27826 INSERT INTO `marc_subfield_structure` VALUES ('789', 'f', 'f', 'f', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27827 INSERT INTO `marc_subfield_structure` VALUES ('789', 'g', 'g', 'g', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27828 INSERT INTO `marc_subfield_structure` VALUES ('789', 'h', 'h', 'h', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27829 INSERT INTO `marc_subfield_structure` VALUES ('789', 'i', 'i', 'i', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27830 INSERT INTO `marc_subfield_structure` VALUES ('789', 'j', 'j', 'j', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27831 INSERT INTO `marc_subfield_structure` VALUES ('789', 'k', 'k', 'k', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27832 INSERT INTO `marc_subfield_structure` VALUES ('789', 'l', 'l', 'l', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27833 INSERT INTO `marc_subfield_structure` VALUES ('789', 'm', 'm', 'm', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27834 INSERT INTO `marc_subfield_structure` VALUES ('789', 'n', 'n', 'n', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27835 INSERT INTO `marc_subfield_structure` VALUES ('789', 'o', 'o', 'o', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27836 INSERT INTO `marc_subfield_structure` VALUES ('789', 'p', 'p', 'p', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27837 INSERT INTO `marc_subfield_structure` VALUES ('789', 'q', 'q', 'q', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27838 INSERT INTO `marc_subfield_structure` VALUES ('789', 'r', 'r', 'r', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27839 INSERT INTO `marc_subfield_structure` VALUES ('789', 's', 's', 's', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27840 INSERT INTO `marc_subfield_structure` VALUES ('789', 't', 't', 't', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27841 INSERT INTO `marc_subfield_structure` VALUES ('789', 'u', 'u', 'u', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27842 INSERT INTO `marc_subfield_structure` VALUES ('789', 'v', 'v', 'v', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27843 INSERT INTO `marc_subfield_structure` VALUES ('789', 'w', 'w', 'w', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27844 INSERT INTO `marc_subfield_structure` VALUES ('789', 'x', 'x', 'x', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27845 INSERT INTO `marc_subfield_structure` VALUES ('789', 'y', 'y', 'y', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27846 INSERT INTO `marc_subfield_structure` VALUES ('789', 'z', 'z', 'z', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27847 INSERT INTO `marc_subfield_structure` VALUES ('796', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'KT', '', '');
27848 INSERT INTO `marc_subfield_structure` VALUES ('796', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27849 INSERT INTO `marc_subfield_structure` VALUES ('796', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27850 INSERT INTO `marc_subfield_structure` VALUES ('796', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27851 INSERT INTO `marc_subfield_structure` VALUES ('796', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27852 INSERT INTO `marc_subfield_structure` VALUES ('796', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27853 INSERT INTO `marc_subfield_structure` VALUES ('796', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'KT', '', '');
27854 INSERT INTO `marc_subfield_structure` VALUES ('796', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27855 INSERT INTO `marc_subfield_structure` VALUES ('796', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27856 INSERT INTO `marc_subfield_structure` VALUES ('796', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27857 INSERT INTO `marc_subfield_structure` VALUES ('796', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27858 INSERT INTO `marc_subfield_structure` VALUES ('796', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27859 INSERT INTO `marc_subfield_structure` VALUES ('796', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27860 INSERT INTO `marc_subfield_structure` VALUES ('796', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27861 INSERT INTO `marc_subfield_structure` VALUES ('796', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27862 INSERT INTO `marc_subfield_structure` VALUES ('796', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27863 INSERT INTO `marc_subfield_structure` VALUES ('796', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27864 INSERT INTO `marc_subfield_structure` VALUES ('796', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27865 INSERT INTO `marc_subfield_structure` VALUES ('796', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27866 INSERT INTO `marc_subfield_structure` VALUES ('796', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27867 INSERT INTO `marc_subfield_structure` VALUES ('796', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27868 INSERT INTO `marc_subfield_structure` VALUES ('796', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27869 INSERT INTO `marc_subfield_structure` VALUES ('796', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27870 INSERT INTO `marc_subfield_structure` VALUES ('796', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27871 INSERT INTO `marc_subfield_structure` VALUES ('796', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27872 INSERT INTO `marc_subfield_structure` VALUES ('796', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27873 INSERT INTO `marc_subfield_structure` VALUES ('796', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27874 INSERT INTO `marc_subfield_structure` VALUES ('796', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27875 INSERT INTO `marc_subfield_structure` VALUES ('797', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'KT', '', '');
27876 INSERT INTO `marc_subfield_structure` VALUES ('797', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27877 INSERT INTO `marc_subfield_structure` VALUES ('797', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27878 INSERT INTO `marc_subfield_structure` VALUES ('797', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27879 INSERT INTO `marc_subfield_structure` VALUES ('797', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27880 INSERT INTO `marc_subfield_structure` VALUES ('797', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27881 INSERT INTO `marc_subfield_structure` VALUES ('797', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'KT', '', '');
27882 INSERT INTO `marc_subfield_structure` VALUES ('797', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27883 INSERT INTO `marc_subfield_structure` VALUES ('797', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27884 INSERT INTO `marc_subfield_structure` VALUES ('797', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27885 INSERT INTO `marc_subfield_structure` VALUES ('797', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27886 INSERT INTO `marc_subfield_structure` VALUES ('797', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27887 INSERT INTO `marc_subfield_structure` VALUES ('797', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27888 INSERT INTO `marc_subfield_structure` VALUES ('797', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27889 INSERT INTO `marc_subfield_structure` VALUES ('797', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27890 INSERT INTO `marc_subfield_structure` VALUES ('797', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27891 INSERT INTO `marc_subfield_structure` VALUES ('797', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27892 INSERT INTO `marc_subfield_structure` VALUES ('797', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27893 INSERT INTO `marc_subfield_structure` VALUES ('797', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27894 INSERT INTO `marc_subfield_structure` VALUES ('797', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27895 INSERT INTO `marc_subfield_structure` VALUES ('797', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27896 INSERT INTO `marc_subfield_structure` VALUES ('797', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27897 INSERT INTO `marc_subfield_structure` VALUES ('797', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27898 INSERT INTO `marc_subfield_structure` VALUES ('797', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27899 INSERT INTO `marc_subfield_structure` VALUES ('797', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27900 INSERT INTO `marc_subfield_structure` VALUES ('797', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27901 INSERT INTO `marc_subfield_structure` VALUES ('798', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'KT', '', '');
27902 INSERT INTO `marc_subfield_structure` VALUES ('798', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27903 INSERT INTO `marc_subfield_structure` VALUES ('798', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27904 INSERT INTO `marc_subfield_structure` VALUES ('798', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27905 INSERT INTO `marc_subfield_structure` VALUES ('798', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27906 INSERT INTO `marc_subfield_structure` VALUES ('798', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27907 INSERT INTO `marc_subfield_structure` VALUES ('798', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'KT', '', '');
27908 INSERT INTO `marc_subfield_structure` VALUES ('798', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27909 INSERT INTO `marc_subfield_structure` VALUES ('798', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27910 INSERT INTO `marc_subfield_structure` VALUES ('798', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27911 INSERT INTO `marc_subfield_structure` VALUES ('798', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27912 INSERT INTO `marc_subfield_structure` VALUES ('798', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27913 INSERT INTO `marc_subfield_structure` VALUES ('798', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27914 INSERT INTO `marc_subfield_structure` VALUES ('798', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27915 INSERT INTO `marc_subfield_structure` VALUES ('798', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27916 INSERT INTO `marc_subfield_structure` VALUES ('798', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27917 INSERT INTO `marc_subfield_structure` VALUES ('798', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27918 INSERT INTO `marc_subfield_structure` VALUES ('798', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27919 INSERT INTO `marc_subfield_structure` VALUES ('798', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27920 INSERT INTO `marc_subfield_structure` VALUES ('798', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27921 INSERT INTO `marc_subfield_structure` VALUES ('798', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27922 INSERT INTO `marc_subfield_structure` VALUES ('798', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27923 INSERT INTO `marc_subfield_structure` VALUES ('798', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27924 INSERT INTO `marc_subfield_structure` VALUES ('798', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'KT', '', '');
27925 INSERT INTO `marc_subfield_structure` VALUES ('799', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'KT', '', '');
27926 INSERT INTO `marc_subfield_structure` VALUES ('799', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27927 INSERT INTO `marc_subfield_structure` VALUES ('799', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27928 INSERT INTO `marc_subfield_structure` VALUES ('799', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27929 INSERT INTO `marc_subfield_structure` VALUES ('799', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27930 INSERT INTO `marc_subfield_structure` VALUES ('799', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'KT', '', '');
27931 INSERT INTO `marc_subfield_structure` VALUES ('799', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27932 INSERT INTO `marc_subfield_structure` VALUES ('799', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27933 INSERT INTO `marc_subfield_structure` VALUES ('799', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27934 INSERT INTO `marc_subfield_structure` VALUES ('799', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27935 INSERT INTO `marc_subfield_structure` VALUES ('799', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27936 INSERT INTO `marc_subfield_structure` VALUES ('799', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27937 INSERT INTO `marc_subfield_structure` VALUES ('799', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27938 INSERT INTO `marc_subfield_structure` VALUES ('799', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27939 INSERT INTO `marc_subfield_structure` VALUES ('799', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27940 INSERT INTO `marc_subfield_structure` VALUES ('799', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27941 INSERT INTO `marc_subfield_structure` VALUES ('799', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27942 INSERT INTO `marc_subfield_structure` VALUES ('799', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27943 INSERT INTO `marc_subfield_structure` VALUES ('799', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27944 INSERT INTO `marc_subfield_structure` VALUES ('799', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27945 INSERT INTO `marc_subfield_structure` VALUES ('799', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'KT', '', '');
27946 INSERT INTO `marc_subfield_structure` VALUES ('800', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27947 INSERT INTO `marc_subfield_structure` VALUES ('800', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27948 INSERT INTO `marc_subfield_structure` VALUES ('800', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27949 INSERT INTO `marc_subfield_structure` VALUES ('800', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'KT', '', '');
27950 INSERT INTO `marc_subfield_structure` VALUES ('800', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27951 INSERT INTO `marc_subfield_structure` VALUES ('800', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27952 INSERT INTO `marc_subfield_structure` VALUES ('800', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27953 INSERT INTO `marc_subfield_structure` VALUES ('800', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27954 INSERT INTO `marc_subfield_structure` VALUES ('800', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27955 INSERT INTO `marc_subfield_structure` VALUES ('800', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27956 INSERT INTO `marc_subfield_structure` VALUES ('800', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27957 INSERT INTO `marc_subfield_structure` VALUES ('800', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27958 INSERT INTO `marc_subfield_structure` VALUES ('800', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27959 INSERT INTO `marc_subfield_structure` VALUES ('800', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27960 INSERT INTO `marc_subfield_structure` VALUES ('800', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27961 INSERT INTO `marc_subfield_structure` VALUES ('800', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27962 INSERT INTO `marc_subfield_structure` VALUES ('800', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27963 INSERT INTO `marc_subfield_structure` VALUES ('800', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27964 INSERT INTO `marc_subfield_structure` VALUES ('800', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27965 INSERT INTO `marc_subfield_structure` VALUES ('800', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27966 INSERT INTO `marc_subfield_structure` VALUES ('800', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27967 INSERT INTO `marc_subfield_structure` VALUES ('800', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27968 INSERT INTO `marc_subfield_structure` VALUES ('800', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27969 INSERT INTO `marc_subfield_structure` VALUES ('800', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27970 INSERT INTO `marc_subfield_structure` VALUES ('800', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27971 INSERT INTO `marc_subfield_structure` VALUES ('810', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27972 INSERT INTO `marc_subfield_structure` VALUES ('810', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27973 INSERT INTO `marc_subfield_structure` VALUES ('810', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27974 INSERT INTO `marc_subfield_structure` VALUES ('810', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'KT', '', '');
27975 INSERT INTO `marc_subfield_structure` VALUES ('810', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27976 INSERT INTO `marc_subfield_structure` VALUES ('810', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27977 INSERT INTO `marc_subfield_structure` VALUES ('810', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27978 INSERT INTO `marc_subfield_structure` VALUES ('810', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27979 INSERT INTO `marc_subfield_structure` VALUES ('810', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27980 INSERT INTO `marc_subfield_structure` VALUES ('810', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27981 INSERT INTO `marc_subfield_structure` VALUES ('810', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27982 INSERT INTO `marc_subfield_structure` VALUES ('810', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27983 INSERT INTO `marc_subfield_structure` VALUES ('810', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27984 INSERT INTO `marc_subfield_structure` VALUES ('810', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27985 INSERT INTO `marc_subfield_structure` VALUES ('810', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27986 INSERT INTO `marc_subfield_structure` VALUES ('810', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27987 INSERT INTO `marc_subfield_structure` VALUES ('810', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27988 INSERT INTO `marc_subfield_structure` VALUES ('810', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27989 INSERT INTO `marc_subfield_structure` VALUES ('810', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27990 INSERT INTO `marc_subfield_structure` VALUES ('810', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27991 INSERT INTO `marc_subfield_structure` VALUES ('810', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27992 INSERT INTO `marc_subfield_structure` VALUES ('810', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27993 INSERT INTO `marc_subfield_structure` VALUES ('810', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
27994 INSERT INTO `marc_subfield_structure` VALUES ('811', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
27995 INSERT INTO `marc_subfield_structure` VALUES ('811', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
27996 INSERT INTO `marc_subfield_structure` VALUES ('811', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
27997 INSERT INTO `marc_subfield_structure` VALUES ('811', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'KT', '', '');
27998 INSERT INTO `marc_subfield_structure` VALUES ('811', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
27999 INSERT INTO `marc_subfield_structure` VALUES ('811', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28000 INSERT INTO `marc_subfield_structure` VALUES ('811', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28001 INSERT INTO `marc_subfield_structure` VALUES ('811', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28002 INSERT INTO `marc_subfield_structure` VALUES ('811', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28003 INSERT INTO `marc_subfield_structure` VALUES ('811', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28004 INSERT INTO `marc_subfield_structure` VALUES ('811', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28005 INSERT INTO `marc_subfield_structure` VALUES ('811', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28006 INSERT INTO `marc_subfield_structure` VALUES ('811', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28007 INSERT INTO `marc_subfield_structure` VALUES ('811', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28008 INSERT INTO `marc_subfield_structure` VALUES ('811', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28009 INSERT INTO `marc_subfield_structure` VALUES ('811', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28010 INSERT INTO `marc_subfield_structure` VALUES ('811', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28011 INSERT INTO `marc_subfield_structure` VALUES ('811', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28012 INSERT INTO `marc_subfield_structure` VALUES ('811', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28013 INSERT INTO `marc_subfield_structure` VALUES ('811', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28014 INSERT INTO `marc_subfield_structure` VALUES ('811', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28015 INSERT INTO `marc_subfield_structure` VALUES ('830', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28016 INSERT INTO `marc_subfield_structure` VALUES ('830', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28017 INSERT INTO `marc_subfield_structure` VALUES ('830', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'KT', '', '');
28018 INSERT INTO `marc_subfield_structure` VALUES ('830', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28019 INSERT INTO `marc_subfield_structure` VALUES ('830', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28020 INSERT INTO `marc_subfield_structure` VALUES ('830', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28021 INSERT INTO `marc_subfield_structure` VALUES ('830', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28022 INSERT INTO `marc_subfield_structure` VALUES ('830', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28023 INSERT INTO `marc_subfield_structure` VALUES ('830', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28024 INSERT INTO `marc_subfield_structure` VALUES ('830', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28025 INSERT INTO `marc_subfield_structure` VALUES ('830', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28026 INSERT INTO `marc_subfield_structure` VALUES ('830', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28027 INSERT INTO `marc_subfield_structure` VALUES ('830', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28028 INSERT INTO `marc_subfield_structure` VALUES ('830', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28029 INSERT INTO `marc_subfield_structure` VALUES ('830', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28030 INSERT INTO `marc_subfield_structure` VALUES ('830', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28031 INSERT INTO `marc_subfield_structure` VALUES ('830', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28032 INSERT INTO `marc_subfield_structure` VALUES ('830', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28033 INSERT INTO `marc_subfield_structure` VALUES ('840', 'a', 'Title', 'Title', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28034 INSERT INTO `marc_subfield_structure` VALUES ('840', 'h', 'Medium', 'Medium', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28035 INSERT INTO `marc_subfield_structure` VALUES ('840', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28036 INSERT INTO `marc_subfield_structure` VALUES ('841', 'a', 'Type of record', 'Type of record', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28037 INSERT INTO `marc_subfield_structure` VALUES ('841', 'b', 'Fixed-length data elements', 'Fixed-length data elements', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28038 INSERT INTO `marc_subfield_structure` VALUES ('841', 'e', 'Encoding level', 'Encoding level', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28039 INSERT INTO `marc_subfield_structure` VALUES ('842', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28040 INSERT INTO `marc_subfield_structure` VALUES ('842', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28041 INSERT INTO `marc_subfield_structure` VALUES ('842', 'a', 'Textual physical form designator', 'Textual physical form designator', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28042 INSERT INTO `marc_subfield_structure` VALUES ('843', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28043 INSERT INTO `marc_subfield_structure` VALUES ('843', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28044 INSERT INTO `marc_subfield_structure` VALUES ('843', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28045 INSERT INTO `marc_subfield_structure` VALUES ('843', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28046 INSERT INTO `marc_subfield_structure` VALUES ('843', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28047 INSERT INTO `marc_subfield_structure` VALUES ('843', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28048 INSERT INTO `marc_subfield_structure` VALUES ('843', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28049 INSERT INTO `marc_subfield_structure` VALUES ('843', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28050 INSERT INTO `marc_subfield_structure` VALUES ('843', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28051 INSERT INTO `marc_subfield_structure` VALUES ('843', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28052 INSERT INTO `marc_subfield_structure` VALUES ('843', 'm', 'Dates of publication and/or sequential designation of issues reproduced', 'Dates of publication and/or sequential designation of issues reproduced', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28053 INSERT INTO `marc_subfield_structure` VALUES ('843', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28054 INSERT INTO `marc_subfield_structure` VALUES ('844', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28055 INSERT INTO `marc_subfield_structure` VALUES ('844', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28056 INSERT INTO `marc_subfield_structure` VALUES ('844', 'a', 'Name of unit', 'Name of unit', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28057 INSERT INTO `marc_subfield_structure` VALUES ('845', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28058 INSERT INTO `marc_subfield_structure` VALUES ('845', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28059 INSERT INTO `marc_subfield_structure` VALUES ('845', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28060 INSERT INTO `marc_subfield_structure` VALUES ('845', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28061 INSERT INTO `marc_subfield_structure` VALUES ('845', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28062 INSERT INTO `marc_subfield_structure` VALUES ('845', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28063 INSERT INTO `marc_subfield_structure` VALUES ('845', 'c', 'Authorization', 'Authorization', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28064 INSERT INTO `marc_subfield_structure` VALUES ('845', 'd', 'Authorized users', 'Authorized users', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28065 INSERT INTO `marc_subfield_structure` VALUES ('850', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28066 INSERT INTO `marc_subfield_structure` VALUES ('850', 'a', 'Holding institution', 'Holding institution', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28067 INSERT INTO `marc_subfield_structure` VALUES ('850', 'b', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28068 INSERT INTO `marc_subfield_structure` VALUES ('850', 'd', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28069 INSERT INTO `marc_subfield_structure` VALUES ('850', 'e', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28070 INSERT INTO `marc_subfield_structure` VALUES ('851', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28071 INSERT INTO `marc_subfield_structure` VALUES ('851', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28072 INSERT INTO `marc_subfield_structure` VALUES ('851', 'a', 'Name (custodian or owner)', 'Name (custodian or owner)', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28073 INSERT INTO `marc_subfield_structure` VALUES ('851', 'b', 'Institutional division', 'Institutional division', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28074 INSERT INTO `marc_subfield_structure` VALUES ('851', 'c', 'Street address', 'Street address', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28075 INSERT INTO `marc_subfield_structure` VALUES ('851', 'd', 'Country', 'Country', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28076 INSERT INTO `marc_subfield_structure` VALUES ('851', 'e', 'Location of units', 'Location of units', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28077 INSERT INTO `marc_subfield_structure` VALUES ('851', 'f', 'Item number', 'Item number', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28078 INSERT INTO `marc_subfield_structure` VALUES ('851', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'KT', '', '');
28079 INSERT INTO `marc_subfield_structure` VALUES ('852', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28080 INSERT INTO `marc_subfield_structure` VALUES ('852', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28081 INSERT INTO `marc_subfield_structure` VALUES ('852', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28082 INSERT INTO `marc_subfield_structure` VALUES ('852', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28083 INSERT INTO `marc_subfield_structure` VALUES ('852', 'a', 'Location', 'Location', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28084 INSERT INTO `marc_subfield_structure` VALUES ('852', 'b', 'Sublocation or collection', 'Sublocation or collection', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28085 INSERT INTO `marc_subfield_structure` VALUES ('852', 'c', 'Shelving location', 'Shelving location', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28086 INSERT INTO `marc_subfield_structure` VALUES ('852', 'e', 'Address', 'Address', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28087 INSERT INTO `marc_subfield_structure` VALUES ('852', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28088 INSERT INTO `marc_subfield_structure` VALUES ('852', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28089 INSERT INTO `marc_subfield_structure` VALUES ('852', 'h', 'Classification part', 'Classification part', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28090 INSERT INTO `marc_subfield_structure` VALUES ('852', 'i', 'Item part', 'Item part', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28091 INSERT INTO `marc_subfield_structure` VALUES ('852', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28092 INSERT INTO `marc_subfield_structure` VALUES ('852', 'k', 'Call number prefix', 'Call number prefix', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28093 INSERT INTO `marc_subfield_structure` VALUES ('852', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28094 INSERT INTO `marc_subfield_structure` VALUES ('852', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28095 INSERT INTO `marc_subfield_structure` VALUES ('852', 'n', 'Country code', 'Country code', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28096 INSERT INTO `marc_subfield_structure` VALUES ('852', 'p', 'Piece designation', 'Piece designation', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28097 INSERT INTO `marc_subfield_structure` VALUES ('852', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28098 INSERT INTO `marc_subfield_structure` VALUES ('852', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28099 INSERT INTO `marc_subfield_structure` VALUES ('852', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28100 INSERT INTO `marc_subfield_structure` VALUES ('852', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28101 INSERT INTO `marc_subfield_structure` VALUES ('852', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28102 INSERT INTO `marc_subfield_structure` VALUES ('853', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28103 INSERT INTO `marc_subfield_structure` VALUES ('853', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28104 INSERT INTO `marc_subfield_structure` VALUES ('853', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28105 INSERT INTO `marc_subfield_structure` VALUES ('853', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28106 INSERT INTO `marc_subfield_structure` VALUES ('853', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28107 INSERT INTO `marc_subfield_structure` VALUES ('853', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28108 INSERT INTO `marc_subfield_structure` VALUES ('853', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28109 INSERT INTO `marc_subfield_structure` VALUES ('853', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28110 INSERT INTO `marc_subfield_structure` VALUES ('853', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28111 INSERT INTO `marc_subfield_structure` VALUES ('853', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28112 INSERT INTO `marc_subfield_structure` VALUES ('853', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28113 INSERT INTO `marc_subfield_structure` VALUES ('853', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28114 INSERT INTO `marc_subfield_structure` VALUES ('853', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28115 INSERT INTO `marc_subfield_structure` VALUES ('853', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28116 INSERT INTO `marc_subfield_structure` VALUES ('853', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28117 INSERT INTO `marc_subfield_structure` VALUES ('853', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28118 INSERT INTO `marc_subfield_structure` VALUES ('853', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28119 INSERT INTO `marc_subfield_structure` VALUES ('853', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28120 INSERT INTO `marc_subfield_structure` VALUES ('853', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28121 INSERT INTO `marc_subfield_structure` VALUES ('853', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28122 INSERT INTO `marc_subfield_structure` VALUES ('853', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28123 INSERT INTO `marc_subfield_structure` VALUES ('853', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28124 INSERT INTO `marc_subfield_structure` VALUES ('853', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28125 INSERT INTO `marc_subfield_structure` VALUES ('853', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28126 INSERT INTO `marc_subfield_structure` VALUES ('853', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28127 INSERT INTO `marc_subfield_structure` VALUES ('854', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28128 INSERT INTO `marc_subfield_structure` VALUES ('854', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28129 INSERT INTO `marc_subfield_structure` VALUES ('854', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28130 INSERT INTO `marc_subfield_structure` VALUES ('854', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28131 INSERT INTO `marc_subfield_structure` VALUES ('854', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28132 INSERT INTO `marc_subfield_structure` VALUES ('854', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28133 INSERT INTO `marc_subfield_structure` VALUES ('854', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28134 INSERT INTO `marc_subfield_structure` VALUES ('854', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28135 INSERT INTO `marc_subfield_structure` VALUES ('854', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28136 INSERT INTO `marc_subfield_structure` VALUES ('854', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28137 INSERT INTO `marc_subfield_structure` VALUES ('854', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28138 INSERT INTO `marc_subfield_structure` VALUES ('854', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28139 INSERT INTO `marc_subfield_structure` VALUES ('854', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28140 INSERT INTO `marc_subfield_structure` VALUES ('854', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28141 INSERT INTO `marc_subfield_structure` VALUES ('854', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28142 INSERT INTO `marc_subfield_structure` VALUES ('854', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28143 INSERT INTO `marc_subfield_structure` VALUES ('854', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28144 INSERT INTO `marc_subfield_structure` VALUES ('854', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28145 INSERT INTO `marc_subfield_structure` VALUES ('854', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28146 INSERT INTO `marc_subfield_structure` VALUES ('854', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28147 INSERT INTO `marc_subfield_structure` VALUES ('854', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28148 INSERT INTO `marc_subfield_structure` VALUES ('854', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28149 INSERT INTO `marc_subfield_structure` VALUES ('854', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28150 INSERT INTO `marc_subfield_structure` VALUES ('854', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28151 INSERT INTO `marc_subfield_structure` VALUES ('854', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28152 INSERT INTO `marc_subfield_structure` VALUES ('855', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28153 INSERT INTO `marc_subfield_structure` VALUES ('855', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28154 INSERT INTO `marc_subfield_structure` VALUES ('855', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28155 INSERT INTO `marc_subfield_structure` VALUES ('855', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28156 INSERT INTO `marc_subfield_structure` VALUES ('855', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28157 INSERT INTO `marc_subfield_structure` VALUES ('855', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28158 INSERT INTO `marc_subfield_structure` VALUES ('855', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28159 INSERT INTO `marc_subfield_structure` VALUES ('855', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28160 INSERT INTO `marc_subfield_structure` VALUES ('855', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28161 INSERT INTO `marc_subfield_structure` VALUES ('855', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28162 INSERT INTO `marc_subfield_structure` VALUES ('855', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28163 INSERT INTO `marc_subfield_structure` VALUES ('855', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28164 INSERT INTO `marc_subfield_structure` VALUES ('855', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28165 INSERT INTO `marc_subfield_structure` VALUES ('855', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28166 INSERT INTO `marc_subfield_structure` VALUES ('855', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28167 INSERT INTO `marc_subfield_structure` VALUES ('855', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28168 INSERT INTO `marc_subfield_structure` VALUES ('855', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28169 INSERT INTO `marc_subfield_structure` VALUES ('855', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28170 INSERT INTO `marc_subfield_structure` VALUES ('855', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28171 INSERT INTO `marc_subfield_structure` VALUES ('855', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28172 INSERT INTO `marc_subfield_structure` VALUES ('855', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28173 INSERT INTO `marc_subfield_structure` VALUES ('855', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28174 INSERT INTO `marc_subfield_structure` VALUES ('855', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28175 INSERT INTO `marc_subfield_structure` VALUES ('855', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28176 INSERT INTO `marc_subfield_structure` VALUES ('855', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28177 INSERT INTO `marc_subfield_structure` VALUES ('856', '2', 'Access method', 'Access method', 0, 0, '', 8, '', '', '', 0, -6, 'KT', '', '');
28178 INSERT INTO `marc_subfield_structure` VALUES ('856', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', 0, -6, 'KT', '', '');
28179 INSERT INTO `marc_subfield_structure` VALUES ('856', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', 0, -6, 'KT', '', '');
28180 INSERT INTO `marc_subfield_structure` VALUES ('856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', 0, -6, 'KT', '', '');
28181 INSERT INTO `marc_subfield_structure` VALUES ('856', 'a', 'Host name', 'Host name', 1, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28182 INSERT INTO `marc_subfield_structure` VALUES ('856', 'b', 'Access number', 'Access number', 1, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28183 INSERT INTO `marc_subfield_structure` VALUES ('856', 'c', 'Compression information', 'Compression information', 1, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28184 INSERT INTO `marc_subfield_structure` VALUES ('856', 'd', 'Path', 'Path', 1, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28185 INSERT INTO `marc_subfield_structure` VALUES ('856', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28186 INSERT INTO `marc_subfield_structure` VALUES ('856', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28187 INSERT INTO `marc_subfield_structure` VALUES ('856', 'i', 'Instruction', 'Instruction', 1, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28188 INSERT INTO `marc_subfield_structure` VALUES ('856', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28189 INSERT INTO `marc_subfield_structure` VALUES ('856', 'k', 'Password', 'Password', 0, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28190 INSERT INTO `marc_subfield_structure` VALUES ('856', 'l', 'Logon', 'Logon', 0, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28191 INSERT INTO `marc_subfield_structure` VALUES ('856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28192 INSERT INTO `marc_subfield_structure` VALUES ('856', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28193 INSERT INTO `marc_subfield_structure` VALUES ('856', 'o', 'Operating system', 'Operating system', 0, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28194 INSERT INTO `marc_subfield_structure` VALUES ('856', 'p', 'Port', 'Port', 0, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28195 INSERT INTO `marc_subfield_structure` VALUES ('856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28196 INSERT INTO `marc_subfield_structure` VALUES ('856', 'r', 'Settings', 'Settings', 0, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28197 INSERT INTO `marc_subfield_structure` VALUES ('856', 's', 'File size', 'File size', 1, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28198 INSERT INTO `marc_subfield_structure` VALUES ('856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28199 INSERT INTO `marc_subfield_structure` VALUES ('856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 'biblioitems.url', 8, '', '', '', 1, -1, 'KT', '', '');
28200 INSERT INTO `marc_subfield_structure` VALUES ('856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28201 INSERT INTO `marc_subfield_structure` VALUES ('856', 'w', 'Record control number', 'Record control number', 1, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28202 INSERT INTO `marc_subfield_structure` VALUES ('856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 1, 'KT', '', '');
28203 INSERT INTO `marc_subfield_structure` VALUES ('856', 'y', 'Link text', 'Link text', 1, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28204 INSERT INTO `marc_subfield_structure` VALUES ('856', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, -1, 'KT', '', '');
28205 INSERT INTO `marc_subfield_structure` VALUES ('859', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'KT', '', '');
28206 INSERT INTO `marc_subfield_structure` VALUES ('859', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'KT', '', '');
28207 INSERT INTO `marc_subfield_structure` VALUES ('859', 'd', 'TDC (RLIN)', 'TDC (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'KT', '', '');
28208 INSERT INTO `marc_subfield_structure` VALUES ('859', 'l', 'LIB (RLIN)', 'LIB (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'KT', '', '');
28209 INSERT INTO `marc_subfield_structure` VALUES ('859', 'p', 'PRI (RLIN)', 'PRI (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'KT', '', '');
28210 INSERT INTO `marc_subfield_structure` VALUES ('859', 'r', 'REG (RLIN)', 'REG (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'KT', '', '');
28211 INSERT INTO `marc_subfield_structure` VALUES ('859', 'v', 'VER (RLIN)', 'VER (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'KT', '', '');
28212 INSERT INTO `marc_subfield_structure` VALUES ('859', 'x', 'LDEL (RLIN)', 'LDEL (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'KT', '', '');
28213 INSERT INTO `marc_subfield_structure` VALUES ('866', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28214 INSERT INTO `marc_subfield_structure` VALUES ('866', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28215 INSERT INTO `marc_subfield_structure` VALUES ('866', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'KT', '', '');
28216 INSERT INTO `marc_subfield_structure` VALUES ('866', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'KT', '', '');
28217 INSERT INTO `marc_subfield_structure` VALUES ('866', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'KT', '', '');
28218 INSERT INTO `marc_subfield_structure` VALUES ('867', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28219 INSERT INTO `marc_subfield_structure` VALUES ('867', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28220 INSERT INTO `marc_subfield_structure` VALUES ('867', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'KT', '', '');
28221 INSERT INTO `marc_subfield_structure` VALUES ('867', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'KT', '', '');
28222 INSERT INTO `marc_subfield_structure` VALUES ('867', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'KT', '', '');
28223 INSERT INTO `marc_subfield_structure` VALUES ('868', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28224 INSERT INTO `marc_subfield_structure` VALUES ('868', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28225 INSERT INTO `marc_subfield_structure` VALUES ('868', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'KT', '', '');
28226 INSERT INTO `marc_subfield_structure` VALUES ('868', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'KT', '', '');
28227 INSERT INTO `marc_subfield_structure` VALUES ('868', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'KT', '', '');
28228 INSERT INTO `marc_subfield_structure` VALUES ('870', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28229 INSERT INTO `marc_subfield_structure` VALUES ('870', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28230 INSERT INTO `marc_subfield_structure` VALUES ('870', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28231 INSERT INTO `marc_subfield_structure` VALUES ('870', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28232 INSERT INTO `marc_subfield_structure` VALUES ('870', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28233 INSERT INTO `marc_subfield_structure` VALUES ('870', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28234 INSERT INTO `marc_subfield_structure` VALUES ('870', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28235 INSERT INTO `marc_subfield_structure` VALUES ('870', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28236 INSERT INTO `marc_subfield_structure` VALUES ('870', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28237 INSERT INTO `marc_subfield_structure` VALUES ('870', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28238 INSERT INTO `marc_subfield_structure` VALUES ('870', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28239 INSERT INTO `marc_subfield_structure` VALUES ('870', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28240 INSERT INTO `marc_subfield_structure` VALUES ('870', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28241 INSERT INTO `marc_subfield_structure` VALUES ('870', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28242 INSERT INTO `marc_subfield_structure` VALUES ('870', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28243 INSERT INTO `marc_subfield_structure` VALUES ('870', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28244 INSERT INTO `marc_subfield_structure` VALUES ('870', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28245 INSERT INTO `marc_subfield_structure` VALUES ('871', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28246 INSERT INTO `marc_subfield_structure` VALUES ('871', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28247 INSERT INTO `marc_subfield_structure` VALUES ('871', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28248 INSERT INTO `marc_subfield_structure` VALUES ('871', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28249 INSERT INTO `marc_subfield_structure` VALUES ('871', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28250 INSERT INTO `marc_subfield_structure` VALUES ('871', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28251 INSERT INTO `marc_subfield_structure` VALUES ('871', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28252 INSERT INTO `marc_subfield_structure` VALUES ('871', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28253 INSERT INTO `marc_subfield_structure` VALUES ('871', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28254 INSERT INTO `marc_subfield_structure` VALUES ('871', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28255 INSERT INTO `marc_subfield_structure` VALUES ('871', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28256 INSERT INTO `marc_subfield_structure` VALUES ('871', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28257 INSERT INTO `marc_subfield_structure` VALUES ('871', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28258 INSERT INTO `marc_subfield_structure` VALUES ('871', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28259 INSERT INTO `marc_subfield_structure` VALUES ('871', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28260 INSERT INTO `marc_subfield_structure` VALUES ('871', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28261 INSERT INTO `marc_subfield_structure` VALUES ('872', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28262 INSERT INTO `marc_subfield_structure` VALUES ('872', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28263 INSERT INTO `marc_subfield_structure` VALUES ('872', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28264 INSERT INTO `marc_subfield_structure` VALUES ('872', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28265 INSERT INTO `marc_subfield_structure` VALUES ('872', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28266 INSERT INTO `marc_subfield_structure` VALUES ('872', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28267 INSERT INTO `marc_subfield_structure` VALUES ('872', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28268 INSERT INTO `marc_subfield_structure` VALUES ('872', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28269 INSERT INTO `marc_subfield_structure` VALUES ('872', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28270 INSERT INTO `marc_subfield_structure` VALUES ('872', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28271 INSERT INTO `marc_subfield_structure` VALUES ('872', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28272 INSERT INTO `marc_subfield_structure` VALUES ('872', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28273 INSERT INTO `marc_subfield_structure` VALUES ('872', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28274 INSERT INTO `marc_subfield_structure` VALUES ('872', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28275 INSERT INTO `marc_subfield_structure` VALUES ('872', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28276 INSERT INTO `marc_subfield_structure` VALUES ('872', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28277 INSERT INTO `marc_subfield_structure` VALUES ('872', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28278 INSERT INTO `marc_subfield_structure` VALUES ('873', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28279 INSERT INTO `marc_subfield_structure` VALUES ('873', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28280 INSERT INTO `marc_subfield_structure` VALUES ('873', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28281 INSERT INTO `marc_subfield_structure` VALUES ('873', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28282 INSERT INTO `marc_subfield_structure` VALUES ('873', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28283 INSERT INTO `marc_subfield_structure` VALUES ('873', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28284 INSERT INTO `marc_subfield_structure` VALUES ('873', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28285 INSERT INTO `marc_subfield_structure` VALUES ('873', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28286 INSERT INTO `marc_subfield_structure` VALUES ('873', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28287 INSERT INTO `marc_subfield_structure` VALUES ('873', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28288 INSERT INTO `marc_subfield_structure` VALUES ('873', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28289 INSERT INTO `marc_subfield_structure` VALUES ('873', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28290 INSERT INTO `marc_subfield_structure` VALUES ('873', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28291 INSERT INTO `marc_subfield_structure` VALUES ('873', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28292 INSERT INTO `marc_subfield_structure` VALUES ('873', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28293 INSERT INTO `marc_subfield_structure` VALUES ('873', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28294 INSERT INTO `marc_subfield_structure` VALUES ('876', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28295 INSERT INTO `marc_subfield_structure` VALUES ('876', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28296 INSERT INTO `marc_subfield_structure` VALUES ('876', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28297 INSERT INTO `marc_subfield_structure` VALUES ('876', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28298 INSERT INTO `marc_subfield_structure` VALUES ('876', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28299 INSERT INTO `marc_subfield_structure` VALUES ('876', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28300 INSERT INTO `marc_subfield_structure` VALUES ('876', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28301 INSERT INTO `marc_subfield_structure` VALUES ('876', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28302 INSERT INTO `marc_subfield_structure` VALUES ('876', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28303 INSERT INTO `marc_subfield_structure` VALUES ('876', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28304 INSERT INTO `marc_subfield_structure` VALUES ('876', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28305 INSERT INTO `marc_subfield_structure` VALUES ('876', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28306 INSERT INTO `marc_subfield_structure` VALUES ('876', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28307 INSERT INTO `marc_subfield_structure` VALUES ('876', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28308 INSERT INTO `marc_subfield_structure` VALUES ('876', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28309 INSERT INTO `marc_subfield_structure` VALUES ('876', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28310 INSERT INTO `marc_subfield_structure` VALUES ('877', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28311 INSERT INTO `marc_subfield_structure` VALUES ('877', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28312 INSERT INTO `marc_subfield_structure` VALUES ('877', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28313 INSERT INTO `marc_subfield_structure` VALUES ('877', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28314 INSERT INTO `marc_subfield_structure` VALUES ('877', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28315 INSERT INTO `marc_subfield_structure` VALUES ('877', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28316 INSERT INTO `marc_subfield_structure` VALUES ('877', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28317 INSERT INTO `marc_subfield_structure` VALUES ('877', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28318 INSERT INTO `marc_subfield_structure` VALUES ('877', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28319 INSERT INTO `marc_subfield_structure` VALUES ('877', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28320 INSERT INTO `marc_subfield_structure` VALUES ('877', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28321 INSERT INTO `marc_subfield_structure` VALUES ('877', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28322 INSERT INTO `marc_subfield_structure` VALUES ('877', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28323 INSERT INTO `marc_subfield_structure` VALUES ('877', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28324 INSERT INTO `marc_subfield_structure` VALUES ('877', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28325 INSERT INTO `marc_subfield_structure` VALUES ('877', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28326 INSERT INTO `marc_subfield_structure` VALUES ('878', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28327 INSERT INTO `marc_subfield_structure` VALUES ('878', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28328 INSERT INTO `marc_subfield_structure` VALUES ('878', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28329 INSERT INTO `marc_subfield_structure` VALUES ('878', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28330 INSERT INTO `marc_subfield_structure` VALUES ('878', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28331 INSERT INTO `marc_subfield_structure` VALUES ('878', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28332 INSERT INTO `marc_subfield_structure` VALUES ('878', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28333 INSERT INTO `marc_subfield_structure` VALUES ('878', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28334 INSERT INTO `marc_subfield_structure` VALUES ('878', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28335 INSERT INTO `marc_subfield_structure` VALUES ('878', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28336 INSERT INTO `marc_subfield_structure` VALUES ('878', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28337 INSERT INTO `marc_subfield_structure` VALUES ('878', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28338 INSERT INTO `marc_subfield_structure` VALUES ('878', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28339 INSERT INTO `marc_subfield_structure` VALUES ('878', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28340 INSERT INTO `marc_subfield_structure` VALUES ('878', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28341 INSERT INTO `marc_subfield_structure` VALUES ('878', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28342 INSERT INTO `marc_subfield_structure` VALUES ('880', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28343 INSERT INTO `marc_subfield_structure` VALUES ('880', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28344 INSERT INTO `marc_subfield_structure` VALUES ('880', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28345 INSERT INTO `marc_subfield_structure` VALUES ('880', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28346 INSERT INTO `marc_subfield_structure` VALUES ('880', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28347 INSERT INTO `marc_subfield_structure` VALUES ('880', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28348 INSERT INTO `marc_subfield_structure` VALUES ('880', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28349 INSERT INTO `marc_subfield_structure` VALUES ('880', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28350 INSERT INTO `marc_subfield_structure` VALUES ('880', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28351 INSERT INTO `marc_subfield_structure` VALUES ('880', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28352 INSERT INTO `marc_subfield_structure` VALUES ('880', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28353 INSERT INTO `marc_subfield_structure` VALUES ('880', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28354 INSERT INTO `marc_subfield_structure` VALUES ('880', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28355 INSERT INTO `marc_subfield_structure` VALUES ('880', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28356 INSERT INTO `marc_subfield_structure` VALUES ('880', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28357 INSERT INTO `marc_subfield_structure` VALUES ('880', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28358 INSERT INTO `marc_subfield_structure` VALUES ('880', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28359 INSERT INTO `marc_subfield_structure` VALUES ('880', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28360 INSERT INTO `marc_subfield_structure` VALUES ('880', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28361 INSERT INTO `marc_subfield_structure` VALUES ('880', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28362 INSERT INTO `marc_subfield_structure` VALUES ('880', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28363 INSERT INTO `marc_subfield_structure` VALUES ('880', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28364 INSERT INTO `marc_subfield_structure` VALUES ('880', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28365 INSERT INTO `marc_subfield_structure` VALUES ('880', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28366 INSERT INTO `marc_subfield_structure` VALUES ('880', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28367 INSERT INTO `marc_subfield_structure` VALUES ('880', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28368 INSERT INTO `marc_subfield_structure` VALUES ('880', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28369 INSERT INTO `marc_subfield_structure` VALUES ('880', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28370 INSERT INTO `marc_subfield_structure` VALUES ('880', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28371 INSERT INTO `marc_subfield_structure` VALUES ('880', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28372 INSERT INTO `marc_subfield_structure` VALUES ('880', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28373 INSERT INTO `marc_subfield_structure` VALUES ('880', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28374 INSERT INTO `marc_subfield_structure` VALUES ('880', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28375 INSERT INTO `marc_subfield_structure` VALUES ('880', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28376 INSERT INTO `marc_subfield_structure` VALUES ('886', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28377 INSERT INTO `marc_subfield_structure` VALUES ('886', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28378 INSERT INTO `marc_subfield_structure` VALUES ('886', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28379 INSERT INTO `marc_subfield_structure` VALUES ('886', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28380 INSERT INTO `marc_subfield_structure` VALUES ('886', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28381 INSERT INTO `marc_subfield_structure` VALUES ('886', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28382 INSERT INTO `marc_subfield_structure` VALUES ('886', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28383 INSERT INTO `marc_subfield_structure` VALUES ('886', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28384 INSERT INTO `marc_subfield_structure` VALUES ('886', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28385 INSERT INTO `marc_subfield_structure` VALUES ('886', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28386 INSERT INTO `marc_subfield_structure` VALUES ('886', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28387 INSERT INTO `marc_subfield_structure` VALUES ('886', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28388 INSERT INTO `marc_subfield_structure` VALUES ('886', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28389 INSERT INTO `marc_subfield_structure` VALUES ('886', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28390 INSERT INTO `marc_subfield_structure` VALUES ('886', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28391 INSERT INTO `marc_subfield_structure` VALUES ('886', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28392 INSERT INTO `marc_subfield_structure` VALUES ('886', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28393 INSERT INTO `marc_subfield_structure` VALUES ('886', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28394 INSERT INTO `marc_subfield_structure` VALUES ('886', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28395 INSERT INTO `marc_subfield_structure` VALUES ('886', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28396 INSERT INTO `marc_subfield_structure` VALUES ('886', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28397 INSERT INTO `marc_subfield_structure` VALUES ('886', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28398 INSERT INTO `marc_subfield_structure` VALUES ('886', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28399 INSERT INTO `marc_subfield_structure` VALUES ('886', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28400 INSERT INTO `marc_subfield_structure` VALUES ('886', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28401 INSERT INTO `marc_subfield_structure` VALUES ('886', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28402 INSERT INTO `marc_subfield_structure` VALUES ('886', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28403 INSERT INTO `marc_subfield_structure` VALUES ('886', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28404 INSERT INTO `marc_subfield_structure` VALUES ('886', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28405 INSERT INTO `marc_subfield_structure` VALUES ('886', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28406 INSERT INTO `marc_subfield_structure` VALUES ('886', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28407 INSERT INTO `marc_subfield_structure` VALUES ('886', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28408 INSERT INTO `marc_subfield_structure` VALUES ('886', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28409 INSERT INTO `marc_subfield_structure` VALUES ('886', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28410 INSERT INTO `marc_subfield_structure` VALUES ('886', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28411 INSERT INTO `marc_subfield_structure` VALUES ('886', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28412 INSERT INTO `marc_subfield_structure` VALUES ('887', '2', 'Source of data', 'Source of data', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28413 INSERT INTO `marc_subfield_structure` VALUES ('887', 'a', 'Content of non-MARC field', 'Content of non-MARC field', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28414 INSERT INTO `marc_subfield_structure` VALUES ('896', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'KT', '', '');
28415 INSERT INTO `marc_subfield_structure` VALUES ('896', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28416 INSERT INTO `marc_subfield_structure` VALUES ('896', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28417 INSERT INTO `marc_subfield_structure` VALUES ('896', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28418 INSERT INTO `marc_subfield_structure` VALUES ('896', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'KT', '', '');
28419 INSERT INTO `marc_subfield_structure` VALUES ('896', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28420 INSERT INTO `marc_subfield_structure` VALUES ('896', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28421 INSERT INTO `marc_subfield_structure` VALUES ('896', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28422 INSERT INTO `marc_subfield_structure` VALUES ('896', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28423 INSERT INTO `marc_subfield_structure` VALUES ('896', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28424 INSERT INTO `marc_subfield_structure` VALUES ('896', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28425 INSERT INTO `marc_subfield_structure` VALUES ('896', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28426 INSERT INTO `marc_subfield_structure` VALUES ('896', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28427 INSERT INTO `marc_subfield_structure` VALUES ('896', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28428 INSERT INTO `marc_subfield_structure` VALUES ('896', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28429 INSERT INTO `marc_subfield_structure` VALUES ('896', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28430 INSERT INTO `marc_subfield_structure` VALUES ('896', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28431 INSERT INTO `marc_subfield_structure` VALUES ('896', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28432 INSERT INTO `marc_subfield_structure` VALUES ('896', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28433 INSERT INTO `marc_subfield_structure` VALUES ('896', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28434 INSERT INTO `marc_subfield_structure` VALUES ('896', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28435 INSERT INTO `marc_subfield_structure` VALUES ('896', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28436 INSERT INTO `marc_subfield_structure` VALUES ('896', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28437 INSERT INTO `marc_subfield_structure` VALUES ('896', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28438 INSERT INTO `marc_subfield_structure` VALUES ('896', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28439 INSERT INTO `marc_subfield_structure` VALUES ('896', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28440 INSERT INTO `marc_subfield_structure` VALUES ('897', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'KT', '', '');
28441 INSERT INTO `marc_subfield_structure` VALUES ('897', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28442 INSERT INTO `marc_subfield_structure` VALUES ('897', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28443 INSERT INTO `marc_subfield_structure` VALUES ('897', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28444 INSERT INTO `marc_subfield_structure` VALUES ('897', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'KT', '', '');
28445 INSERT INTO `marc_subfield_structure` VALUES ('897', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28446 INSERT INTO `marc_subfield_structure` VALUES ('897', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28447 INSERT INTO `marc_subfield_structure` VALUES ('897', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28448 INSERT INTO `marc_subfield_structure` VALUES ('897', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28449 INSERT INTO `marc_subfield_structure` VALUES ('897', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28450 INSERT INTO `marc_subfield_structure` VALUES ('897', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28451 INSERT INTO `marc_subfield_structure` VALUES ('897', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28452 INSERT INTO `marc_subfield_structure` VALUES ('897', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28453 INSERT INTO `marc_subfield_structure` VALUES ('897', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28454 INSERT INTO `marc_subfield_structure` VALUES ('897', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28455 INSERT INTO `marc_subfield_structure` VALUES ('897', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28456 INSERT INTO `marc_subfield_structure` VALUES ('897', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28457 INSERT INTO `marc_subfield_structure` VALUES ('897', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28458 INSERT INTO `marc_subfield_structure` VALUES ('897', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28459 INSERT INTO `marc_subfield_structure` VALUES ('897', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28460 INSERT INTO `marc_subfield_structure` VALUES ('897', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28461 INSERT INTO `marc_subfield_structure` VALUES ('897', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28462 INSERT INTO `marc_subfield_structure` VALUES ('897', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28463 INSERT INTO `marc_subfield_structure` VALUES ('897', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28464 INSERT INTO `marc_subfield_structure` VALUES ('898', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'KT', '', '');
28465 INSERT INTO `marc_subfield_structure` VALUES ('898', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28466 INSERT INTO `marc_subfield_structure` VALUES ('898', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28467 INSERT INTO `marc_subfield_structure` VALUES ('898', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28468 INSERT INTO `marc_subfield_structure` VALUES ('898', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'KT', '', '');
28469 INSERT INTO `marc_subfield_structure` VALUES ('898', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28470 INSERT INTO `marc_subfield_structure` VALUES ('898', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28471 INSERT INTO `marc_subfield_structure` VALUES ('898', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28472 INSERT INTO `marc_subfield_structure` VALUES ('898', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28473 INSERT INTO `marc_subfield_structure` VALUES ('898', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28474 INSERT INTO `marc_subfield_structure` VALUES ('898', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28475 INSERT INTO `marc_subfield_structure` VALUES ('898', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28476 INSERT INTO `marc_subfield_structure` VALUES ('898', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28477 INSERT INTO `marc_subfield_structure` VALUES ('898', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28478 INSERT INTO `marc_subfield_structure` VALUES ('898', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28479 INSERT INTO `marc_subfield_structure` VALUES ('898', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28480 INSERT INTO `marc_subfield_structure` VALUES ('898', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28481 INSERT INTO `marc_subfield_structure` VALUES ('898', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28482 INSERT INTO `marc_subfield_structure` VALUES ('898', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28483 INSERT INTO `marc_subfield_structure` VALUES ('898', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28484 INSERT INTO `marc_subfield_structure` VALUES ('898', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28485 INSERT INTO `marc_subfield_structure` VALUES ('898', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
28486 INSERT INTO `marc_subfield_structure` VALUES ('899', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'KT', '', '');
28487 INSERT INTO `marc_subfield_structure` VALUES ('899', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28488 INSERT INTO `marc_subfield_structure` VALUES ('899', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28489 INSERT INTO `marc_subfield_structure` VALUES ('899', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'KT', '', '');
28490 INSERT INTO `marc_subfield_structure` VALUES ('899', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28491 INSERT INTO `marc_subfield_structure` VALUES ('899', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28492 INSERT INTO `marc_subfield_structure` VALUES ('899', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28493 INSERT INTO `marc_subfield_structure` VALUES ('899', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28494 INSERT INTO `marc_subfield_structure` VALUES ('899', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28495 INSERT INTO `marc_subfield_structure` VALUES ('899', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28496 INSERT INTO `marc_subfield_structure` VALUES ('899', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28497 INSERT INTO `marc_subfield_structure` VALUES ('899', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28498 INSERT INTO `marc_subfield_structure` VALUES ('899', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28499 INSERT INTO `marc_subfield_structure` VALUES ('899', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28500 INSERT INTO `marc_subfield_structure` VALUES ('899', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28501 INSERT INTO `marc_subfield_structure` VALUES ('899', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28502 INSERT INTO `marc_subfield_structure` VALUES ('899', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28503 INSERT INTO `marc_subfield_structure` VALUES ('899', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28504 INSERT INTO `marc_subfield_structure` VALUES ('899', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, 5, 'KT', '', '');
28505 INSERT INTO `marc_subfield_structure` VALUES ('89e', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28506 INSERT INTO `marc_subfield_structure` VALUES ('89e', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28507 INSERT INTO `marc_subfield_structure` VALUES ('89e', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28508 INSERT INTO `marc_subfield_structure` VALUES ('89e', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28509 INSERT INTO `marc_subfield_structure` VALUES ('89e', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28510 INSERT INTO `marc_subfield_structure` VALUES ('89e', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28511 INSERT INTO `marc_subfield_structure` VALUES ('89e', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28512 INSERT INTO `marc_subfield_structure` VALUES ('89e', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28513 INSERT INTO `marc_subfield_structure` VALUES ('89e', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28514 INSERT INTO `marc_subfield_structure` VALUES ('89e', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28515 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28516 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28517 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28518 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28519 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28520 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28521 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28522 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28523 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28524 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28525 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28526 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28527 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28528 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28529 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28530 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28531 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28532 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28533 INSERT INTO `marc_subfield_structure` VALUES ('89e', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28534 INSERT INTO `marc_subfield_structure` VALUES ('89e', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28535 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28536 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28537 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28538 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28539 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28540 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'KT', '', '');
28541 INSERT INTO `marc_subfield_structure` VALUES ('900', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28542 INSERT INTO `marc_subfield_structure` VALUES ('900', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28543 INSERT INTO `marc_subfield_structure` VALUES ('900', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28544 INSERT INTO `marc_subfield_structure` VALUES ('900', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
28545 INSERT INTO `marc_subfield_structure` VALUES ('900', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28546 INSERT INTO `marc_subfield_structure` VALUES ('900', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28547 INSERT INTO `marc_subfield_structure` VALUES ('900', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28548 INSERT INTO `marc_subfield_structure` VALUES ('900', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28549 INSERT INTO `marc_subfield_structure` VALUES ('900', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28550 INSERT INTO `marc_subfield_structure` VALUES ('900', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28551 INSERT INTO `marc_subfield_structure` VALUES ('900', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28552 INSERT INTO `marc_subfield_structure` VALUES ('900', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28553 INSERT INTO `marc_subfield_structure` VALUES ('900', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28554 INSERT INTO `marc_subfield_structure` VALUES ('900', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28555 INSERT INTO `marc_subfield_structure` VALUES ('900', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28556 INSERT INTO `marc_subfield_structure` VALUES ('900', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28557 INSERT INTO `marc_subfield_structure` VALUES ('900', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28558 INSERT INTO `marc_subfield_structure` VALUES ('900', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28559 INSERT INTO `marc_subfield_structure` VALUES ('901', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28560 INSERT INTO `marc_subfield_structure` VALUES ('901', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28561 INSERT INTO `marc_subfield_structure` VALUES ('901', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28562 INSERT INTO `marc_subfield_structure` VALUES ('901', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28563 INSERT INTO `marc_subfield_structure` VALUES ('901', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28564 INSERT INTO `marc_subfield_structure` VALUES ('901', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28565 INSERT INTO `marc_subfield_structure` VALUES ('901', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28566 INSERT INTO `marc_subfield_structure` VALUES ('901', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28567 INSERT INTO `marc_subfield_structure` VALUES ('901', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28568 INSERT INTO `marc_subfield_structure` VALUES ('901', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28569 INSERT INTO `marc_subfield_structure` VALUES ('901', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28570 INSERT INTO `marc_subfield_structure` VALUES ('901', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28571 INSERT INTO `marc_subfield_structure` VALUES ('901', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28572 INSERT INTO `marc_subfield_structure` VALUES ('901', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28573 INSERT INTO `marc_subfield_structure` VALUES ('901', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28574 INSERT INTO `marc_subfield_structure` VALUES ('901', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28575 INSERT INTO `marc_subfield_structure` VALUES ('901', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28576 INSERT INTO `marc_subfield_structure` VALUES ('901', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28577 INSERT INTO `marc_subfield_structure` VALUES ('901', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28578 INSERT INTO `marc_subfield_structure` VALUES ('901', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28579 INSERT INTO `marc_subfield_structure` VALUES ('901', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28580 INSERT INTO `marc_subfield_structure` VALUES ('901', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28581 INSERT INTO `marc_subfield_structure` VALUES ('901', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28582 INSERT INTO `marc_subfield_structure` VALUES ('901', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28583 INSERT INTO `marc_subfield_structure` VALUES ('901', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28584 INSERT INTO `marc_subfield_structure` VALUES ('901', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28585 INSERT INTO `marc_subfield_structure` VALUES ('901', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28586 INSERT INTO `marc_subfield_structure` VALUES ('901', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28587 INSERT INTO `marc_subfield_structure` VALUES ('901', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28588 INSERT INTO `marc_subfield_structure` VALUES ('901', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28589 INSERT INTO `marc_subfield_structure` VALUES ('901', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28590 INSERT INTO `marc_subfield_structure` VALUES ('901', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28591 INSERT INTO `marc_subfield_structure` VALUES ('901', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28592 INSERT INTO `marc_subfield_structure` VALUES ('901', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28593 INSERT INTO `marc_subfield_structure` VALUES ('901', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28594 INSERT INTO `marc_subfield_structure` VALUES ('901', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28595 INSERT INTO `marc_subfield_structure` VALUES ('902', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28596 INSERT INTO `marc_subfield_structure` VALUES ('902', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28597 INSERT INTO `marc_subfield_structure` VALUES ('902', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28598 INSERT INTO `marc_subfield_structure` VALUES ('902', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28599 INSERT INTO `marc_subfield_structure` VALUES ('902', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28600 INSERT INTO `marc_subfield_structure` VALUES ('902', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28601 INSERT INTO `marc_subfield_structure` VALUES ('902', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28602 INSERT INTO `marc_subfield_structure` VALUES ('902', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28603 INSERT INTO `marc_subfield_structure` VALUES ('902', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28604 INSERT INTO `marc_subfield_structure` VALUES ('902', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28605 INSERT INTO `marc_subfield_structure` VALUES ('902', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28606 INSERT INTO `marc_subfield_structure` VALUES ('902', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28607 INSERT INTO `marc_subfield_structure` VALUES ('902', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28608 INSERT INTO `marc_subfield_structure` VALUES ('902', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28609 INSERT INTO `marc_subfield_structure` VALUES ('902', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28610 INSERT INTO `marc_subfield_structure` VALUES ('902', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28611 INSERT INTO `marc_subfield_structure` VALUES ('902', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28612 INSERT INTO `marc_subfield_structure` VALUES ('902', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28613 INSERT INTO `marc_subfield_structure` VALUES ('902', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28614 INSERT INTO `marc_subfield_structure` VALUES ('902', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28615 INSERT INTO `marc_subfield_structure` VALUES ('902', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28616 INSERT INTO `marc_subfield_structure` VALUES ('902', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28617 INSERT INTO `marc_subfield_structure` VALUES ('902', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28618 INSERT INTO `marc_subfield_structure` VALUES ('902', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28619 INSERT INTO `marc_subfield_structure` VALUES ('902', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28620 INSERT INTO `marc_subfield_structure` VALUES ('902', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28621 INSERT INTO `marc_subfield_structure` VALUES ('902', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28622 INSERT INTO `marc_subfield_structure` VALUES ('902', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28623 INSERT INTO `marc_subfield_structure` VALUES ('902', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28624 INSERT INTO `marc_subfield_structure` VALUES ('902', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28625 INSERT INTO `marc_subfield_structure` VALUES ('902', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28626 INSERT INTO `marc_subfield_structure` VALUES ('902', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28627 INSERT INTO `marc_subfield_structure` VALUES ('902', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28628 INSERT INTO `marc_subfield_structure` VALUES ('902', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28629 INSERT INTO `marc_subfield_structure` VALUES ('902', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28630 INSERT INTO `marc_subfield_structure` VALUES ('902', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28631 INSERT INTO `marc_subfield_structure` VALUES ('903', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28632 INSERT INTO `marc_subfield_structure` VALUES ('903', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28633 INSERT INTO `marc_subfield_structure` VALUES ('903', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28634 INSERT INTO `marc_subfield_structure` VALUES ('903', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28635 INSERT INTO `marc_subfield_structure` VALUES ('903', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28636 INSERT INTO `marc_subfield_structure` VALUES ('903', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28637 INSERT INTO `marc_subfield_structure` VALUES ('903', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28638 INSERT INTO `marc_subfield_structure` VALUES ('903', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28639 INSERT INTO `marc_subfield_structure` VALUES ('903', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28640 INSERT INTO `marc_subfield_structure` VALUES ('903', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28641 INSERT INTO `marc_subfield_structure` VALUES ('903', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28642 INSERT INTO `marc_subfield_structure` VALUES ('903', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28643 INSERT INTO `marc_subfield_structure` VALUES ('903', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28644 INSERT INTO `marc_subfield_structure` VALUES ('903', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28645 INSERT INTO `marc_subfield_structure` VALUES ('903', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28646 INSERT INTO `marc_subfield_structure` VALUES ('903', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28647 INSERT INTO `marc_subfield_structure` VALUES ('903', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28648 INSERT INTO `marc_subfield_structure` VALUES ('903', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28649 INSERT INTO `marc_subfield_structure` VALUES ('903', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28650 INSERT INTO `marc_subfield_structure` VALUES ('903', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28651 INSERT INTO `marc_subfield_structure` VALUES ('903', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28652 INSERT INTO `marc_subfield_structure` VALUES ('903', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28653 INSERT INTO `marc_subfield_structure` VALUES ('903', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28654 INSERT INTO `marc_subfield_structure` VALUES ('903', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28655 INSERT INTO `marc_subfield_structure` VALUES ('903', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28656 INSERT INTO `marc_subfield_structure` VALUES ('903', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28657 INSERT INTO `marc_subfield_structure` VALUES ('903', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28658 INSERT INTO `marc_subfield_structure` VALUES ('903', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28659 INSERT INTO `marc_subfield_structure` VALUES ('903', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28660 INSERT INTO `marc_subfield_structure` VALUES ('903', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28661 INSERT INTO `marc_subfield_structure` VALUES ('903', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28662 INSERT INTO `marc_subfield_structure` VALUES ('903', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28663 INSERT INTO `marc_subfield_structure` VALUES ('903', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28664 INSERT INTO `marc_subfield_structure` VALUES ('903', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28665 INSERT INTO `marc_subfield_structure` VALUES ('903', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28666 INSERT INTO `marc_subfield_structure` VALUES ('903', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28667 INSERT INTO `marc_subfield_structure` VALUES ('904', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28668 INSERT INTO `marc_subfield_structure` VALUES ('904', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28669 INSERT INTO `marc_subfield_structure` VALUES ('904', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28670 INSERT INTO `marc_subfield_structure` VALUES ('904', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28671 INSERT INTO `marc_subfield_structure` VALUES ('904', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28672 INSERT INTO `marc_subfield_structure` VALUES ('904', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28673 INSERT INTO `marc_subfield_structure` VALUES ('904', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28674 INSERT INTO `marc_subfield_structure` VALUES ('904', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28675 INSERT INTO `marc_subfield_structure` VALUES ('904', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28676 INSERT INTO `marc_subfield_structure` VALUES ('904', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28677 INSERT INTO `marc_subfield_structure` VALUES ('904', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28678 INSERT INTO `marc_subfield_structure` VALUES ('904', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28679 INSERT INTO `marc_subfield_structure` VALUES ('904', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28680 INSERT INTO `marc_subfield_structure` VALUES ('904', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28681 INSERT INTO `marc_subfield_structure` VALUES ('904', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28682 INSERT INTO `marc_subfield_structure` VALUES ('904', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28683 INSERT INTO `marc_subfield_structure` VALUES ('904', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28684 INSERT INTO `marc_subfield_structure` VALUES ('904', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28685 INSERT INTO `marc_subfield_structure` VALUES ('904', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28686 INSERT INTO `marc_subfield_structure` VALUES ('904', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28687 INSERT INTO `marc_subfield_structure` VALUES ('904', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28688 INSERT INTO `marc_subfield_structure` VALUES ('904', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28689 INSERT INTO `marc_subfield_structure` VALUES ('904', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28690 INSERT INTO `marc_subfield_structure` VALUES ('904', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28691 INSERT INTO `marc_subfield_structure` VALUES ('904', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28692 INSERT INTO `marc_subfield_structure` VALUES ('904', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28693 INSERT INTO `marc_subfield_structure` VALUES ('904', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28694 INSERT INTO `marc_subfield_structure` VALUES ('904', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28695 INSERT INTO `marc_subfield_structure` VALUES ('904', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28696 INSERT INTO `marc_subfield_structure` VALUES ('904', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28697 INSERT INTO `marc_subfield_structure` VALUES ('904', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28698 INSERT INTO `marc_subfield_structure` VALUES ('904', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28699 INSERT INTO `marc_subfield_structure` VALUES ('904', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28700 INSERT INTO `marc_subfield_structure` VALUES ('904', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28701 INSERT INTO `marc_subfield_structure` VALUES ('904', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28702 INSERT INTO `marc_subfield_structure` VALUES ('904', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28703 INSERT INTO `marc_subfield_structure` VALUES ('905', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28704 INSERT INTO `marc_subfield_structure` VALUES ('905', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28705 INSERT INTO `marc_subfield_structure` VALUES ('905', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28706 INSERT INTO `marc_subfield_structure` VALUES ('905', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28707 INSERT INTO `marc_subfield_structure` VALUES ('905', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28708 INSERT INTO `marc_subfield_structure` VALUES ('905', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28709 INSERT INTO `marc_subfield_structure` VALUES ('905', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28710 INSERT INTO `marc_subfield_structure` VALUES ('905', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28711 INSERT INTO `marc_subfield_structure` VALUES ('905', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28712 INSERT INTO `marc_subfield_structure` VALUES ('905', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28713 INSERT INTO `marc_subfield_structure` VALUES ('905', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28714 INSERT INTO `marc_subfield_structure` VALUES ('905', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28715 INSERT INTO `marc_subfield_structure` VALUES ('905', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28716 INSERT INTO `marc_subfield_structure` VALUES ('905', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28717 INSERT INTO `marc_subfield_structure` VALUES ('905', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28718 INSERT INTO `marc_subfield_structure` VALUES ('905', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28719 INSERT INTO `marc_subfield_structure` VALUES ('905', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28720 INSERT INTO `marc_subfield_structure` VALUES ('905', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28721 INSERT INTO `marc_subfield_structure` VALUES ('905', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28722 INSERT INTO `marc_subfield_structure` VALUES ('905', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28723 INSERT INTO `marc_subfield_structure` VALUES ('905', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28724 INSERT INTO `marc_subfield_structure` VALUES ('905', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28725 INSERT INTO `marc_subfield_structure` VALUES ('905', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28726 INSERT INTO `marc_subfield_structure` VALUES ('905', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28727 INSERT INTO `marc_subfield_structure` VALUES ('905', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28728 INSERT INTO `marc_subfield_structure` VALUES ('905', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28729 INSERT INTO `marc_subfield_structure` VALUES ('905', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28730 INSERT INTO `marc_subfield_structure` VALUES ('905', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28731 INSERT INTO `marc_subfield_structure` VALUES ('905', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28732 INSERT INTO `marc_subfield_structure` VALUES ('905', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28733 INSERT INTO `marc_subfield_structure` VALUES ('905', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28734 INSERT INTO `marc_subfield_structure` VALUES ('905', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28735 INSERT INTO `marc_subfield_structure` VALUES ('905', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28736 INSERT INTO `marc_subfield_structure` VALUES ('905', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28737 INSERT INTO `marc_subfield_structure` VALUES ('905', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28738 INSERT INTO `marc_subfield_structure` VALUES ('905', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28739 INSERT INTO `marc_subfield_structure` VALUES ('906', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28740 INSERT INTO `marc_subfield_structure` VALUES ('906', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28741 INSERT INTO `marc_subfield_structure` VALUES ('906', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28742 INSERT INTO `marc_subfield_structure` VALUES ('906', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28743 INSERT INTO `marc_subfield_structure` VALUES ('906', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28744 INSERT INTO `marc_subfield_structure` VALUES ('906', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28745 INSERT INTO `marc_subfield_structure` VALUES ('906', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28746 INSERT INTO `marc_subfield_structure` VALUES ('906', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28747 INSERT INTO `marc_subfield_structure` VALUES ('906', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28748 INSERT INTO `marc_subfield_structure` VALUES ('906', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28749 INSERT INTO `marc_subfield_structure` VALUES ('906', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28750 INSERT INTO `marc_subfield_structure` VALUES ('906', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28751 INSERT INTO `marc_subfield_structure` VALUES ('906', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28752 INSERT INTO `marc_subfield_structure` VALUES ('906', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28753 INSERT INTO `marc_subfield_structure` VALUES ('906', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28754 INSERT INTO `marc_subfield_structure` VALUES ('906', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28755 INSERT INTO `marc_subfield_structure` VALUES ('906', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28756 INSERT INTO `marc_subfield_structure` VALUES ('906', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28757 INSERT INTO `marc_subfield_structure` VALUES ('906', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28758 INSERT INTO `marc_subfield_structure` VALUES ('906', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28759 INSERT INTO `marc_subfield_structure` VALUES ('906', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28760 INSERT INTO `marc_subfield_structure` VALUES ('906', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28761 INSERT INTO `marc_subfield_structure` VALUES ('906', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28762 INSERT INTO `marc_subfield_structure` VALUES ('906', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28763 INSERT INTO `marc_subfield_structure` VALUES ('906', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28764 INSERT INTO `marc_subfield_structure` VALUES ('906', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28765 INSERT INTO `marc_subfield_structure` VALUES ('906', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28766 INSERT INTO `marc_subfield_structure` VALUES ('906', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28767 INSERT INTO `marc_subfield_structure` VALUES ('906', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28768 INSERT INTO `marc_subfield_structure` VALUES ('906', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28769 INSERT INTO `marc_subfield_structure` VALUES ('906', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28770 INSERT INTO `marc_subfield_structure` VALUES ('906', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28771 INSERT INTO `marc_subfield_structure` VALUES ('906', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28772 INSERT INTO `marc_subfield_structure` VALUES ('906', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28773 INSERT INTO `marc_subfield_structure` VALUES ('906', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28774 INSERT INTO `marc_subfield_structure` VALUES ('906', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28775 INSERT INTO `marc_subfield_structure` VALUES ('907', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28776 INSERT INTO `marc_subfield_structure` VALUES ('907', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28777 INSERT INTO `marc_subfield_structure` VALUES ('907', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28778 INSERT INTO `marc_subfield_structure` VALUES ('907', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28779 INSERT INTO `marc_subfield_structure` VALUES ('907', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28780 INSERT INTO `marc_subfield_structure` VALUES ('907', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28781 INSERT INTO `marc_subfield_structure` VALUES ('907', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28782 INSERT INTO `marc_subfield_structure` VALUES ('907', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28783 INSERT INTO `marc_subfield_structure` VALUES ('907', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28784 INSERT INTO `marc_subfield_structure` VALUES ('907', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28785 INSERT INTO `marc_subfield_structure` VALUES ('907', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28786 INSERT INTO `marc_subfield_structure` VALUES ('907', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28787 INSERT INTO `marc_subfield_structure` VALUES ('907', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28788 INSERT INTO `marc_subfield_structure` VALUES ('907', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28789 INSERT INTO `marc_subfield_structure` VALUES ('907', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28790 INSERT INTO `marc_subfield_structure` VALUES ('907', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28791 INSERT INTO `marc_subfield_structure` VALUES ('907', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28792 INSERT INTO `marc_subfield_structure` VALUES ('907', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28793 INSERT INTO `marc_subfield_structure` VALUES ('907', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28794 INSERT INTO `marc_subfield_structure` VALUES ('907', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28795 INSERT INTO `marc_subfield_structure` VALUES ('907', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28796 INSERT INTO `marc_subfield_structure` VALUES ('907', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28797 INSERT INTO `marc_subfield_structure` VALUES ('907', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28798 INSERT INTO `marc_subfield_structure` VALUES ('907', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28799 INSERT INTO `marc_subfield_structure` VALUES ('907', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28800 INSERT INTO `marc_subfield_structure` VALUES ('907', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28801 INSERT INTO `marc_subfield_structure` VALUES ('907', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28802 INSERT INTO `marc_subfield_structure` VALUES ('907', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28803 INSERT INTO `marc_subfield_structure` VALUES ('907', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28804 INSERT INTO `marc_subfield_structure` VALUES ('907', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28805 INSERT INTO `marc_subfield_structure` VALUES ('907', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28806 INSERT INTO `marc_subfield_structure` VALUES ('907', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28807 INSERT INTO `marc_subfield_structure` VALUES ('907', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28808 INSERT INTO `marc_subfield_structure` VALUES ('907', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28809 INSERT INTO `marc_subfield_structure` VALUES ('907', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28810 INSERT INTO `marc_subfield_structure` VALUES ('907', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28811 INSERT INTO `marc_subfield_structure` VALUES ('908', 'a', 'Put command parameter', 'Put command parameter', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28812 INSERT INTO `marc_subfield_structure` VALUES ('910', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28813 INSERT INTO `marc_subfield_structure` VALUES ('910', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28814 INSERT INTO `marc_subfield_structure` VALUES ('910', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28815 INSERT INTO `marc_subfield_structure` VALUES ('910', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28816 INSERT INTO `marc_subfield_structure` VALUES ('910', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28817 INSERT INTO `marc_subfield_structure` VALUES ('910', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28818 INSERT INTO `marc_subfield_structure` VALUES ('910', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28819 INSERT INTO `marc_subfield_structure` VALUES ('910', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28820 INSERT INTO `marc_subfield_structure` VALUES ('910', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28821 INSERT INTO `marc_subfield_structure` VALUES ('910', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28822 INSERT INTO `marc_subfield_structure` VALUES ('910', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28823 INSERT INTO `marc_subfield_structure` VALUES ('910', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28824 INSERT INTO `marc_subfield_structure` VALUES ('910', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28825 INSERT INTO `marc_subfield_structure` VALUES ('910', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28826 INSERT INTO `marc_subfield_structure` VALUES ('910', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28827 INSERT INTO `marc_subfield_structure` VALUES ('910', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28828 INSERT INTO `marc_subfield_structure` VALUES ('91o', 'a', 'User-option data', 'User-option data', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28829 INSERT INTO `marc_subfield_structure` VALUES ('91r', 'a', 'RLG standards note', 'RLG standards note', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28830 INSERT INTO `marc_subfield_structure` VALUES ('911', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28831 INSERT INTO `marc_subfield_structure` VALUES ('911', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28832 INSERT INTO `marc_subfield_structure` VALUES ('911', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28833 INSERT INTO `marc_subfield_structure` VALUES ('911', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28834 INSERT INTO `marc_subfield_structure` VALUES ('911', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28835 INSERT INTO `marc_subfield_structure` VALUES ('911', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28836 INSERT INTO `marc_subfield_structure` VALUES ('911', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28837 INSERT INTO `marc_subfield_structure` VALUES ('911', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28838 INSERT INTO `marc_subfield_structure` VALUES ('911', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28839 INSERT INTO `marc_subfield_structure` VALUES ('911', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28840 INSERT INTO `marc_subfield_structure` VALUES ('911', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28841 INSERT INTO `marc_subfield_structure` VALUES ('911', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28842 INSERT INTO `marc_subfield_structure` VALUES ('911', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28843 INSERT INTO `marc_subfield_structure` VALUES ('911', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28844 INSERT INTO `marc_subfield_structure` VALUES ('911', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28845 INSERT INTO `marc_subfield_structure` VALUES ('911', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28846 INSERT INTO `marc_subfield_structure` VALUES ('911', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28847 INSERT INTO `marc_subfield_structure` VALUES ('930', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28848 INSERT INTO `marc_subfield_structure` VALUES ('930', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28849 INSERT INTO `marc_subfield_structure` VALUES ('930', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28850 INSERT INTO `marc_subfield_structure` VALUES ('930', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28851 INSERT INTO `marc_subfield_structure` VALUES ('930', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28852 INSERT INTO `marc_subfield_structure` VALUES ('930', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28853 INSERT INTO `marc_subfield_structure` VALUES ('930', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28854 INSERT INTO `marc_subfield_structure` VALUES ('930', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28855 INSERT INTO `marc_subfield_structure` VALUES ('930', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28856 INSERT INTO `marc_subfield_structure` VALUES ('930', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28857 INSERT INTO `marc_subfield_structure` VALUES ('930', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28858 INSERT INTO `marc_subfield_structure` VALUES ('930', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28859 INSERT INTO `marc_subfield_structure` VALUES ('930', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28860 INSERT INTO `marc_subfield_structure` VALUES ('930', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28861 INSERT INTO `marc_subfield_structure` VALUES ('930', 's', 'Version', 'Version', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28862 INSERT INTO `marc_subfield_structure` VALUES ('930', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28863 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'a', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'KT', '', '');
28864 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'b', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'KT', '', '');
28865 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'c', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'KT', '', '');
28866 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'd', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'KT', '', '');
28867 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'e', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'KT', '', '');
28868 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'f', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'KT', '', '');
28869 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'g', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'KT', '', '');
28870 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'h', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'KT', '', '');
28871 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'i', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'KT', '', '');
28872 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'k', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'KT', '', '');
28873 INSERT INTO `marc_subfield_structure` VALUES ('936', 'a', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28874 INSERT INTO `marc_subfield_structure` VALUES ('940', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28875 INSERT INTO `marc_subfield_structure` VALUES ('940', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28876 INSERT INTO `marc_subfield_structure` VALUES ('940', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', 1, -6, 'KT', '', '');
28877 INSERT INTO `marc_subfield_structure` VALUES ('940', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28878 INSERT INTO `marc_subfield_structure` VALUES ('940', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28879 INSERT INTO `marc_subfield_structure` VALUES ('940', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28880 INSERT INTO `marc_subfield_structure` VALUES ('940', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28881 INSERT INTO `marc_subfield_structure` VALUES ('940', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28882 INSERT INTO `marc_subfield_structure` VALUES ('940', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28883 INSERT INTO `marc_subfield_structure` VALUES ('940', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28884 INSERT INTO `marc_subfield_structure` VALUES ('940', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28885 INSERT INTO `marc_subfield_structure` VALUES ('940', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28886 INSERT INTO `marc_subfield_structure` VALUES ('940', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28887 INSERT INTO `marc_subfield_structure` VALUES ('940', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28888 INSERT INTO `marc_subfield_structure` VALUES ('940', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28889 INSERT INTO `marc_subfield_structure` VALUES ('941', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28890 INSERT INTO `marc_subfield_structure` VALUES ('941', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'KT', '', '');
28891 INSERT INTO `marc_subfield_structure` VALUES ('943', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28892 INSERT INTO `marc_subfield_structure` VALUES ('943', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28893 INSERT INTO `marc_subfield_structure` VALUES ('943', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 9, '', '', '', 1, 5, 'KT', '', '130');
28894 INSERT INTO `marc_subfield_structure` VALUES ('943', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28895 INSERT INTO `marc_subfield_structure` VALUES ('943', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28896 INSERT INTO `marc_subfield_structure` VALUES ('943', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28897 INSERT INTO `marc_subfield_structure` VALUES ('943', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28898 INSERT INTO `marc_subfield_structure` VALUES ('943', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28899 INSERT INTO `marc_subfield_structure` VALUES ('943', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28900 INSERT INTO `marc_subfield_structure` VALUES ('943', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28901 INSERT INTO `marc_subfield_structure` VALUES ('943', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28902 INSERT INTO `marc_subfield_structure` VALUES ('943', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28903 INSERT INTO `marc_subfield_structure` VALUES ('943', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28904 INSERT INTO `marc_subfield_structure` VALUES ('943', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28905 INSERT INTO `marc_subfield_structure` VALUES ('943', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
28906 INSERT INTO `marc_subfield_structure` VALUES ('945', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28907 INSERT INTO `marc_subfield_structure` VALUES ('945', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28908 INSERT INTO `marc_subfield_structure` VALUES ('945', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28909 INSERT INTO `marc_subfield_structure` VALUES ('945', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28910 INSERT INTO `marc_subfield_structure` VALUES ('945', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28911 INSERT INTO `marc_subfield_structure` VALUES ('945', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28912 INSERT INTO `marc_subfield_structure` VALUES ('945', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28913 INSERT INTO `marc_subfield_structure` VALUES ('945', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28914 INSERT INTO `marc_subfield_structure` VALUES ('945', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28915 INSERT INTO `marc_subfield_structure` VALUES ('945', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28916 INSERT INTO `marc_subfield_structure` VALUES ('945', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28917 INSERT INTO `marc_subfield_structure` VALUES ('945', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28918 INSERT INTO `marc_subfield_structure` VALUES ('945', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28919 INSERT INTO `marc_subfield_structure` VALUES ('945', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28920 INSERT INTO `marc_subfield_structure` VALUES ('945', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28921 INSERT INTO `marc_subfield_structure` VALUES ('945', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28922 INSERT INTO `marc_subfield_structure` VALUES ('945', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28923 INSERT INTO `marc_subfield_structure` VALUES ('945', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28924 INSERT INTO `marc_subfield_structure` VALUES ('945', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28925 INSERT INTO `marc_subfield_structure` VALUES ('945', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28926 INSERT INTO `marc_subfield_structure` VALUES ('945', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28927 INSERT INTO `marc_subfield_structure` VALUES ('945', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28928 INSERT INTO `marc_subfield_structure` VALUES ('945', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28929 INSERT INTO `marc_subfield_structure` VALUES ('945', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28930 INSERT INTO `marc_subfield_structure` VALUES ('945', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28931 INSERT INTO `marc_subfield_structure` VALUES ('945', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28932 INSERT INTO `marc_subfield_structure` VALUES ('945', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28933 INSERT INTO `marc_subfield_structure` VALUES ('945', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28934 INSERT INTO `marc_subfield_structure` VALUES ('945', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28935 INSERT INTO `marc_subfield_structure` VALUES ('945', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28936 INSERT INTO `marc_subfield_structure` VALUES ('945', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28937 INSERT INTO `marc_subfield_structure` VALUES ('945', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28938 INSERT INTO `marc_subfield_structure` VALUES ('945', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28939 INSERT INTO `marc_subfield_structure` VALUES ('945', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28940 INSERT INTO `marc_subfield_structure` VALUES ('945', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28941 INSERT INTO `marc_subfield_structure` VALUES ('945', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28942 INSERT INTO `marc_subfield_structure` VALUES ('94c', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28943 INSERT INTO `marc_subfield_structure` VALUES ('94c', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28944 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'a', 'Title', 'Title', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28945 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28946 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28947 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28948 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28949 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28950 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28951 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28952 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'k', 'Form', 'Form', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28953 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28954 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28955 INSERT INTO `marc_subfield_structure` VALUES ('94c', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28956 INSERT INTO `marc_subfield_structure` VALUES ('946', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28957 INSERT INTO `marc_subfield_structure` VALUES ('946', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28958 INSERT INTO `marc_subfield_structure` VALUES ('946', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28959 INSERT INTO `marc_subfield_structure` VALUES ('946', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28960 INSERT INTO `marc_subfield_structure` VALUES ('946', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28961 INSERT INTO `marc_subfield_structure` VALUES ('946', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28962 INSERT INTO `marc_subfield_structure` VALUES ('946', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28963 INSERT INTO `marc_subfield_structure` VALUES ('946', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28964 INSERT INTO `marc_subfield_structure` VALUES ('946', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28965 INSERT INTO `marc_subfield_structure` VALUES ('946', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28966 INSERT INTO `marc_subfield_structure` VALUES ('946', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28967 INSERT INTO `marc_subfield_structure` VALUES ('946', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28968 INSERT INTO `marc_subfield_structure` VALUES ('946', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28969 INSERT INTO `marc_subfield_structure` VALUES ('946', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28970 INSERT INTO `marc_subfield_structure` VALUES ('946', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28971 INSERT INTO `marc_subfield_structure` VALUES ('946', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28972 INSERT INTO `marc_subfield_structure` VALUES ('946', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28973 INSERT INTO `marc_subfield_structure` VALUES ('946', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28974 INSERT INTO `marc_subfield_structure` VALUES ('946', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28975 INSERT INTO `marc_subfield_structure` VALUES ('946', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28976 INSERT INTO `marc_subfield_structure` VALUES ('946', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28977 INSERT INTO `marc_subfield_structure` VALUES ('946', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28978 INSERT INTO `marc_subfield_structure` VALUES ('946', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28979 INSERT INTO `marc_subfield_structure` VALUES ('946', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28980 INSERT INTO `marc_subfield_structure` VALUES ('946', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28981 INSERT INTO `marc_subfield_structure` VALUES ('946', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28982 INSERT INTO `marc_subfield_structure` VALUES ('946', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28983 INSERT INTO `marc_subfield_structure` VALUES ('946', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28984 INSERT INTO `marc_subfield_structure` VALUES ('946', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28985 INSERT INTO `marc_subfield_structure` VALUES ('946', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28986 INSERT INTO `marc_subfield_structure` VALUES ('946', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28987 INSERT INTO `marc_subfield_structure` VALUES ('946', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28988 INSERT INTO `marc_subfield_structure` VALUES ('946', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28989 INSERT INTO `marc_subfield_structure` VALUES ('946', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28990 INSERT INTO `marc_subfield_structure` VALUES ('946', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28991 INSERT INTO `marc_subfield_structure` VALUES ('946', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28992 INSERT INTO `marc_subfield_structure` VALUES ('947', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28993 INSERT INTO `marc_subfield_structure` VALUES ('947', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28994 INSERT INTO `marc_subfield_structure` VALUES ('947', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28995 INSERT INTO `marc_subfield_structure` VALUES ('947', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28996 INSERT INTO `marc_subfield_structure` VALUES ('947', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28997 INSERT INTO `marc_subfield_structure` VALUES ('947', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28998 INSERT INTO `marc_subfield_structure` VALUES ('947', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
28999 INSERT INTO `marc_subfield_structure` VALUES ('947', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29000 INSERT INTO `marc_subfield_structure` VALUES ('947', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29001 INSERT INTO `marc_subfield_structure` VALUES ('947', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29002 INSERT INTO `marc_subfield_structure` VALUES ('947', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29003 INSERT INTO `marc_subfield_structure` VALUES ('947', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29004 INSERT INTO `marc_subfield_structure` VALUES ('947', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29005 INSERT INTO `marc_subfield_structure` VALUES ('947', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29006 INSERT INTO `marc_subfield_structure` VALUES ('947', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29007 INSERT INTO `marc_subfield_structure` VALUES ('947', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29008 INSERT INTO `marc_subfield_structure` VALUES ('947', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29009 INSERT INTO `marc_subfield_structure` VALUES ('947', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29010 INSERT INTO `marc_subfield_structure` VALUES ('947', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29011 INSERT INTO `marc_subfield_structure` VALUES ('947', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29012 INSERT INTO `marc_subfield_structure` VALUES ('947', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29013 INSERT INTO `marc_subfield_structure` VALUES ('947', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29014 INSERT INTO `marc_subfield_structure` VALUES ('947', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29015 INSERT INTO `marc_subfield_structure` VALUES ('947', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29016 INSERT INTO `marc_subfield_structure` VALUES ('947', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29017 INSERT INTO `marc_subfield_structure` VALUES ('947', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29018 INSERT INTO `marc_subfield_structure` VALUES ('947', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29019 INSERT INTO `marc_subfield_structure` VALUES ('947', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29020 INSERT INTO `marc_subfield_structure` VALUES ('947', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29021 INSERT INTO `marc_subfield_structure` VALUES ('947', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29022 INSERT INTO `marc_subfield_structure` VALUES ('947', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29023 INSERT INTO `marc_subfield_structure` VALUES ('947', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29024 INSERT INTO `marc_subfield_structure` VALUES ('947', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29025 INSERT INTO `marc_subfield_structure` VALUES ('947', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29026 INSERT INTO `marc_subfield_structure` VALUES ('947', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29027 INSERT INTO `marc_subfield_structure` VALUES ('947', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29028 INSERT INTO `marc_subfield_structure` VALUES ('948', '0', '0 (OCLC)', '0 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29029 INSERT INTO `marc_subfield_structure` VALUES ('948', '1', '1 (OCLC)', '1 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29030 INSERT INTO `marc_subfield_structure` VALUES ('948', '2', '2 (OCLC)', '2 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29031 INSERT INTO `marc_subfield_structure` VALUES ('948', '3', '3 (OCLC)', '3 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29032 INSERT INTO `marc_subfield_structure` VALUES ('948', '4', '4 (OCLC)', '4 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29033 INSERT INTO `marc_subfield_structure` VALUES ('948', '5', '5 (OCLC)', '5 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29034 INSERT INTO `marc_subfield_structure` VALUES ('948', '6', '6 (OCLC)', '6 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29035 INSERT INTO `marc_subfield_structure` VALUES ('948', '7', '7 (OCLC)', '7 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29036 INSERT INTO `marc_subfield_structure` VALUES ('948', '8', '8 (OCLC)', '8 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29037 INSERT INTO `marc_subfield_structure` VALUES ('948', '9', '9 (OCLC)', '9 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29038 INSERT INTO `marc_subfield_structure` VALUES ('948', 'a', 'Series part designator, SPT (RLIN)', 'Series part designator, SPT (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29039 INSERT INTO `marc_subfield_structure` VALUES ('948', 'b', 'b (OCLC)', 'b (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29040 INSERT INTO `marc_subfield_structure` VALUES ('948', 'c', 'c (OCLC)', 'c (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29041 INSERT INTO `marc_subfield_structure` VALUES ('948', 'd', 'd (OCLC)', 'd (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29042 INSERT INTO `marc_subfield_structure` VALUES ('948', 'e', 'e (OCLC)', 'e (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29043 INSERT INTO `marc_subfield_structure` VALUES ('948', 'f', 'f (OCLC)', 'f (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29044 INSERT INTO `marc_subfield_structure` VALUES ('948', 'g', 'g (OCLC)', 'g (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29045 INSERT INTO `marc_subfield_structure` VALUES ('948', 'h', 'h (OCLC)', 'h (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29046 INSERT INTO `marc_subfield_structure` VALUES ('948', 'i', 'i (OCLC)', 'i (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29047 INSERT INTO `marc_subfield_structure` VALUES ('948', 'j', 'j (OCLC)', 'j (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29048 INSERT INTO `marc_subfield_structure` VALUES ('948', 'k', 'k (OCLC)', 'k (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29049 INSERT INTO `marc_subfield_structure` VALUES ('948', 'l', 'l (OCLC)', 'l (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29050 INSERT INTO `marc_subfield_structure` VALUES ('948', 'm', 'm (OCLC)', 'm (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29051 INSERT INTO `marc_subfield_structure` VALUES ('948', 'n', 'n (OCLC)', 'n (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29052 INSERT INTO `marc_subfield_structure` VALUES ('948', 'o', 'o (OCLC)', 'o (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29053 INSERT INTO `marc_subfield_structure` VALUES ('948', 'p', 'p (OCLC)', 'p (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29054 INSERT INTO `marc_subfield_structure` VALUES ('948', 'q', 'q (OCLC)', 'q (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29055 INSERT INTO `marc_subfield_structure` VALUES ('948', 'r', 'r (OCLC)', 'r (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29056 INSERT INTO `marc_subfield_structure` VALUES ('948', 's', 's (OCLC)', 's (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29057 INSERT INTO `marc_subfield_structure` VALUES ('948', 't', 't (OCLC)', 't (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29058 INSERT INTO `marc_subfield_structure` VALUES ('948', 'u', 'u (OCLC)', 'u (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29059 INSERT INTO `marc_subfield_structure` VALUES ('948', 'v', 'v (OCLC)', 'v (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29060 INSERT INTO `marc_subfield_structure` VALUES ('948', 'w', 'w (OCLC)', 'w (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29061 INSERT INTO `marc_subfield_structure` VALUES ('948', 'x', 'x (OCLC)', 'x (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29062 INSERT INTO `marc_subfield_structure` VALUES ('948', 'y', 'y (OCLC)', 'y (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29063 INSERT INTO `marc_subfield_structure` VALUES ('948', 'z', 'z (OCLC)', 'z (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29064 INSERT INTO `marc_subfield_structure` VALUES ('949', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29065 INSERT INTO `marc_subfield_structure` VALUES ('949', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29066 INSERT INTO `marc_subfield_structure` VALUES ('949', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29067 INSERT INTO `marc_subfield_structure` VALUES ('949', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29068 INSERT INTO `marc_subfield_structure` VALUES ('949', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29069 INSERT INTO `marc_subfield_structure` VALUES ('949', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29070 INSERT INTO `marc_subfield_structure` VALUES ('949', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29071 INSERT INTO `marc_subfield_structure` VALUES ('949', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29072 INSERT INTO `marc_subfield_structure` VALUES ('949', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29073 INSERT INTO `marc_subfield_structure` VALUES ('949', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29074 INSERT INTO `marc_subfield_structure` VALUES ('949', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29075 INSERT INTO `marc_subfield_structure` VALUES ('949', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29076 INSERT INTO `marc_subfield_structure` VALUES ('949', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29077 INSERT INTO `marc_subfield_structure` VALUES ('949', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29078 INSERT INTO `marc_subfield_structure` VALUES ('949', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29079 INSERT INTO `marc_subfield_structure` VALUES ('949', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29080 INSERT INTO `marc_subfield_structure` VALUES ('949', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29081 INSERT INTO `marc_subfield_structure` VALUES ('949', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29082 INSERT INTO `marc_subfield_structure` VALUES ('949', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29083 INSERT INTO `marc_subfield_structure` VALUES ('949', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29084 INSERT INTO `marc_subfield_structure` VALUES ('949', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29085 INSERT INTO `marc_subfield_structure` VALUES ('949', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29086 INSERT INTO `marc_subfield_structure` VALUES ('949', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29087 INSERT INTO `marc_subfield_structure` VALUES ('949', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29088 INSERT INTO `marc_subfield_structure` VALUES ('949', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29089 INSERT INTO `marc_subfield_structure` VALUES ('949', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29090 INSERT INTO `marc_subfield_structure` VALUES ('949', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29091 INSERT INTO `marc_subfield_structure` VALUES ('949', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29092 INSERT INTO `marc_subfield_structure` VALUES ('949', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29093 INSERT INTO `marc_subfield_structure` VALUES ('949', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29094 INSERT INTO `marc_subfield_structure` VALUES ('949', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29095 INSERT INTO `marc_subfield_structure` VALUES ('949', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29096 INSERT INTO `marc_subfield_structure` VALUES ('949', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29097 INSERT INTO `marc_subfield_structure` VALUES ('949', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29098 INSERT INTO `marc_subfield_structure` VALUES ('949', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29099 INSERT INTO `marc_subfield_structure` VALUES ('949', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29100 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'a', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29101 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'b', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29102 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'c', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29103 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'd', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29104 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'e', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29105 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'a', 'ATC', 'ATC', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29106 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'b', 'SNR', 'SNR', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29107 INSERT INTO `marc_subfield_structure` VALUES ('950', 'a', 'Classification number, LCAL (RLIN)', 'Classification number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29108 INSERT INTO `marc_subfield_structure` VALUES ('950', 'b', 'Book number/undivided call number, LCAL (RLIN)', 'Book number/undivided call number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29109 INSERT INTO `marc_subfield_structure` VALUES ('950', 'd', 'Additional free-text stamp above the call number, LCAL (RLIN)', 'Additional free-text stamp above the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29110 INSERT INTO `marc_subfield_structure` VALUES ('950', 'e', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29111 INSERT INTO `marc_subfield_structure` VALUES ('950', 'f', 'Location-level footnote, LFNT (RLIN)', 'Location-level footnote, LFNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29112 INSERT INTO `marc_subfield_structure` VALUES ('950', 'h', 'Location-level output transaction history, LHST (RLIN)', 'Location-level output transaction history, LHST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29113 INSERT INTO `marc_subfield_structure` VALUES ('950', 'i', 'Location-level extra card request, LEXT (RLIN)', 'Location-level extra card request, LEXT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29114 INSERT INTO `marc_subfield_structure` VALUES ('950', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29115 INSERT INTO `marc_subfield_structure` VALUES ('950', 'n', 'Location-level additional note, LANT (RLIN)', 'Location-level additional note, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29116 INSERT INTO `marc_subfield_structure` VALUES ('950', 'p', 'Location-level pathfinder, LPTH (RLIN)', 'Location-level pathfinder, LPTH (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29117 INSERT INTO `marc_subfield_structure` VALUES ('950', 't', 'Location-level field suppression, LFSP (RLIN)', 'Location-level field suppression, LFSP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29118 INSERT INTO `marc_subfield_structure` VALUES ('950', 'u', 'Non-printing notes, LANT (RLIN)', 'Non-printing notes, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29119 INSERT INTO `marc_subfield_structure` VALUES ('950', 'v', 'Volumes, LVOL (RLIN)', 'Volumes, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29120 INSERT INTO `marc_subfield_structure` VALUES ('950', 'w', 'Subscription status code, LANT (RLIN)', 'Subscription status code, LANT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29121 INSERT INTO `marc_subfield_structure` VALUES ('950', 'y', 'Date, LVOL (RLIN)', 'Date, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29122 INSERT INTO `marc_subfield_structure` VALUES ('950', 'z', 'Retention, LVOL (RLIN)', 'Retention, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29123 INSERT INTO `marc_subfield_structure` VALUES ('951', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
29124 INSERT INTO `marc_subfield_structure` VALUES ('951', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
29125 INSERT INTO `marc_subfield_structure` VALUES ('951', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
29126 INSERT INTO `marc_subfield_structure` VALUES ('951', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
29127 INSERT INTO `marc_subfield_structure` VALUES ('951', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
29128 INSERT INTO `marc_subfield_structure` VALUES ('951', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
29129 INSERT INTO `marc_subfield_structure` VALUES ('951', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
29130 INSERT INTO `marc_subfield_structure` VALUES ('951', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
29131 INSERT INTO `marc_subfield_structure` VALUES ('951', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
29132 INSERT INTO `marc_subfield_structure` VALUES ('951', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'KT', '', '');
29133 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'a', 'Record ID (RLIN)', 'Record ID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29134 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'b', 'Institution name (RLIN)', 'Institution name (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29135 INSERT INTO `marc_subfield_structure` VALUES ('95r', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'KT', '', '');
29136 INSERT INTO `marc_subfield_structure` VALUES ('95r', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'KT', '', '');
29137 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'a', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'KT', '', '');
29138 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'b', 'State, province, territory', 'State, province, territory', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'KT', '', '');
29139 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'c', 'County, region, islands area', 'County, region, islands area', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'KT', '', '');
29140 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'd', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'KT', '', '');
29141 INSERT INTO `marc_subfield_structure` VALUES ('955', 'a', 'Classification number, CCAL (RLIN)', 'Classification number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29142 INSERT INTO `marc_subfield_structure` VALUES ('955', 'b', 'Book number/undivided call number, CCAL (RLIN)', 'Book number/undivided call number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29143 INSERT INTO `marc_subfield_structure` VALUES ('955', 'c', 'Copy information and material description, CCAL + MDES (RLIN)', 'Copy information and material description, CCAL + MDES (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29144 INSERT INTO `marc_subfield_structure` VALUES ('955', 'h', 'Copy status--for earlier dates, CST (RLIN)', 'Copy status--for earlier dates, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29145 INSERT INTO `marc_subfield_structure` VALUES ('955', 'i', 'Copy status, CST (RLIN)', 'Copy status, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29146 INSERT INTO `marc_subfield_structure` VALUES ('955', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29147 INSERT INTO `marc_subfield_structure` VALUES ('955', 'q', 'Aquisitions control number, HNT (RLIN)', 'Aquisitions control number, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29148 INSERT INTO `marc_subfield_structure` VALUES ('955', 'r', 'Circulation control number, HNT (RLIN)', 'Circulation control number, HNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29149 INSERT INTO `marc_subfield_structure` VALUES ('955', 's', 'Shelflist note, HNT (RLIN)', 'Shelflist note, HNT (RLIN)', 1, 0, '', 9, '', '', '', 1, 5, 'KT', '', '');
29150 INSERT INTO `marc_subfield_structure` VALUES ('955', 'u', 'Non-printing notes, HNT (RLIN)', 'Non-printing notes, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29151 INSERT INTO `marc_subfield_structure` VALUES ('956', '2', 'Access method', 'Access method', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29152 INSERT INTO `marc_subfield_structure` VALUES ('956', '3', 'Materials specified', 'Materials specified', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29153 INSERT INTO `marc_subfield_structure` VALUES ('956', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29154 INSERT INTO `marc_subfield_structure` VALUES ('956', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29155 INSERT INTO `marc_subfield_structure` VALUES ('956', 'a', 'Host name', 'Host name', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29156 INSERT INTO `marc_subfield_structure` VALUES ('956', 'b', 'Access number', 'Access number', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29157 INSERT INTO `marc_subfield_structure` VALUES ('956', 'c', 'Compression information', 'Compression information', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29158 INSERT INTO `marc_subfield_structure` VALUES ('956', 'd', 'Path', 'Path', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29159 INSERT INTO `marc_subfield_structure` VALUES ('956', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29160 INSERT INTO `marc_subfield_structure` VALUES ('956', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29161 INSERT INTO `marc_subfield_structure` VALUES ('956', 'i', 'Instruction', 'Instruction', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29162 INSERT INTO `marc_subfield_structure` VALUES ('956', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29163 INSERT INTO `marc_subfield_structure` VALUES ('956', 'k', 'Password', 'Password', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29164 INSERT INTO `marc_subfield_structure` VALUES ('956', 'l', 'Logon', 'Logon', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29165 INSERT INTO `marc_subfield_structure` VALUES ('956', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29166 INSERT INTO `marc_subfield_structure` VALUES ('956', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29167 INSERT INTO `marc_subfield_structure` VALUES ('956', 'o', 'Operating system', 'Operating system', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29168 INSERT INTO `marc_subfield_structure` VALUES ('956', 'p', 'Port', 'Port', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29169 INSERT INTO `marc_subfield_structure` VALUES ('956', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29170 INSERT INTO `marc_subfield_structure` VALUES ('956', 'r', 'Settings', 'Settings', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29171 INSERT INTO `marc_subfield_structure` VALUES ('956', 's', 'File size', 'File size', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29172 INSERT INTO `marc_subfield_structure` VALUES ('956', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29173 INSERT INTO `marc_subfield_structure` VALUES ('956', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -6, 'KT', '', '');
29174 INSERT INTO `marc_subfield_structure` VALUES ('956', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29175 INSERT INTO `marc_subfield_structure` VALUES ('956', 'w', 'Record control number', 'Record control number', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29176 INSERT INTO `marc_subfield_structure` VALUES ('956', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', 0, 6, 'KT', '', '');
29177 INSERT INTO `marc_subfield_structure` VALUES ('956', 'y', 'Link text', 'Link text', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29178 INSERT INTO `marc_subfield_structure` VALUES ('956', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29179 INSERT INTO `marc_subfield_structure` VALUES ('960', '3', 'Materials specified, MATL', 'Materials specified, MATL', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29180 INSERT INTO `marc_subfield_structure` VALUES ('960', 'a', 'Physical location, PLOC (RLIN)', 'Physical location, PLOC (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29181 INSERT INTO `marc_subfield_structure` VALUES ('967', 'a', 'GNR (RLIN)', 'GNR (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29182 INSERT INTO `marc_subfield_structure` VALUES ('967', 'c', 'PSI (RLIN)', 'PSI (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29183 INSERT INTO `marc_subfield_structure` VALUES ('980', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29184 INSERT INTO `marc_subfield_structure` VALUES ('980', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29185 INSERT INTO `marc_subfield_structure` VALUES ('980', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29186 INSERT INTO `marc_subfield_structure` VALUES ('980', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29187 INSERT INTO `marc_subfield_structure` VALUES ('980', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29188 INSERT INTO `marc_subfield_structure` VALUES ('980', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29189 INSERT INTO `marc_subfield_structure` VALUES ('980', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29190 INSERT INTO `marc_subfield_structure` VALUES ('980', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29191 INSERT INTO `marc_subfield_structure` VALUES ('980', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29192 INSERT INTO `marc_subfield_structure` VALUES ('980', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29193 INSERT INTO `marc_subfield_structure` VALUES ('980', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29194 INSERT INTO `marc_subfield_structure` VALUES ('980', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29195 INSERT INTO `marc_subfield_structure` VALUES ('980', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29196 INSERT INTO `marc_subfield_structure` VALUES ('980', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29197 INSERT INTO `marc_subfield_structure` VALUES ('980', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29198 INSERT INTO `marc_subfield_structure` VALUES ('980', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29199 INSERT INTO `marc_subfield_structure` VALUES ('980', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29200 INSERT INTO `marc_subfield_structure` VALUES ('980', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29201 INSERT INTO `marc_subfield_structure` VALUES ('980', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29202 INSERT INTO `marc_subfield_structure` VALUES ('980', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29203 INSERT INTO `marc_subfield_structure` VALUES ('980', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29204 INSERT INTO `marc_subfield_structure` VALUES ('980', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29205 INSERT INTO `marc_subfield_structure` VALUES ('980', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29206 INSERT INTO `marc_subfield_structure` VALUES ('980', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29207 INSERT INTO `marc_subfield_structure` VALUES ('981', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29208 INSERT INTO `marc_subfield_structure` VALUES ('981', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29209 INSERT INTO `marc_subfield_structure` VALUES ('981', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29210 INSERT INTO `marc_subfield_structure` VALUES ('981', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29211 INSERT INTO `marc_subfield_structure` VALUES ('981', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29212 INSERT INTO `marc_subfield_structure` VALUES ('981', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29213 INSERT INTO `marc_subfield_structure` VALUES ('981', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29214 INSERT INTO `marc_subfield_structure` VALUES ('981', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29215 INSERT INTO `marc_subfield_structure` VALUES ('981', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29216 INSERT INTO `marc_subfield_structure` VALUES ('981', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29217 INSERT INTO `marc_subfield_structure` VALUES ('981', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29218 INSERT INTO `marc_subfield_structure` VALUES ('981', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29219 INSERT INTO `marc_subfield_structure` VALUES ('981', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29220 INSERT INTO `marc_subfield_structure` VALUES ('981', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29221 INSERT INTO `marc_subfield_structure` VALUES ('981', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29222 INSERT INTO `marc_subfield_structure` VALUES ('981', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29223 INSERT INTO `marc_subfield_structure` VALUES ('981', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29224 INSERT INTO `marc_subfield_structure` VALUES ('981', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29225 INSERT INTO `marc_subfield_structure` VALUES ('981', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29226 INSERT INTO `marc_subfield_structure` VALUES ('981', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29227 INSERT INTO `marc_subfield_structure` VALUES ('981', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29228 INSERT INTO `marc_subfield_structure` VALUES ('981', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29229 INSERT INTO `marc_subfield_structure` VALUES ('982', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29230 INSERT INTO `marc_subfield_structure` VALUES ('982', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29231 INSERT INTO `marc_subfield_structure` VALUES ('982', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29232 INSERT INTO `marc_subfield_structure` VALUES ('982', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29233 INSERT INTO `marc_subfield_structure` VALUES ('982', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29234 INSERT INTO `marc_subfield_structure` VALUES ('982', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29235 INSERT INTO `marc_subfield_structure` VALUES ('982', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29236 INSERT INTO `marc_subfield_structure` VALUES ('982', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29237 INSERT INTO `marc_subfield_structure` VALUES ('982', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29238 INSERT INTO `marc_subfield_structure` VALUES ('982', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29239 INSERT INTO `marc_subfield_structure` VALUES ('982', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29240 INSERT INTO `marc_subfield_structure` VALUES ('982', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29241 INSERT INTO `marc_subfield_structure` VALUES ('982', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29242 INSERT INTO `marc_subfield_structure` VALUES ('982', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29243 INSERT INTO `marc_subfield_structure` VALUES ('982', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29244 INSERT INTO `marc_subfield_structure` VALUES ('982', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29245 INSERT INTO `marc_subfield_structure` VALUES ('982', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29246 INSERT INTO `marc_subfield_structure` VALUES ('982', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29247 INSERT INTO `marc_subfield_structure` VALUES ('982', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29248 INSERT INTO `marc_subfield_structure` VALUES ('982', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'KT', '', '');
29249 INSERT INTO `marc_subfield_structure` VALUES ('983', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29250 INSERT INTO `marc_subfield_structure` VALUES ('983', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29251 INSERT INTO `marc_subfield_structure` VALUES ('983', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29252 INSERT INTO `marc_subfield_structure` VALUES ('983', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29253 INSERT INTO `marc_subfield_structure` VALUES ('983', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29254 INSERT INTO `marc_subfield_structure` VALUES ('983', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29255 INSERT INTO `marc_subfield_structure` VALUES ('983', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29256 INSERT INTO `marc_subfield_structure` VALUES ('983', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29257 INSERT INTO `marc_subfield_structure` VALUES ('983', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29258 INSERT INTO `marc_subfield_structure` VALUES ('983', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29259 INSERT INTO `marc_subfield_structure` VALUES ('983', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29260 INSERT INTO `marc_subfield_structure` VALUES ('983', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29261 INSERT INTO `marc_subfield_structure` VALUES ('983', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29262 INSERT INTO `marc_subfield_structure` VALUES ('983', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29263 INSERT INTO `marc_subfield_structure` VALUES ('983', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29264 INSERT INTO `marc_subfield_structure` VALUES ('983', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29265 INSERT INTO `marc_subfield_structure` VALUES ('983', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29266 INSERT INTO `marc_subfield_structure` VALUES ('984', 'a', 'Holding library identification number', 'Holding library identification number', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29267 INSERT INTO `marc_subfield_structure` VALUES ('984', 'b', 'Physical description codes', 'Physical description codes', 1, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29268 INSERT INTO `marc_subfield_structure` VALUES ('984', 'c', 'Call number', 'Call number', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29269 INSERT INTO `marc_subfield_structure` VALUES ('984', 'd', 'Volume or other numbering', 'Volume or other numbering', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29270 INSERT INTO `marc_subfield_structure` VALUES ('984', 'e', 'Dates', 'Dates', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29271 INSERT INTO `marc_subfield_structure` VALUES ('984', 'f', 'Completeness note', 'Completeness note', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29272 INSERT INTO `marc_subfield_structure` VALUES ('984', 'g', 'Referral note', 'Referral note', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29273 INSERT INTO `marc_subfield_structure` VALUES ('984', 'h', 'Retention note', 'Retention note', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29274 INSERT INTO `marc_subfield_structure` VALUES ('987', 'a', 'Romanization/conversion identifier', 'Romanization/conversion identifier', 0, 0, '', 9, '', '', '', NULL, -6, 'KT', '', '');
29275 INSERT INTO `marc_subfield_structure` VALUES ('987', 'b', 'Agency that converted, created or reviewed', 'Agency that converted, created or reviewed', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29276 INSERT INTO `marc_subfield_structure` VALUES ('987', 'c', 'Date of conversion or review', 'Date of conversion or review', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29277 INSERT INTO `marc_subfield_structure` VALUES ('987', 'd', 'Status code', 'Status code ', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29278 INSERT INTO `marc_subfield_structure` VALUES ('987', 'e', 'Version of conversion program used', 'Version of conversion program used', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29279 INSERT INTO `marc_subfield_structure` VALUES ('987', 'f', 'Note', 'Note', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29280 INSERT INTO `marc_subfield_structure` VALUES ('990', 'a', 'Link information for 9XX fields', 'Link information for 9XX fields', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29281 INSERT INTO `marc_subfield_structure` VALUES ('990', 'b', 'Link information for field corresponding to 9XX field', 'Link information for field corresponding to 9XX field', 1, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29282 INSERT INTO `marc_subfield_structure` VALUES ('995', 'a', 'Origine du document, texte libre', 'Origine du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29283 INSERT INTO `marc_subfield_structure` VALUES ('995', 'b', 'Origine du document, donn&eacute;e cod&eacute;e', '', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29284 INSERT INTO `marc_subfield_structure` VALUES ('995', 'c', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29285 INSERT INTO `marc_subfield_structure` VALUES ('995', 'd', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29286 INSERT INTO `marc_subfield_structure` VALUES ('995', 'e', 'Genre d&eacute;taill&eacute;', 'Genre d&eacute;taill&eacute;', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29287 INSERT INTO `marc_subfield_structure` VALUES ('995', 'f', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29288 INSERT INTO `marc_subfield_structure` VALUES ('995', 'g', 'Code &agrave; barres, pr&eacute;fixe', 'Code &agrave; barres, pr&eacute;fixe', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29289 INSERT INTO `marc_subfield_structure` VALUES ('995', 'h', 'Code &agrave; barres, incr&eacute;mentation', 'Code &agrave; barres, incr&eacute;mentation', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29290 INSERT INTO `marc_subfield_structure` VALUES ('995', 'i', 'Code &agrave; barres, suffixe', 'Code &agrave; barres, suffixe', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29291 INSERT INTO `marc_subfield_structure` VALUES ('995', 'j', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29292 INSERT INTO `marc_subfield_structure` VALUES ('995', 'k', 'Cote', 'Cote', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29293 INSERT INTO `marc_subfield_structure` VALUES ('995', 'l', 'Volumaison', 'Volumaison', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29294 INSERT INTO `marc_subfield_structure` VALUES ('995', 'm', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29295 INSERT INTO `marc_subfield_structure` VALUES ('995', 'n', 'Date de restitution pr&eacute;vue', 'Date de restitution pr&eacute;vue', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29296 INSERT INTO `marc_subfield_structure` VALUES ('995', 'o', 'Cat&eacute;gorie de circulation', 'Cat&eacute;gorie de circulation', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29297 INSERT INTO `marc_subfield_structure` VALUES ('995', 'p', 'P&eacute;riodique', 'P&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29298 INSERT INTO `marc_subfield_structure` VALUES ('995', 'q', 'Public vis&eacute; (selon l\'&acirc;ge)', 'Public vis&eacute; (selon l\'&acirc;ge)', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29299 INSERT INTO `marc_subfield_structure` VALUES ('995', 'r', 'Type de document et support mat&eacute;riel', 'Type de document et support mat&eacute;riel', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29300 INSERT INTO `marc_subfield_structure` VALUES ('995', 's', 'Él&eacute;ment de tri', 'Él&eacute;ment de tri', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29301 INSERT INTO `marc_subfield_structure` VALUES ('995', 't', 'Genre', 'Genre', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29302 INSERT INTO `marc_subfield_structure` VALUES ('995', 'u', 'Note sur l\'exemplaire', 'Note sur l\'exemplaire', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29303 INSERT INTO `marc_subfield_structure` VALUES ('995', 'v', 'Note sur le num&eacute;ro de p&eacute;riodique', 'Note sur le num&eacute;ro de p&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29304 INSERT INTO `marc_subfield_structure` VALUES ('995', 'w', 'Établissement cible du document, texte libre', 'Établissement cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29305 INSERT INTO `marc_subfield_structure` VALUES ('995', 'x', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29306 INSERT INTO `marc_subfield_structure` VALUES ('995', 'y', 'Ensemble cible du document , texte libre', 'Ensemble cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29307 INSERT INTO `marc_subfield_structure` VALUES ('995', 'z', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'KT', '', '');
29308 INSERT INTO `marc_subfield_structure` VALUES ('998', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29309 INSERT INTO `marc_subfield_structure` VALUES ('998', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29310 INSERT INTO `marc_subfield_structure` VALUES ('998', 'd', 'First date, FD (RLIN)', 'First Date, FD (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'KT', '', '');
29311 INSERT INTO `marc_subfield_structure` VALUES ('998', 'i', 'RINS (RLIN)', 'RINS (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29312 INSERT INTO `marc_subfield_structure` VALUES ('998', 'l', 'LI (RLIN)', 'LI (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29313 INSERT INTO `marc_subfield_structure` VALUES ('998', 'n', 'NUC (RLIN)', 'NUC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29314 INSERT INTO `marc_subfield_structure` VALUES ('998', 'p', 'PROC (RLIN)', 'PROC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29315 INSERT INTO `marc_subfield_structure` VALUES ('998', 's', 'CC (RLIN)', 'CC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29316 INSERT INTO `marc_subfield_structure` VALUES ('998', 't', 'RTYP (RLIN)', 'RTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29317 INSERT INTO `marc_subfield_structure` VALUES ('998', 'w', 'PLINK (RLIN)', 'PLINK (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29318 INSERT INTO `marc_subfield_structure` VALUES ('999', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
29319 INSERT INTO `marc_subfield_structure` VALUES ('999', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'KT', '', '');
29320 INSERT INTO `marc_subfield_structure` VALUES ('999', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
29321 INSERT INTO `marc_subfield_structure` VALUES ('999', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
29322 INSERT INTO `marc_subfield_structure` VALUES ('999', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
29323 INSERT INTO `marc_subfield_structure` VALUES ('999', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
29324 INSERT INTO `marc_subfield_structure` VALUES ('999', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
29325 INSERT INTO `marc_subfield_structure` VALUES ('999', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
29326 INSERT INTO `marc_subfield_structure` VALUES ('999', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
29327 INSERT INTO `marc_subfield_structure` VALUES ('999', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
29328 INSERT INTO `marc_subfield_structure` VALUES ('999', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
29329 INSERT INTO `marc_subfield_structure` VALUES ('999', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
29330 INSERT INTO `marc_subfield_structure` VALUES ('999', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'KT', '', '');
29331 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'a', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29332 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'd', 'UAD (RLIN)', 'UAD (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29333 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'f', 'FPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29334 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'h', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29335 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'i', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29336 INSERT INTO `marc_subfield_structure` VALUES ('u01', 's', 'UST (RLIN)', 'UST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29337 INSERT INTO `marc_subfield_structure` VALUES ('u01', 't', 'UTYP (RLIN)', 'UTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29338 INSERT INTO `marc_subfield_structure` VALUES ('u02', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29339 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29340 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'b', 'Additional codes following the standard number', 'Additional codes following the standard number', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29341 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29342 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29343 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'n', 'LSI', 'LSI', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29344 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'o', 'SID', 'SID', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29345 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'p', 'DP', 'DP', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29346 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'r', 'RUSH', 'RUSH', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29347 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'a', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29348 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'b', 'SID', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29349 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'c', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29350 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'd', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29351 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'e', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29352 INSERT INTO `marc_subfield_structure` VALUES ('u10', 's', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29353 INSERT INTO `marc_subfield_structure` VALUES ('u11', 'a', 'Department report request, DRR (DRRH for earlier occurrences)', 'DRR (DRRH for earlier occurrences)', 1, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29354 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'a', 'SUPN', 'SUPN', 1, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29355 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'b', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29356 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'c', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29357 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'd', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29358 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'e', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29359 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'x', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29360 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'a', 'SHIP', 'SHIP', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29361 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'b', 'BILL', 'BILL', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29362 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'c', 'DAC', 'DAC', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29363 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'n', 'LSAC', 'LSAC', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29364 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'a', 'SICO', 'SICO', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29365 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'b', 'SICO', 'SICO', 1, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29366 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'c', 'SCAT', 'SCAT', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29367 INSERT INTO `marc_subfield_structure` VALUES ('u25', 'a', 'Supplier report(s), SRPT', 'Supplier report(s), SRPT', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29368 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'a', 'NCC [OBSOLETE]', 'NCC [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29369 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'i', 'ICI', 'ICI', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29370 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'm', 'MCI', 'MCI', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29371 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'a', 'NCC', 'NCC', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29372 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'b', 'NCS', 'NCS', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29373 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'a', 'ICL', 'ICL', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29374 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'd', 'ICAD', 'ICAD', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29375 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'a', 'EPCL', 'EPCL', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29376 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'r', 'ERI', 'ERI', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29377 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'd', 'EPDT [OBSOLETE]', 'EPDT [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29378 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'f', 'EFRQ', 'EFRQ', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29379 INSERT INTO `marc_subfield_structure` VALUES ('u40', 's', 'EPST', 'EPST', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29380 INSERT INTO `marc_subfield_structure` VALUES ('u40', 't', 'ETYP', 'ETYP', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29381 INSERT INTO `marc_subfield_structure` VALUES ('u50', 'a', 'Acquisitions notes, AQNT', 'Acquisitions notes, AQNT', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29382 INSERT INTO `marc_subfield_structure` VALUES ('u51', 'a', 'Selection notes, SLNT', 'Selection notes, SLNT', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29383 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'a', 'INT', 'INT', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29384 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'b', 'INT', 'NT', 1, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29385 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'a', 'CLNT', 'CLNT', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29386 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'b', 'CLNT', 'CLNT', 1, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29387 INSERT INTO `marc_subfield_structure` VALUES ('u54', 'a', 'Notes to serials department, SRNT', 'Notes to serials department, SRNT', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29388 INSERT INTO `marc_subfield_structure` VALUES ('u55', 'a', 'Cataloging notes, CTNT', 'Cataloging notes, CTNT', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29389 INSERT INTO `marc_subfield_structure` VALUES ('u5f', 'a', 'Accounting notes, ACNT', 'Accounting notes, ACNT', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29390 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'a', 'QTY', 'QTY', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29391 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'b', 'MAT', 'MAT', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29392 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'l', 'MLOC', 'MLOC', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29393 INSERT INTO `marc_subfield_structure` VALUES ('u71', 'a', 'Fund account, FUND', 'Fund account, FUND', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29394 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'a', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29395 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'c', 'CIRC', 'CIRC', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29396 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'h', 'IPST', 'IPST', 1, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29397 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'i', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29398 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'l', 'SLOC', 'SLOC', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29399 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'a', 'LPRI', 'LPRI', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29400 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'b', 'CURR', 'CURR', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29401 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'k', 'CVRT [OBSOLETE]', 'CVRT [OBSOLETE]', 1, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29402 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'p', 'LPD', 'LPD', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29403 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'r', 'EDRT', 'EDRT', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29404 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'h', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29405 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'i', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29406 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'a', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29407 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'b', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29408 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'c', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29409 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'd', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29410 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'e', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29411 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'f', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29412 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'g', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29413 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'h', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29414 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'n', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'KT', '', '');
29415
29416
29417
29418 -- ******************************************************
29419
29420
29421 -- *****************************************************************
29422 -- SIMPLE INTEGRATING RESOURCES KOHA RECORD AND HOLDINGS MANAGEMENT 
29423 -- FIELDS/SUBFIELDS.                                                
29424 -- *****************************************************************
29425
29426 -- These ought to be adjusted for different less conflicting and more 
29427 -- rationally chosen fields and subfields but I had left that for last. 
29428
29429 -- ADJUST ME
29430 -- Use values from your dump of marc_tag_structure and marc_subfield_structure 
29431 -- to provide support for your Koha database.
29432
29433
29434 -- ******************************************************
29435
29436
29437 -- Current Record ID Field/Subfields 
29438
29439
29440 INSERT INTO `marc_tag_structure` VALUES ('090', 'SYSTEM CONTROL NUMBERS (KOHA)', 'SYSTEM CONTROL NUMBERS (KOHA)', 1, 0, '', 'IR');
29441
29442 INSERT INTO `marc_subfield_structure` VALUES ('090', 'a', 'Item type [OBSOLETE]', 'Item type [OBSOLETE]', 0, 0, NULL, -1, NULL, NULL, '', NULL, -5, 'IR', '', '');
29443 INSERT INTO `marc_subfield_structure` VALUES ('090', 'b', 'Koha Dewey Subclass [OBSOLETE]', 'Koha Dewey Subclass [OBSOLETE]', 0, 0, NULL, 0, NULL, NULL, '', NULL, -5, 'IR', '', '');
29444 INSERT INTO `marc_subfield_structure` VALUES ('090', 'c', 'Koha biblionumber', 'Koha biblionumber', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, -5, 'IR', '', '');
29445 INSERT INTO `marc_subfield_structure` VALUES ('090', 'd', 'Koha biblioitemnumber', 'Koha biblioitemnumber', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, -5, 'IR', '', '');
29446
29447
29448 -- ******************************************************
29449
29450
29451 -- Current primary biblioitems Field/Subfields 
29452
29453
29454 INSERT INTO `marc_tag_structure` VALUES ('942', 'ADDED ENTRY ELEMENTS (KOHA)', 'ADDED ENTRY ELEMENTS (KOHA)', 0, 0, '', 'IR');
29455
29456 INSERT INTO `marc_subfield_structure` VALUES ('942', 'a', 'Institution code [OBSOLETE]', 'Institution code [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -5, 'IR', '', '');
29457 INSERT INTO `marc_subfield_structure` VALUES ('942', 'c', 'Item type', 'Item type', 0, 1, 'biblioitems.itemtype', 9, 'itemtypes', '', '', NULL, 0, 'IR', '', '');
29458 INSERT INTO `marc_subfield_structure` VALUES ('942', 'j', 'Location (call number prefix code)', 'Location (call number prefix code)', 0, 0, 'biblioitems.classification', 9, '', '', '', NULL, -6, 'IR', '', '');
29459 INSERT INTO `marc_subfield_structure` VALUES ('942', 'k', 'Classification base (DDC to decimal or LCC letter class padded after single letter classes with trailing 0', 'Classification base', 0, 0, 'biblioitems.dewey', 9, '', '', '', NULL, -6, 'IR', '', '');
29460 INSERT INTO `marc_subfield_structure` VALUES ('942', 'l', 'Classification subclass (DDC after decimal or LCC number after letters', 'Classification subclass', 0, 0, 'biblioitems.subclass', 9, '', '', '', NULL, -6, 'IR', '', '');
29461
29462
29463 -- ******************************************************
29464
29465
29466 -- Recommended items Field/Subfields 
29467
29468
29469 -- INSERT INTO `marc_tag_structure` VALUES ('95k', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', '');
29470
29471 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '0', 'Item status (withdrawn) (similar to 876-8 $j)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'IR', '', '');
29472 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '1', 'Item status (lost) (similar to 876-8 $j)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'IR', '', '');
29473 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '2', 'Source of classification or shelving scheme (similar to 852 $2)', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29474 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '3', 'Materials specified (similar to 852, 876-8 $3)', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'IR', '', '');
29475 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '4', 'Use restrictions (similar to 506 $a, 876-8 $h)', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'IR', '', '');
29476 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '6', 'Linkage (similar to 852, 876-8 $6)', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'IR', '', '');
29477 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '8', 'Sequence number (similar to 852, 876-8 $8)', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29478 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '9', 'Koha itemnumber (autogenerated similar to 852, 876-8 $3 $8 $t combined)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, 'IR', '', '');
29479 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'a', 'Location (homebranch) (similar to 852 $a)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, '', '', '');
29480 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'b', 'Sublocation or collection (holdingbranch) (similar to 852 $b)', 'Sublocation or collection (holdingbranch)', 1, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'IR', '', '');
29481 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'c', 'Shelving location (similar to 852 $c, 876-8 $l)', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'IR', '', '');
29482 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'd', 'Date acquired (similar to 541, 876-8 $d)', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, 'IR', '', '');
29483 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'e', 'Source of acquisition (similar to 541 $a, 876-8 $e)', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'IR', '', '');
29484 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'f', 'Coded location qualifier (similar to 852 $f)', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29485 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'g', 'Non-coded location qualifier (similar to 852 $g)', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29486 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'h', 'Classification part (similar to 852 $h)', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29487 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'i', 'Item part (similar to 852 $i)', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29488 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'j', 'Shelving control number (similar to 852 $j)', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29489 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'k', 'Call number prefix (similar to 852 $k)', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29490 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'l', 'Shelving form of title (similar to 852 $l)', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29491 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'm', 'Call number suffix (similar to 852 $m)', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29492 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'n', 'Country code (similar to 852 $n)', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29493 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'o', 'Call number (similar to 852 $k $h $i $m combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'IR', '', '');
29494 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'p', 'Piece designation (barcode) (similar to 852, 876-8 $p)', 'Piece designation (barcode)', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, 'IR', '', '');
29495 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'q', 'Piece physical condition (similar to 562 $a, 852 $q)', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29496 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'r', 'Invalid or canceled piece designation (canceled barcode) (similar to 876-8 $r)', 'Invalid or canceled piece designation (canceled barcode)', 1, 0, '', 10, '', '', '', NULL, -1, 'IR', '', '');
29497 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 's', 'Copyright article-fee code (similar to 018 $a, 852 $s)', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29498 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 't', 'Copy number (similar to 852, 876-8 $t)', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29499 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'u', 'Cost, normal purchase price (similar to 541 $h, 876-8 $c)', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'IR', '', '');
29500 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'v', 'Cost, replacement price (similar to 365 $b, 876-8 $c)', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'IR', '', '');
29501 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'w', 'Price effective from (similar to 365 $f)', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'IR', '', '');
29502 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'x', 'Nonpublic note (similar to 852, 876-8 $x)', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'IR', '', '');
29503 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'y', 'Use restrictions (not for loan) (similar to 506 $a, 876-8 $h)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'IR', '', '');
29504 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'z', 'Public note (similar to 852, 876-8 $z)', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'IR', '', '');
29505
29506
29507
29508 -- Current items Field/Subfields 
29509
29510
29511 INSERT INTO `marc_tag_structure` VALUES ('952', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', 'IR');
29512
29513 INSERT INTO `marc_subfield_structure` VALUES ('952', '0', 'Item status (withdrawn)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'IR', '', '');
29514 INSERT INTO `marc_subfield_structure` VALUES ('952', '1', 'Item status (lost)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'IR', '', '');
29515 INSERT INTO `marc_subfield_structure` VALUES ('952', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29516 INSERT INTO `marc_subfield_structure` VALUES ('952', '3', 'Materials specified', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'IR', '', '');
29517 INSERT INTO `marc_subfield_structure` VALUES ('952', '4', 'Use restrictions', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'IR', '', '');
29518 INSERT INTO `marc_subfield_structure` VALUES ('952', '6', 'Linkage', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'IR', '', '');
29519 INSERT INTO `marc_subfield_structure` VALUES ('952', '8', 'Sequence number', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29520 INSERT INTO `marc_subfield_structure` VALUES ('952', '9', 'Cost, normal purchase price', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'IR', '', '');
29521 INSERT INTO `marc_subfield_structure` VALUES ('952', 'a', 'Canceled barcode', 'Canceled barcode', 1, 0, '', 10, '', '', '', NULL, -1, 'IR', '', '');
29522 INSERT INTO `marc_subfield_structure` VALUES ('952', 'b', 'Location (homebranch)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, 'IR', '', '');
29523 INSERT INTO `marc_subfield_structure` VALUES ('952', 'c', 'Shelving location', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'IR', '', '');
29524 INSERT INTO `marc_subfield_structure` VALUES ('952', 'd', 'Sublocation or collection (holdingbranch)', 'Sublocation or collection (holdingbranch)', 0, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'IR', '''952b''', '');
29525 INSERT INTO `marc_subfield_structure` VALUES ('952', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'IR', '', '');
29526 INSERT INTO `marc_subfield_structure` VALUES ('952', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29527 INSERT INTO `marc_subfield_structure` VALUES ('952', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29528 INSERT INTO `marc_subfield_structure` VALUES ('952', 'h', 'Classification part', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29529 INSERT INTO `marc_subfield_structure` VALUES ('952', 'i', 'Item part', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29530 INSERT INTO `marc_subfield_structure` VALUES ('952', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29531 INSERT INTO `marc_subfield_structure` VALUES ('952', 'k', 'Call number (combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'IR', '', '');
29532 INSERT INTO `marc_subfield_structure` VALUES ('952', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29533 INSERT INTO `marc_subfield_structure` VALUES ('952', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29534 INSERT INTO `marc_subfield_structure` VALUES ('952', 'n', 'Country code', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29535 INSERT INTO `marc_subfield_structure` VALUES ('952', 'o', 'Call number prefix', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29536 INSERT INTO `marc_subfield_structure` VALUES ('952', 'p', 'Barcode', 'Barcode', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, 'IR', '', '');
29537 INSERT INTO `marc_subfield_structure` VALUES ('952', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29538 INSERT INTO `marc_subfield_structure` VALUES ('952', 'r', 'Cost, replacement price', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'IR', '', '');
29539 INSERT INTO `marc_subfield_structure` VALUES ('952', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29540 INSERT INTO `marc_subfield_structure` VALUES ('952', 't', 'Copy number', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'IR', '', '');
29541 INSERT INTO `marc_subfield_structure` VALUES ('952', 'u', 'Koha itemnumber (autogenerated)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, 'IR', '', '');
29542 INSERT INTO `marc_subfield_structure` VALUES ('952', 'v', 'Date acquired', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, 'IR', '', '');
29543 INSERT INTO `marc_subfield_structure` VALUES ('952', 'w', 'Price effective from', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'IR', '', '');
29544 INSERT INTO `marc_subfield_structure` VALUES ('952', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'IR', '', '');
29545 INSERT INTO `marc_subfield_structure` VALUES ('952', 'y', 'Use restrictions (not for loan)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'IR', '', '');
29546 INSERT INTO `marc_subfield_structure` VALUES ('952', 'z', 'Public note', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'IR', '', '');
29547
29548
29549 -- *******************************************************
29550
29551
29552
29553 -- *************************************************************************
29554 -- SIMPLE INTEGRATING RESOURCES MARC 21 FIELDS/SUBFIELDS AND COMMMONLY USED 
29555 -- EXTENSIONS.                                                              
29556 -- *************************************************************************
29557
29558
29559 -- A Few local use codes need specifying.  Several seealso, plugin, and 
29560 -- authority framework columns need improving.  $9 for authority record linking 
29561 -- needs to be added where not already provided by RLIN specifications. 
29562 -- Needs checking for errors but probably tolerable for use on a production. 
29563 -- A server can be upgraded easily from later versions of this file.
29564 --                                                                          
29565 -- In the absense of more column support for qualifying the relative 
29566 -- importance of subfields to the record editor, some modest modification of 
29567 -- the default framework is needed setting the not-useful non-Koha holdings 
29568 -- subfields to not managed in Koha.
29569
29570 -- MARC fields including letters as part of the field identifier are from RLIN
29571 -- and should be expected to remain along with RLIN $% subfields.  RLIN has 
29572 -- been using letters in fields because there are not enough local use number 
29573 -- fields which have not already been specified for very large union catalogue 
29574 -- networks such as RLIN itself.
29575
29576
29577 -- Fields ending in c, o, or r are temporary placeholders for information from
29578 -- a numeric value until a non-conflicting way to treat the content under the
29579 -- proper original numeric field is adopted.  090 for LC call numbers is much 
29580 -- too common and important so 999 is also provided as a temporary place 
29581 -- holder until all Koha code for finding control fields has been changed from 
29582 -- a numeric test of < 10 to a regular expression match of m/^00/ to prevent 
29583 -- mistaken matching of fields with letters such as 09o if they were control 
29584 -- fields.
29585
29586 INSERT INTO `marc_tag_structure` VALUES ('000', 'LEADER', 'LEADER', 0, 1, '', 'IR');
29587 INSERT INTO `marc_tag_structure` VALUES ('001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 0, '', 'IR');
29588 INSERT INTO `marc_tag_structure` VALUES ('003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 0, '', 'IR');
29589 INSERT INTO `marc_tag_structure` VALUES ('005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 0, '', 'IR');
29590 INSERT INTO `marc_tag_structure` VALUES ('006', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 1, 0, '', 'IR');
29591 INSERT INTO `marc_tag_structure` VALUES ('007', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 1, 0, '', 'IR');
29592 INSERT INTO `marc_tag_structure` VALUES ('008', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 0, 1, '', 'IR');
29593 INSERT INTO `marc_tag_structure` VALUES ('009', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 1, 0, '', 'IR');
29594 INSERT INTO `marc_tag_structure` VALUES ('010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, '', 'IR');
29595 INSERT INTO `marc_tag_structure` VALUES ('011', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 0, 0, '', 'IR');
29596 INSERT INTO `marc_tag_structure` VALUES ('013', 'PATENT CONTROL INFORMATION', 'PATENT CONTROL INFORMATION', 1, 0, '', 'IR');
29597 INSERT INTO `marc_tag_structure` VALUES ('015', 'NATIONAL BIBLIOGRAPHY NUMBER', 'NATIONAL BIBLIOGRAPHY NUMBER', 1, 0, '', 'IR');
29598 INSERT INTO `marc_tag_structure` VALUES ('016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, '', 'IR');
29599 INSERT INTO `marc_tag_structure` VALUES ('017', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 1, 0, '', 'IR');
29600 INSERT INTO `marc_tag_structure` VALUES ('018', 'COPYRIGHT ARTICLE-FEE CODE', 'COPYRIGHT ARTICLE-FEE CODE', 0, 0, '', 'IR');
29601 INSERT INTO `marc_tag_structure` VALUES ('01e', 'CODED FIELD ERROR (RLIN)', 'CODED FIELD ERROR (RLIN)', 1, 0, '', 'IR');
29602 INSERT INTO `marc_tag_structure` VALUES ('020', 'ISBN', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL, 'IR');
29603 INSERT INTO `marc_tag_structure` VALUES ('022', 'INTERNATIONAL STANDARD SERIAL NUMBER', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL, 'IR');
29604 INSERT INTO `marc_tag_structure` VALUES ('023', 'STANDARD FILM NUMBER (VM) [DELETED]', 'STANDARD FILM NUMBER (VM) [DELETED]', 1, 0, NULL, 'IR');
29605 INSERT INTO `marc_tag_structure` VALUES ('024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL, 'IR');
29606 INSERT INTO `marc_tag_structure` VALUES ('025', 'OVERSEAS ACQUISITION NUMBER', 'OVERSEAS ACQUISITION NUMBER', 1, 0, '', 'IR');
29607 INSERT INTO `marc_tag_structure` VALUES ('026', 'FINGERPRINT IDENTIFIER', 'FINGERPRINT IDENTIFIER', 1, 0, '', 'IR');
29608 INSERT INTO `marc_tag_structure` VALUES ('027', 'STANDARD TECHNICAL REPORT NUMBER', 'STANDARD TECHNICAL REPORT NUMBER', 1, 0, '', 'IR');
29609 INSERT INTO `marc_tag_structure` VALUES ('028', 'PUBLISHER NUMBER', 'PUBLISHER NUMBER', 1, 0, NULL, 'IR');
29610 INSERT INTO `marc_tag_structure` VALUES ('029', 'OTHER SYSTEM CONTROL NUMBER (OCLC)', ' (OCLC)', 1, 0, '', 'IR');
29611 INSERT INTO `marc_tag_structure` VALUES ('030', 'CODEN DESIGNATION', 'CODEN DESIGNATION', 1, 0, '', 'IR');
29612 INSERT INTO `marc_tag_structure` VALUES ('031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, '', 'IR');
29613 INSERT INTO `marc_tag_structure` VALUES ('032', 'POSTAL REGISTRATION NUMBER', 'POSTAL REGISTRATION NUMBER', 1, 0, '', 'IR');
29614 INSERT INTO `marc_tag_structure` VALUES ('033', 'DATE/TIME AND PLACE OF AN EVENT', 'DATE/TIME AND PLACE OF AN EVENT', 1, 0, '', 'IR');
29615 INSERT INTO `marc_tag_structure` VALUES ('034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, '', 'IR');
29616 INSERT INTO `marc_tag_structure` VALUES ('035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL, 'IR');
29617 INSERT INTO `marc_tag_structure` VALUES ('036', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 0, 0, '', 'IR');
29618 INSERT INTO `marc_tag_structure` VALUES ('037', 'PUBLICATION, DISTRIBUTION DETAILS--SOURCE OF ACQUISITION', 'SOURCE OF ACQUISITION', 1, 0, NULL, 'IR');
29619 INSERT INTO `marc_tag_structure` VALUES ('038', 'RECORD CONTENT LICENSOR', 'RECORD CONTENT LICENSOR', 0, 0, '', 'IR');
29620 INSERT INTO `marc_tag_structure` VALUES ('039', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 0, 0, '', 'IR');
29621 INSERT INTO `marc_tag_structure` VALUES ('040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 0, NULL, 'IR');
29622 INSERT INTO `marc_tag_structure` VALUES ('041', 'LANGUAGE CODE', 'LANGUAGE CODE', 1, 0, '', 'IR');
29623 INSERT INTO `marc_tag_structure` VALUES ('042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, '', 'IR');
29624 INSERT INTO `marc_tag_structure` VALUES ('043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL, 'IR');
29625 INSERT INTO `marc_tag_structure` VALUES ('044', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 0, 0, '', 'IR');
29626 INSERT INTO `marc_tag_structure` VALUES ('045', 'TIME PERIOD OF CONTENT', 'TIME PERIOD OF CONTENT', 0, 0, '', 'IR');
29627 INSERT INTO `marc_tag_structure` VALUES ('046', 'SPECIAL CODED DATES', 'SPECIAL CODED DATES', 1, 0, '', 'IR');
29628 INSERT INTO `marc_tag_structure` VALUES ('047', 'FORM OF MUSICAL COMPOSITION CODE', 'FORM OF MUSICAL COMPOSITION CODE', 0, 0, '', 'IR');
29629 INSERT INTO `marc_tag_structure` VALUES ('048', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 1, 0, '', 'IR');
29630 INSERT INTO `marc_tag_structure` VALUES ('049', 'LOCAL HOLDINGS (OCLC)', 'LOCAL HOLDINGS (OCLC)', 0, 0, '', 'IR');
29631 INSERT INTO `marc_tag_structure` VALUES ('050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL, 'IR');
29632 INSERT INTO `marc_tag_structure` VALUES ('051', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 1, 0, NULL, 'IR');
29633 INSERT INTO `marc_tag_structure` VALUES ('052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL, 'IR');
29634 INSERT INTO `marc_tag_structure` VALUES ('055', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 1, 0, NULL, 'IR');
29635 INSERT INTO `marc_tag_structure` VALUES ('060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL, 'IR');
29636 INSERT INTO `marc_tag_structure` VALUES ('061', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 1, 0, NULL, 'IR');
29637 INSERT INTO `marc_tag_structure` VALUES ('066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL, 'IR');
29638 INSERT INTO `marc_tag_structure` VALUES ('070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL, 'IR');
29639 INSERT INTO `marc_tag_structure` VALUES ('071', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 1, 0, NULL, 'IR');
29640 INSERT INTO `marc_tag_structure` VALUES ('072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL, 'IR');
29641 INSERT INTO `marc_tag_structure` VALUES ('074', 'GPO ITEM NUMBER', 'GPO ITEM NUMBER', 1, 0, NULL, 'IR');
29642 INSERT INTO `marc_tag_structure` VALUES ('080', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'IR');
29643 INSERT INTO `marc_tag_structure` VALUES ('082', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'IR');
29644 INSERT INTO `marc_tag_structure` VALUES ('084', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL, 'IR');
29645 INSERT INTO `marc_tag_structure` VALUES ('086', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL, 'IR');
29646 INSERT INTO `marc_tag_structure` VALUES ('087', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 1, 0, NULL, 'IR');
29647 INSERT INTO `marc_tag_structure` VALUES ('088', 'REPORT NUMBER', 'REPORT NUMBER', 1, 0, NULL, 'IR');
29648 INSERT INTO `marc_tag_structure` VALUES ('09o', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'IR');
29649 INSERT INTO `marc_tag_structure` VALUES ('091', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 0, 0, '', 'IR');
29650 INSERT INTO `marc_tag_structure` VALUES ('092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, '', 'IR');
29651 INSERT INTO `marc_tag_structure` VALUES ('096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, '', 'IR');
29652 INSERT INTO `marc_tag_structure` VALUES ('098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, '', 'IR');
29653 INSERT INTO `marc_tag_structure` VALUES ('099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, '', 'IR');
29654 INSERT INTO `marc_tag_structure` VALUES ('100', 'MAIN ENTRY--PERSONAL AUTHOR', 'MAIN ENTRY--PERSONAL NAME', 0, 0, NULL, 'IR');
29655 INSERT INTO `marc_tag_structure` VALUES ('110', 'MAIN ENTRY--CORPORATE AUTHOR', 'MAIN ENTRY--CORPORATE NAME', 0, 0, NULL, 'IR');
29656 INSERT INTO `marc_tag_structure` VALUES ('111', 'MAIN ENTRY--MEETING NAME', 'MAIN ENTRY--MEETING NAME', 0, 0, NULL, 'IR');
29657 INSERT INTO `marc_tag_structure` VALUES ('130', 'MAIN ENTRY--UNIFORM TITLE', 'MAIN ENTRY--UNIFORM TITLE', 0, 0, NULL, 'IR');
29658 INSERT INTO `marc_tag_structure` VALUES ('210', 'ABBREVIATED TITLE', 'ABBREVIATED TITLE', 1, 0, NULL, 'IR');
29659 INSERT INTO `marc_tag_structure` VALUES ('211', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 1, 0, NULL, 'IR');
29660 INSERT INTO `marc_tag_structure` VALUES ('212', 'VARIANT ACCESS TITLE [OBSOLETE]', 'VARIANT ACCESS TITLE [OBSOLETE]', 1, 0, NULL, 'IR');
29661 INSERT INTO `marc_tag_structure` VALUES ('214', 'AUGMENTED TITLE [OBSOLETE]', 'AUGMENTED TITLE [OBSOLETE]', 1, 0, NULL, 'IR');
29662 INSERT INTO `marc_tag_structure` VALUES ('222', 'KEY TITLE', 'KEY TITLE', 1, 0, NULL, 'IR');
29663 INSERT INTO `marc_tag_structure` VALUES ('240', 'UNIFORM TITLE', 'UNIFORM TITLE', 0, 0, 'Unititle', 'IR');
29664 INSERT INTO `marc_tag_structure` VALUES ('241', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 0, 0, '', 'IR');
29665 INSERT INTO `marc_tag_structure` VALUES ('242', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 1, 0, NULL, 'IR');
29666 INSERT INTO `marc_tag_structure` VALUES ('243', 'COLLECTIVE UNIFORM TITLE', 'COLLECTIVE UNIFORM TITLE', 0, 0, '', 'IR');
29667 INSERT INTO `marc_tag_structure` VALUES ('245', 'TITLE', 'TITLE STATEMENT', 0, 1, '', 'IR');
29668 INSERT INTO `marc_tag_structure` VALUES ('246', 'VARYING FORM OF TITLE', 'VARYING FORM OF TITLE', 1, 0, NULL, 'IR');
29669 INSERT INTO `marc_tag_structure` VALUES ('247', 'FORMER TITLE', 'FORMER TITLE', 1, 0, NULL, 'IR');
29670 INSERT INTO `marc_tag_structure` VALUES ('250', 'EDITION STATEMENT', 'EDITION STATEMENT', 0, 0, NULL, 'IR');
29671 INSERT INTO `marc_tag_structure` VALUES ('254', 'MUSICAL PRESENTATION STATEMENT', 'MUSICAL PRESENTATION STATEMENT', 0, 0, NULL, 'IR');
29672 INSERT INTO `marc_tag_structure` VALUES ('255', 'CARTOGRAPHIC MATHEMATICAL DATA', 'CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL, 'IR');
29673 INSERT INTO `marc_tag_structure` VALUES ('256', 'COMPUTER FILE CHARACTERISTICS', 'COMPUTER FILE CHARACTERISTICS', 0, 0, NULL, 'IR');
29674 INSERT INTO `marc_tag_structure` VALUES ('257', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 0, 0, NULL, 'IR');
29675 INSERT INTO `marc_tag_structure` VALUES ('258', 'PHILATELIC ISSUE DATE', 'PHILATELIC ISSUE DATE', 1, 0, NULL, 'IR');
29676 INSERT INTO `marc_tag_structure` VALUES ('260', 'PUBLISHER--PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 'PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 1, 0, NULL, 'IR');
29677 INSERT INTO `marc_tag_structure` VALUES ('261', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, NULL, 'IR');
29678 INSERT INTO `marc_tag_structure` VALUES ('262', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 0, 0, NULL, 'IR');
29679 INSERT INTO `marc_tag_structure` VALUES ('263', 'PROJECTED PUBLICATION DATE', 'PROJECTED PUBLICATION DATE', 0, 0, NULL, 'IR');
29680 INSERT INTO `marc_tag_structure` VALUES ('265', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 0, 0, NULL, 'IR');
29681 INSERT INTO `marc_tag_structure` VALUES ('270', 'PUBLICATION, DISTRIBUTION DETAILS--ADDRESS', 'ADDRESS', 1, 0, NULL, 'IR');
29682 INSERT INTO `marc_tag_structure` VALUES ('300', 'PHYSICAL DESCRIPTION', 'PHYSICAL DESCRIPTION', 1, 1, NULL, 'IR');
29683 INSERT INTO `marc_tag_structure` VALUES ('301', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 0, 0, NULL, 'IR');
29684 INSERT INTO `marc_tag_structure` VALUES ('302', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 0, 0, NULL, 'IR');
29685 INSERT INTO `marc_tag_structure` VALUES ('303', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'IR');
29686 INSERT INTO `marc_tag_structure` VALUES ('304', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'IR');
29687 INSERT INTO `marc_tag_structure` VALUES ('305', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 0, 0, NULL, 'IR');
29688 INSERT INTO `marc_tag_structure` VALUES ('306', 'PLAYING TIME', 'PLAYING TIME', 0, 0, NULL, 'IR');
29689 INSERT INTO `marc_tag_structure` VALUES ('307', 'HOURS, ETC.', 'HOURS, ETC.', 1, 0, NULL, 'IR');
29690 INSERT INTO `marc_tag_structure` VALUES ('308', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 1, 0, NULL, 'IR');
29691 INSERT INTO `marc_tag_structure` VALUES ('310', 'CURRENT PUBLICATION FREQUENCY', 'CURRENT PUBLICATION FREQUENCY', 0, 0, NULL, 'IR');
29692 INSERT INTO `marc_tag_structure` VALUES ('315', 'FREQUENCY (CF MP) [OBSOLETE]', 'FREQUENCY (CF MP) [OBSOLETE]', 0, 0, NULL, 'IR');
29693 INSERT INTO `marc_tag_structure` VALUES ('321', 'FORMER PUBLICATION FREQUENCY', 'FORMER PUBLICATION FREQUENCY', 1, 0, NULL, 'IR');
29694 INSERT INTO `marc_tag_structure` VALUES ('340', 'PHYSICAL MEDIUM', 'PHYSICAL MEDIUM', 1, 0, NULL, 'IR');
29695 INSERT INTO `marc_tag_structure` VALUES ('342', 'GEOSPATIAL REFERENCE DATA', 'GEOSPATIAL REFERENCE DATA', 1, 0, NULL, 'IR');
29696 INSERT INTO `marc_tag_structure` VALUES ('343', 'PLANAR COORDINATE DATA', 'PLANAR COORDINATE DATA', 1, 0, NULL, 'IR');
29697 INSERT INTO `marc_tag_structure` VALUES ('350', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 1, 0, NULL, 'IR');
29698 INSERT INTO `marc_tag_structure` VALUES ('351', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 1, 0, NULL, 'IR');
29699 INSERT INTO `marc_tag_structure` VALUES ('352', 'DIGITAL GRAPHIC REPRESENTATION', 'DIGITAL GRAPHIC REPRESENTATION', 1, 0, NULL, 'IR');
29700 INSERT INTO `marc_tag_structure` VALUES ('355', 'SECURITY CLASSIFICATION CONTROL', 'SECURITY CLASSIFICATION CONTROL', 1, 0, NULL, 'IR');
29701 INSERT INTO `marc_tag_structure` VALUES ('357', 'ORIGINATOR DISSEMINATION CONTROL', 'ORIGINATOR DISSEMINATION CONTROL', 0, 0, NULL, 'IR');
29702 INSERT INTO `marc_tag_structure` VALUES ('359', 'RENTAL PRICE (VM) [OBSOLETE]', 'RENTAL PRICE (VM) [OBSOLETE]', 0, 0, NULL, 'IR');
29703 INSERT INTO `marc_tag_structure` VALUES ('362', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 1, 0, NULL, 'IR');
29704 INSERT INTO `marc_tag_structure` VALUES ('365', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE PRICE', 'TRADE PRICE', 1, 0, NULL, 'IR');
29705 INSERT INTO `marc_tag_structure` VALUES ('366', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE AVAILABILITY INFORMATION', 'TRADE AVAILABILITY INFORMATION', 1, 0, NULL, 'IR');
29706 INSERT INTO `marc_tag_structure` VALUES ('400', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'IR');
29707 INSERT INTO `marc_tag_structure` VALUES ('410', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'IR');
29708 INSERT INTO `marc_tag_structure` VALUES ('411', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'IR');
29709 INSERT INTO `marc_tag_structure` VALUES ('440', 'SERIES--TITLE', 'SERIES STATEMENT/ADDED ENTRY--TITLE', 1, 0, NULL, 'IR');
29710 INSERT INTO `marc_tag_structure` VALUES ('490', 'SERIES STATEMENT', 'SERIES STATEMENT', 1, 0, '', 'IR');
29711 INSERT INTO `marc_tag_structure` VALUES ('500', 'GENERAL NOTE', 'GENERAL NOTE', 1, 0, NULL, 'IR');
29712 INSERT INTO `marc_tag_structure` VALUES ('501', 'WITH NOTE', 'WITH NOTE', 1, 0, NULL, 'IR');
29713 INSERT INTO `marc_tag_structure` VALUES ('502', 'DISSERTATION NOTE', 'DISSERTATION NOTE', 1, 0, NULL, 'IR');
29714 INSERT INTO `marc_tag_structure` VALUES ('503', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 1, 0, NULL, 'IR');
29715 INSERT INTO `marc_tag_structure` VALUES ('504', 'BIBLIOGRAPHY, ETC. NOTE', 'BIBLIOGRAPHY, ETC. NOTE', 1, 0, NULL, 'IR');
29716 INSERT INTO `marc_tag_structure` VALUES ('505', 'FORMATTED CONTENTS NOTE', 'FORMATTED CONTENTS NOTE', 1, 0, NULL, 'IR');
29717 INSERT INTO `marc_tag_structure` VALUES ('506', 'RESTRICTIONS ON ACCESS NOTE', 'RESTRICTIONS ON ACCESS NOTE', 1, 0, NULL, 'IR');
29718 INSERT INTO `marc_tag_structure` VALUES ('507', 'SCALE NOTE FOR GRAPHIC MATERIAL', 'SCALE NOTE FOR GRAPHIC MATERIAL', 0, 0, NULL, 'IR');
29719 INSERT INTO `marc_tag_structure` VALUES ('508', 'CREATION/PRODUCTION CREDITS NOTE', 'CREATION/PRODUCTION CREDITS NOTE', 1, 0, NULL, 'IR');
29720 INSERT INTO `marc_tag_structure` VALUES ('509', 'INFORMAL NOTES (RLIN)', 'INFORMAL NOTES (RLIN)', 0, 0, NULL, 'IR');
29721 INSERT INTO `marc_tag_structure` VALUES ('510', 'CITATION/REFERENCES NOTE', 'CITATION/REFERENCES NOTE', 1, 0, NULL, 'IR');
29722 INSERT INTO `marc_tag_structure` VALUES ('511', 'PARTICIPANT OR PERFORMER NOTE', 'PARTICIPANT OR PERFORMER NOTE', 1, 0, NULL, 'IR');
29723 INSERT INTO `marc_tag_structure` VALUES ('512', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'IR');
29724 INSERT INTO `marc_tag_structure` VALUES ('513', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 1, 0, NULL, 'IR');
29725 INSERT INTO `marc_tag_structure` VALUES ('514', 'DATA QUALITY NOTE', 'DATA QUALITY NOTE', 0, 0, NULL, 'IR');
29726 INSERT INTO `marc_tag_structure` VALUES ('515', 'NUMBERING PECULIARITIES NOTE', 'NUMBERING PECULIARITIES NOTE', 1, 0, NULL, 'IR');
29727 INSERT INTO `marc_tag_structure` VALUES ('516', 'TYPE OF COMPUTER FILE OR DATA NOTE', 'TYPE OF COMPUTER FILE OR DATA NOTE', 1, 0, NULL, 'IR');
29728 INSERT INTO `marc_tag_structure` VALUES ('517', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 0, 0, NULL, 'IR');
29729 INSERT INTO `marc_tag_structure` VALUES ('518', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 1, 0, NULL, 'IR');
29730 INSERT INTO `marc_tag_structure` VALUES ('520', 'SUMMARY, ETC.', 'SUMMARY, ETC.', 1, 0, NULL, 'IR');
29731 INSERT INTO `marc_tag_structure` VALUES ('521', 'GRADE LEVEL/TARGET AUDIENCE NOTE', 'TARGET AUDIENCE NOTE', 1, 0, NULL, 'IR');
29732 INSERT INTO `marc_tag_structure` VALUES ('522', 'GEOGRAPHIC DETAILS/GEOGRAPHIC COVERAGE NOTE', 'GEOGRAPHIC COVERAGE NOTE', 1, 0, NULL, 'IR');
29733 INSERT INTO `marc_tag_structure` VALUES ('523', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'IR');
29734 INSERT INTO `marc_tag_structure` VALUES ('524', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'IR');
29735 INSERT INTO `marc_tag_structure` VALUES ('525', 'SUPPLEMENT NOTE', 'SUPPLEMENT NOTE', 0, 0, NULL, 'IR');
29736 INSERT INTO `marc_tag_structure` VALUES ('526', 'STUDY PROGRAM INFORMATION NOTE', 'STUDY PROGRAM INFORMATION NOTE', 0, 0, NULL, 'IR');
29737 INSERT INTO `marc_tag_structure` VALUES ('527', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 1, 0, NULL, 'IR');
29738 INSERT INTO `marc_tag_structure` VALUES ('530', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 1, 0, NULL, 'IR');
29739 INSERT INTO `marc_tag_structure` VALUES ('533', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'IR');
29740 INSERT INTO `marc_tag_structure` VALUES ('534', 'ORIGINAL VERSION NOTE', 'ORIGINAL VERSION NOTE', 1, 0, NULL, 'IR');
29741 INSERT INTO `marc_tag_structure` VALUES ('535', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 1, 0, NULL, 'IR');
29742 INSERT INTO `marc_tag_structure` VALUES ('536', 'FUNDING INFORMATION NOTE', 'FUNDING INFORMATION NOTE', 1, 0, NULL, 'IR');
29743 INSERT INTO `marc_tag_structure` VALUES ('537', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'IR');
29744 INSERT INTO `marc_tag_structure` VALUES ('538', 'SYSTEM DETAILS NOTE', 'SYSTEM DETAILS NOTE', 1, 0, NULL, 'IR');
29745 INSERT INTO `marc_tag_structure` VALUES ('540', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'IR');
29746 INSERT INTO `marc_tag_structure` VALUES ('541', 'ACQUISITION INFO--IMMEDIATE SOURCE OF ACQUISITION NOTE', 'IMMEDIATE SOURCE OF ACQUISITION NOTE', 1, 0, NULL, 'IR');
29747 INSERT INTO `marc_tag_structure` VALUES ('543', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 1, 0, NULL, 'IR');
29748 INSERT INTO `marc_tag_structure` VALUES ('544', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 1, 0, NULL, 'IR');
29749 INSERT INTO `marc_tag_structure` VALUES ('546', 'LANGUAGE/TRANSLATION INFO', 'LANGUAGE NOTE', 1, 0, NULL, 'IR');
29750 INSERT INTO `marc_tag_structure` VALUES ('547', 'FORMER TITLE COMPLEXITY NOTE', 'FORMER TITLE COMPLEXITY NOTE', 1, 0, NULL, 'IR');
29751 INSERT INTO `marc_tag_structure` VALUES ('550', 'ISSUING BODY NOTE', 'ISSUING BODY NOTE', 1, 0, NULL, 'IR');
29752 INSERT INTO `marc_tag_structure` VALUES ('552', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 1, 0, NULL, 'IR');
29753 INSERT INTO `marc_tag_structure` VALUES ('555', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 1, 0, NULL, 'IR');
29754 INSERT INTO `marc_tag_structure` VALUES ('556', 'INFORMATION ABOUT DOCUMENTATION NOTE', 'INFORMATION ABOUT DOCUMENTATION NOTE', 1, 0, NULL, 'IR');
29755 INSERT INTO `marc_tag_structure` VALUES ('561', 'OWNERSHIP AND CUSTODIAL HISTORY', 'OWNERSHIP AND CUSTODIAL HISTORY', 1, 0, NULL, 'IR');
29756 INSERT INTO `marc_tag_structure` VALUES ('562', 'COPY AND VERSION IDENTIFICATION NOTE', 'COPY AND VERSION IDENTIFICATION NOTE', 1, 0, NULL, 'IR');
29757 INSERT INTO `marc_tag_structure` VALUES ('563', 'BINDING INFORMATION', 'BINDING INFORMATION', 1, 0, NULL, 'IR');
29758 INSERT INTO `marc_tag_structure` VALUES ('565', 'CASE FILE CHARACTERISTICS NOTE', 'CASE FILE CHARACTERISTICS NOTE', 1, 0, NULL, 'IR');
29759 INSERT INTO `marc_tag_structure` VALUES ('567', 'METHODOLOGY NOTE', 'METHODOLOGY NOTE', 1, 0, NULL, 'IR');
29760 INSERT INTO `marc_tag_structure` VALUES ('570', 'EDITOR NOTE (SE) [OBSOLETE]', 'EDITOR NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'IR');
29761 INSERT INTO `marc_tag_structure` VALUES ('580', 'LINKING ENTRY COMPLEXITY NOTE', 'LINKING ENTRY COMPLEXITY NOTE', 1, 0, NULL, 'IR');
29762 INSERT INTO `marc_tag_structure` VALUES ('581', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'IR');
29763 INSERT INTO `marc_tag_structure` VALUES ('582', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 1, 0, NULL, 'IR');
29764 INSERT INTO `marc_tag_structure` VALUES ('583', 'ACQUISITION INFO--ACTION NOTE', 'ACTION NOTE', 1, 0, NULL, 'IR');
29765 INSERT INTO `marc_tag_structure` VALUES ('584', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 1, 0, NULL, 'IR');
29766 INSERT INTO `marc_tag_structure` VALUES ('585', 'EXHIBITIONS NOTE', 'EXHIBITIONS NOTE', 1, 0, NULL, 'IR');
29767 INSERT INTO `marc_tag_structure` VALUES ('586', 'AWARDS', 'AWARDS NOTE', 1, 0, NULL, 'IR');
29768 INSERT INTO `marc_tag_structure` VALUES ('590', 'LOCAL NOTE (RLIN)', 'LOCAL NOTE (RLIN)', 1, 0, NULL, 'IR');
29769 INSERT INTO `marc_tag_structure` VALUES ('600', 'SUBJECT--PERSONAL NAME', 'SUBJECT ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'IR');
29770 INSERT INTO `marc_tag_structure` VALUES ('610', 'SUBJECT--CORPORATE NAME', 'SUBJECT ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'IR');
29771 INSERT INTO `marc_tag_structure` VALUES ('611', 'SUBJECT--MEETING NAME', 'SUBJECT ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'IR');
29772 INSERT INTO `marc_tag_structure` VALUES ('630', 'SUBJECT--UNIFORM TITLE', 'SUBJECT ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'IR');
29773 INSERT INTO `marc_tag_structure` VALUES ('648', 'SUBJECT--CHRONOLOGICAL TERM', 'SUBJECT ADDED ENTRY--CHRONOLOGICAL TERM', 1, 0, NULL, 'IR');
29774 INSERT INTO `marc_tag_structure` VALUES ('650', 'SUBJECT--TOPIC', 'SUBJECT ADDED ENTRY--TOPICAL TERM', 1, 0, NULL, 'IR');
29775 INSERT INTO `marc_tag_structure` VALUES ('651', 'SUBJECT--GEOGRAPHIC NAME', 'SUBJECT ADDED ENTRY--GEOGRAPHIC NAME', 1, 0, NULL, 'IR');
29776 INSERT INTO `marc_tag_structure` VALUES ('652', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 1, 0, NULL, 'IR');
29777 INSERT INTO `marc_tag_structure` VALUES ('653', 'SUBJECT--UNCONTROLLED', 'INDEX TERM--UNCONTROLLED', 1, 0, NULL, 'IR');
29778 INSERT INTO `marc_tag_structure` VALUES ('654', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 1, 0, NULL, 'IR');
29779 INSERT INTO `marc_tag_structure` VALUES ('655', 'SUBJECT--GENRE/FORM', 'INDEX TERM--GENRE/FORM', 1, 0, NULL, 'IR');
29780 INSERT INTO `marc_tag_structure` VALUES ('656', 'SUBJECT--OCCUPATION', 'INDEX TERM--OCCUPATION', 1, 0, NULL, 'IR');
29781 INSERT INTO `marc_tag_structure` VALUES ('657', 'SUBJECT--FUNCTION', 'INDEX TERM--FUNCTION', 1, 0, NULL, 'IR');
29782 INSERT INTO `marc_tag_structure` VALUES ('658', 'SUBJECT--CURRICULUM OBJECTIVE', 'INDEX TERM--CURRICULUM OBJECTIVE', 1, 0, NULL, 'IR');
29783 INSERT INTO `marc_tag_structure` VALUES ('662', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'IR');
29784 INSERT INTO `marc_tag_structure` VALUES ('690', 'LOCAL SUBJECT--TOPICAL TERM (OCLC, RLIN)', 'LOCAL SUBJECT ADDED ENTRY--TOPICAL TERM (OCLC, RLIN)', 1, 0, '', 'IR');
29785 INSERT INTO `marc_tag_structure` VALUES ('691', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 1, 0, '', 'IR');
29786 INSERT INTO `marc_tag_structure` VALUES ('696', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'IR');
29787 INSERT INTO `marc_tag_structure` VALUES ('697', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'IR');
29788 INSERT INTO `marc_tag_structure` VALUES ('698', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'IR');
29789 INSERT INTO `marc_tag_structure` VALUES ('699', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'IR');
29790 INSERT INTO `marc_tag_structure` VALUES ('700', 'ADDED ENTRY--PERSONAL AUTHOR', 'ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'IR');
29791 INSERT INTO `marc_tag_structure` VALUES ('705', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'IR');
29792 INSERT INTO `marc_tag_structure` VALUES ('710', 'ADDED ENTRY--CORPORATE AUTHOR', 'ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'IR');
29793 INSERT INTO `marc_tag_structure` VALUES ('711', 'ADDED ENTRY--MEETING NAME', 'ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'IR');
29794 INSERT INTO `marc_tag_structure` VALUES ('715', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'IR');
29795 INSERT INTO `marc_tag_structure` VALUES ('720', 'ADDED ENTRY--UNCONTROLLED AUTHOR', 'ADDED ENTRY--UNCONTROLLED NAME', 1, 0, NULL, 'IR');
29796 INSERT INTO `marc_tag_structure` VALUES ('730', 'ADDED ENTRY--UNIFORM TITLE', 'ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'IR');
29797 INSERT INTO `marc_tag_structure` VALUES ('740', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 1, 0, NULL, 'IR');
29798 INSERT INTO `marc_tag_structure` VALUES ('752', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'IR');
29799 INSERT INTO `marc_tag_structure` VALUES ('753', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 1, 0, NULL, 'IR');
29800 INSERT INTO `marc_tag_structure` VALUES ('754', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 1, 0, NULL, 'IR');
29801 INSERT INTO `marc_tag_structure` VALUES ('755', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 1, 0, NULL, 'IR');
29802 INSERT INTO `marc_tag_structure` VALUES ('760', 'MAIN SERIES ENTRY', 'MAIN SERIES ENTRY', 1, 0, NULL, 'IR');
29803 INSERT INTO `marc_tag_structure` VALUES ('762', 'SUBSERIES ENTRY', 'SUBSERIES ENTRY', 1, 0, NULL, 'IR');
29804 INSERT INTO `marc_tag_structure` VALUES ('765', 'ORIGINAL LANGUAGE ENTRY', 'ORIGINAL LANGUAGE ENTRY', 1, 0, NULL, 'IR');
29805 INSERT INTO `marc_tag_structure` VALUES ('767', 'TRANSLATION ENTRY', 'TRANSLATION ENTRY', 1, 0, NULL, 'IR');
29806 INSERT INTO `marc_tag_structure` VALUES ('770', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 1, 0, NULL, 'IR');
29807 INSERT INTO `marc_tag_structure` VALUES ('772', 'SUPPLEMENT PARENT ENTRY', 'SUPPLEMENT PARENT ENTRY', 1, 0, NULL, 'IR');
29808 INSERT INTO `marc_tag_structure` VALUES ('773', 'HOST ITEM ENTRY', 'HOST ITEM ENTRY', 1, 0, NULL, 'IR');
29809 INSERT INTO `marc_tag_structure` VALUES ('774', 'CONSTITUENT UNIT ENTRY', 'CONSTITUENT UNIT ENTRY', 1, 0, NULL, 'IR');
29810 INSERT INTO `marc_tag_structure` VALUES ('775', 'OTHER EDITION ENTRY', 'OTHER EDITION ENTRY', 1, 0, NULL, 'IR');
29811 INSERT INTO `marc_tag_structure` VALUES ('776', 'ADDITIONAL PHYSICAL FORM ENTRY', 'ADDITIONAL PHYSICAL FORM ENTRY', 1, 0, NULL, 'IR');
29812 INSERT INTO `marc_tag_structure` VALUES ('777', 'ISSUED WITH ENTRY', 'ISSUED WITH ENTRY', 1, 0, NULL, 'IR');
29813 INSERT INTO `marc_tag_structure` VALUES ('780', 'PRECEDING ENTRY', 'PRECEDING ENTRY', 1, 0, NULL, 'IR');
29814 INSERT INTO `marc_tag_structure` VALUES ('785', 'SUCCEEDING ENTRY', 'SUCCEEDING ENTRY', 1, 0, NULL, 'IR');
29815 INSERT INTO `marc_tag_structure` VALUES ('786', 'DATA SOURCE ENTRY', 'DATA SOURCE ENTRY', 1, 0, NULL, 'IR');
29816 INSERT INTO `marc_tag_structure` VALUES ('787', 'NONSPECIFIC RELATIONSHIP ENTRY', 'NONSPECIFIC RELATIONSHIP ENTRY', 1, 0, NULL, 'IR');
29817 INSERT INTO `marc_tag_structure` VALUES ('789', 'COMPONENT ITEM ENTRY (RLIN)', 'COMPONENT ITEM ENTRY (RLIN)', 1, 0, '', 'IR');
29818 INSERT INTO `marc_tag_structure` VALUES ('796', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'IR');
29819 INSERT INTO `marc_tag_structure` VALUES ('797', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'IR');
29820 INSERT INTO `marc_tag_structure` VALUES ('798', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'IR');
29821 INSERT INTO `marc_tag_structure` VALUES ('799', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'IR');
29822 INSERT INTO `marc_tag_structure` VALUES ('800', 'SERIES ADDED ENTRY--PERSONAL NAME', 'SERIES ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'IR');
29823 INSERT INTO `marc_tag_structure` VALUES ('810', 'SERIES ADDED ENTRY--CORPORATE NAME', 'SERIES ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'IR');
29824 INSERT INTO `marc_tag_structure` VALUES ('811', 'SERIES ADDED ENTRY--MEETING NAME', 'SERIES ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'IR');
29825 INSERT INTO `marc_tag_structure` VALUES ('830', 'SERIES ADDED ENTRY--UNIFORM TITLE', 'SERIES ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'IR');
29826 INSERT INTO `marc_tag_structure` VALUES ('840', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 1, 0, NULL, 'IR');
29827 INSERT INTO `marc_tag_structure` VALUES ('841', 'HOLDINGS CODED DATA VALUES', 'HOLDINGS CODED DATA VALUES', 0, 0, NULL, 'IR');
29828 INSERT INTO `marc_tag_structure` VALUES ('842', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 0, 0, NULL, 'IR');
29829 INSERT INTO `marc_tag_structure` VALUES ('843', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'IR');
29830 INSERT INTO `marc_tag_structure` VALUES ('844', 'NAME OF UNIT', 'NAME OF UNIT', 0, 0, NULL, 'IR');
29831 INSERT INTO `marc_tag_structure` VALUES ('845', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'IR');
29832 INSERT INTO `marc_tag_structure` VALUES ('850', 'HOLDING INSTITUTION', 'HOLDING INSTITUTION', 1, 0, NULL, 'IR');
29833 INSERT INTO `marc_tag_structure` VALUES ('851', 'LOCATION [OBSOLETE]', 'LOCATION [OBSOLETE]', 1, 0, NULL, 'IR');
29834 INSERT INTO `marc_tag_structure` VALUES ('852', 'LOCATION/CALL NUMBER', 'LOCATION/CALL NUMBER', 1, 0, NULL, 'IR');
29835 INSERT INTO `marc_tag_structure` VALUES ('853', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'IR');
29836 INSERT INTO `marc_tag_structure` VALUES ('854', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'IR');
29837 INSERT INTO `marc_tag_structure` VALUES ('855', 'CAPTIONS AND PATTERN--INDEXES', 'CAPTIONS AND PATTERN--INDEXES', 1, 0, NULL, 'IR');
29838 INSERT INTO `marc_tag_structure` VALUES ('856', 'URL/ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL, 'IR');
29839 INSERT INTO `marc_tag_structure` VALUES ('859', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'IR');
29840 INSERT INTO `marc_tag_structure` VALUES ('863', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'IR');
29841 INSERT INTO `marc_tag_structure` VALUES ('864', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'IR');
29842 INSERT INTO `marc_tag_structure` VALUES ('865', 'ENUMERATION AND CHRONOLOGY--INDEXES', 'ENUMERATION AND CHRONOLOGY--INDEXES', 1, 0, NULL, 'IR');
29843 INSERT INTO `marc_tag_structure` VALUES ('866', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'IR');
29844 INSERT INTO `marc_tag_structure` VALUES ('867', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'IR');
29845 INSERT INTO `marc_tag_structure` VALUES ('868', 'TEXTUAL HOLDINGS--INDEXES', 'TEXTUAL HOLDINGS--INDEXES', 1, 0, NULL, 'IR');
29846 INSERT INTO `marc_tag_structure` VALUES ('870', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 1, 0, NULL, 'IR');
29847 INSERT INTO `marc_tag_structure` VALUES ('871', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 1, 0, NULL, 'IR');
29848 INSERT INTO `marc_tag_structure` VALUES ('872', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 1, 0, NULL, 'IR');
29849 INSERT INTO `marc_tag_structure` VALUES ('873', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 1, 0, NULL, 'IR');
29850 INSERT INTO `marc_tag_structure` VALUES ('876', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'IR');
29851 INSERT INTO `marc_tag_structure` VALUES ('877', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'IR');
29852 INSERT INTO `marc_tag_structure` VALUES ('878', 'ITEM INFORMATION--INDEXES', 'ITEM INFORMATION--INDEXES', 1, 0, NULL, 'IR');
29853 INSERT INTO `marc_tag_structure` VALUES ('880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL, 'IR');
29854 INSERT INTO `marc_tag_structure` VALUES ('886', 'FOREIGN MARC INFORMATION FIELD', 'FOREIGN MARC INFORMATION FIELD', 1, 0, NULL, 'IR');
29855 INSERT INTO `marc_tag_structure` VALUES ('887', 'NON-MARC INFORMATION FIELD', 'NON-MARC INFORMATION FIELD', 1, 0, NULL, 'IR');
29856 INSERT INTO `marc_tag_structure` VALUES ('896', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'IR');
29857 INSERT INTO `marc_tag_structure` VALUES ('897', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'IR');
29858 INSERT INTO `marc_tag_structure` VALUES ('898', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'IR');
29859 INSERT INTO `marc_tag_structure` VALUES ('899', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'IR');
29860 INSERT INTO `marc_tag_structure` VALUES ('89e', 'ERRONEOUS FIELD, ERR (RLIN)', 'ERRONEOUS FIELD, ERR (RLIN)', 1, 0, '', 'IR');
29861 INSERT INTO `marc_tag_structure` VALUES ('900', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 1, 0, '', 'IR');
29862 INSERT INTO `marc_tag_structure` VALUES ('901', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 1, 0, '', 'IR');
29863 INSERT INTO `marc_tag_structure` VALUES ('902', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 1, 0, '', 'IR');
29864 INSERT INTO `marc_tag_structure` VALUES ('903', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 1, 0, '', 'IR');
29865 INSERT INTO `marc_tag_structure` VALUES ('904', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 1, 0, '', 'IR');
29866 INSERT INTO `marc_tag_structure` VALUES ('905', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 1, 0, '', 'IR');
29867 INSERT INTO `marc_tag_structure` VALUES ('906', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 1, 0, '', 'IR');
29868 INSERT INTO `marc_tag_structure` VALUES ('907', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 1, 0, '', 'IR');
29869 INSERT INTO `marc_tag_structure` VALUES ('908', 'PUT COMMAND PARAMETER (RLIN)', 'PUT COMMAND PARAMETER (RLIN)', 0, 0, '', 'IR');
29870 INSERT INTO `marc_tag_structure` VALUES ('910', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 1, 0, '', 'IR');
29871 INSERT INTO `marc_tag_structure` VALUES ('91o', 'USER-OPTION DATA (COLC)', 'USER-OPTION DATA (OCLC)', 0, 0, '', 'IR');
29872 INSERT INTO `marc_tag_structure` VALUES ('91r', 'RLG STANDARDS NOTE (RLIN)', 'RLG STANDARDS NOTE (RLIN)', 1, 0, '', 'IR');
29873 INSERT INTO `marc_tag_structure` VALUES ('911', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 1, 0, '', 'IR');
29874 INSERT INTO `marc_tag_structure` VALUES ('930', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 1, 0, '', 'IR');
29875 INSERT INTO `marc_tag_structure` VALUES ('93r', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 1, 0, '', 'IR');
29876 INSERT INTO `marc_tag_structure` VALUES ('936', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 0, 0, '', 'IR');
29877 INSERT INTO `marc_tag_structure` VALUES ('940', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'IR');
29878 INSERT INTO `marc_tag_structure` VALUES ('941', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'IR');
29879 INSERT INTO `marc_tag_structure` VALUES ('943', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'IR');
29880 INSERT INTO `marc_tag_structure` VALUES ('945', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'IR');
29881 INSERT INTO `marc_tag_structure` VALUES ('94c', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'IR');
29882 INSERT INTO `marc_tag_structure` VALUES ('946', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'IR');
29883 INSERT INTO `marc_tag_structure` VALUES ('947', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'IR');
29884 INSERT INTO `marc_tag_structure` VALUES ('948', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 1, 0, '', 'IR');
29885 INSERT INTO `marc_tag_structure` VALUES ('949', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'IR');
29886 INSERT INTO `marc_tag_structure` VALUES ('94a', 'ANALYSIS TREATMENT NOTE (RLIN)', 'ANALYSIS TREATMENT NOTE (RLIN)', 1, 0, '', 'IR');
29887 INSERT INTO `marc_tag_structure` VALUES ('94b', 'TREATMENT CODES (RLIN)', 'TREATMENT CODES (RLIN)', 1, 0, '', 'IR');
29888 INSERT INTO `marc_tag_structure` VALUES ('950', 'LOCAL HOLDINGS (RLIN)', 'LOCAL HOLDINGS (RLIN)', 1, 0, '', 'IR');
29889 INSERT INTO `marc_tag_structure` VALUES ('951', 'EQUIVALENCE OR CROSS-REFERENCE--GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'IR');
29890 INSERT INTO `marc_tag_structure` VALUES ('95c', 'EQUIVALENCE OR CROSS-REFERENCE--HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'IR');
29891 INSERT INTO `marc_tag_structure` VALUES ('95r', 'CLUSTER MEMBER (RLIN)', 'CLUSTER MEMBER (RLIN)', 1, 0, '', 'IR');
29892 INSERT INTO `marc_tag_structure` VALUES ('955', 'COPY-LEVEL INFORMATION (RLIN)', 'COPY-LEVEL INFORMATION (RLIN)', 1, 0, '', 'IR');
29893 INSERT INTO `marc_tag_structure` VALUES ('956', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 1, 0, '', 'IR');
29894 INSERT INTO `marc_tag_structure` VALUES ('960', 'PHYSICAL LOCATION (RLIN)', 'PHYSICAL LOCATION (RLIN)', 1, 0, '', 'IR');
29895 INSERT INTO `marc_tag_structure` VALUES ('967', 'ADDITIONAL ESTC CODES (RLIN)', 'ADDITIONAL ESTC CODES (RLIN)', 1, 0, '', 'IR');
29896 INSERT INTO `marc_tag_structure` VALUES ('980', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'IR');
29897 INSERT INTO `marc_tag_structure` VALUES ('981', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'IR');
29898 INSERT INTO `marc_tag_structure` VALUES ('982', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'IR');
29899 INSERT INTO `marc_tag_structure` VALUES ('983', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--TITLE/UNIFORM TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE--SERIES STATEMENT-TITLE/UNIFORM TITLE [LOCAL, CANADA]', 1, 0, '', 'IR');
29900 INSERT INTO `marc_tag_structure` VALUES ('984', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 1, 0, '', 'IR');
29901 INSERT INTO `marc_tag_structure` VALUES ('987', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 1, 0, '', 'IR');
29902 INSERT INTO `marc_tag_structure` VALUES ('990', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 1, 0, '', 'IR');
29903 INSERT INTO `marc_tag_structure` VALUES ('995', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 1, 0, '', 'IR');
29904 INSERT INTO `marc_tag_structure` VALUES ('998', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'IR');
29905 INSERT INTO `marc_tag_structure` VALUES ('999', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'IR');
29906 INSERT INTO `marc_tag_structure` VALUES ('b99', 'PRIVATE LOCAL INFORMATION (RLIN)', 'PRIVATE LOCAL INFORMATION (RLIN)', 1, 0, '', 'IR');
29907 INSERT INTO `marc_tag_structure` VALUES ('u01', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 0, 0, '', 'IR');
29908 INSERT INTO `marc_tag_structure` VALUES ('u02', 'STANDARD NUMBER (RLIN)', 'STANDARD NUMBER (RLIN)', 0, 0, '', 'IR');
29909 INSERT INTO `marc_tag_structure` VALUES ('u08', 'CODED INFORMATION (RLIN)', 'CODED INFORMATION (RLIN)', 0, 0, '', 'IR');
29910 INSERT INTO `marc_tag_structure` VALUES ('u10', 'REQUESTER IDENTIFICATION (RLIN)', 'REQUESTER IDENTIFICATION (RLIN)', 1, 0, '', 'IR');
29911 INSERT INTO `marc_tag_structure` VALUES ('u11', 'DEPARTMENT REPORT REQUEST (RLIN)', 'DEPARTMENT REPORT REQUEST (RLIN)', 1, 0, '', 'IR');
29912 INSERT INTO `marc_tag_structure` VALUES ('u20', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 0, 0, '', 'IR');
29913 INSERT INTO `marc_tag_structure` VALUES ('u21', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 0, 0, '', 'IR');
29914 INSERT INTO `marc_tag_structure` VALUES ('u22', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 0, 0, '', 'IR');
29915 INSERT INTO `marc_tag_structure` VALUES ('u25', 'SUPPLIER REPORT(S) (RLIN)', 'SUPPLIER REPORT(S) (RLIN)', 0, 0, '', 'IR');
29916 INSERT INTO `marc_tag_structure` VALUES ('u30', 'INTERVALS (RLIN)', 'INTERVALS (RLIN)', 0, 0, '', 'IR');
29917 INSERT INTO `marc_tag_structure` VALUES ('u31', 'CLAIM COUNTS (RLIN)', 'CLAIM COUNTS (RLIN)', 0, 0, '', 'IR');
29918 INSERT INTO `marc_tag_structure` VALUES ('u33', 'INVOICE CLAIM (RLIN)', 'INVOICE CLAIM (RLIN)', 0, 0, '', 'IR');
29919 INSERT INTO `marc_tag_structure` VALUES ('u34', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 0, 0, '', 'IR');
29920 INSERT INTO `marc_tag_structure` VALUES ('u40', 'EXTENDED PROCUREMENT CODES (RLIN)', 'EXTENDED PROCUREMENT CODES (RLIN)', 0, 0, '', 'IR');
29921 INSERT INTO `marc_tag_structure` VALUES ('u50', 'ACQUISITIONS NOTES (RLIN)', 'ACQUISITIONS NOTES (RLIN)', 0, 0, '', 'IR');
29922 INSERT INTO `marc_tag_structure` VALUES ('u51', 'SELECTION NOTES (RLIN)', 'SELECTION NOTES (RLIN)', 0, 0, '', 'IR');
29923 INSERT INTO `marc_tag_structure` VALUES ('u52', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 0, 0, '', 'IR');
29924 INSERT INTO `marc_tag_structure` VALUES ('u53', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 0, 0, '', 'IR');
29925 INSERT INTO `marc_tag_structure` VALUES ('u54', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 0, 0, '', 'IR');
29926 INSERT INTO `marc_tag_structure` VALUES ('u55', 'CATALOGING NOTES (RLIN)', 'CATALOGING NOTES (RLIN)', 0, 0, '', 'IR');
29927 INSERT INTO `marc_tag_structure` VALUES ('u5f', 'ACCOUNTING NOTES (RLIN)', 'ACCOUNTING NOTES (RLIN)', 0, 0, '', 'IR');
29928 INSERT INTO `marc_tag_structure` VALUES ('u70', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 0, 0, '', 'IR');
29929 INSERT INTO `marc_tag_structure` VALUES ('u71', 'FUND ACCOUNT (RLIN)', 'FUND ACCOUNT (RLIN)', 0, 0, '', 'IR');
29930 INSERT INTO `marc_tag_structure` VALUES ('u75', 'ITEM DETAILS (RLIN)', 'ITEM DETAILS (RLIN)', 1, 0, '', 'IR');
29931 INSERT INTO `marc_tag_structure` VALUES ('u7f', 'PRICE INFORMATION (RLIN)', 'PRICE INFORMATION (RLIN)', 1, 0, '', 'IR');
29932 INSERT INTO `marc_tag_structure` VALUES ('u90', 'TAPE OUTPUT, TAPE (RLIN)', 'TAPE OUTPUT, TAPE (RLIN)', 0, 0, '', 'IR');
29933 INSERT INTO `marc_tag_structure` VALUES ('ufi', 'FISCAL INFORMATION, FI (RLIN)', 'FISCAL INFORMATION, FI (RLIN)', 1, 0, '', 'IR');
29934
29935
29936
29937 INSERT INTO `marc_subfield_structure` VALUES ('000', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_leader.pl', 0, 0, 'IR', '', '');
29938 INSERT INTO `marc_subfield_structure` VALUES ('001', '@', 'control field', 'control field', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29939 INSERT INTO `marc_subfield_structure` VALUES ('003', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_003.pl', 0, -6, 'IR', '', '');
29940 INSERT INTO `marc_subfield_structure` VALUES ('005', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_005.pl', 0, -1, 'IR', '', '');
29941 INSERT INTO `marc_subfield_structure` VALUES ('006', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_006.pl', 0, -1, 'IR', '', '');
29942 INSERT INTO `marc_subfield_structure` VALUES ('007', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_007.pl', 0, 0, 'IR', '', '');
29943 INSERT INTO `marc_subfield_structure` VALUES ('008', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_field_008.pl', 0, 0, 'IR', '', '');
29944 INSERT INTO `marc_subfield_structure` VALUES ('009', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29945 INSERT INTO `marc_subfield_structure` VALUES ('010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', NULL, 0, -6, 'IR', '', '');
29946 INSERT INTO `marc_subfield_structure` VALUES ('010', 'a', 'LC control number', 'LC control number', 0, 0, 'biblioitems.lccn', 0, '', '', '', 0, -6, 'IR', '', '');
29947 INSERT INTO `marc_subfield_structure` VALUES ('010', 'b', 'NUCMC control number', 'NUCMC control number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29948 INSERT INTO `marc_subfield_structure` VALUES ('010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29949 INSERT INTO `marc_subfield_structure` VALUES ('011', 'a', 'LC control number', 'LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29950 INSERT INTO `marc_subfield_structure` VALUES ('013', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'IR', '', '');
29951 INSERT INTO `marc_subfield_structure` VALUES ('013', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29952 INSERT INTO `marc_subfield_structure` VALUES ('013', 'a', 'Number', 'Number', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29953 INSERT INTO `marc_subfield_structure` VALUES ('013', 'b', 'Country', 'Country', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29954 INSERT INTO `marc_subfield_structure` VALUES ('013', 'c', 'Type of number', 'Type of number', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29955 INSERT INTO `marc_subfield_structure` VALUES ('013', 'd', 'Date', 'Date', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29956 INSERT INTO `marc_subfield_structure` VALUES ('013', 'e', 'Status', 'Status', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29957 INSERT INTO `marc_subfield_structure` VALUES ('013', 'f', 'Party to document', 'Party to document', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29958 INSERT INTO `marc_subfield_structure` VALUES ('015', '2', 'Source', 'Source', 0, 0, '', 0, '', '', NULL, 0, -6, 'IR', '', '');
29959 INSERT INTO `marc_subfield_structure` VALUES ('015', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29960 INSERT INTO `marc_subfield_structure` VALUES ('015', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29961 INSERT INTO `marc_subfield_structure` VALUES ('015', 'a', 'National bibliography number', 'National bibliography number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29962 INSERT INTO `marc_subfield_structure` VALUES ('016', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29963 INSERT INTO `marc_subfield_structure` VALUES ('016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29964 INSERT INTO `marc_subfield_structure` VALUES ('016', 'a', 'Record control number', 'Record control number', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29965 INSERT INTO `marc_subfield_structure` VALUES ('016', 'z', 'Canceled or invalid record control number', 'Canceled or invalid record control number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29966 INSERT INTO `marc_subfield_structure` VALUES ('017', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29967 INSERT INTO `marc_subfield_structure` VALUES ('017', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29968 INSERT INTO `marc_subfield_structure` VALUES ('017', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29969 INSERT INTO `marc_subfield_structure` VALUES ('017', 'a', 'Copyright or legal deposit number', 'Copyright or legal deposit number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29970 INSERT INTO `marc_subfield_structure` VALUES ('017', 'b', 'Assigning agency', 'Assigning agency', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29971 INSERT INTO `marc_subfield_structure` VALUES ('017', 'd', 'Date', 'Date', 0, 0, '', 0, '', '', NULL, 0, -6, 'IR', '', '');
29972 INSERT INTO `marc_subfield_structure` VALUES ('017', 'i', 'Display text', 'Display text', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29973 INSERT INTO `marc_subfield_structure` VALUES ('018', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29974 INSERT INTO `marc_subfield_structure` VALUES ('018', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29975 INSERT INTO `marc_subfield_structure` VALUES ('018', 'a', 'Copyright article-fee code', 'Copyright article-fee code', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29976 INSERT INTO `marc_subfield_structure` VALUES ('01e', 'a', 'Coded field error', 'Coded field error', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29977 INSERT INTO `marc_subfield_structure` VALUES ('020', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29978 INSERT INTO `marc_subfield_structure` VALUES ('020', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29979 INSERT INTO `marc_subfield_structure` VALUES ('020', 'a', 'International Standard Book Number', 'International Standard Book Number', 0, 0, 'biblioitems.isbn', 0, '', '', '', 0, -1, 'IR', '', '');
29980 INSERT INTO `marc_subfield_structure` VALUES ('020', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29981 INSERT INTO `marc_subfield_structure` VALUES ('020', 'z', 'Cancelled/invalid ISBN', 'Cancelled/invalid ISBN', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29982 INSERT INTO `marc_subfield_structure` VALUES ('022', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29983 INSERT INTO `marc_subfield_structure` VALUES ('022', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29984 INSERT INTO `marc_subfield_structure` VALUES ('022', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29985 INSERT INTO `marc_subfield_structure` VALUES ('022', 'a', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, 'biblioitems.issn', 0, '', '', '', 0, -1, 'IR', '', '');
29986 INSERT INTO `marc_subfield_structure` VALUES ('022', 'y', 'Incorrect ISSN', 'Incorrect ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29987 INSERT INTO `marc_subfield_structure` VALUES ('022', 'z', 'Canceled ISSN', 'Canceled ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29988 INSERT INTO `marc_subfield_structure` VALUES ('023', 'a', 'Standard film number', 'Standard film number', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29989 INSERT INTO `marc_subfield_structure` VALUES ('024', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 0, '', '', '', 0, -1, 'IR', '', '');
29990 INSERT INTO `marc_subfield_structure` VALUES ('024', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29991 INSERT INTO `marc_subfield_structure` VALUES ('024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29992 INSERT INTO `marc_subfield_structure` VALUES ('024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'IR', '', '');
29993 INSERT INTO `marc_subfield_structure` VALUES ('024', 'b', 'Additional codes following the standard number [OBSOLETE]', 'Additional codes following the standard number [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29994 INSERT INTO `marc_subfield_structure` VALUES ('024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -1, 'IR', '', '');
29995 INSERT INTO `marc_subfield_structure` VALUES ('024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'IR', '', '');
29996 INSERT INTO `marc_subfield_structure` VALUES ('024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29997 INSERT INTO `marc_subfield_structure` VALUES ('025', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29998 INSERT INTO `marc_subfield_structure` VALUES ('025', 'a', 'Overseas acquisition number', 'Overseas acquisition number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
29999 INSERT INTO `marc_subfield_structure` VALUES ('026', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30000 INSERT INTO `marc_subfield_structure` VALUES ('026', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30001 INSERT INTO `marc_subfield_structure` VALUES ('026', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30002 INSERT INTO `marc_subfield_structure` VALUES ('026', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30003 INSERT INTO `marc_subfield_structure` VALUES ('026', 'a', 'First and second groups of characters', 'First and second groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30004 INSERT INTO `marc_subfield_structure` VALUES ('026', 'b', 'Third and fourth groups of characters', 'Third and fourth groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30005 INSERT INTO `marc_subfield_structure` VALUES ('026', 'c', 'Date', 'Date', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30006 INSERT INTO `marc_subfield_structure` VALUES ('026', 'd', 'Number of volume or part', 'Number of volume or part', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30007 INSERT INTO `marc_subfield_structure` VALUES ('026', 'e', 'unparsed fingerprint', 'unparsed fingerprint', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30008 INSERT INTO `marc_subfield_structure` VALUES ('027', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30009 INSERT INTO `marc_subfield_structure` VALUES ('027', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30010 INSERT INTO `marc_subfield_structure` VALUES ('027', 'a', 'Standard technical report number', 'Standard technical report number', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30011 INSERT INTO `marc_subfield_structure` VALUES ('027', 'z', 'Canceled/invalid number', 'Canceled/invalid number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30012 INSERT INTO `marc_subfield_structure` VALUES ('028', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30013 INSERT INTO `marc_subfield_structure` VALUES ('028', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30014 INSERT INTO `marc_subfield_structure` VALUES ('028', 'a', 'Publisher number', 'Publisher number', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30015 INSERT INTO `marc_subfield_structure` VALUES ('028', 'b', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30016 INSERT INTO `marc_subfield_structure` VALUES ('030', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30017 INSERT INTO `marc_subfield_structure` VALUES ('030', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30018 INSERT INTO `marc_subfield_structure` VALUES ('030', 'a', 'CODEN', 'CODEN', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30019 INSERT INTO `marc_subfield_structure` VALUES ('030', 'z', 'Canceled/invalid CODEN', 'Canceled/invalid CODEN', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30020 INSERT INTO `marc_subfield_structure` VALUES ('031', '2', 'System code', 'System code', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30021 INSERT INTO `marc_subfield_structure` VALUES ('031', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30022 INSERT INTO `marc_subfield_structure` VALUES ('031', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30023 INSERT INTO `marc_subfield_structure` VALUES ('031', 'a', 'Number of work', 'Number of work', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30024 INSERT INTO `marc_subfield_structure` VALUES ('031', 'b', 'Number of movement', 'Number of movement', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30025 INSERT INTO `marc_subfield_structure` VALUES ('031', 'c', 'Number of excerpt', 'Number of excerpt', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30026 INSERT INTO `marc_subfield_structure` VALUES ('031', 'd', 'Caption or heading', 'Caption or heading', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30027 INSERT INTO `marc_subfield_structure` VALUES ('031', 'e', 'Role', 'Role', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30028 INSERT INTO `marc_subfield_structure` VALUES ('031', 'g', 'Clef', 'Clef', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30029 INSERT INTO `marc_subfield_structure` VALUES ('031', 'm', 'Voice/instrument', 'Voice/instrument', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30030 INSERT INTO `marc_subfield_structure` VALUES ('031', 'n', 'Key signature', 'Key signature', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30031 INSERT INTO `marc_subfield_structure` VALUES ('031', 'o', 'Time signature', 'Time signature', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30032 INSERT INTO `marc_subfield_structure` VALUES ('031', 'p', 'Musical notation', 'Musical notation', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30033 INSERT INTO `marc_subfield_structure` VALUES ('031', 'q', 'General note', 'General note', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30034 INSERT INTO `marc_subfield_structure` VALUES ('031', 'r', 'Key or mode', 'Key or mode', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30035 INSERT INTO `marc_subfield_structure` VALUES ('031', 's', 'Coded validity note', 'Coded validity note', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30036 INSERT INTO `marc_subfield_structure` VALUES ('031', 't', 'Text incipit', 'Text incipit', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30037 INSERT INTO `marc_subfield_structure` VALUES ('031', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 0, '', '', '', 1, -6, 'IR', '', '');
30038 INSERT INTO `marc_subfield_structure` VALUES ('031', 'y', 'Link text', 'Link text', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30039 INSERT INTO `marc_subfield_structure` VALUES ('031', 'z', 'Public note', 'Public note', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30040 INSERT INTO `marc_subfield_structure` VALUES ('032', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'IR', '', '');
30041 INSERT INTO `marc_subfield_structure` VALUES ('032', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30042 INSERT INTO `marc_subfield_structure` VALUES ('032', 'a', 'Postal registration number', 'Postal registration number', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30043 INSERT INTO `marc_subfield_structure` VALUES ('032', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30044 INSERT INTO `marc_subfield_structure` VALUES ('033', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30045 INSERT INTO `marc_subfield_structure` VALUES ('033', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30046 INSERT INTO `marc_subfield_structure` VALUES ('033', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30047 INSERT INTO `marc_subfield_structure` VALUES ('033', 'a', 'Formatted date/time', 'Formatted date/time', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30048 INSERT INTO `marc_subfield_structure` VALUES ('033', 'b', 'Geographic classification area code', 'Geographic classification area code', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30049 INSERT INTO `marc_subfield_structure` VALUES ('033', 'c', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30050 INSERT INTO `marc_subfield_structure` VALUES ('034', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30051 INSERT INTO `marc_subfield_structure` VALUES ('034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30052 INSERT INTO `marc_subfield_structure` VALUES ('034', 'a', 'Category of scale', 'Category of scale', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30053 INSERT INTO `marc_subfield_structure` VALUES ('034', 'b', 'Constant ratio linear horizontal scale', 'Constant ratio linear horizontal scale', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30054 INSERT INTO `marc_subfield_structure` VALUES ('034', 'c', 'Constant ratio linear vertical scale', 'Constant ratio linear vertical scale', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30055 INSERT INTO `marc_subfield_structure` VALUES ('034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30056 INSERT INTO `marc_subfield_structure` VALUES ('034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30057 INSERT INTO `marc_subfield_structure` VALUES ('034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30058 INSERT INTO `marc_subfield_structure` VALUES ('034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30059 INSERT INTO `marc_subfield_structure` VALUES ('034', 'h', 'Angular scale', 'Angular scale', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30060 INSERT INTO `marc_subfield_structure` VALUES ('034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30061 INSERT INTO `marc_subfield_structure` VALUES ('034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30062 INSERT INTO `marc_subfield_structure` VALUES ('034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30063 INSERT INTO `marc_subfield_structure` VALUES ('034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30064 INSERT INTO `marc_subfield_structure` VALUES ('034', 'p', 'Equinox', 'Equinox', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30065 INSERT INTO `marc_subfield_structure` VALUES ('034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30066 INSERT INTO `marc_subfield_structure` VALUES ('034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30067 INSERT INTO `marc_subfield_structure` VALUES ('035', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30068 INSERT INTO `marc_subfield_structure` VALUES ('035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30069 INSERT INTO `marc_subfield_structure` VALUES ('035', 'a', 'System control number', 'System control number', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30070 INSERT INTO `marc_subfield_structure` VALUES ('035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30071 INSERT INTO `marc_subfield_structure` VALUES ('036', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30072 INSERT INTO `marc_subfield_structure` VALUES ('036', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30073 INSERT INTO `marc_subfield_structure` VALUES ('036', 'a', 'Original study number', 'Original study number', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30074 INSERT INTO `marc_subfield_structure` VALUES ('036', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30075 INSERT INTO `marc_subfield_structure` VALUES ('037', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
30076 INSERT INTO `marc_subfield_structure` VALUES ('037', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
30077 INSERT INTO `marc_subfield_structure` VALUES ('037', 'a', 'Stock number', 'Stock number', 0, 0, '', 9, '', '', '', 0, -1, 'IR', '', '');
30078 INSERT INTO `marc_subfield_structure` VALUES ('037', 'b', 'Source of stock number/acquisition', 'Source of stock number/acquisition', 0, 0, '', 9, '', '', '', 0, -1, 'IR', '', '');
30079 INSERT INTO `marc_subfield_structure` VALUES ('037', 'c', 'Terms of availability', 'Terms of availability', 1, 0, '', 9, '', '', '', 0, -1, 'IR', '', '');
30080 INSERT INTO `marc_subfield_structure` VALUES ('037', 'f', 'Form of issue', 'Form of issue', 1, 0, '', 9, '', '', '', 0, -1, 'IR', '', '');
30081 INSERT INTO `marc_subfield_structure` VALUES ('037', 'g', 'Additional format characteristics', 'Additional format characteristics', 1, 0, '', 9, '', '', '', 0, -1, 'IR', '', '');
30082 INSERT INTO `marc_subfield_structure` VALUES ('037', 'n', 'Note', 'Note', 1, 0, '', 9, '', '', '', 0, -1, 'IR', '', '');
30083 INSERT INTO `marc_subfield_structure` VALUES ('038', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30084 INSERT INTO `marc_subfield_structure` VALUES ('038', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30085 INSERT INTO `marc_subfield_structure` VALUES ('038', 'a', 'Record content licensor', 'Record content licensor', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30086 INSERT INTO `marc_subfield_structure` VALUES ('039', 'a', 'Level of rules in bibliographic description', 'Level of rules in bibliographic description', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30087 INSERT INTO `marc_subfield_structure` VALUES ('039', 'b', 'Level of effort used to assign nonsubject heading access points', 'Level of effort used to assign nonsubject heading access points', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30088 INSERT INTO `marc_subfield_structure` VALUES ('039', 'c', 'Level of effort used to assign subject headings', 'Level of effort used to assign subject headings', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30089 INSERT INTO `marc_subfield_structure` VALUES ('039', 'd', 'Level of effort used to assign classification', 'Level of effort used to assign classification', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30090 INSERT INTO `marc_subfield_structure` VALUES ('039', 'e', 'Number of fixed field character positions coded', 'Number of fixed field character positions coded', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30091 INSERT INTO `marc_subfield_structure` VALUES ('040', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30092 INSERT INTO `marc_subfield_structure` VALUES ('040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30093 INSERT INTO `marc_subfield_structure` VALUES ('040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 0, '', 0, '', '', '', 0, -1, 'IR', '', '');
30094 INSERT INTO `marc_subfield_structure` VALUES ('040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30095 INSERT INTO `marc_subfield_structure` VALUES ('040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, '', 0, '', '', '', 0, -1, 'IR', '', '');
30096 INSERT INTO `marc_subfield_structure` VALUES ('040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, '', 0, '', '', '', 0, -1, 'IR', '', '');
30097 INSERT INTO `marc_subfield_structure` VALUES ('040', 'e', 'Description conventions', 'Description conventions', 0, 0, '', 0, '', '', '', 0, -1, 'IR', '', '');
30098 INSERT INTO `marc_subfield_structure` VALUES ('041', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30099 INSERT INTO `marc_subfield_structure` VALUES ('041', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30100 INSERT INTO `marc_subfield_structure` VALUES ('041', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30101 INSERT INTO `marc_subfield_structure` VALUES ('041', 'a', 'Language code of text/sound track or separate title', 'Language code of text/sound track or separate title', 1, 0, '', 0, '', '', '', 0, -1, 'IR', '', '');
30102 INSERT INTO `marc_subfield_structure` VALUES ('041', 'b', 'Language code of summary or abstract/overprinted title or subtitle', 'Language code of summary or abstract/overprinted title or subtitle', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30103 INSERT INTO `marc_subfield_structure` VALUES ('041', 'c', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30104 INSERT INTO `marc_subfield_structure` VALUES ('041', 'd', 'Language code of sung or spoken text', 'Language code of sung or spoken text', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30105 INSERT INTO `marc_subfield_structure` VALUES ('041', 'e', 'Language code of librettos', 'Language code of librettos', 1, 0, '', 0, '', '', '', 0, -1, 'IR', '', '');
30106 INSERT INTO `marc_subfield_structure` VALUES ('041', 'f', 'Language code of table of contents', 'Language code of table of contents', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30107 INSERT INTO `marc_subfield_structure` VALUES ('041', 'g', 'Language code of accompanying material other than librettos', 'Language code of accompanying material other than librettos', 1, 0, '', 0, '', '', '', 0, -1, 'IR', '', '');
30108 INSERT INTO `marc_subfield_structure` VALUES ('041', 'h', 'Language code of original and/or intermediate translations of text', 'Language code of original and/or intermediate translations of text', 1, 0, '', 0, '', '', '', 0, -1, 'IR', '', '');
30109 INSERT INTO `marc_subfield_structure` VALUES ('042', 'a', 'Authentication code', 'Authentication code', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30110 INSERT INTO `marc_subfield_structure` VALUES ('043', '2', 'Source of local code', 'Source of local code', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30111 INSERT INTO `marc_subfield_structure` VALUES ('043', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30112 INSERT INTO `marc_subfield_structure` VALUES ('043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30113 INSERT INTO `marc_subfield_structure` VALUES ('043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30114 INSERT INTO `marc_subfield_structure` VALUES ('043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30115 INSERT INTO `marc_subfield_structure` VALUES ('043', 'c', 'ISO code', 'ISO code', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30116 INSERT INTO `marc_subfield_structure` VALUES ('044', '2', 'Source of local subentity code', 'Source of local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30117 INSERT INTO `marc_subfield_structure` VALUES ('044', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30118 INSERT INTO `marc_subfield_structure` VALUES ('044', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30119 INSERT INTO `marc_subfield_structure` VALUES ('044', 'a', 'MARC country code', 'MARC country code', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30120 INSERT INTO `marc_subfield_structure` VALUES ('044', 'b', 'Local subentity code', 'Local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30121 INSERT INTO `marc_subfield_structure` VALUES ('044', 'c', 'ISO country code', 'ISO country code', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30122 INSERT INTO `marc_subfield_structure` VALUES ('045', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30123 INSERT INTO `marc_subfield_structure` VALUES ('045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30124 INSERT INTO `marc_subfield_structure` VALUES ('045', 'a', 'Time period code', 'Time period code', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30125 INSERT INTO `marc_subfield_structure` VALUES ('045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30126 INSERT INTO `marc_subfield_structure` VALUES ('045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30127 INSERT INTO `marc_subfield_structure` VALUES ('046', '2', 'Source of date', 'Source of date', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30128 INSERT INTO `marc_subfield_structure` VALUES ('046', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30129 INSERT INTO `marc_subfield_structure` VALUES ('046', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30130 INSERT INTO `marc_subfield_structure` VALUES ('046', 'a', 'Type of date code', 'Type of date code', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30131 INSERT INTO `marc_subfield_structure` VALUES ('046', 'b', 'Date 1 (B.C. date)', 'Date 1 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30132 INSERT INTO `marc_subfield_structure` VALUES ('046', 'c', 'Date 1 (C.E. date)', 'Date 1 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30133 INSERT INTO `marc_subfield_structure` VALUES ('046', 'd', 'Date 2 (B.C. date)', 'Date 2 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30134 INSERT INTO `marc_subfield_structure` VALUES ('046', 'e', 'Date 2 (C.E. date)', 'Date 2 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30135 INSERT INTO `marc_subfield_structure` VALUES ('046', 'j', 'Date resource modified', 'Date resource modified', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30136 INSERT INTO `marc_subfield_structure` VALUES ('046', 'k', 'Beginning or single date created', 'Beginning or single date created', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30137 INSERT INTO `marc_subfield_structure` VALUES ('046', 'l', 'Ending date created', 'Ending date created', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30138 INSERT INTO `marc_subfield_structure` VALUES ('046', 'm', 'Beginning of date valid', 'Beginning of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30139 INSERT INTO `marc_subfield_structure` VALUES ('046', 'n', 'End of date valid', 'End of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30140 INSERT INTO `marc_subfield_structure` VALUES ('047', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30141 INSERT INTO `marc_subfield_structure` VALUES ('047', 'a', 'Form of musical composition code', 'Form of musical composition code', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30142 INSERT INTO `marc_subfield_structure` VALUES ('048', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30143 INSERT INTO `marc_subfield_structure` VALUES ('048', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30144 INSERT INTO `marc_subfield_structure` VALUES ('048', 'a', 'Performer or ensemble', 'Performer or ensemble', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30145 INSERT INTO `marc_subfield_structure` VALUES ('048', 'b', 'Soloist', 'Soloist', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30146 INSERT INTO `marc_subfield_structure` VALUES ('049', 'a', 'Holding library', 'Holding library', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30147 INSERT INTO `marc_subfield_structure` VALUES ('049', 'c', 'Copy statement', 'Copy statement', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30148 INSERT INTO `marc_subfield_structure` VALUES ('049', 'd', 'Definition of bibliographic subdivisions', 'Definition of bibliographic subdivisions', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30149 INSERT INTO `marc_subfield_structure` VALUES ('049', 'l', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30150 INSERT INTO `marc_subfield_structure` VALUES ('049', 'm', 'Missing elements', 'Missing elements', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30151 INSERT INTO `marc_subfield_structure` VALUES ('049', 'n', 'Notes about holdings', 'Notes about holdings', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30152 INSERT INTO `marc_subfield_structure` VALUES ('049', 'o', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30153 INSERT INTO `marc_subfield_structure` VALUES ('049', 'p', 'Secondary bibliographic subdivision', 'Secondary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30154 INSERT INTO `marc_subfield_structure` VALUES ('049', 'q', 'Third bibliographic subdivision', 'Third bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30155 INSERT INTO `marc_subfield_structure` VALUES ('049', 'r', 'Fourth bibliographic subdivision', 'Fourth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30156 INSERT INTO `marc_subfield_structure` VALUES ('049', 's', 'Fifth bibliographic subdivision', 'Fifth bibliographic subdivision', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30157 INSERT INTO `marc_subfield_structure` VALUES ('049', 't', 'Sixth bibliographic subdivision', 'Sixth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30158 INSERT INTO `marc_subfield_structure` VALUES ('049', 'u', 'Seventh bibliographic subdivision', 'Seventh bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30159 INSERT INTO `marc_subfield_structure` VALUES ('049', 'v', 'Primary bibliographic subdivision', 'Primary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30160 INSERT INTO `marc_subfield_structure` VALUES ('049', 'y', 'Inclusive dates of publication or coverage', 'Inclusive dates of publication or coverage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30161 INSERT INTO `marc_subfield_structure` VALUES ('050', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30162 INSERT INTO `marc_subfield_structure` VALUES ('050', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30163 INSERT INTO `marc_subfield_structure` VALUES ('050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30164 INSERT INTO `marc_subfield_structure` VALUES ('050', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, 0, 'IR', '', '');
30165 INSERT INTO `marc_subfield_structure` VALUES ('050', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, 0, 'IR', '', '');
30166 INSERT INTO `marc_subfield_structure` VALUES ('050', 'd', 'Supplementary class number (MU) [OBSOLETE]', 'Supplementary class number (MU) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30167 INSERT INTO `marc_subfield_structure` VALUES ('051', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30168 INSERT INTO `marc_subfield_structure` VALUES ('051', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30169 INSERT INTO `marc_subfield_structure` VALUES ('051', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30170 INSERT INTO `marc_subfield_structure` VALUES ('051', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30171 INSERT INTO `marc_subfield_structure` VALUES ('052', '2', 'Code Source', 'Code Source', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30172 INSERT INTO `marc_subfield_structure` VALUES ('052', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30173 INSERT INTO `marc_subfield_structure` VALUES ('052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30174 INSERT INTO `marc_subfield_structure` VALUES ('052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30175 INSERT INTO `marc_subfield_structure` VALUES ('052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30176 INSERT INTO `marc_subfield_structure` VALUES ('052', 'c', 'Subject (MP) [OBSOLETE]', 'Subject (MP) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30177 INSERT INTO `marc_subfield_structure` VALUES ('052', 'd', 'Populated place name', 'Populated place name', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30178 INSERT INTO `marc_subfield_structure` VALUES ('055', '2', 'Source of call/class number', 'Source of call/class number', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30179 INSERT INTO `marc_subfield_structure` VALUES ('055', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30180 INSERT INTO `marc_subfield_structure` VALUES ('055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30181 INSERT INTO `marc_subfield_structure` VALUES ('055', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30182 INSERT INTO `marc_subfield_structure` VALUES ('055', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30183 INSERT INTO `marc_subfield_structure` VALUES ('060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30184 INSERT INTO `marc_subfield_structure` VALUES ('060', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30185 INSERT INTO `marc_subfield_structure` VALUES ('060', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30186 INSERT INTO `marc_subfield_structure` VALUES ('061', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30187 INSERT INTO `marc_subfield_structure` VALUES ('061', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30188 INSERT INTO `marc_subfield_structure` VALUES ('061', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30189 INSERT INTO `marc_subfield_structure` VALUES ('061', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30190 INSERT INTO `marc_subfield_structure` VALUES ('066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30191 INSERT INTO `marc_subfield_structure` VALUES ('066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30192 INSERT INTO `marc_subfield_structure` VALUES ('066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30193 INSERT INTO `marc_subfield_structure` VALUES ('070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30194 INSERT INTO `marc_subfield_structure` VALUES ('070', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30195 INSERT INTO `marc_subfield_structure` VALUES ('070', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30196 INSERT INTO `marc_subfield_structure` VALUES ('071', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30197 INSERT INTO `marc_subfield_structure` VALUES ('071', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30198 INSERT INTO `marc_subfield_structure` VALUES ('071', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30199 INSERT INTO `marc_subfield_structure` VALUES ('071', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30200 INSERT INTO `marc_subfield_structure` VALUES ('072', '2', 'Source', 'Source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30201 INSERT INTO `marc_subfield_structure` VALUES ('072', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30202 INSERT INTO `marc_subfield_structure` VALUES ('072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30203 INSERT INTO `marc_subfield_structure` VALUES ('072', 'a', 'Subject category code', 'Subject category code', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30204 INSERT INTO `marc_subfield_structure` VALUES ('072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30205 INSERT INTO `marc_subfield_structure` VALUES ('074', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30206 INSERT INTO `marc_subfield_structure` VALUES ('074', 'a', 'GPO item number', 'GPO item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'IR', '', '');
30207 INSERT INTO `marc_subfield_structure` VALUES ('074', 'z', 'Canceled/invalid GPO item number', 'Canceled/invalid GPO item number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30208 INSERT INTO `marc_subfield_structure` VALUES ('080', '2', 'Edition identifier', 'Edition identifier', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30209 INSERT INTO `marc_subfield_structure` VALUES ('080', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30210 INSERT INTO `marc_subfield_structure` VALUES ('080', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30211 INSERT INTO `marc_subfield_structure` VALUES ('080', 'a', 'Universal Decimal Classification number', 'Universal Decimal Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30212 INSERT INTO `marc_subfield_structure` VALUES ('080', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30213 INSERT INTO `marc_subfield_structure` VALUES ('080', 'x', 'Common auxiliary subdivision', 'Common auxiliary subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30214 INSERT INTO `marc_subfield_structure` VALUES ('082', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, 0, 'IR', '', '');
30215 INSERT INTO `marc_subfield_structure` VALUES ('082', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', NULL, -6, 'IR', '', '');
30216 INSERT INTO `marc_subfield_structure` VALUES ('082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', NULL, -6, 'IR', '', '');
30217 INSERT INTO `marc_subfield_structure` VALUES ('082', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, 0, 'IR', '', '');
30218 INSERT INTO `marc_subfield_structure` VALUES ('082', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, 0, 'IR', '', '');
30219 INSERT INTO `marc_subfield_structure` VALUES ('084', '2', 'Source of number', 'Source of number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30220 INSERT INTO `marc_subfield_structure` VALUES ('084', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30221 INSERT INTO `marc_subfield_structure` VALUES ('084', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30222 INSERT INTO `marc_subfield_structure` VALUES ('084', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30223 INSERT INTO `marc_subfield_structure` VALUES ('084', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30224 INSERT INTO `marc_subfield_structure` VALUES ('086', '2', 'Number source', 'Number source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'IR', '', '');
30225 INSERT INTO `marc_subfield_structure` VALUES ('086', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30226 INSERT INTO `marc_subfield_structure` VALUES ('086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30227 INSERT INTO `marc_subfield_structure` VALUES ('086', 'a', 'Classification number', 'Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'IR', '', '');
30228 INSERT INTO `marc_subfield_structure` VALUES ('086', 'z', 'Canceled/invalid classification number', 'Canceled/invalid classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30229 INSERT INTO `marc_subfield_structure` VALUES ('087', 'a', 'Report number [OBSOLETE, CAN/MARC]', 'Report number [OBSOLETE, CAN/MARC]', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30230 INSERT INTO `marc_subfield_structure` VALUES ('087', 'z', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30231 INSERT INTO `marc_subfield_structure` VALUES ('088', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30232 INSERT INTO `marc_subfield_structure` VALUES ('088', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30233 INSERT INTO `marc_subfield_structure` VALUES ('088', 'a', 'Report number', 'Report number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30234 INSERT INTO `marc_subfield_structure` VALUES ('088', 'z', 'Canceled/invalid report number', 'Canceled/invalid report number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'IR', '', '');
30235 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30236 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30237 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
30238 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
30239 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
30240 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
30241 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
30242 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
30243 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
30244 INSERT INTO `marc_subfield_structure` VALUES ('09o', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
30245 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
30246 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
30247 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
30248 INSERT INTO `marc_subfield_structure` VALUES ('091', 'a', 'Microfilm shelf location', 'Microfilm shelf location', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30249 INSERT INTO `marc_subfield_structure` VALUES ('092', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, -6, 'IR', '', '');
30250 INSERT INTO `marc_subfield_structure` VALUES ('092', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'IR', '', '');
30251 INSERT INTO `marc_subfield_structure` VALUES ('092', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'IR', '', '');
30252 INSERT INTO `marc_subfield_structure` VALUES ('092', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30253 INSERT INTO `marc_subfield_structure` VALUES ('092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30254 INSERT INTO `marc_subfield_structure` VALUES ('096', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'IR', '', '');
30255 INSERT INTO `marc_subfield_structure` VALUES ('096', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'IR', '', '');
30256 INSERT INTO `marc_subfield_structure` VALUES ('096', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30257 INSERT INTO `marc_subfield_structure` VALUES ('096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30258 INSERT INTO `marc_subfield_structure` VALUES ('098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, '', 0, '', '', '', NULL, -6, 'IR', '', '');
30259 INSERT INTO `marc_subfield_structure` VALUES ('098', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30260 INSERT INTO `marc_subfield_structure` VALUES ('098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30261 INSERT INTO `marc_subfield_structure` VALUES ('099', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, -6, 'IR', '', '');
30262 INSERT INTO `marc_subfield_structure` VALUES ('099', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30263 INSERT INTO `marc_subfield_structure` VALUES ('099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
30264 INSERT INTO `marc_subfield_structure` VALUES ('100', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', 0, -6, 'IR', '', '');
30265 INSERT INTO `marc_subfield_structure` VALUES ('100', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', 0, -6, 'IR', '', '');
30266 INSERT INTO `marc_subfield_structure` VALUES ('100', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', 0, -6, 'IR', '', '');
30267 INSERT INTO `marc_subfield_structure` VALUES ('100', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
30268 INSERT INTO `marc_subfield_structure` VALUES ('100', 'a', 'Personal name', 'Personal name', 0, 0, 'biblio.author', 1, '', '', '', 0, 0, 'IR', '''100b'',''100c'',''100q'',''100d'',''100e'',''110a'',''110b'',''110c'',''110d'',''110e'',''700a'',''700b'',''700c'',''700q'',''700d'',''700e'',''710a'',''710b'',''710c'',''710d'',''710e'',''720a'',''720e'',''900a''', '');
30269 INSERT INTO `marc_subfield_structure` VALUES ('100', 'b', 'Numeration', 'Numeration', 0, 0, '', 1, '', '', '', 0, -1, 'IR', '', '');
30270 INSERT INTO `marc_subfield_structure` VALUES ('100', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 1, '', '', '', 0, -1, 'IR', '', '');
30271 INSERT INTO `marc_subfield_structure` VALUES ('100', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 1, '', '', '', 0, 0, 'IR', '', '');
30272 INSERT INTO `marc_subfield_structure` VALUES ('100', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', 0, -1, 'IR', '', '');
30273 INSERT INTO `marc_subfield_structure` VALUES ('100', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', 0, -6, 'IR', '', '');
30274 INSERT INTO `marc_subfield_structure` VALUES ('100', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', 0, -6, 'IR', '', '');
30275 INSERT INTO `marc_subfield_structure` VALUES ('100', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 1, '', '', '', 0, -6, 'IR', '', '');
30276 INSERT INTO `marc_subfield_structure` VALUES ('100', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', 0, -6, 'IR', '', '');
30277 INSERT INTO `marc_subfield_structure` VALUES ('100', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', 0, -6, 'IR', '', '');
30278 INSERT INTO `marc_subfield_structure` VALUES ('100', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'IR', '', '');
30279 INSERT INTO `marc_subfield_structure` VALUES ('100', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'IR', '', '');
30280 INSERT INTO `marc_subfield_structure` VALUES ('100', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 1, '', '', '', 0, -1, 'IR', '', '');
30281 INSERT INTO `marc_subfield_structure` VALUES ('100', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', 0, -6, 'IR', '', '');
30282 INSERT INTO `marc_subfield_structure` VALUES ('100', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', 0, -6, 'IR', '', '');
30283 INSERT INTO `marc_subfield_structure` VALUES ('110', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', NULL, -6, 'IR', '', '');
30284 INSERT INTO `marc_subfield_structure` VALUES ('110', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', NULL, -6, 'IR', '', '');
30285 INSERT INTO `marc_subfield_structure` VALUES ('110', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', NULL, -6, 'IR', '', '');
30286 INSERT INTO `marc_subfield_structure` VALUES ('110', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
30287 INSERT INTO `marc_subfield_structure` VALUES ('110', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 1, '', '', '', NULL, -1, 'IR', '', '');
30288 INSERT INTO `marc_subfield_structure` VALUES ('110', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 1, '', '', '', NULL, -1, 'IR', '', '');
30289 INSERT INTO `marc_subfield_structure` VALUES ('110', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 1, '', '', '', NULL, -1, 'IR', '', '');
30290 INSERT INTO `marc_subfield_structure` VALUES ('110', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 1, '', '', '', NULL, -1, 'IR', '', '');
30291 INSERT INTO `marc_subfield_structure` VALUES ('110', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', NULL, -1, 'IR', '', '');
30292 INSERT INTO `marc_subfield_structure` VALUES ('110', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'IR', '', '');
30293 INSERT INTO `marc_subfield_structure` VALUES ('110', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', NULL, -6, 'IR', '', '');
30294 INSERT INTO `marc_subfield_structure` VALUES ('110', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', NULL, -6, 'IR', '', '');
30295 INSERT INTO `marc_subfield_structure` VALUES ('110', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'IR', '', '');
30296 INSERT INTO `marc_subfield_structure` VALUES ('110', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 1, '', '', '', NULL, -6, 'IR', '', '');
30297 INSERT INTO `marc_subfield_structure` VALUES ('110', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', NULL, -6, 'IR', '', '');
30298 INSERT INTO `marc_subfield_structure` VALUES ('110', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'IR', '', '');
30299 INSERT INTO `marc_subfield_structure` VALUES ('110', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', NULL, -6, 'IR', '', '');
30300 INSERT INTO `marc_subfield_structure` VALUES ('111', '4', 'Relator code', 'Relator code', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30301 INSERT INTO `marc_subfield_structure` VALUES ('111', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30302 INSERT INTO `marc_subfield_structure` VALUES ('111', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30303 INSERT INTO `marc_subfield_structure` VALUES ('111', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
30304 INSERT INTO `marc_subfield_structure` VALUES ('111', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'IR', '', '');
30305 INSERT INTO `marc_subfield_structure` VALUES ('111', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30306 INSERT INTO `marc_subfield_structure` VALUES ('111', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'IR', '', '');
30307 INSERT INTO `marc_subfield_structure` VALUES ('111', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'IR', '', '');
30308 INSERT INTO `marc_subfield_structure` VALUES ('111', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'IR', '', '');
30309 INSERT INTO `marc_subfield_structure` VALUES ('111', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30310 INSERT INTO `marc_subfield_structure` VALUES ('111', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30311 INSERT INTO `marc_subfield_structure` VALUES ('111', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30312 INSERT INTO `marc_subfield_structure` VALUES ('111', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30313 INSERT INTO `marc_subfield_structure` VALUES ('111', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30314 INSERT INTO `marc_subfield_structure` VALUES ('111', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30315 INSERT INTO `marc_subfield_structure` VALUES ('111', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30316 INSERT INTO `marc_subfield_structure` VALUES ('111', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30317 INSERT INTO `marc_subfield_structure` VALUES ('111', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30318 INSERT INTO `marc_subfield_structure` VALUES ('130', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30319 INSERT INTO `marc_subfield_structure` VALUES ('130', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30320 INSERT INTO `marc_subfield_structure` VALUES ('130', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
30321 INSERT INTO `marc_subfield_structure` VALUES ('130', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30322 INSERT INTO `marc_subfield_structure` VALUES ('130', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30323 INSERT INTO `marc_subfield_structure` VALUES ('130', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30324 INSERT INTO `marc_subfield_structure` VALUES ('130', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30325 INSERT INTO `marc_subfield_structure` VALUES ('130', 'h', 'Medium', 'Medium', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30326 INSERT INTO `marc_subfield_structure` VALUES ('130', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30327 INSERT INTO `marc_subfield_structure` VALUES ('130', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30328 INSERT INTO `marc_subfield_structure` VALUES ('130', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30329 INSERT INTO `marc_subfield_structure` VALUES ('130', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30330 INSERT INTO `marc_subfield_structure` VALUES ('130', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30331 INSERT INTO `marc_subfield_structure` VALUES ('130', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30332 INSERT INTO `marc_subfield_structure` VALUES ('130', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30333 INSERT INTO `marc_subfield_structure` VALUES ('130', 's', 'Version', 'Version', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30334 INSERT INTO `marc_subfield_structure` VALUES ('130', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'IR', '', '');
30335 INSERT INTO `marc_subfield_structure` VALUES ('210', '2', 'Source', 'Source', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30336 INSERT INTO `marc_subfield_structure` VALUES ('210', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30337 INSERT INTO `marc_subfield_structure` VALUES ('210', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30338 INSERT INTO `marc_subfield_structure` VALUES ('210', 'a', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30339 INSERT INTO `marc_subfield_structure` VALUES ('210', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30340 INSERT INTO `marc_subfield_structure` VALUES ('211', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30341 INSERT INTO `marc_subfield_structure` VALUES ('211', 'a', 'Acronym or shortened title', 'Acronym or shortened title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30342 INSERT INTO `marc_subfield_structure` VALUES ('212', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30343 INSERT INTO `marc_subfield_structure` VALUES ('212', 'a', 'Variant access title', 'Variant access title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30344 INSERT INTO `marc_subfield_structure` VALUES ('214', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30345 INSERT INTO `marc_subfield_structure` VALUES ('214', 'a', 'Augmented title', 'Augmented title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30346 INSERT INTO `marc_subfield_structure` VALUES ('222', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30347 INSERT INTO `marc_subfield_structure` VALUES ('222', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30348 INSERT INTO `marc_subfield_structure` VALUES ('222', 'a', 'Key title', 'Key title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30349 INSERT INTO `marc_subfield_structure` VALUES ('222', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30350 INSERT INTO `marc_subfield_structure` VALUES ('240', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30351 INSERT INTO `marc_subfield_structure` VALUES ('240', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30352 INSERT INTO `marc_subfield_structure` VALUES ('240', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
30353 INSERT INTO `marc_subfield_structure` VALUES ('240', 'a', 'Uniform title', 'Uniform title', 0, 0, 'biblio.unititle', 2, '', '', '', 1, -1, 'IR', '', '');
30354 INSERT INTO `marc_subfield_structure` VALUES ('240', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30355 INSERT INTO `marc_subfield_structure` VALUES ('240', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30356 INSERT INTO `marc_subfield_structure` VALUES ('240', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30357 INSERT INTO `marc_subfield_structure` VALUES ('240', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'IR', '', '');
30358 INSERT INTO `marc_subfield_structure` VALUES ('240', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30359 INSERT INTO `marc_subfield_structure` VALUES ('240', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'IR', '', '');
30360 INSERT INTO `marc_subfield_structure` VALUES ('240', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30361 INSERT INTO `marc_subfield_structure` VALUES ('240', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30362 INSERT INTO `marc_subfield_structure` VALUES ('240', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30363 INSERT INTO `marc_subfield_structure` VALUES ('240', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30364 INSERT INTO `marc_subfield_structure` VALUES ('240', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30365 INSERT INTO `marc_subfield_structure` VALUES ('240', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'IR', '', '');
30366 INSERT INTO `marc_subfield_structure` VALUES ('241', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30367 INSERT INTO `marc_subfield_structure` VALUES ('241', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30368 INSERT INTO `marc_subfield_structure` VALUES ('242', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30369 INSERT INTO `marc_subfield_structure` VALUES ('242', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30370 INSERT INTO `marc_subfield_structure` VALUES ('242', 'a', 'Title', 'Title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30371 INSERT INTO `marc_subfield_structure` VALUES ('242', 'b', 'Remainder of title', 'Remainder of title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30372 INSERT INTO `marc_subfield_structure` VALUES ('242', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30373 INSERT INTO `marc_subfield_structure` VALUES ('242', 'd', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30374 INSERT INTO `marc_subfield_structure` VALUES ('242', 'e', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30375 INSERT INTO `marc_subfield_structure` VALUES ('242', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30376 INSERT INTO `marc_subfield_structure` VALUES ('242', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30377 INSERT INTO `marc_subfield_structure` VALUES ('242', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30378 INSERT INTO `marc_subfield_structure` VALUES ('242', 'y', 'Language code of translated title', 'Language code of translated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'IR', '', '');
30379 INSERT INTO `marc_subfield_structure` VALUES ('243', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30380 INSERT INTO `marc_subfield_structure` VALUES ('243', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30381 INSERT INTO `marc_subfield_structure` VALUES ('243', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
30382 INSERT INTO `marc_subfield_structure` VALUES ('243', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 2, '', '', '', 1, -1, 'IR', '', '');
30383 INSERT INTO `marc_subfield_structure` VALUES ('243', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30384 INSERT INTO `marc_subfield_structure` VALUES ('243', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30385 INSERT INTO `marc_subfield_structure` VALUES ('243', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30386 INSERT INTO `marc_subfield_structure` VALUES ('243', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'IR', '', '');
30387 INSERT INTO `marc_subfield_structure` VALUES ('243', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30388 INSERT INTO `marc_subfield_structure` VALUES ('243', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'IR', '', '');
30389 INSERT INTO `marc_subfield_structure` VALUES ('243', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30390 INSERT INTO `marc_subfield_structure` VALUES ('243', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30391 INSERT INTO `marc_subfield_structure` VALUES ('243', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30392 INSERT INTO `marc_subfield_structure` VALUES ('243', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30393 INSERT INTO `marc_subfield_structure` VALUES ('243', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'IR', '', '');
30394 INSERT INTO `marc_subfield_structure` VALUES ('243', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'IR', '', '');
30395 INSERT INTO `marc_subfield_structure` VALUES ('245', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30396 INSERT INTO `marc_subfield_structure` VALUES ('245', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30397 INSERT INTO `marc_subfield_structure` VALUES ('245', 'a', 'Title', 'Title', 0, 1, 'biblio.title', 2, '', '', '', NULL, 0, 'IR', '''245b'',''245f'',''245g'',''245k'',''245n'',''245p'',''245s'',''245h'',''246i'',''246a'',''246b'',''246f'',''246g'',''246n'',''246p'',''246h'',''242a'',''242b'',''242n'',''242p'',''242h''', '');
30398 INSERT INTO `marc_subfield_structure` VALUES ('245', 'b', 'Remainder of title', 'Remainder of title', 0, 0, 'bibliosubtitle.subtitle', 2, '', '', '', NULL, 0, 'IR', '', '');
30399 INSERT INTO `marc_subfield_structure` VALUES ('245', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 2, '', '', '', NULL, 0, 'IR', '', '');
30400 INSERT INTO `marc_subfield_structure` VALUES ('245', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series: (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30401 INSERT INTO `marc_subfield_structure` VALUES ('245', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30402 INSERT INTO `marc_subfield_structure` VALUES ('245', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30403 INSERT INTO `marc_subfield_structure` VALUES ('245', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30404 INSERT INTO `marc_subfield_structure` VALUES ('245', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -1, 'IR', '', '');
30405 INSERT INTO `marc_subfield_structure` VALUES ('245', 'k', 'Form', 'Form', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30406 INSERT INTO `marc_subfield_structure` VALUES ('245', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30407 INSERT INTO `marc_subfield_structure` VALUES ('245', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30408 INSERT INTO `marc_subfield_structure` VALUES ('245', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30409 INSERT INTO `marc_subfield_structure` VALUES ('246', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30410 INSERT INTO `marc_subfield_structure` VALUES ('246', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30411 INSERT INTO `marc_subfield_structure` VALUES ('246', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30412 INSERT INTO `marc_subfield_structure` VALUES ('246', 'a', 'Title proper/short title', 'Title proper/short title', 0, 0, '', 2, '', '', '', NULL, -1, 'IR', '', '');
30413 INSERT INTO `marc_subfield_structure` VALUES ('246', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -1, 'IR', '', '');
30414 INSERT INTO `marc_subfield_structure` VALUES ('246', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30415 INSERT INTO `marc_subfield_structure` VALUES ('246', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30416 INSERT INTO `marc_subfield_structure` VALUES ('246', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30417 INSERT INTO `marc_subfield_structure` VALUES ('246', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30418 INSERT INTO `marc_subfield_structure` VALUES ('246', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -1, 'IR', '', '');
30419 INSERT INTO `marc_subfield_structure` VALUES ('246', 'i', 'Display text', 'Display text', 0, 0, '', 2, '', '', '', NULL, -1, 'IR', '', '');
30420 INSERT INTO `marc_subfield_structure` VALUES ('246', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30421 INSERT INTO `marc_subfield_structure` VALUES ('246', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30422 INSERT INTO `marc_subfield_structure` VALUES ('247', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30423 INSERT INTO `marc_subfield_structure` VALUES ('247', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30424 INSERT INTO `marc_subfield_structure` VALUES ('247', 'a', 'Title', 'Title', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30425 INSERT INTO `marc_subfield_structure` VALUES ('247', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30426 INSERT INTO `marc_subfield_structure` VALUES ('247', 'd', 'Designation of section (SE) [OBSOLETE]', 'Designation of section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30427 INSERT INTO `marc_subfield_structure` VALUES ('247', 'e', 'Name of part/section (SE) [OBSOLETE]', 'Name of part/section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30428 INSERT INTO `marc_subfield_structure` VALUES ('247', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30429 INSERT INTO `marc_subfield_structure` VALUES ('247', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30430 INSERT INTO `marc_subfield_structure` VALUES ('247', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30431 INSERT INTO `marc_subfield_structure` VALUES ('247', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30432 INSERT INTO `marc_subfield_structure` VALUES ('247', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30433 INSERT INTO `marc_subfield_structure` VALUES ('247', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30434 INSERT INTO `marc_subfield_structure` VALUES ('250', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30435 INSERT INTO `marc_subfield_structure` VALUES ('250', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30436 INSERT INTO `marc_subfield_structure` VALUES ('250', 'a', 'Edition statement', 'Edition statement', 0, 0, '', 2, '', '', '', NULL, 0, 'IR', '', '');
30437 INSERT INTO `marc_subfield_structure` VALUES ('250', 'b', 'Remainder of edition statement', 'Remainder of edition statement', 0, 0, '', 2, '', '', '', NULL, 0, 'IR', '', '');
30438 INSERT INTO `marc_subfield_structure` VALUES ('254', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30439 INSERT INTO `marc_subfield_structure` VALUES ('254', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30440 INSERT INTO `marc_subfield_structure` VALUES ('254', 'a', 'Musical presentation statement', 'Musical presentation statement', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30441 INSERT INTO `marc_subfield_structure` VALUES ('255', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30442 INSERT INTO `marc_subfield_structure` VALUES ('255', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30443 INSERT INTO `marc_subfield_structure` VALUES ('255', 'a', 'Statement of scale', 'Statement of scale', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30444 INSERT INTO `marc_subfield_structure` VALUES ('255', 'b', 'Statement of projection', 'Statement of projection', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30445 INSERT INTO `marc_subfield_structure` VALUES ('255', 'c', 'Statement of coordinates', 'Statement of coordinates', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30446 INSERT INTO `marc_subfield_structure` VALUES ('255', 'd', 'Statement of zone', 'Statement of zone', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30447 INSERT INTO `marc_subfield_structure` VALUES ('255', 'e', 'Statement of equinox', 'Statement of equinox', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30448 INSERT INTO `marc_subfield_structure` VALUES ('255', 'f', 'Outer G-ring coordinate pairs', 'Outer G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30449 INSERT INTO `marc_subfield_structure` VALUES ('255', 'g', 'Exclusion G-ring coordinate pairs', 'Exclusion G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30450 INSERT INTO `marc_subfield_structure` VALUES ('256', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30451 INSERT INTO `marc_subfield_structure` VALUES ('256', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30452 INSERT INTO `marc_subfield_structure` VALUES ('256', 'a', 'Computer file characteristics', 'Computer file characteristics', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30453 INSERT INTO `marc_subfield_structure` VALUES ('257', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30454 INSERT INTO `marc_subfield_structure` VALUES ('257', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30455 INSERT INTO `marc_subfield_structure` VALUES ('257', 'a', 'Country of producing entity', 'Country of producing entity', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30456 INSERT INTO `marc_subfield_structure` VALUES ('258', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30457 INSERT INTO `marc_subfield_structure` VALUES ('258', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30458 INSERT INTO `marc_subfield_structure` VALUES ('258', 'a', 'Issuing jurisdiction', 'Issuing jurisdiction', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30459 INSERT INTO `marc_subfield_structure` VALUES ('258', 'b', 'Denomination', 'Denomination', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30460 INSERT INTO `marc_subfield_structure` VALUES ('260', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30461 INSERT INTO `marc_subfield_structure` VALUES ('260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30462 INSERT INTO `marc_subfield_structure` VALUES ('260', 'a', 'Place of publication, distribution, etc', 'Place of publication, distribution, etc', 1, 0, 'biblioitems.place', 2, '', '', '', NULL, 0, 'IR', '', '');
30463 INSERT INTO `marc_subfield_structure` VALUES ('260', 'b', 'Name of publisher, distributor, etc', 'Name of publisher, distributor, etc', 1, 0, 'biblioitems.publishercode', 2, '', '', '', NULL, 0, 'IR', '', '');
30464 INSERT INTO `marc_subfield_structure` VALUES ('260', 'c', 'Date of copyright, publication, distribution, etc', 'Date of publication, distribution, etc', 1, 0, 'biblio.copyrightdate', 2, '', '', '', NULL, 0, 'IR', '', '');
30465 INSERT INTO `marc_subfield_structure` VALUES ('260', 'd', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30466 INSERT INTO `marc_subfield_structure` VALUES ('260', 'e', 'Place of manufacture', 'Place of manufacture', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30467 INSERT INTO `marc_subfield_structure` VALUES ('260', 'f', 'Manufacturer', 'Manufacturer', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30468 INSERT INTO `marc_subfield_structure` VALUES ('260', 'g', 'Date of manufacture', 'Date of manufacture', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30469 INSERT INTO `marc_subfield_structure` VALUES ('260', 'k', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30470 INSERT INTO `marc_subfield_structure` VALUES ('260', 'l', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30471 INSERT INTO `marc_subfield_structure` VALUES ('261', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30472 INSERT INTO `marc_subfield_structure` VALUES ('261', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30473 INSERT INTO `marc_subfield_structure` VALUES ('261', 'a', 'Producing company', 'Producing company', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30474 INSERT INTO `marc_subfield_structure` VALUES ('261', 'b', 'Releasing company (primary distributor)', 'Releasing company (primary distributor)', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30475 INSERT INTO `marc_subfield_structure` VALUES ('261', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30476 INSERT INTO `marc_subfield_structure` VALUES ('261', 'd', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30477 INSERT INTO `marc_subfield_structure` VALUES ('261', 'e', 'Contractual producer', 'Contractual producer', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30478 INSERT INTO `marc_subfield_structure` VALUES ('261', 'f', 'Place of production, release, etc.', 'Place of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30479 INSERT INTO `marc_subfield_structure` VALUES ('262', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30480 INSERT INTO `marc_subfield_structure` VALUES ('262', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30481 INSERT INTO `marc_subfield_structure` VALUES ('262', 'a', 'Place of production, release, etc.', 'Place of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30482 INSERT INTO `marc_subfield_structure` VALUES ('262', 'b', 'Publisher or trade name', 'Publisher or trade name', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30483 INSERT INTO `marc_subfield_structure` VALUES ('262', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30484 INSERT INTO `marc_subfield_structure` VALUES ('262', 'k', 'Serial identification', 'Serial identification', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30485 INSERT INTO `marc_subfield_structure` VALUES ('262', 'l', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30486 INSERT INTO `marc_subfield_structure` VALUES ('263', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30487 INSERT INTO `marc_subfield_structure` VALUES ('263', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30488 INSERT INTO `marc_subfield_structure` VALUES ('263', 'a', 'Projected publication date', 'Projected publication date', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30489 INSERT INTO `marc_subfield_structure` VALUES ('265', '6', 'Linkage [OBSOLETE]', 'Linkage [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30490 INSERT INTO `marc_subfield_structure` VALUES ('265', 'a', 'Source for acquisition/subscription address [OBSOLETE]', 'Source for acquisition/subscription address [OBSOLETE]', 1, 0, '', 2, '', '', '', NULL, -6, 'IR', '', '');
30491 INSERT INTO `marc_subfield_structure` VALUES ('270', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
30492 INSERT INTO `marc_subfield_structure` VALUES ('270', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
30493 INSERT INTO `marc_subfield_structure` VALUES ('270', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
30494 INSERT INTO `marc_subfield_structure` VALUES ('270', 'a', 'Address', 'Address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'IR', '', '');
30495 INSERT INTO `marc_subfield_structure` VALUES ('270', 'b', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'IR', '', '');
30496 INSERT INTO `marc_subfield_structure` VALUES ('270', 'c', 'State or province', 'State or province', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
30497 INSERT INTO `marc_subfield_structure` VALUES ('270', 'd', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'IR', '', '');
30498 INSERT INTO `marc_subfield_structure` VALUES ('270', 'e', 'Postal code', 'Postal code', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'IR', '', '');
30499 INSERT INTO `marc_subfield_structure` VALUES ('270', 'f', 'Terms preceding attention name', 'Terms preceding attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'IR', '', '');
30500 INSERT INTO `marc_subfield_structure` VALUES ('270', 'g', 'Attention name', 'Attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'IR', '', '');
30501 INSERT INTO `marc_subfield_structure` VALUES ('270', 'h', 'Attention position', 'Attention position', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'IR', '', '');
30502 INSERT INTO `marc_subfield_structure` VALUES ('270', 'i', 'Type of address', 'Type of address', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'IR', '', '');
30503 INSERT INTO `marc_subfield_structure` VALUES ('270', 'j', 'Specialized telephone number', 'Specialized telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'IR', '', '');
30504 INSERT INTO `marc_subfield_structure` VALUES ('270', 'k', 'Telephone number', 'Telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'IR', '', '');
30505 INSERT INTO `marc_subfield_structure` VALUES ('270', 'l', 'Fax number', 'Fax number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'IR', '', '');
30506 INSERT INTO `marc_subfield_structure` VALUES ('270', 'm', 'Electronic mail address', 'Electronic mail address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'IR', '', '');
30507 INSERT INTO `marc_subfield_structure` VALUES ('270', 'n', 'TDD or TTY number', 'TDD or TTY number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'IR', '', '');
30508 INSERT INTO `marc_subfield_structure` VALUES ('270', 'p', 'Contact person', 'Contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'IR', '', '');
30509 INSERT INTO `marc_subfield_structure` VALUES ('270', 'q', 'Title of contact person', 'Title of contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'IR', '', '');
30510 INSERT INTO `marc_subfield_structure` VALUES ('270', 'r', 'Hours', 'Hours', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'IR', '', '');
30511 INSERT INTO `marc_subfield_structure` VALUES ('270', 'z', 'Public note', 'Public note', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'IR', '', '');
30512 INSERT INTO `marc_subfield_structure` VALUES ('300', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30513 INSERT INTO `marc_subfield_structure` VALUES ('300', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30514 INSERT INTO `marc_subfield_structure` VALUES ('300', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30515 INSERT INTO `marc_subfield_structure` VALUES ('300', 'a', 'Extent', 'Extent', 1, 1, 'biblioitems.pages', 3, '', '', '', NULL, 0, 'IR', '', '');
30516 INSERT INTO `marc_subfield_structure` VALUES ('300', 'b', 'Other physical details', 'Other physical details', 0, 0, 'biblioitems.illus', 3, '', '', '', 0, 0, 'IR', '', '');
30517 INSERT INTO `marc_subfield_structure` VALUES ('300', 'c', 'Dimensions', 'Dimensions', 1, 0, 'biblioitems.size', 3, '', '', '', NULL, 0, 'IR', '', '');
30518 INSERT INTO `marc_subfield_structure` VALUES ('300', 'd', 'Accompanying material [OBSOLETE, CAN/MARC]', 'Accompanying material [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30519 INSERT INTO `marc_subfield_structure` VALUES ('300', 'e', 'Accompanying material', 'Accompanying material', 0, 0, '', 3, '', '', '', NULL, 0, 'IR', '', '');
30520 INSERT INTO `marc_subfield_structure` VALUES ('300', 'f', 'Type of unit', 'Type of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'IR', '', '');
30521 INSERT INTO `marc_subfield_structure` VALUES ('300', 'g', 'Size of unit', 'Size of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'IR', '', '');
30522 INSERT INTO `marc_subfield_structure` VALUES ('300', 'k', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30523 INSERT INTO `marc_subfield_structure` VALUES ('300', 'm', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30524 INSERT INTO `marc_subfield_structure` VALUES ('300', 'n', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30525 INSERT INTO `marc_subfield_structure` VALUES ('301', 'a', 'Extent of item', 'Extent of item', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30526 INSERT INTO `marc_subfield_structure` VALUES ('301', 'b', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30527 INSERT INTO `marc_subfield_structure` VALUES ('301', 'c', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', NULL, NULL, -6, 'IR', '', '');
30528 INSERT INTO `marc_subfield_structure` VALUES ('301', 'd', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30529 INSERT INTO `marc_subfield_structure` VALUES ('301', 'e', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30530 INSERT INTO `marc_subfield_structure` VALUES ('301', 'f', 'Speed', 'Speed', 0, 0, '', 3, '', '', NULL, NULL, -6, 'IR', '', '');
30531 INSERT INTO `marc_subfield_structure` VALUES ('302', 'a', 'Page count', 'Page count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'IR', '', '');
30532 INSERT INTO `marc_subfield_structure` VALUES ('303', 'a', 'Unit count', 'Unit count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'IR', '', '');
30533 INSERT INTO `marc_subfield_structure` VALUES ('304', 'a', 'Linear footage', 'Linear footage', 0, 0, '', 3, '', '', NULL, NULL, -6, 'IR', '', '');
30534 INSERT INTO `marc_subfield_structure` VALUES ('305', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30535 INSERT INTO `marc_subfield_structure` VALUES ('305', 'a', 'Extent', 'Extent', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30536 INSERT INTO `marc_subfield_structure` VALUES ('305', 'b', 'Other physical details', 'Other physical details', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30537 INSERT INTO `marc_subfield_structure` VALUES ('305', 'c', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', NULL, NULL, -6, 'IR', '', '');
30538 INSERT INTO `marc_subfield_structure` VALUES ('305', 'd', 'Microgroove or standard', 'Microgroove or standard', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30539 INSERT INTO `marc_subfield_structure` VALUES ('305', 'e', 'Stereophonic, monaural', 'Stereophonic, monaural', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30540 INSERT INTO `marc_subfield_structure` VALUES ('305', 'f', 'Number of tracks', 'Number of tracks', 0, 0, '', 3, '', '', NULL, NULL, -6, 'IR', '', '');
30541 INSERT INTO `marc_subfield_structure` VALUES ('305', 'm', 'Serial identification', 'Serial identification', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30542 INSERT INTO `marc_subfield_structure` VALUES ('305', 'n', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 3, '', '', NULL, NULL, -6, 'IR', '', '');
30543 INSERT INTO `marc_subfield_structure` VALUES ('306', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30544 INSERT INTO `marc_subfield_structure` VALUES ('306', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30545 INSERT INTO `marc_subfield_structure` VALUES ('306', 'a', 'Playing time', 'Playing time', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30546 INSERT INTO `marc_subfield_structure` VALUES ('307', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30547 INSERT INTO `marc_subfield_structure` VALUES ('307', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30548 INSERT INTO `marc_subfield_structure` VALUES ('307', 'a', 'Hours', 'Hours', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30549 INSERT INTO `marc_subfield_structure` VALUES ('307', 'b', 'Additional information', 'Additional information', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30550 INSERT INTO `marc_subfield_structure` VALUES ('308', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30551 INSERT INTO `marc_subfield_structure` VALUES ('308', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30552 INSERT INTO `marc_subfield_structure` VALUES ('308', 'a', 'Number of reels', 'Number of reels', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30553 INSERT INTO `marc_subfield_structure` VALUES ('308', 'b', 'Footage', 'Footage', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30554 INSERT INTO `marc_subfield_structure` VALUES ('308', 'c', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30555 INSERT INTO `marc_subfield_structure` VALUES ('308', 'd', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30556 INSERT INTO `marc_subfield_structure` VALUES ('308', 'e', 'Width', 'Width', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30557 INSERT INTO `marc_subfield_structure` VALUES ('308', 'f', 'Presentation format', 'Presentation format', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30558 INSERT INTO `marc_subfield_structure` VALUES ('310', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30559 INSERT INTO `marc_subfield_structure` VALUES ('310', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30560 INSERT INTO `marc_subfield_structure` VALUES ('310', 'a', 'Current publication frequency', 'Current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30561 INSERT INTO `marc_subfield_structure` VALUES ('310', 'b', 'Date of current publication frequency', 'Date of current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30562 INSERT INTO `marc_subfield_structure` VALUES ('315', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30563 INSERT INTO `marc_subfield_structure` VALUES ('315', 'a', 'Frequency', 'Frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30564 INSERT INTO `marc_subfield_structure` VALUES ('315', 'b', 'Dates of frequency', 'Dates of frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30565 INSERT INTO `marc_subfield_structure` VALUES ('321', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30566 INSERT INTO `marc_subfield_structure` VALUES ('321', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30567 INSERT INTO `marc_subfield_structure` VALUES ('321', 'a', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30568 INSERT INTO `marc_subfield_structure` VALUES ('321', 'b', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30569 INSERT INTO `marc_subfield_structure` VALUES ('340', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30570 INSERT INTO `marc_subfield_structure` VALUES ('340', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30571 INSERT INTO `marc_subfield_structure` VALUES ('340', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30572 INSERT INTO `marc_subfield_structure` VALUES ('340', 'a', 'Material base and configuration', 'Material base and configuration', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30573 INSERT INTO `marc_subfield_structure` VALUES ('340', 'b', 'Dimensions', 'Dimensions', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30574 INSERT INTO `marc_subfield_structure` VALUES ('340', 'c', 'Materials applied to surface', 'Materials applied to surface', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30575 INSERT INTO `marc_subfield_structure` VALUES ('340', 'd', 'Information recording technique', 'Information recording technique', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30576 INSERT INTO `marc_subfield_structure` VALUES ('340', 'e', 'Support', 'Support', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30577 INSERT INTO `marc_subfield_structure` VALUES ('340', 'f', 'Production rate/ratio', 'Production rate/ratio', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30578 INSERT INTO `marc_subfield_structure` VALUES ('340', 'h', 'Location within medium', 'Location within medium', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30579 INSERT INTO `marc_subfield_structure` VALUES ('340', 'i', 'Technical specifications of medium', 'Technical specifications of medium', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30580 INSERT INTO `marc_subfield_structure` VALUES ('342', '2', 'Reference method used', 'Reference method used', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30581 INSERT INTO `marc_subfield_structure` VALUES ('342', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30582 INSERT INTO `marc_subfield_structure` VALUES ('342', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30583 INSERT INTO `marc_subfield_structure` VALUES ('342', 'a', 'Name', 'Name', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30584 INSERT INTO `marc_subfield_structure` VALUES ('342', 'b', 'Coordinate or distance units', 'Coordinate or distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30585 INSERT INTO `marc_subfield_structure` VALUES ('342', 'c', 'Latitude resolution', 'Latitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30586 INSERT INTO `marc_subfield_structure` VALUES ('342', 'd', 'Longitude resolution', 'Longitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30587 INSERT INTO `marc_subfield_structure` VALUES ('342', 'e', 'Standard parallel or oblique line latitude', 'Standard parallel or oblique line latitude', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30588 INSERT INTO `marc_subfield_structure` VALUES ('342', 'f', 'Oblique line longitude', 'Oblique line longitude', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30589 INSERT INTO `marc_subfield_structure` VALUES ('342', 'g', 'Longitude of central meridian or projection center', 'Longitude of central meridian or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30590 INSERT INTO `marc_subfield_structure` VALUES ('342', 'h', 'Latitude of projection origin or projection center', 'Latitude of projection origin or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30591 INSERT INTO `marc_subfield_structure` VALUES ('342', 'i', 'False easting', 'False easting', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30592 INSERT INTO `marc_subfield_structure` VALUES ('342', 'j', 'False northing', 'False northing', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30593 INSERT INTO `marc_subfield_structure` VALUES ('342', 'k', 'Scale factor', 'Scale factor', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30594 INSERT INTO `marc_subfield_structure` VALUES ('342', 'l', 'Height of perspective point above surface', 'Height of perspective point above surface', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30595 INSERT INTO `marc_subfield_structure` VALUES ('342', 'm', 'Azimuthal angle', 'Azimuthal angle', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30596 INSERT INTO `marc_subfield_structure` VALUES ('342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole', 'Azimuth measure point longitude or straight vertical longitude from pole', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30597 INSERT INTO `marc_subfield_structure` VALUES ('342', 'o', 'Landsat number and path number', 'Landsat number and path number', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30598 INSERT INTO `marc_subfield_structure` VALUES ('342', 'p', 'Zone identifier', 'Zone identifier', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30599 INSERT INTO `marc_subfield_structure` VALUES ('342', 'q', 'Ellipsoid name', 'Ellipsoid name', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30600 INSERT INTO `marc_subfield_structure` VALUES ('342', 'r', 'Semi-major axis', 'Semi-major axis', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30601 INSERT INTO `marc_subfield_structure` VALUES ('342', 's', 'Denominator of flattening ratio', 'Denominator of flattening ratio', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30602 INSERT INTO `marc_subfield_structure` VALUES ('342', 't', 'Vertical resolution', 'Vertical resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30603 INSERT INTO `marc_subfield_structure` VALUES ('342', 'u', 'Vertical encoding method', 'Vertical encoding method', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30604 INSERT INTO `marc_subfield_structure` VALUES ('342', 'v', 'Local planar, local, or other projection or grid description', 'Local planar, local, or other projection or grid description', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30605 INSERT INTO `marc_subfield_structure` VALUES ('342', 'w', 'Local planar or local georeference information', 'Local planar or local georeference information', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30606 INSERT INTO `marc_subfield_structure` VALUES ('343', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30607 INSERT INTO `marc_subfield_structure` VALUES ('343', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30608 INSERT INTO `marc_subfield_structure` VALUES ('343', 'a', 'Planar coordinate encoding method', 'Planar coordinate encoding method', 1, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30609 INSERT INTO `marc_subfield_structure` VALUES ('343', 'b', 'Planar distance units', 'Planar distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30610 INSERT INTO `marc_subfield_structure` VALUES ('343', 'c', 'Abscissa resolution', 'Abscissa resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30611 INSERT INTO `marc_subfield_structure` VALUES ('343', 'd', 'Ordinate resolution', 'Ordinate resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30612 INSERT INTO `marc_subfield_structure` VALUES ('343', 'e', 'Distance resolution', 'Distance resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30613 INSERT INTO `marc_subfield_structure` VALUES ('343', 'f', 'Bearing resolution', 'Bearing resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30614 INSERT INTO `marc_subfield_structure` VALUES ('343', 'g', 'Bearing unit', 'Bearing unit', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30615 INSERT INTO `marc_subfield_structure` VALUES ('343', 'h', 'Bearing reference direction', 'Bearing reference direction', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30616 INSERT INTO `marc_subfield_structure` VALUES ('343', 'i', 'Bearing reference meridian', 'Bearing reference meridian', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
30617 INSERT INTO `marc_subfield_structure` VALUES ('350', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30618 INSERT INTO `marc_subfield_structure` VALUES ('350', 'a', 'Price', 'Price', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30619 INSERT INTO `marc_subfield_structure` VALUES ('350', 'b', 'Form of issue', 'Form of issue', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30620 INSERT INTO `marc_subfield_structure` VALUES ('351', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30621 INSERT INTO `marc_subfield_structure` VALUES ('351', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30622 INSERT INTO `marc_subfield_structure` VALUES ('351', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30623 INSERT INTO `marc_subfield_structure` VALUES ('351', 'a', 'Organization', 'Organization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30624 INSERT INTO `marc_subfield_structure` VALUES ('351', 'b', 'Arrangement', 'Arrangement', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30625 INSERT INTO `marc_subfield_structure` VALUES ('351', 'c', 'Hierarchical level', 'Hierarchical level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30626 INSERT INTO `marc_subfield_structure` VALUES ('352', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30627 INSERT INTO `marc_subfield_structure` VALUES ('352', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30628 INSERT INTO `marc_subfield_structure` VALUES ('352', 'a', 'Direct reference method', 'Direct reference method', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30629 INSERT INTO `marc_subfield_structure` VALUES ('352', 'b', 'Object type', 'Object type', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30630 INSERT INTO `marc_subfield_structure` VALUES ('352', 'c', 'Object count', 'Object count', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30631 INSERT INTO `marc_subfield_structure` VALUES ('352', 'd', 'Row count', 'Row count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30632 INSERT INTO `marc_subfield_structure` VALUES ('352', 'e', 'Column count', 'Column count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30633 INSERT INTO `marc_subfield_structure` VALUES ('352', 'f', 'Vertical count', 'Vertical count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30634 INSERT INTO `marc_subfield_structure` VALUES ('352', 'g', 'VPF topology level', 'VPF topology level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30635 INSERT INTO `marc_subfield_structure` VALUES ('352', 'i', 'Indirect reference description', 'Indirect reference description', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30636 INSERT INTO `marc_subfield_structure` VALUES ('355', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30637 INSERT INTO `marc_subfield_structure` VALUES ('355', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30638 INSERT INTO `marc_subfield_structure` VALUES ('355', 'a', 'Security classification', 'Security classification', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30639 INSERT INTO `marc_subfield_structure` VALUES ('355', 'b', 'Handling instructions', 'Handling instructions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30640 INSERT INTO `marc_subfield_structure` VALUES ('355', 'c', 'External dissemination information', 'External dissemination information', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30641 INSERT INTO `marc_subfield_structure` VALUES ('355', 'd', 'Downgrading or declassification event', 'Downgrading or declassification event', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30642 INSERT INTO `marc_subfield_structure` VALUES ('355', 'e', 'Classification system', 'Classification system', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30643 INSERT INTO `marc_subfield_structure` VALUES ('355', 'f', 'Country of origin code', 'Country of origin code', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30644 INSERT INTO `marc_subfield_structure` VALUES ('355', 'g', 'Downgrading date', 'Downgrading date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30645 INSERT INTO `marc_subfield_structure` VALUES ('355', 'h', 'Declassification date', 'Declassification date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30646 INSERT INTO `marc_subfield_structure` VALUES ('355', 'j', 'Authorization', 'Authorization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30647 INSERT INTO `marc_subfield_structure` VALUES ('357', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30648 INSERT INTO `marc_subfield_structure` VALUES ('357', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30649 INSERT INTO `marc_subfield_structure` VALUES ('357', 'a', 'Originator control term', 'Originator control term', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30650 INSERT INTO `marc_subfield_structure` VALUES ('357', 'b', 'Originating agency', 'Originating agency', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30651 INSERT INTO `marc_subfield_structure` VALUES ('357', 'c', 'Authorized recipients of material', 'Authorized recipients of material', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30652 INSERT INTO `marc_subfield_structure` VALUES ('357', 'g', 'Other restrictions', 'Other restrictions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30653 INSERT INTO `marc_subfield_structure` VALUES ('359', 'a', 'Rental price', 'Rental price', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30654 INSERT INTO `marc_subfield_structure` VALUES ('362', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30655 INSERT INTO `marc_subfield_structure` VALUES ('362', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30656 INSERT INTO `marc_subfield_structure` VALUES ('362', 'a', 'Dates of publication and/or sequential designation', 'Dates of publication and/or sequential designation', 0, 0, 'biblioitems.volumedesc', 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30657 INSERT INTO `marc_subfield_structure` VALUES ('362', 'z', 'Source of information', 'Source of information', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'IR', '', '');
30658 INSERT INTO `marc_subfield_structure` VALUES ('365', '2', 'Source of price type code', 'Source of price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30659 INSERT INTO `marc_subfield_structure` VALUES ('365', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
30660 INSERT INTO `marc_subfield_structure` VALUES ('365', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
30661 INSERT INTO `marc_subfield_structure` VALUES ('365', 'a', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30662 INSERT INTO `marc_subfield_structure` VALUES ('365', 'b', 'Price amount', 'Price amount', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30663 INSERT INTO `marc_subfield_structure` VALUES ('365', 'c', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30664 INSERT INTO `marc_subfield_structure` VALUES ('365', 'd', 'Unit of pricing', 'Unit of pricing', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30665 INSERT INTO `marc_subfield_structure` VALUES ('365', 'e', 'Price note', 'Price note', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30666 INSERT INTO `marc_subfield_structure` VALUES ('365', 'f', 'Price effective from', 'Price effective from', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30667 INSERT INTO `marc_subfield_structure` VALUES ('365', 'g', 'Price effective until', 'Price effective until', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30668 INSERT INTO `marc_subfield_structure` VALUES ('365', 'h', 'Tax rate 1', 'Tax rate 1', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30669 INSERT INTO `marc_subfield_structure` VALUES ('365', 'i', 'Tax rate 2', 'Tax rate 2', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30670 INSERT INTO `marc_subfield_structure` VALUES ('365', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30671 INSERT INTO `marc_subfield_structure` VALUES ('365', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30672 INSERT INTO `marc_subfield_structure` VALUES ('365', 'm', 'Identification of pricing entity', 'Identification of pricing entity', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30673 INSERT INTO `marc_subfield_structure` VALUES ('366', '2', 'Source of availability status code', 'Source of availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30674 INSERT INTO `marc_subfield_structure` VALUES ('366', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
30675 INSERT INTO `marc_subfield_structure` VALUES ('366', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
30676 INSERT INTO `marc_subfield_structure` VALUES ('366', 'a', 'Publishers\' compressed title identification', 'Publishers\' compressed title identification', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30677 INSERT INTO `marc_subfield_structure` VALUES ('366', 'b', 'Detailed date of publication', 'Detailed date of publication', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30678 INSERT INTO `marc_subfield_structure` VALUES ('366', 'c', 'Availability status code', 'Availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30679 INSERT INTO `marc_subfield_structure` VALUES ('366', 'd', 'Expected next availability date', 'Expected next availability date', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30680 INSERT INTO `marc_subfield_structure` VALUES ('366', 'e', 'Note', 'Note', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30681 INSERT INTO `marc_subfield_structure` VALUES ('366', 'f', 'Publishers\' discount category', 'Publishers\' discount category', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30682 INSERT INTO `marc_subfield_structure` VALUES ('366', 'g', 'Date made out of print', 'Date made out of print', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30683 INSERT INTO `marc_subfield_structure` VALUES ('366', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30684 INSERT INTO `marc_subfield_structure` VALUES ('366', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30685 INSERT INTO `marc_subfield_structure` VALUES ('366', 'm', 'Identification of agency', 'Identification of agency', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
30686 INSERT INTO `marc_subfield_structure` VALUES ('400', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', 0, -6, 'IR', '', '');
30687 INSERT INTO `marc_subfield_structure` VALUES ('400', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', 0, -6, 'IR', '', '');
30688 INSERT INTO `marc_subfield_structure` VALUES ('400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', 0, -6, 'IR', '', '');
30689 INSERT INTO `marc_subfield_structure` VALUES ('400', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
30690 INSERT INTO `marc_subfield_structure` VALUES ('400', 'a', 'Personal name', 'Personal name', 0, 0, '', 4, '', '', '', 0, -6, 'IR', '', '');
30691 INSERT INTO `marc_subfield_structure` VALUES ('400', 'b', 'Numeration', 'Numeration', 0, 0, '', 4, '', '', '', 0, -6, 'IR', '', '');
30692 INSERT INTO `marc_subfield_structure` VALUES ('400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 4, '', '', '', 0, -6, 'IR', '', '');
30693 INSERT INTO `marc_subfield_structure` VALUES ('400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 4, '', '', '', 0, -6, 'IR', '', '');
30694 INSERT INTO `marc_subfield_structure` VALUES ('400', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', 0, -6, 'IR', '', '');
30695 INSERT INTO `marc_subfield_structure` VALUES ('400', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', 0, -6, 'IR', '', '');
30696 INSERT INTO `marc_subfield_structure` VALUES ('400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', 0, -6, 'IR', '', '');
30697 INSERT INTO `marc_subfield_structure` VALUES ('400', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', 0, -6, 'IR', '', '');
30698 INSERT INTO `marc_subfield_structure` VALUES ('400', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', 0, -6, 'IR', '', '');
30699 INSERT INTO `marc_subfield_structure` VALUES ('400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'IR', '', '');
30700 INSERT INTO `marc_subfield_structure` VALUES ('400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'IR', '', '');
30701 INSERT INTO `marc_subfield_structure` VALUES ('400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 4, '', '', '', 0, -6, 'IR', '', '');
30702 INSERT INTO `marc_subfield_structure` VALUES ('400', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', 0, -6, 'IR', '', '');
30703 INSERT INTO `marc_subfield_structure` VALUES ('400', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', 0, -6, 'IR', '', '');
30704 INSERT INTO `marc_subfield_structure` VALUES ('400', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30705 INSERT INTO `marc_subfield_structure` VALUES ('400', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30706 INSERT INTO `marc_subfield_structure` VALUES ('410', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30707 INSERT INTO `marc_subfield_structure` VALUES ('410', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30708 INSERT INTO `marc_subfield_structure` VALUES ('410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30709 INSERT INTO `marc_subfield_structure` VALUES ('410', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'IR', '', '');
30710 INSERT INTO `marc_subfield_structure` VALUES ('410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30711 INSERT INTO `marc_subfield_structure` VALUES ('410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30712 INSERT INTO `marc_subfield_structure` VALUES ('410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30713 INSERT INTO `marc_subfield_structure` VALUES ('410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30714 INSERT INTO `marc_subfield_structure` VALUES ('410', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30715 INSERT INTO `marc_subfield_structure` VALUES ('410', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30716 INSERT INTO `marc_subfield_structure` VALUES ('410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30717 INSERT INTO `marc_subfield_structure` VALUES ('410', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30718 INSERT INTO `marc_subfield_structure` VALUES ('410', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30719 INSERT INTO `marc_subfield_structure` VALUES ('410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30720 INSERT INTO `marc_subfield_structure` VALUES ('410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30721 INSERT INTO `marc_subfield_structure` VALUES ('410', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30722 INSERT INTO `marc_subfield_structure` VALUES ('410', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30723 INSERT INTO `marc_subfield_structure` VALUES ('410', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30724 INSERT INTO `marc_subfield_structure` VALUES ('410', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30725 INSERT INTO `marc_subfield_structure` VALUES ('411', '4', 'Relator code', 'Relator code', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'IR', '', '');
30726 INSERT INTO `marc_subfield_structure` VALUES ('411', '6', 'Linkage', 'Linkage', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'IR', '', '');
30727 INSERT INTO `marc_subfield_structure` VALUES ('411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'IR', '', '');
30728 INSERT INTO `marc_subfield_structure` VALUES ('411', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
30729 INSERT INTO `marc_subfield_structure` VALUES ('411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'IR', '', '');
30730 INSERT INTO `marc_subfield_structure` VALUES ('411', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'IR', '', '');
30731 INSERT INTO `marc_subfield_structure` VALUES ('411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'IR', '', '');
30732 INSERT INTO `marc_subfield_structure` VALUES ('411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'IR', '', '');
30733 INSERT INTO `marc_subfield_structure` VALUES ('411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'IR', '', '');
30734 INSERT INTO `marc_subfield_structure` VALUES ('411', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'IR', '', '');
30735 INSERT INTO `marc_subfield_structure` VALUES ('411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'IR', '', '');
30736 INSERT INTO `marc_subfield_structure` VALUES ('411', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'IR', '', '');
30737 INSERT INTO `marc_subfield_structure` VALUES ('411', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'IR', '', '');
30738 INSERT INTO `marc_subfield_structure` VALUES ('411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'IR', '', '');
30739 INSERT INTO `marc_subfield_structure` VALUES ('411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'IR', '', '');
30740 INSERT INTO `marc_subfield_structure` VALUES ('411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'IR', '', '');
30741 INSERT INTO `marc_subfield_structure` VALUES ('411', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'IR', '', '');
30742 INSERT INTO `marc_subfield_structure` VALUES ('411', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'IR', '', '');
30743 INSERT INTO `marc_subfield_structure` VALUES ('411', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30744 INSERT INTO `marc_subfield_structure` VALUES ('411', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30745 INSERT INTO `marc_subfield_structure` VALUES ('440', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30746 INSERT INTO `marc_subfield_structure` VALUES ('440', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30747 INSERT INTO `marc_subfield_structure` VALUES ('440', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
30748 INSERT INTO `marc_subfield_structure` VALUES ('440', 'a', 'Title', 'Title', 0, 0, 'biblio.seriestitle', 4, '', '', '', NULL, 0, 'IR', '', '');
30749 INSERT INTO `marc_subfield_structure` VALUES ('440', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 'biblioitems.number', 4, '', '', '', NULL, 0, 'IR', '', '');
30750 INSERT INTO `marc_subfield_structure` VALUES ('440', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, 0, 'IR', '', '');
30751 INSERT INTO `marc_subfield_structure` VALUES ('440', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, 'biblioitems.volume', 4, '', '', '', NULL, 0, 'IR', '', '');
30752 INSERT INTO `marc_subfield_structure` VALUES ('440', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, 0, 'IR', '', '');
30753 INSERT INTO `marc_subfield_structure` VALUES ('490', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30754 INSERT INTO `marc_subfield_structure` VALUES ('490', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', NULL, NULL, -6, 'IR', '', '');
30755 INSERT INTO `marc_subfield_structure` VALUES ('490', 'a', 'Series statement', 'Series statement', 1, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30756 INSERT INTO `marc_subfield_structure` VALUES ('490', 'l', 'Library of Congress call number', 'Library of Congress call number', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30757 INSERT INTO `marc_subfield_structure` VALUES ('490', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 1, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30758 INSERT INTO `marc_subfield_structure` VALUES ('490', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'IR', '', '');
30759 INSERT INTO `marc_subfield_structure` VALUES ('500', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30760 INSERT INTO `marc_subfield_structure` VALUES ('500', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30761 INSERT INTO `marc_subfield_structure` VALUES ('500', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30762 INSERT INTO `marc_subfield_structure` VALUES ('500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30763 INSERT INTO `marc_subfield_structure` VALUES ('500', 'a', 'General note', 'General note', 0, 0, 'biblio.notes', 5, '', '', '', NULL, -1, 'IR', '', '');
30764 INSERT INTO `marc_subfield_structure` VALUES ('500', 'l', 'Library of Congress call number (SE) [OBSOLETE]', 'Library of Congress call number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30765 INSERT INTO `marc_subfield_structure` VALUES ('500', 'n', 'n (RLIN) [OBSOLETE]', 'n (RLIN) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30766 INSERT INTO `marc_subfield_structure` VALUES ('500', 'x', 'International Standard Serial Number (SE) [OBSOLETE]', 'International Standard Serial Number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30767 INSERT INTO `marc_subfield_structure` VALUES ('500', 'z', 'Source of note information (AM SE) [OBSOLETE]', 'Source of note information (AM SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30768 INSERT INTO `marc_subfield_structure` VALUES ('501', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30769 INSERT INTO `marc_subfield_structure` VALUES ('501', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30770 INSERT INTO `marc_subfield_structure` VALUES ('501', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30771 INSERT INTO `marc_subfield_structure` VALUES ('501', 'a', 'With note', 'With note', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30772 INSERT INTO `marc_subfield_structure` VALUES ('502', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30773 INSERT INTO `marc_subfield_structure` VALUES ('502', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30774 INSERT INTO `marc_subfield_structure` VALUES ('502', 'a', 'Dissertation note', 'Dissertation note', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30775 INSERT INTO `marc_subfield_structure` VALUES ('503', '8', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30776 INSERT INTO `marc_subfield_structure` VALUES ('503', 'a', 'Bibliographic history note', 'Bibliographic history note', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30777 INSERT INTO `marc_subfield_structure` VALUES ('504', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30778 INSERT INTO `marc_subfield_structure` VALUES ('504', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30779 INSERT INTO `marc_subfield_structure` VALUES ('504', 'a', 'Bibliography, etc', 'Bibliography, etc', 0, 0, '', 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30780 INSERT INTO `marc_subfield_structure` VALUES ('504', 'b', 'Number of references', 'Number of references', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30781 INSERT INTO `marc_subfield_structure` VALUES ('505', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30782 INSERT INTO `marc_subfield_structure` VALUES ('505', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30783 INSERT INTO `marc_subfield_structure` VALUES ('505', 'a', 'Formatted contents note', 'Formatted contents note', 0, 0, '', 5, '', '', '', NULL, -1, 'IR', '', '');
30784 INSERT INTO `marc_subfield_structure` VALUES ('505', 'g', 'Miscellaneous information', 'Miscellaneous information', 1, 0, '', 5, '', '', '', NULL, -1, 'IR', '', '');
30785 INSERT INTO `marc_subfield_structure` VALUES ('505', 'r', 'Statement of responsibility', 'Statement of responsibility', 1, 0, '', 5, '', '', '', NULL, -1, 'IR', '', '');
30786 INSERT INTO `marc_subfield_structure` VALUES ('505', 't', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -1, 'IR', '', '');
30787 INSERT INTO `marc_subfield_structure` VALUES ('505', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'IR', '', '');
30788 INSERT INTO `marc_subfield_structure` VALUES ('506', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30789 INSERT INTO `marc_subfield_structure` VALUES ('506', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30790 INSERT INTO `marc_subfield_structure` VALUES ('506', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30791 INSERT INTO `marc_subfield_structure` VALUES ('506', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30792 INSERT INTO `marc_subfield_structure` VALUES ('506', 'a', 'Terms governing access', 'Terms governing access', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30793 INSERT INTO `marc_subfield_structure` VALUES ('506', 'b', 'Jurisdiction', 'Jurisdiction', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30794 INSERT INTO `marc_subfield_structure` VALUES ('506', 'c', 'Physical access provisions', 'Physical access provisions', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30795 INSERT INTO `marc_subfield_structure` VALUES ('506', 'd', 'Authorized users', 'Authorized users', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30796 INSERT INTO `marc_subfield_structure` VALUES ('506', 'e', 'Authorization', 'Authorization', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30797 INSERT INTO `marc_subfield_structure` VALUES ('506', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'IR', '', '');
30798 INSERT INTO `marc_subfield_structure` VALUES ('507', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30799 INSERT INTO `marc_subfield_structure` VALUES ('507', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30800 INSERT INTO `marc_subfield_structure` VALUES ('507', 'a', 'Representative fraction of scale note', 'Representative fraction of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30801 INSERT INTO `marc_subfield_structure` VALUES ('507', 'b', 'Remainder of scale note', 'Remainder of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30802 INSERT INTO `marc_subfield_structure` VALUES ('508', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30803 INSERT INTO `marc_subfield_structure` VALUES ('508', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30804 INSERT INTO `marc_subfield_structure` VALUES ('508', 'a', 'Creation/production credits note', 'Creation/production credits note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30805 INSERT INTO `marc_subfield_structure` VALUES ('509', 'a', 'Informal Notes', 'Informal Notes', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30806 INSERT INTO `marc_subfield_structure` VALUES ('510', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30807 INSERT INTO `marc_subfield_structure` VALUES ('510', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30808 INSERT INTO `marc_subfield_structure` VALUES ('510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30809 INSERT INTO `marc_subfield_structure` VALUES ('510', 'a', 'Name of source', 'Name of source', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30810 INSERT INTO `marc_subfield_structure` VALUES ('510', 'b', 'Coverage of source', 'Coverage of source', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30811 INSERT INTO `marc_subfield_structure` VALUES ('510', 'c', 'Location within source', 'Location within source', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30812 INSERT INTO `marc_subfield_structure` VALUES ('510', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30813 INSERT INTO `marc_subfield_structure` VALUES ('511', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30814 INSERT INTO `marc_subfield_structure` VALUES ('511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30815 INSERT INTO `marc_subfield_structure` VALUES ('511', 'a', 'Participant or performer note', 'Participant or performer note', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30816 INSERT INTO `marc_subfield_structure` VALUES ('512', '6', 'Linkage', 'Linkage', 0, 0, '', -1, '', '', '', NULL, -6, 'IR', '', '');
30817 INSERT INTO `marc_subfield_structure` VALUES ('512', 'a', 'Earlier or later volumes separately cataloged note', 'Earlier or later volumes separately cataloged note', 0, 0, '', -1, '', '', '', NULL, -6, 'IR', '', '');
30818 INSERT INTO `marc_subfield_structure` VALUES ('513', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30819 INSERT INTO `marc_subfield_structure` VALUES ('513', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30820 INSERT INTO `marc_subfield_structure` VALUES ('513', 'a', 'Type of report', 'Type of report', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30821 INSERT INTO `marc_subfield_structure` VALUES ('513', 'b', 'Period covered', 'Period covered', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30822 INSERT INTO `marc_subfield_structure` VALUES ('514', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30823 INSERT INTO `marc_subfield_structure` VALUES ('514', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30824 INSERT INTO `marc_subfield_structure` VALUES ('514', 'a', 'Attribute accuracy report', 'Attribute accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30825 INSERT INTO `marc_subfield_structure` VALUES ('514', 'b', 'Attribute accuracy value', 'Attribute accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30826 INSERT INTO `marc_subfield_structure` VALUES ('514', 'c', 'Attribute accuracy explanation', 'Attribute accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30827 INSERT INTO `marc_subfield_structure` VALUES ('514', 'd', 'Logical consistency report', 'Logical consistency report', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30828 INSERT INTO `marc_subfield_structure` VALUES ('514', 'e', 'Completeness report', 'Completeness report', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30829 INSERT INTO `marc_subfield_structure` VALUES ('514', 'f', 'Horizontal position accuracy report', 'Horizontal position accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30830 INSERT INTO `marc_subfield_structure` VALUES ('514', 'g', 'Horizontal position accuracy value', 'Horizontal position accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30831 INSERT INTO `marc_subfield_structure` VALUES ('514', 'h', 'Horizontal position accuracy explanation', 'Horizontal position accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30832 INSERT INTO `marc_subfield_structure` VALUES ('514', 'i', 'Vertical positional accuracy report', 'Vertical positional accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30833 INSERT INTO `marc_subfield_structure` VALUES ('514', 'j', 'Vertical positional accuracy value', 'Vertical positional accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30834 INSERT INTO `marc_subfield_structure` VALUES ('514', 'k', 'Vertical positional accuracy explanation', 'Vertical positional accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30835 INSERT INTO `marc_subfield_structure` VALUES ('514', 'm', 'Cloud cover', 'Cloud cover', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30836 INSERT INTO `marc_subfield_structure` VALUES ('514', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'IR', '', '');
30837 INSERT INTO `marc_subfield_structure` VALUES ('514', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30838 INSERT INTO `marc_subfield_structure` VALUES ('515', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30839 INSERT INTO `marc_subfield_structure` VALUES ('515', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30840 INSERT INTO `marc_subfield_structure` VALUES ('515', 'a', 'Numbering peculiarities note', 'Numbering peculiarities note', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30841 INSERT INTO `marc_subfield_structure` VALUES ('515', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, '', -1, '', '', '', NULL, -6, 'IR', '', '');
30842 INSERT INTO `marc_subfield_structure` VALUES ('516', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30843 INSERT INTO `marc_subfield_structure` VALUES ('516', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30844 INSERT INTO `marc_subfield_structure` VALUES ('516', 'a', 'Type of computer file or data note', 'Type of computer file or data note', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30845 INSERT INTO `marc_subfield_structure` VALUES ('517', 'a', 'Different formats', 'Different formats', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30846 INSERT INTO `marc_subfield_structure` VALUES ('517', 'b', 'Content descriptors', 'Content descriptors', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30847 INSERT INTO `marc_subfield_structure` VALUES ('517', 'c', 'Additional animation techniques', 'Additional animation techniques', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30848 INSERT INTO `marc_subfield_structure` VALUES ('518', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30849 INSERT INTO `marc_subfield_structure` VALUES ('518', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30850 INSERT INTO `marc_subfield_structure` VALUES ('518', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30851 INSERT INTO `marc_subfield_structure` VALUES ('518', 'a', 'Date/time and place of an event note', 'Date/time and place of an event note', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30852 INSERT INTO `marc_subfield_structure` VALUES ('520', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30853 INSERT INTO `marc_subfield_structure` VALUES ('520', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30854 INSERT INTO `marc_subfield_structure` VALUES ('520', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30855 INSERT INTO `marc_subfield_structure` VALUES ('520', 'a', 'Summary, etc', 'Summary, etc', 0, 0, 'biblio.abstract', 5, '', '', '', NULL, -1, 'IR', '', '');
30856 INSERT INTO `marc_subfield_structure` VALUES ('520', 'b', 'Expansion of summary note', 'Expansion of summary note', 0, 0, '', 5, '', '', '', NULL, -1, 'IR', '', '');
30857 INSERT INTO `marc_subfield_structure` VALUES ('520', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'IR', '', '');
30858 INSERT INTO `marc_subfield_structure` VALUES ('520', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30859 INSERT INTO `marc_subfield_structure` VALUES ('521', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30860 INSERT INTO `marc_subfield_structure` VALUES ('521', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30861 INSERT INTO `marc_subfield_structure` VALUES ('521', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30862 INSERT INTO `marc_subfield_structure` VALUES ('521', 'a', 'Target audience note', 'Target audience note', 1, 0, NULL, 5, NULL, NULL, '', NULL, 0, 'IR', '', '');
30863 INSERT INTO `marc_subfield_structure` VALUES ('521', 'b', 'Source', 'Source', 0, 0, NULL, 5, NULL, NULL, '', NULL, 0, 'IR', '', '');
30864 INSERT INTO `marc_subfield_structure` VALUES ('522', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30865 INSERT INTO `marc_subfield_structure` VALUES ('522', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30866 INSERT INTO `marc_subfield_structure` VALUES ('522', 'a', 'Geographic coverage note', 'Geographic coverage note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'IR', '', '');
30867 INSERT INTO `marc_subfield_structure` VALUES ('523', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30868 INSERT INTO `marc_subfield_structure` VALUES ('523', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30869 INSERT INTO `marc_subfield_structure` VALUES ('523', 'a', 'Time period of content note', 'Time period of content note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30870 INSERT INTO `marc_subfield_structure` VALUES ('524', '2', 'Source of schema used', 'Source of schema used', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30871 INSERT INTO `marc_subfield_structure` VALUES ('524', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30872 INSERT INTO `marc_subfield_structure` VALUES ('524', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30873 INSERT INTO `marc_subfield_structure` VALUES ('524', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30874 INSERT INTO `marc_subfield_structure` VALUES ('524', 'a', 'Preferred citation of described materials note', 'Preferred citation of described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30875 INSERT INTO `marc_subfield_structure` VALUES ('525', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30876 INSERT INTO `marc_subfield_structure` VALUES ('525', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30877 INSERT INTO `marc_subfield_structure` VALUES ('525', 'a', 'Supplement note', 'Supplement note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30878 INSERT INTO `marc_subfield_structure` VALUES ('525', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30879 INSERT INTO `marc_subfield_structure` VALUES ('526', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30880 INSERT INTO `marc_subfield_structure` VALUES ('526', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30881 INSERT INTO `marc_subfield_structure` VALUES ('526', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30882 INSERT INTO `marc_subfield_structure` VALUES ('526', 'a', 'Program name', 'Program name', 0, 0, '', 5, '', '', '', NULL, -1, 'IR', '', '');
30883 INSERT INTO `marc_subfield_structure` VALUES ('526', 'b', 'Interest level', 'Interest level', 0, 0, '', 5, '', '', '', NULL, -1, 'IR', '', '');
30884 INSERT INTO `marc_subfield_structure` VALUES ('526', 'c', 'Reading level', 'Reading level', 0, 0, '', 5, '', '', '', NULL, -1, 'IR', '', '');
30885 INSERT INTO `marc_subfield_structure` VALUES ('526', 'd', 'Title point value', 'Title point value', 0, 0, '', 5, '', '', '', NULL, -1, 'IR', '', '');
30886 INSERT INTO `marc_subfield_structure` VALUES ('526', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30887 INSERT INTO `marc_subfield_structure` VALUES ('526', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 5, '', '', '', NULL, 6, 'IR', '', '');
30888 INSERT INTO `marc_subfield_structure` VALUES ('526', 'z', 'Public note', 'Public note', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30889 INSERT INTO `marc_subfield_structure` VALUES ('527', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30890 INSERT INTO `marc_subfield_structure` VALUES ('527', 'a', 'Censorship note', 'Censorship note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30891 INSERT INTO `marc_subfield_structure` VALUES ('530', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30892 INSERT INTO `marc_subfield_structure` VALUES ('530', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30893 INSERT INTO `marc_subfield_structure` VALUES ('530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30894 INSERT INTO `marc_subfield_structure` VALUES ('530', 'a', 'Additional physical form available note', 'Additional physical form available note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30895 INSERT INTO `marc_subfield_structure` VALUES ('530', 'b', 'Availability source', 'Availability source', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30896 INSERT INTO `marc_subfield_structure` VALUES ('530', 'c', 'Availability conditions', 'Availability conditions', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30897 INSERT INTO `marc_subfield_structure` VALUES ('530', 'd', 'Order number', 'Order number', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30898 INSERT INTO `marc_subfield_structure` VALUES ('530', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'IR', '', '');
30899 INSERT INTO `marc_subfield_structure` VALUES ('530', 'z', 'Source of note information (AM CF VM SE) [OBSOLETE]', 'Source of note information (AM CF VM SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30900 INSERT INTO `marc_subfield_structure` VALUES ('533', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30901 INSERT INTO `marc_subfield_structure` VALUES ('533', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30902 INSERT INTO `marc_subfield_structure` VALUES ('533', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30903 INSERT INTO `marc_subfield_structure` VALUES ('533', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30904 INSERT INTO `marc_subfield_structure` VALUES ('533', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30905 INSERT INTO `marc_subfield_structure` VALUES ('533', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30906 INSERT INTO `marc_subfield_structure` VALUES ('533', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30907 INSERT INTO `marc_subfield_structure` VALUES ('533', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30908 INSERT INTO `marc_subfield_structure` VALUES ('533', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30909 INSERT INTO `marc_subfield_structure` VALUES ('533', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30910 INSERT INTO `marc_subfield_structure` VALUES ('533', 'm', 'Dates and/or sequential designation of issues reproduced', 'Dates and/or sequential designation of issues reproduced', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30911 INSERT INTO `marc_subfield_structure` VALUES ('533', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30912 INSERT INTO `marc_subfield_structure` VALUES ('534', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30913 INSERT INTO `marc_subfield_structure` VALUES ('534', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30914 INSERT INTO `marc_subfield_structure` VALUES ('534', 'a', 'Main entry of original', 'Main entry of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30915 INSERT INTO `marc_subfield_structure` VALUES ('534', 'b', 'Edition statement of original', 'Edition statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30916 INSERT INTO `marc_subfield_structure` VALUES ('534', 'c', 'Publication, distribution, etc', 'Publication, distribution, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30917 INSERT INTO `marc_subfield_structure` VALUES ('534', 'e', 'Physical description, etc', 'Physical description, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30918 INSERT INTO `marc_subfield_structure` VALUES ('534', 'f', 'Series statement of original', 'Series statement of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30919 INSERT INTO `marc_subfield_structure` VALUES ('534', 'k', 'Key title of original', 'Key title of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30920 INSERT INTO `marc_subfield_structure` VALUES ('534', 'l', 'Location of original', 'Location of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30921 INSERT INTO `marc_subfield_structure` VALUES ('534', 'm', 'Material specific details', 'Material specific details', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30922 INSERT INTO `marc_subfield_structure` VALUES ('534', 'n', 'Note about original', 'Note about original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30923 INSERT INTO `marc_subfield_structure` VALUES ('534', 'p', 'Introductory phrase', 'Introductory phrase', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30924 INSERT INTO `marc_subfield_structure` VALUES ('534', 't', 'Title statement of original', 'Title statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30925 INSERT INTO `marc_subfield_structure` VALUES ('534', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30926 INSERT INTO `marc_subfield_structure` VALUES ('534', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30927 INSERT INTO `marc_subfield_structure` VALUES ('535', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30928 INSERT INTO `marc_subfield_structure` VALUES ('535', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30929 INSERT INTO `marc_subfield_structure` VALUES ('535', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30930 INSERT INTO `marc_subfield_structure` VALUES ('535', 'a', 'Custodian', 'Custodian', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30931 INSERT INTO `marc_subfield_structure` VALUES ('535', 'b', 'Postal address', 'Postal address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30932 INSERT INTO `marc_subfield_structure` VALUES ('535', 'c', 'Country', 'Country', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30933 INSERT INTO `marc_subfield_structure` VALUES ('535', 'd', 'Telecommunications address', 'Telecommunications address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30934 INSERT INTO `marc_subfield_structure` VALUES ('535', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30935 INSERT INTO `marc_subfield_structure` VALUES ('536', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30936 INSERT INTO `marc_subfield_structure` VALUES ('536', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30937 INSERT INTO `marc_subfield_structure` VALUES ('536', 'a', 'Text of note', 'Text of note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30938 INSERT INTO `marc_subfield_structure` VALUES ('536', 'b', 'Contract number', 'Contract number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30939 INSERT INTO `marc_subfield_structure` VALUES ('536', 'c', 'Grant number', 'Grant number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30940 INSERT INTO `marc_subfield_structure` VALUES ('536', 'd', 'Undifferentiated number', 'Undifferentiated number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30941 INSERT INTO `marc_subfield_structure` VALUES ('536', 'e', 'Program element number', 'Program element number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30942 INSERT INTO `marc_subfield_structure` VALUES ('536', 'f', 'Project number', 'Project number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30943 INSERT INTO `marc_subfield_structure` VALUES ('536', 'g', 'Task number', 'Task number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30944 INSERT INTO `marc_subfield_structure` VALUES ('536', 'h', 'Work unit number', 'Work unit number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30945 INSERT INTO `marc_subfield_structure` VALUES ('537', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30946 INSERT INTO `marc_subfield_structure` VALUES ('537', 'a', 'Source of data note', 'Source of data note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30947 INSERT INTO `marc_subfield_structure` VALUES ('538', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30948 INSERT INTO `marc_subfield_structure` VALUES ('538', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30949 INSERT INTO `marc_subfield_structure` VALUES ('538', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30950 INSERT INTO `marc_subfield_structure` VALUES ('538', 'a', 'System details note', 'System details note', 0, 0, '', 5, '', '', '', NULL, -1, 'IR', '', '');
30951 INSERT INTO `marc_subfield_structure` VALUES ('538', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -1, 'IR', '', '');
30952 INSERT INTO `marc_subfield_structure` VALUES ('538', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'IR', '', '');
30953 INSERT INTO `marc_subfield_structure` VALUES ('540', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30954 INSERT INTO `marc_subfield_structure` VALUES ('540', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30955 INSERT INTO `marc_subfield_structure` VALUES ('540', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30956 INSERT INTO `marc_subfield_structure` VALUES ('540', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30957 INSERT INTO `marc_subfield_structure` VALUES ('540', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30958 INSERT INTO `marc_subfield_structure` VALUES ('540', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30959 INSERT INTO `marc_subfield_structure` VALUES ('540', 'c', 'Authorization', 'Authorization', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30960 INSERT INTO `marc_subfield_structure` VALUES ('540', 'd', 'Authorized users', 'Authorized users', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30961 INSERT INTO `marc_subfield_structure` VALUES ('540', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'IR', '', '');
30962 INSERT INTO `marc_subfield_structure` VALUES ('541', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
30963 INSERT INTO `marc_subfield_structure` VALUES ('541', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
30964 INSERT INTO `marc_subfield_structure` VALUES ('541', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
30965 INSERT INTO `marc_subfield_structure` VALUES ('541', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
30966 INSERT INTO `marc_subfield_structure` VALUES ('541', 'a', 'Source of acquisition', 'Source of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'IR', '', '');
30967 INSERT INTO `marc_subfield_structure` VALUES ('541', 'b', 'Address', 'Address', 0, 0, '', 9, '', '', '', NULL, 1, 'IR', '', '');
30968 INSERT INTO `marc_subfield_structure` VALUES ('541', 'c', 'Method of acquisition', 'Method of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'IR', '', '');
30969 INSERT INTO `marc_subfield_structure` VALUES ('541', 'd', 'Date of acquisition', 'Date of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'IR', '', '');
30970 INSERT INTO `marc_subfield_structure` VALUES ('541', 'e', 'Accession number', 'Accession number', 0, 0, '', 9, '', '', '', NULL, 1, 'IR', '', '');
30971 INSERT INTO `marc_subfield_structure` VALUES ('541', 'f', 'Owner', 'Owner', 0, 0, '', 9, '', '', '', NULL, 1, 'IR', '', '');
30972 INSERT INTO `marc_subfield_structure` VALUES ('541', 'h', 'Purchase price', 'Purchase price', 0, 0, '', 9, '', '', '', NULL, 1, 'IR', '', '');
30973 INSERT INTO `marc_subfield_structure` VALUES ('541', 'n', 'Extent', 'Extent', 0, 0, '', 9, '', '', '', NULL, 1, 'IR', '', '');
30974 INSERT INTO `marc_subfield_structure` VALUES ('541', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, 1, 'IR', '', '');
30975 INSERT INTO `marc_subfield_structure` VALUES ('543', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30976 INSERT INTO `marc_subfield_structure` VALUES ('543', 'a', 'Solicitation information note', 'Solicitation information note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30977 INSERT INTO `marc_subfield_structure` VALUES ('544', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30978 INSERT INTO `marc_subfield_structure` VALUES ('544', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30979 INSERT INTO `marc_subfield_structure` VALUES ('544', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30980 INSERT INTO `marc_subfield_structure` VALUES ('544', 'a', 'Custodian', 'Custodian', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30981 INSERT INTO `marc_subfield_structure` VALUES ('544', 'b', 'Address', 'Address', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30982 INSERT INTO `marc_subfield_structure` VALUES ('544', 'c', 'Country', 'Country', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30983 INSERT INTO `marc_subfield_structure` VALUES ('544', 'd', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30984 INSERT INTO `marc_subfield_structure` VALUES ('544', 'e', 'Provenance', 'Provenance', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30985 INSERT INTO `marc_subfield_structure` VALUES ('544', 'n', 'Note', 'Note', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30986 INSERT INTO `marc_subfield_structure` VALUES ('545', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30987 INSERT INTO `marc_subfield_structure` VALUES ('545', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30988 INSERT INTO `marc_subfield_structure` VALUES ('545', 'a', 'Biographical or historical note', 'Biographical or historical note', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30989 INSERT INTO `marc_subfield_structure` VALUES ('545', 'b', 'Expansion', 'Expansion', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
30990 INSERT INTO `marc_subfield_structure` VALUES ('545', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'IR', '', '');
30991 INSERT INTO `marc_subfield_structure` VALUES ('546', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30992 INSERT INTO `marc_subfield_structure` VALUES ('546', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30993 INSERT INTO `marc_subfield_structure` VALUES ('546', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30994 INSERT INTO `marc_subfield_structure` VALUES ('546', 'a', 'Language note', 'Language note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'IR', '', '');
30995 INSERT INTO `marc_subfield_structure` VALUES ('546', 'b', 'Information code or alphabet', 'Information code or alphabet', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'IR', '', '');
30996 INSERT INTO `marc_subfield_structure` VALUES ('546', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30997 INSERT INTO `marc_subfield_structure` VALUES ('547', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30998 INSERT INTO `marc_subfield_structure` VALUES ('547', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
30999 INSERT INTO `marc_subfield_structure` VALUES ('547', 'a', 'Former title complexity note', 'Former title complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31000 INSERT INTO `marc_subfield_structure` VALUES ('547', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31001 INSERT INTO `marc_subfield_structure` VALUES ('550', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31002 INSERT INTO `marc_subfield_structure` VALUES ('550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31003 INSERT INTO `marc_subfield_structure` VALUES ('550', 'a', 'Issuing body note', 'Issuing body note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31004 INSERT INTO `marc_subfield_structure` VALUES ('550', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31005 INSERT INTO `marc_subfield_structure` VALUES ('552', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31006 INSERT INTO `marc_subfield_structure` VALUES ('552', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31007 INSERT INTO `marc_subfield_structure` VALUES ('552', 'a', 'Entity type label', 'Entity type label', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31008 INSERT INTO `marc_subfield_structure` VALUES ('552', 'b', 'Entity type definition and source', 'Entity type definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31009 INSERT INTO `marc_subfield_structure` VALUES ('552', 'c', 'Attribute label', 'Attribute label', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31010 INSERT INTO `marc_subfield_structure` VALUES ('552', 'd', 'Attribute definition and source', 'Attribute definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31011 INSERT INTO `marc_subfield_structure` VALUES ('552', 'e', 'Enumerated domain value', 'Enumerated domain value', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31012 INSERT INTO `marc_subfield_structure` VALUES ('552', 'f', 'Enumerated domain value definition and source', 'Enumerated domain value definition and source', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31013 INSERT INTO `marc_subfield_structure` VALUES ('552', 'g', 'Range domain minimum and maximum', 'Range domain minimum and maximum', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31014 INSERT INTO `marc_subfield_structure` VALUES ('552', 'h', 'Codeset name and source', 'Codeset name and source', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31015 INSERT INTO `marc_subfield_structure` VALUES ('552', 'i', 'Unrepresentable domain', 'Unrepresentable domain', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31016 INSERT INTO `marc_subfield_structure` VALUES ('552', 'j', 'Attribute units of measurement and resolution', 'Attribute units of measurement and resolution', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31017 INSERT INTO `marc_subfield_structure` VALUES ('552', 'k', 'Beginning date and ending date of attribute values', 'Beginning date and ending date of attribute values', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31018 INSERT INTO `marc_subfield_structure` VALUES ('552', 'l', 'Attribute value accuracy', 'Attribute value accuracy', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31019 INSERT INTO `marc_subfield_structure` VALUES ('552', 'm', 'Attribute value accuracy explanation', 'Attribute value accuracy explanation', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31020 INSERT INTO `marc_subfield_structure` VALUES ('552', 'n', 'Attribute measurement frequency', 'Attribute measurement frequency', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31021 INSERT INTO `marc_subfield_structure` VALUES ('552', 'o', 'Entity and attribute overview', 'Entity and attribute overview', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31022 INSERT INTO `marc_subfield_structure` VALUES ('552', 'p', 'Entity and attribute detail citation', 'Entity and attribute detail citation', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31023 INSERT INTO `marc_subfield_structure` VALUES ('552', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'IR', '', '');
31024 INSERT INTO `marc_subfield_structure` VALUES ('552', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31025 INSERT INTO `marc_subfield_structure` VALUES ('555', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31026 INSERT INTO `marc_subfield_structure` VALUES ('555', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31027 INSERT INTO `marc_subfield_structure` VALUES ('555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31028 INSERT INTO `marc_subfield_structure` VALUES ('555', 'a', 'Cumulative index/finding aids note', 'Cumulative index/finding aids note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31029 INSERT INTO `marc_subfield_structure` VALUES ('555', 'b', 'Availability source', 'Availability source', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31030 INSERT INTO `marc_subfield_structure` VALUES ('555', 'c', 'Degree of control', 'Degree of control', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31031 INSERT INTO `marc_subfield_structure` VALUES ('555', 'd', 'Bibliographic reference', 'Bibliographic reference', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31032 INSERT INTO `marc_subfield_structure` VALUES ('555', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'IR', '', '');
31033 INSERT INTO `marc_subfield_structure` VALUES ('556', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31034 INSERT INTO `marc_subfield_structure` VALUES ('556', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31035 INSERT INTO `marc_subfield_structure` VALUES ('556', 'a', 'Information about documentation note', 'Information about documentation note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31036 INSERT INTO `marc_subfield_structure` VALUES ('556', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31037 INSERT INTO `marc_subfield_structure` VALUES ('561', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31038 INSERT INTO `marc_subfield_structure` VALUES ('561', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31039 INSERT INTO `marc_subfield_structure` VALUES ('561', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31040 INSERT INTO `marc_subfield_structure` VALUES ('561', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31041 INSERT INTO `marc_subfield_structure` VALUES ('561', 'a', 'History', 'History', 0, 0, '', 5, '', '', '', NULL, 6, 'IR', '', '');
31042 INSERT INTO `marc_subfield_structure` VALUES ('561', 'b', 'Time of collation [OBSOLETE]', 'Time of collation [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, 6, 'IR', '', '');
31043 INSERT INTO `marc_subfield_structure` VALUES ('562', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31044 INSERT INTO `marc_subfield_structure` VALUES ('562', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'IR', '', '');
31045 INSERT INTO `marc_subfield_structure` VALUES ('562', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31046 INSERT INTO `marc_subfield_structure` VALUES ('562', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31047 INSERT INTO `marc_subfield_structure` VALUES ('562', 'a', 'Identifying markings', 'Identifying markings', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31048 INSERT INTO `marc_subfield_structure` VALUES ('562', 'b', 'Copy identification', 'Copy identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31049 INSERT INTO `marc_subfield_structure` VALUES ('562', 'c', 'Version identification', 'Version identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31050 INSERT INTO `marc_subfield_structure` VALUES ('562', 'd', 'Presentation format', 'Presentation format', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31051 INSERT INTO `marc_subfield_structure` VALUES ('562', 'e', 'Number of copies', 'Number of copies', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31052 INSERT INTO `marc_subfield_structure` VALUES ('563', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31053 INSERT INTO `marc_subfield_structure` VALUES ('563', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'IR', '', '');
31054 INSERT INTO `marc_subfield_structure` VALUES ('563', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31055 INSERT INTO `marc_subfield_structure` VALUES ('563', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31056 INSERT INTO `marc_subfield_structure` VALUES ('563', 'a', 'Binding note', 'Binding note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31057 INSERT INTO `marc_subfield_structure` VALUES ('563', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'IR', '', '');
31058 INSERT INTO `marc_subfield_structure` VALUES ('565', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31059 INSERT INTO `marc_subfield_structure` VALUES ('565', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31060 INSERT INTO `marc_subfield_structure` VALUES ('565', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31061 INSERT INTO `marc_subfield_structure` VALUES ('565', 'a', 'Number of cases/variables', 'Number of cases/variables', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31062 INSERT INTO `marc_subfield_structure` VALUES ('565', 'b', 'Name of variable', 'Name of variable', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31063 INSERT INTO `marc_subfield_structure` VALUES ('565', 'c', 'Unit of analysis', 'Unit of analysis', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31064 INSERT INTO `marc_subfield_structure` VALUES ('565', 'd', 'Universe of data', 'Universe of data', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31065 INSERT INTO `marc_subfield_structure` VALUES ('565', 'e', 'Filing scheme or code', 'Filing scheme or code', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31066 INSERT INTO `marc_subfield_structure` VALUES ('567', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31067 INSERT INTO `marc_subfield_structure` VALUES ('567', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31068 INSERT INTO `marc_subfield_structure` VALUES ('567', 'a', 'Methodology note', 'Methodology note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31069 INSERT INTO `marc_subfield_structure` VALUES ('570', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31070 INSERT INTO `marc_subfield_structure` VALUES ('570', 'a', 'Editor note', 'Editor note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31071 INSERT INTO `marc_subfield_structure` VALUES ('570', 'z', 'Source of note information', 'Source of note information', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31072 INSERT INTO `marc_subfield_structure` VALUES ('580', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31073 INSERT INTO `marc_subfield_structure` VALUES ('580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31074 INSERT INTO `marc_subfield_structure` VALUES ('580', 'a', 'Linking entry complexity note', 'Linking entry complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31075 INSERT INTO `marc_subfield_structure` VALUES ('580', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31076 INSERT INTO `marc_subfield_structure` VALUES ('581', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31077 INSERT INTO `marc_subfield_structure` VALUES ('581', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31078 INSERT INTO `marc_subfield_structure` VALUES ('581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31079 INSERT INTO `marc_subfield_structure` VALUES ('581', 'a', 'Publications about described materials note', 'Publications about described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31080 INSERT INTO `marc_subfield_structure` VALUES ('581', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31081 INSERT INTO `marc_subfield_structure` VALUES ('582', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31082 INSERT INTO `marc_subfield_structure` VALUES ('582', 'a', 'Related computer files note', 'Related computer files note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31083 INSERT INTO `marc_subfield_structure` VALUES ('583', '2', 'Source of term', 'Source of term', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
31084 INSERT INTO `marc_subfield_structure` VALUES ('583', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
31085 INSERT INTO `marc_subfield_structure` VALUES ('583', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
31086 INSERT INTO `marc_subfield_structure` VALUES ('583', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
31087 INSERT INTO `marc_subfield_structure` VALUES ('583', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
31088 INSERT INTO `marc_subfield_structure` VALUES ('583', 'a', 'Action', 'Action', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
31089 INSERT INTO `marc_subfield_structure` VALUES ('583', 'b', 'Action identification', 'Action identification', 1, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
31090 INSERT INTO `marc_subfield_structure` VALUES ('583', 'c', 'Time/date of action', 'Time/date of action', 1, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
31091 INSERT INTO `marc_subfield_structure` VALUES ('583', 'd', 'Action interval', 'Action interval', 1, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
31092 INSERT INTO `marc_subfield_structure` VALUES ('583', 'e', 'Contingency for action', 'Contingency for action', 1, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
31093 INSERT INTO `marc_subfield_structure` VALUES ('583', 'f', 'Authorization', 'Authorization', 1, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
31094 INSERT INTO `marc_subfield_structure` VALUES ('583', 'h', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
31095 INSERT INTO `marc_subfield_structure` VALUES ('583', 'i', 'Method of action', 'Method of action', 1, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
31096 INSERT INTO `marc_subfield_structure` VALUES ('583', 'j', 'Site of action', 'Site of action', 1, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
31097 INSERT INTO `marc_subfield_structure` VALUES ('583', 'k', 'Action agent', 'Action agent', 1, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
31098 INSERT INTO `marc_subfield_structure` VALUES ('583', 'l', 'Status', 'Status', 1, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
31099 INSERT INTO `marc_subfield_structure` VALUES ('583', 'n', 'Extent', 'Extent', 1, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
31100 INSERT INTO `marc_subfield_structure` VALUES ('583', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
31101 INSERT INTO `marc_subfield_structure` VALUES ('583', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -1, 'IR', '', '');
31102 INSERT INTO `marc_subfield_structure` VALUES ('583', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', NULL, 4, 'IR', '', '');
31103 INSERT INTO `marc_subfield_structure` VALUES ('583', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', NULL, -1, 'IR', '', '');
31104 INSERT INTO `marc_subfield_structure` VALUES ('584', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31105 INSERT INTO `marc_subfield_structure` VALUES ('584', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31106 INSERT INTO `marc_subfield_structure` VALUES ('584', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31107 INSERT INTO `marc_subfield_structure` VALUES ('584', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31108 INSERT INTO `marc_subfield_structure` VALUES ('584', 'a', 'Accumulation', 'Accumulation', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31109 INSERT INTO `marc_subfield_structure` VALUES ('584', 'b', 'Frequency of use', 'Frequency of use', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31110 INSERT INTO `marc_subfield_structure` VALUES ('585', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31111 INSERT INTO `marc_subfield_structure` VALUES ('585', '5', 'Institution to which field applies', 'Institution to which field applies', 0, -6, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31112 INSERT INTO `marc_subfield_structure` VALUES ('585', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31113 INSERT INTO `marc_subfield_structure` VALUES ('585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31114 INSERT INTO `marc_subfield_structure` VALUES ('585', 'a', 'Exhibitions note', 'Exhibitions note', 0, 0, '', 5, '', '', '', NULL, -6, 'IR', '', '');
31115 INSERT INTO `marc_subfield_structure` VALUES ('586', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31116 INSERT INTO `marc_subfield_structure` VALUES ('586', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31117 INSERT INTO `marc_subfield_structure` VALUES ('586', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31118 INSERT INTO `marc_subfield_structure` VALUES ('586', 'a', 'Awards note', 'Awards note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'IR', '', '');
31119 INSERT INTO `marc_subfield_structure` VALUES ('590', '6', 'Linkage (RLIN)', 'Linkage (RLIN)', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31120 INSERT INTO `marc_subfield_structure` VALUES ('590', '8', 'Field link and sequence number (RLIN)', 'Field link and sequence number (RLIN)', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31121 INSERT INTO `marc_subfield_structure` VALUES ('590', 'a', 'Local note', 'Local note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31122 INSERT INTO `marc_subfield_structure` VALUES ('590', 'b', 'Provenance (VM) [OBSOLETE]', 'Provenance (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31123 INSERT INTO `marc_subfield_structure` VALUES ('590', 'c', 'Condition of individual reels (VM) [OBSOLETE]', 'Condition of individual reels (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31124 INSERT INTO `marc_subfield_structure` VALUES ('590', 'd', 'Origin of safety copy (VM) [OBSOLETE]', 'Origin of safety copy (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'IR', '', '');
31125 INSERT INTO `marc_subfield_structure` VALUES ('600', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31126 INSERT INTO `marc_subfield_structure` VALUES ('600', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31127 INSERT INTO `marc_subfield_structure` VALUES ('600', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31128 INSERT INTO `marc_subfield_structure` VALUES ('600', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31129 INSERT INTO `marc_subfield_structure` VALUES ('600', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31130 INSERT INTO `marc_subfield_structure` VALUES ('600', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
31131 INSERT INTO `marc_subfield_structure` VALUES ('600', 'a', 'Personal name', 'Personal name', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31132 INSERT INTO `marc_subfield_structure` VALUES ('600', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31133 INSERT INTO `marc_subfield_structure` VALUES ('600', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31134 INSERT INTO `marc_subfield_structure` VALUES ('600', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31135 INSERT INTO `marc_subfield_structure` VALUES ('600', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31136 INSERT INTO `marc_subfield_structure` VALUES ('600', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31137 INSERT INTO `marc_subfield_structure` VALUES ('600', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31138 INSERT INTO `marc_subfield_structure` VALUES ('600', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31139 INSERT INTO `marc_subfield_structure` VALUES ('600', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31140 INSERT INTO `marc_subfield_structure` VALUES ('600', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31141 INSERT INTO `marc_subfield_structure` VALUES ('600', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31142 INSERT INTO `marc_subfield_structure` VALUES ('600', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31143 INSERT INTO `marc_subfield_structure` VALUES ('600', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31144 INSERT INTO `marc_subfield_structure` VALUES ('600', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31145 INSERT INTO `marc_subfield_structure` VALUES ('600', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31146 INSERT INTO `marc_subfield_structure` VALUES ('600', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31147 INSERT INTO `marc_subfield_structure` VALUES ('600', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31148 INSERT INTO `marc_subfield_structure` VALUES ('600', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31149 INSERT INTO `marc_subfield_structure` VALUES ('600', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31150 INSERT INTO `marc_subfield_structure` VALUES ('600', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31151 INSERT INTO `marc_subfield_structure` VALUES ('600', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31152 INSERT INTO `marc_subfield_structure` VALUES ('600', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31153 INSERT INTO `marc_subfield_structure` VALUES ('600', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31154 INSERT INTO `marc_subfield_structure` VALUES ('600', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31155 INSERT INTO `marc_subfield_structure` VALUES ('610', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31156 INSERT INTO `marc_subfield_structure` VALUES ('610', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31157 INSERT INTO `marc_subfield_structure` VALUES ('610', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31158 INSERT INTO `marc_subfield_structure` VALUES ('610', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31159 INSERT INTO `marc_subfield_structure` VALUES ('610', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31160 INSERT INTO `marc_subfield_structure` VALUES ('610', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
31161 INSERT INTO `marc_subfield_structure` VALUES ('610', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31162 INSERT INTO `marc_subfield_structure` VALUES ('610', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31163 INSERT INTO `marc_subfield_structure` VALUES ('610', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31164 INSERT INTO `marc_subfield_structure` VALUES ('610', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31165 INSERT INTO `marc_subfield_structure` VALUES ('610', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31166 INSERT INTO `marc_subfield_structure` VALUES ('610', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31167 INSERT INTO `marc_subfield_structure` VALUES ('610', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31168 INSERT INTO `marc_subfield_structure` VALUES ('610', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31169 INSERT INTO `marc_subfield_structure` VALUES ('610', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31170 INSERT INTO `marc_subfield_structure` VALUES ('610', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31171 INSERT INTO `marc_subfield_structure` VALUES ('610', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31172 INSERT INTO `marc_subfield_structure` VALUES ('610', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31173 INSERT INTO `marc_subfield_structure` VALUES ('610', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31174 INSERT INTO `marc_subfield_structure` VALUES ('610', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31175 INSERT INTO `marc_subfield_structure` VALUES ('610', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31176 INSERT INTO `marc_subfield_structure` VALUES ('610', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31177 INSERT INTO `marc_subfield_structure` VALUES ('610', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31178 INSERT INTO `marc_subfield_structure` VALUES ('610', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31179 INSERT INTO `marc_subfield_structure` VALUES ('610', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31180 INSERT INTO `marc_subfield_structure` VALUES ('610', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31181 INSERT INTO `marc_subfield_structure` VALUES ('610', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31182 INSERT INTO `marc_subfield_structure` VALUES ('610', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31183 INSERT INTO `marc_subfield_structure` VALUES ('611', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31184 INSERT INTO `marc_subfield_structure` VALUES ('611', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31185 INSERT INTO `marc_subfield_structure` VALUES ('611', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31186 INSERT INTO `marc_subfield_structure` VALUES ('611', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31187 INSERT INTO `marc_subfield_structure` VALUES ('611', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31188 INSERT INTO `marc_subfield_structure` VALUES ('611', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
31189 INSERT INTO `marc_subfield_structure` VALUES ('611', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31190 INSERT INTO `marc_subfield_structure` VALUES ('611', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'IR', '', '');
31191 INSERT INTO `marc_subfield_structure` VALUES ('611', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31192 INSERT INTO `marc_subfield_structure` VALUES ('611', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31193 INSERT INTO `marc_subfield_structure` VALUES ('611', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31194 INSERT INTO `marc_subfield_structure` VALUES ('611', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31195 INSERT INTO `marc_subfield_structure` VALUES ('611', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31196 INSERT INTO `marc_subfield_structure` VALUES ('611', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31197 INSERT INTO `marc_subfield_structure` VALUES ('611', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31198 INSERT INTO `marc_subfield_structure` VALUES ('611', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31199 INSERT INTO `marc_subfield_structure` VALUES ('611', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31200 INSERT INTO `marc_subfield_structure` VALUES ('611', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31201 INSERT INTO `marc_subfield_structure` VALUES ('611', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31202 INSERT INTO `marc_subfield_structure` VALUES ('611', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31203 INSERT INTO `marc_subfield_structure` VALUES ('611', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31204 INSERT INTO `marc_subfield_structure` VALUES ('611', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31205 INSERT INTO `marc_subfield_structure` VALUES ('611', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31206 INSERT INTO `marc_subfield_structure` VALUES ('611', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31207 INSERT INTO `marc_subfield_structure` VALUES ('611', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31208 INSERT INTO `marc_subfield_structure` VALUES ('611', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31209 INSERT INTO `marc_subfield_structure` VALUES ('630', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31210 INSERT INTO `marc_subfield_structure` VALUES ('630', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31211 INSERT INTO `marc_subfield_structure` VALUES ('630', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31212 INSERT INTO `marc_subfield_structure` VALUES ('630', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31213 INSERT INTO `marc_subfield_structure` VALUES ('630', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31214 INSERT INTO `marc_subfield_structure` VALUES ('630', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
31215 INSERT INTO `marc_subfield_structure` VALUES ('630', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31216 INSERT INTO `marc_subfield_structure` VALUES ('630', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31217 INSERT INTO `marc_subfield_structure` VALUES ('630', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31218 INSERT INTO `marc_subfield_structure` VALUES ('630', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31219 INSERT INTO `marc_subfield_structure` VALUES ('630', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31220 INSERT INTO `marc_subfield_structure` VALUES ('630', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31221 INSERT INTO `marc_subfield_structure` VALUES ('630', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31222 INSERT INTO `marc_subfield_structure` VALUES ('630', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31223 INSERT INTO `marc_subfield_structure` VALUES ('630', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31224 INSERT INTO `marc_subfield_structure` VALUES ('630', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31225 INSERT INTO `marc_subfield_structure` VALUES ('630', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31226 INSERT INTO `marc_subfield_structure` VALUES ('630', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31227 INSERT INTO `marc_subfield_structure` VALUES ('630', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31228 INSERT INTO `marc_subfield_structure` VALUES ('630', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31229 INSERT INTO `marc_subfield_structure` VALUES ('630', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31230 INSERT INTO `marc_subfield_structure` VALUES ('630', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31231 INSERT INTO `marc_subfield_structure` VALUES ('630', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31232 INSERT INTO `marc_subfield_structure` VALUES ('630', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31233 INSERT INTO `marc_subfield_structure` VALUES ('630', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31234 INSERT INTO `marc_subfield_structure` VALUES ('648', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31235 INSERT INTO `marc_subfield_structure` VALUES ('648', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31236 INSERT INTO `marc_subfield_structure` VALUES ('648', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31237 INSERT INTO `marc_subfield_structure` VALUES ('648', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31238 INSERT INTO `marc_subfield_structure` VALUES ('648', 'a', 'Chronological term', 'Chronological term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31239 INSERT INTO `marc_subfield_structure` VALUES ('648', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31240 INSERT INTO `marc_subfield_structure` VALUES ('648', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31241 INSERT INTO `marc_subfield_structure` VALUES ('648', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31242 INSERT INTO `marc_subfield_structure` VALUES ('648', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31243 INSERT INTO `marc_subfield_structure` VALUES ('650', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, 0, 'IR', '', '');
31244 INSERT INTO `marc_subfield_structure` VALUES ('650', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'IR', '', '');
31245 INSERT INTO `marc_subfield_structure` VALUES ('650', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31246 INSERT INTO `marc_subfield_structure` VALUES ('650', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'IR', '', '');
31247 INSERT INTO `marc_subfield_structure` VALUES ('650', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'IR', '', '');
31248 INSERT INTO `marc_subfield_structure` VALUES ('650', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
31249 INSERT INTO `marc_subfield_structure` VALUES ('650', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 'bibliosubject.subject', 6, '', '', '', 0, 0, 'IR', '''6003'',''600a'',''600b'',''600c'',''600d'',''600e'',''600f'',''600g'',''600h'',''600k'',''600l'',''600m'',''600n'',''600o'',''600p'',''600r'',''600s'',''600t'',''600u'',''600x'',''600z'',''600y'',''600v'',''6103'',''610a'',''610b'',''610c'',''610d'',''610e'',''610f'',''610g'',''610h'',''610k'',''610l'',''610m'',''610n'',''610o'',''610p'',''610r'',''610s'',''610t'',''610u'',''610x'',''610z'',''610y'',''610v'',''6113'',''611a'',''611b'',''611c'',''611d'',''611e'',''611f'',''611g'',''611h'',''611k'',''611l'',''611m'',''611n'',''611o'',''611p'',''611r'',''611s'',''611t'',''611u'',''611x'',''611z'',''611y'',''611v'',''630a'',''630b'',''630c'',''630d'',''630e'',''630f'',''630g'',''630h'',''630k'',''630l'',''630m'',''630n'',''630o'',''630p'',''630r'',''630s'',''630t'',''630x'',''630z'',''630y'',''630v'',''6483'',''648a'',''648x'',''648z'',''648y'',''648v'',''6503'',''650b'',''650c'',''650d'',''650e'',''650x'',''650z'',''650y'',''650v'',''6513'',''651a'',''651b'',''651c'',''651d'',''651e'',''651x'',''651z'',''651y'',''651v'',''653a'',''6543'',''654a'',''654b'',''654x'',''654z'',''654y'',''654v'',''6553'',''655a'',''655b'',''655x'',''655z'',''655y'',''655v'',''6563'',''656a'',''656k'',''656x'',''656z'',''656y'',''656v'',''6573'',''657a'',''657x'',''657z'',''657y'',''657v'',''658a'',''658b'',''658c'',''658d'',''658v''', '');
31250 INSERT INTO `marc_subfield_structure` VALUES ('650', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'IR', '', '');
31251 INSERT INTO `marc_subfield_structure` VALUES ('650', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'IR', '', '');
31252 INSERT INTO `marc_subfield_structure` VALUES ('650', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -1, 'IR', '', '');
31253 INSERT INTO `marc_subfield_structure` VALUES ('650', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -1, 'IR', '', '');
31254 INSERT INTO `marc_subfield_structure` VALUES ('650', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'IR', '', '');
31255 INSERT INTO `marc_subfield_structure` VALUES ('650', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'IR', '', '');
31256 INSERT INTO `marc_subfield_structure` VALUES ('650', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'IR', '', '');
31257 INSERT INTO `marc_subfield_structure` VALUES ('650', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'IR', '', '');
31258 INSERT INTO `marc_subfield_structure` VALUES ('651', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31259 INSERT INTO `marc_subfield_structure` VALUES ('651', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31260 INSERT INTO `marc_subfield_structure` VALUES ('651', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31261 INSERT INTO `marc_subfield_structure` VALUES ('651', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31262 INSERT INTO `marc_subfield_structure` VALUES ('651', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31263 INSERT INTO `marc_subfield_structure` VALUES ('651', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
31264 INSERT INTO `marc_subfield_structure` VALUES ('651', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31265 INSERT INTO `marc_subfield_structure` VALUES ('651', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31266 INSERT INTO `marc_subfield_structure` VALUES ('651', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31267 INSERT INTO `marc_subfield_structure` VALUES ('651', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31268 INSERT INTO `marc_subfield_structure` VALUES ('651', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31269 INSERT INTO `marc_subfield_structure` VALUES ('651', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31270 INSERT INTO `marc_subfield_structure` VALUES ('651', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31271 INSERT INTO `marc_subfield_structure` VALUES ('652', 'a', 'Geographic name of place element', 'Geographic name of place element', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31272 INSERT INTO `marc_subfield_structure` VALUES ('652', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31273 INSERT INTO `marc_subfield_structure` VALUES ('652', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31274 INSERT INTO `marc_subfield_structure` VALUES ('652', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31275 INSERT INTO `marc_subfield_structure` VALUES ('653', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31276 INSERT INTO `marc_subfield_structure` VALUES ('653', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31277 INSERT INTO `marc_subfield_structure` VALUES ('653', 'a', 'Uncontrolled term', 'Uncontrolled term', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'IR', '', '');
31278 INSERT INTO `marc_subfield_structure` VALUES ('654', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31279 INSERT INTO `marc_subfield_structure` VALUES ('654', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31280 INSERT INTO `marc_subfield_structure` VALUES ('654', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31281 INSERT INTO `marc_subfield_structure` VALUES ('654', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31282 INSERT INTO `marc_subfield_structure` VALUES ('654', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31283 INSERT INTO `marc_subfield_structure` VALUES ('654', 'a', 'Focus term', 'Focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31284 INSERT INTO `marc_subfield_structure` VALUES ('654', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31285 INSERT INTO `marc_subfield_structure` VALUES ('654', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31286 INSERT INTO `marc_subfield_structure` VALUES ('654', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31287 INSERT INTO `marc_subfield_structure` VALUES ('654', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31288 INSERT INTO `marc_subfield_structure` VALUES ('654', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31289 INSERT INTO `marc_subfield_structure` VALUES ('654', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31290 INSERT INTO `marc_subfield_structure` VALUES ('654', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31291 INSERT INTO `marc_subfield_structure` VALUES ('655', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31292 INSERT INTO `marc_subfield_structure` VALUES ('655', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31293 INSERT INTO `marc_subfield_structure` VALUES ('655', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31294 INSERT INTO `marc_subfield_structure` VALUES ('655', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31295 INSERT INTO `marc_subfield_structure` VALUES ('655', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31296 INSERT INTO `marc_subfield_structure` VALUES ('655', 'a', 'Genre/form data or focus term', 'Genre/form data or focus term', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31297 INSERT INTO `marc_subfield_structure` VALUES ('655', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31298 INSERT INTO `marc_subfield_structure` VALUES ('655', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31299 INSERT INTO `marc_subfield_structure` VALUES ('655', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31300 INSERT INTO `marc_subfield_structure` VALUES ('655', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31301 INSERT INTO `marc_subfield_structure` VALUES ('655', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31302 INSERT INTO `marc_subfield_structure` VALUES ('655', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31303 INSERT INTO `marc_subfield_structure` VALUES ('656', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31304 INSERT INTO `marc_subfield_structure` VALUES ('656', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31305 INSERT INTO `marc_subfield_structure` VALUES ('656', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31306 INSERT INTO `marc_subfield_structure` VALUES ('656', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31307 INSERT INTO `marc_subfield_structure` VALUES ('656', 'a', 'Occupation', 'Occupation', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31308 INSERT INTO `marc_subfield_structure` VALUES ('656', 'k', 'Form', 'Form', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31309 INSERT INTO `marc_subfield_structure` VALUES ('656', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31310 INSERT INTO `marc_subfield_structure` VALUES ('656', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31311 INSERT INTO `marc_subfield_structure` VALUES ('656', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31312 INSERT INTO `marc_subfield_structure` VALUES ('656', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31313 INSERT INTO `marc_subfield_structure` VALUES ('657', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31314 INSERT INTO `marc_subfield_structure` VALUES ('657', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31315 INSERT INTO `marc_subfield_structure` VALUES ('657', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31316 INSERT INTO `marc_subfield_structure` VALUES ('657', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31317 INSERT INTO `marc_subfield_structure` VALUES ('657', 'a', 'Function', 'Function', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31318 INSERT INTO `marc_subfield_structure` VALUES ('657', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31319 INSERT INTO `marc_subfield_structure` VALUES ('657', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31320 INSERT INTO `marc_subfield_structure` VALUES ('657', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31321 INSERT INTO `marc_subfield_structure` VALUES ('657', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31322 INSERT INTO `marc_subfield_structure` VALUES ('658', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31323 INSERT INTO `marc_subfield_structure` VALUES ('658', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31324 INSERT INTO `marc_subfield_structure` VALUES ('658', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31325 INSERT INTO `marc_subfield_structure` VALUES ('658', 'a', 'Main curriculum objective', 'Main curriculum objective', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31326 INSERT INTO `marc_subfield_structure` VALUES ('658', 'b', 'Subordinate curriculum objective', 'Subordinate curriculum objective', 1, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31327 INSERT INTO `marc_subfield_structure` VALUES ('658', 'c', 'Curriculum code', 'Curriculum code', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31328 INSERT INTO `marc_subfield_structure` VALUES ('658', 'd', 'Correlation factor', 'Correlation factor', 0, 0, '', 6, '', '', '', NULL, -1, 'IR', '', '');
31329 INSERT INTO `marc_subfield_structure` VALUES ('662', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31330 INSERT INTO `marc_subfield_structure` VALUES ('662', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31331 INSERT INTO `marc_subfield_structure` VALUES ('662', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31332 INSERT INTO `marc_subfield_structure` VALUES ('662', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31333 INSERT INTO `marc_subfield_structure` VALUES ('662', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31334 INSERT INTO `marc_subfield_structure` VALUES ('662', 'a', 'Country or larger entity', 'Country or larger entity', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31335 INSERT INTO `marc_subfield_structure` VALUES ('662', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31336 INSERT INTO `marc_subfield_structure` VALUES ('662', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31337 INSERT INTO `marc_subfield_structure` VALUES ('662', 'd', 'City', 'City', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31338 INSERT INTO `marc_subfield_structure` VALUES ('662', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31339 INSERT INTO `marc_subfield_structure` VALUES ('662', 'f', 'City subsection', 'City subsection', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31340 INSERT INTO `marc_subfield_structure` VALUES ('662', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31341 INSERT INTO `marc_subfield_structure` VALUES ('662', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31342 INSERT INTO `marc_subfield_structure` VALUES ('690', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'IR', '', '');
31343 INSERT INTO `marc_subfield_structure` VALUES ('690', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, -6, 'IR', '', '');
31344 INSERT INTO `marc_subfield_structure` VALUES ('690', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'IR', '', '');
31345 INSERT INTO `marc_subfield_structure` VALUES ('690', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'IR', '', '');
31346 INSERT INTO `marc_subfield_structure` VALUES ('690', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'IR', '', '');
31347 INSERT INTO `marc_subfield_structure` VALUES ('690', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
31348 INSERT INTO `marc_subfield_structure` VALUES ('690', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'IR', '', '');
31349 INSERT INTO `marc_subfield_structure` VALUES ('690', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'IR', '', '');
31350 INSERT INTO `marc_subfield_structure` VALUES ('690', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'IR', '', '');
31351 INSERT INTO `marc_subfield_structure` VALUES ('690', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -6, 'IR', '', '');
31352 INSERT INTO `marc_subfield_structure` VALUES ('690', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -6, 'IR', '', '');
31353 INSERT INTO `marc_subfield_structure` VALUES ('690', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'IR', '', '');
31354 INSERT INTO `marc_subfield_structure` VALUES ('690', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'IR', '', '');
31355 INSERT INTO `marc_subfield_structure` VALUES ('690', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'IR', '', '');
31356 INSERT INTO `marc_subfield_structure` VALUES ('690', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'IR', '', '');
31357 INSERT INTO `marc_subfield_structure` VALUES ('691', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'IR', '', '');
31358 INSERT INTO `marc_subfield_structure` VALUES ('691', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31359 INSERT INTO `marc_subfield_structure` VALUES ('691', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31360 INSERT INTO `marc_subfield_structure` VALUES ('691', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31361 INSERT INTO `marc_subfield_structure` VALUES ('691', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31362 INSERT INTO `marc_subfield_structure` VALUES ('691', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
31363 INSERT INTO `marc_subfield_structure` VALUES ('691', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31364 INSERT INTO `marc_subfield_structure` VALUES ('691', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31365 INSERT INTO `marc_subfield_structure` VALUES ('691', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31366 INSERT INTO `marc_subfield_structure` VALUES ('691', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31367 INSERT INTO `marc_subfield_structure` VALUES ('691', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31368 INSERT INTO `marc_subfield_structure` VALUES ('691', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31369 INSERT INTO `marc_subfield_structure` VALUES ('696', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'IR', '', '');
31370 INSERT INTO `marc_subfield_structure` VALUES ('696', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31371 INSERT INTO `marc_subfield_structure` VALUES ('696', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31372 INSERT INTO `marc_subfield_structure` VALUES ('696', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31373 INSERT INTO `marc_subfield_structure` VALUES ('696', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31374 INSERT INTO `marc_subfield_structure` VALUES ('696', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31375 INSERT INTO `marc_subfield_structure` VALUES ('696', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
31376 INSERT INTO `marc_subfield_structure` VALUES ('696', 'a', 'Personal name', 'Personal name', 0, 0, '', 3, '', '', '', NULL, -6, 'IR', '', '');
31377 INSERT INTO `marc_subfield_structure` VALUES ('696', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31378 INSERT INTO `marc_subfield_structure` VALUES ('696', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31379 INSERT INTO `marc_subfield_structure` VALUES ('696', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31380 INSERT INTO `marc_subfield_structure` VALUES ('696', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31381 INSERT INTO `marc_subfield_structure` VALUES ('696', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31382 INSERT INTO `marc_subfield_structure` VALUES ('696', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31383 INSERT INTO `marc_subfield_structure` VALUES ('696', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31384 INSERT INTO `marc_subfield_structure` VALUES ('696', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31385 INSERT INTO `marc_subfield_structure` VALUES ('696', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31386 INSERT INTO `marc_subfield_structure` VALUES ('696', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31387 INSERT INTO `marc_subfield_structure` VALUES ('696', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31388 INSERT INTO `marc_subfield_structure` VALUES ('696', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31389 INSERT INTO `marc_subfield_structure` VALUES ('696', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31390 INSERT INTO `marc_subfield_structure` VALUES ('696', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31391 INSERT INTO `marc_subfield_structure` VALUES ('696', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31392 INSERT INTO `marc_subfield_structure` VALUES ('696', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31393 INSERT INTO `marc_subfield_structure` VALUES ('696', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31394 INSERT INTO `marc_subfield_structure` VALUES ('696', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31395 INSERT INTO `marc_subfield_structure` VALUES ('696', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31396 INSERT INTO `marc_subfield_structure` VALUES ('696', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31397 INSERT INTO `marc_subfield_structure` VALUES ('696', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31398 INSERT INTO `marc_subfield_structure` VALUES ('696', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31399 INSERT INTO `marc_subfield_structure` VALUES ('696', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31400 INSERT INTO `marc_subfield_structure` VALUES ('697', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'IR', '', '');
31401 INSERT INTO `marc_subfield_structure` VALUES ('697', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31402 INSERT INTO `marc_subfield_structure` VALUES ('697', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31403 INSERT INTO `marc_subfield_structure` VALUES ('697', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31404 INSERT INTO `marc_subfield_structure` VALUES ('697', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31405 INSERT INTO `marc_subfield_structure` VALUES ('697', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31406 INSERT INTO `marc_subfield_structure` VALUES ('697', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
31407 INSERT INTO `marc_subfield_structure` VALUES ('697', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31408 INSERT INTO `marc_subfield_structure` VALUES ('697', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31409 INSERT INTO `marc_subfield_structure` VALUES ('697', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31410 INSERT INTO `marc_subfield_structure` VALUES ('697', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31411 INSERT INTO `marc_subfield_structure` VALUES ('697', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31412 INSERT INTO `marc_subfield_structure` VALUES ('697', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31413 INSERT INTO `marc_subfield_structure` VALUES ('697', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31414 INSERT INTO `marc_subfield_structure` VALUES ('697', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31415 INSERT INTO `marc_subfield_structure` VALUES ('697', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31416 INSERT INTO `marc_subfield_structure` VALUES ('697', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31417 INSERT INTO `marc_subfield_structure` VALUES ('697', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31418 INSERT INTO `marc_subfield_structure` VALUES ('697', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31419 INSERT INTO `marc_subfield_structure` VALUES ('697', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31420 INSERT INTO `marc_subfield_structure` VALUES ('697', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31421 INSERT INTO `marc_subfield_structure` VALUES ('697', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31422 INSERT INTO `marc_subfield_structure` VALUES ('697', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31423 INSERT INTO `marc_subfield_structure` VALUES ('697', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31424 INSERT INTO `marc_subfield_structure` VALUES ('697', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31425 INSERT INTO `marc_subfield_structure` VALUES ('697', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31426 INSERT INTO `marc_subfield_structure` VALUES ('697', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31427 INSERT INTO `marc_subfield_structure` VALUES ('697', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31428 INSERT INTO `marc_subfield_structure` VALUES ('697', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
31429 INSERT INTO `marc_subfield_structure` VALUES ('698', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'IR', '', '');
31430 INSERT INTO `marc_subfield_structure` VALUES ('698', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31431 INSERT INTO `marc_subfield_structure` VALUES ('698', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31432 INSERT INTO `marc_subfield_structure` VALUES ('698', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31433 INSERT INTO `marc_subfield_structure` VALUES ('698', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31434 INSERT INTO `marc_subfield_structure` VALUES ('698', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31435 INSERT INTO `marc_subfield_structure` VALUES ('698', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
31436 INSERT INTO `marc_subfield_structure` VALUES ('698', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31437 INSERT INTO `marc_subfield_structure` VALUES ('698', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'IR', '', '');
31438 INSERT INTO `marc_subfield_structure` VALUES ('698', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31439 INSERT INTO `marc_subfield_structure` VALUES ('698', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31440 INSERT INTO `marc_subfield_structure` VALUES ('698', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31441 INSERT INTO `marc_subfield_structure` VALUES ('698', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31442 INSERT INTO `marc_subfield_structure` VALUES ('698', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31443 INSERT INTO `marc_subfield_structure` VALUES ('698', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31444 INSERT INTO `marc_subfield_structure` VALUES ('698', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31445 INSERT INTO `marc_subfield_structure` VALUES ('698', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31446 INSERT INTO `marc_subfield_structure` VALUES ('698', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31447 INSERT INTO `marc_subfield_structure` VALUES ('698', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31448 INSERT INTO `marc_subfield_structure` VALUES ('698', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31449 INSERT INTO `marc_subfield_structure` VALUES ('698', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31450 INSERT INTO `marc_subfield_structure` VALUES ('698', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31451 INSERT INTO `marc_subfield_structure` VALUES ('698', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31452 INSERT INTO `marc_subfield_structure` VALUES ('698', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31453 INSERT INTO `marc_subfield_structure` VALUES ('698', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31454 INSERT INTO `marc_subfield_structure` VALUES ('698', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31455 INSERT INTO `marc_subfield_structure` VALUES ('698', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31456 INSERT INTO `marc_subfield_structure` VALUES ('699', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'IR', '', '');
31457 INSERT INTO `marc_subfield_structure` VALUES ('699', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31458 INSERT INTO `marc_subfield_structure` VALUES ('699', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31459 INSERT INTO `marc_subfield_structure` VALUES ('699', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31460 INSERT INTO `marc_subfield_structure` VALUES ('699', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31461 INSERT INTO `marc_subfield_structure` VALUES ('699', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'IR', '', '');
31462 INSERT INTO `marc_subfield_structure` VALUES ('699', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31463 INSERT INTO `marc_subfield_structure` VALUES ('699', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31464 INSERT INTO `marc_subfield_structure` VALUES ('699', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31465 INSERT INTO `marc_subfield_structure` VALUES ('699', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31466 INSERT INTO `marc_subfield_structure` VALUES ('699', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31467 INSERT INTO `marc_subfield_structure` VALUES ('699', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31468 INSERT INTO `marc_subfield_structure` VALUES ('699', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31469 INSERT INTO `marc_subfield_structure` VALUES ('699', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31470 INSERT INTO `marc_subfield_structure` VALUES ('699', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31471 INSERT INTO `marc_subfield_structure` VALUES ('699', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31472 INSERT INTO `marc_subfield_structure` VALUES ('699', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31473 INSERT INTO `marc_subfield_structure` VALUES ('699', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31474 INSERT INTO `marc_subfield_structure` VALUES ('699', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31475 INSERT INTO `marc_subfield_structure` VALUES ('699', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31476 INSERT INTO `marc_subfield_structure` VALUES ('699', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31477 INSERT INTO `marc_subfield_structure` VALUES ('699', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31478 INSERT INTO `marc_subfield_structure` VALUES ('699', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'IR', '', '');
31479 INSERT INTO `marc_subfield_structure` VALUES ('700', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31480 INSERT INTO `marc_subfield_structure` VALUES ('700', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31481 INSERT INTO `marc_subfield_structure` VALUES ('700', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31482 INSERT INTO `marc_subfield_structure` VALUES ('700', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31483 INSERT INTO `marc_subfield_structure` VALUES ('700', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31484 INSERT INTO `marc_subfield_structure` VALUES ('700', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'IR', '', '');
31485 INSERT INTO `marc_subfield_structure` VALUES ('700', 'a', 'Personal name', 'Personal name', 0, 0, 'additionalauthors.author', 7, '', '', '', NULL, -1, 'IR', '', '');
31486 INSERT INTO `marc_subfield_structure` VALUES ('700', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -1, 'IR', '', '');
31487 INSERT INTO `marc_subfield_structure` VALUES ('700', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -1, 'IR', '', '');
31488 INSERT INTO `marc_subfield_structure` VALUES ('700', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -1, 'IR', '', '');
31489 INSERT INTO `marc_subfield_structure` VALUES ('700', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'IR', '', '');
31490 INSERT INTO `marc_subfield_structure` VALUES ('700', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31491 INSERT INTO `marc_subfield_structure` VALUES ('700', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31492 INSERT INTO `marc_subfield_structure` VALUES ('700', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31493 INSERT INTO `marc_subfield_structure` VALUES ('700', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31494 INSERT INTO `marc_subfield_structure` VALUES ('700', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31495 INSERT INTO `marc_subfield_structure` VALUES ('700', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31496 INSERT INTO `marc_subfield_structure` VALUES ('700', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31497 INSERT INTO `marc_subfield_structure` VALUES ('700', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31498 INSERT INTO `marc_subfield_structure` VALUES ('700', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31499 INSERT INTO `marc_subfield_structure` VALUES ('700', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31500 INSERT INTO `marc_subfield_structure` VALUES ('700', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -1, 'IR', '', '');
31501 INSERT INTO `marc_subfield_structure` VALUES ('700', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31502 INSERT INTO `marc_subfield_structure` VALUES ('700', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31503 INSERT INTO `marc_subfield_structure` VALUES ('700', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31504 INSERT INTO `marc_subfield_structure` VALUES ('700', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31505 INSERT INTO `marc_subfield_structure` VALUES ('700', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31506 INSERT INTO `marc_subfield_structure` VALUES ('705', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31507 INSERT INTO `marc_subfield_structure` VALUES ('705', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31508 INSERT INTO `marc_subfield_structure` VALUES ('705', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31509 INSERT INTO `marc_subfield_structure` VALUES ('705', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31510 INSERT INTO `marc_subfield_structure` VALUES ('705', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31511 INSERT INTO `marc_subfield_structure` VALUES ('705', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31512 INSERT INTO `marc_subfield_structure` VALUES ('705', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31513 INSERT INTO `marc_subfield_structure` VALUES ('705', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31514 INSERT INTO `marc_subfield_structure` VALUES ('705', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31515 INSERT INTO `marc_subfield_structure` VALUES ('705', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31516 INSERT INTO `marc_subfield_structure` VALUES ('705', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31517 INSERT INTO `marc_subfield_structure` VALUES ('705', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31518 INSERT INTO `marc_subfield_structure` VALUES ('705', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31519 INSERT INTO `marc_subfield_structure` VALUES ('705', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31520 INSERT INTO `marc_subfield_structure` VALUES ('705', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31521 INSERT INTO `marc_subfield_structure` VALUES ('705', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31522 INSERT INTO `marc_subfield_structure` VALUES ('705', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31523 INSERT INTO `marc_subfield_structure` VALUES ('710', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31524 INSERT INTO `marc_subfield_structure` VALUES ('710', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31525 INSERT INTO `marc_subfield_structure` VALUES ('710', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31526 INSERT INTO `marc_subfield_structure` VALUES ('710', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31527 INSERT INTO `marc_subfield_structure` VALUES ('710', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31528 INSERT INTO `marc_subfield_structure` VALUES ('710', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'IR', '', '');
31529 INSERT INTO `marc_subfield_structure` VALUES ('710', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -1, 'IR', '', '');
31530 INSERT INTO `marc_subfield_structure` VALUES ('710', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -1, 'IR', '', '');
31531 INSERT INTO `marc_subfield_structure` VALUES ('710', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -1, 'IR', '', '');
31532 INSERT INTO `marc_subfield_structure` VALUES ('710', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -1, 'IR', '', '');
31533 INSERT INTO `marc_subfield_structure` VALUES ('710', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'IR', '', '');
31534 INSERT INTO `marc_subfield_structure` VALUES ('710', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31535 INSERT INTO `marc_subfield_structure` VALUES ('710', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31536 INSERT INTO `marc_subfield_structure` VALUES ('710', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31537 INSERT INTO `marc_subfield_structure` VALUES ('710', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31538 INSERT INTO `marc_subfield_structure` VALUES ('710', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31539 INSERT INTO `marc_subfield_structure` VALUES ('710', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31540 INSERT INTO `marc_subfield_structure` VALUES ('710', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31541 INSERT INTO `marc_subfield_structure` VALUES ('710', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31542 INSERT INTO `marc_subfield_structure` VALUES ('710', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31543 INSERT INTO `marc_subfield_structure` VALUES ('710', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31544 INSERT INTO `marc_subfield_structure` VALUES ('710', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31545 INSERT INTO `marc_subfield_structure` VALUES ('710', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31546 INSERT INTO `marc_subfield_structure` VALUES ('710', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31547 INSERT INTO `marc_subfield_structure` VALUES ('710', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31548 INSERT INTO `marc_subfield_structure` VALUES ('711', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31549 INSERT INTO `marc_subfield_structure` VALUES ('711', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31550 INSERT INTO `marc_subfield_structure` VALUES ('711', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31551 INSERT INTO `marc_subfield_structure` VALUES ('711', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31552 INSERT INTO `marc_subfield_structure` VALUES ('711', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31553 INSERT INTO `marc_subfield_structure` VALUES ('711', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'IR', '', '');
31554 INSERT INTO `marc_subfield_structure` VALUES ('711', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'IR', '', '');
31555 INSERT INTO `marc_subfield_structure` VALUES ('711', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31556 INSERT INTO `marc_subfield_structure` VALUES ('711', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'IR', '', '');
31557 INSERT INTO `marc_subfield_structure` VALUES ('711', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'IR', '', '');
31558 INSERT INTO `marc_subfield_structure` VALUES ('711', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'IR', '', '');
31559 INSERT INTO `marc_subfield_structure` VALUES ('711', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31560 INSERT INTO `marc_subfield_structure` VALUES ('711', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31561 INSERT INTO `marc_subfield_structure` VALUES ('711', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31562 INSERT INTO `marc_subfield_structure` VALUES ('711', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31563 INSERT INTO `marc_subfield_structure` VALUES ('711', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31564 INSERT INTO `marc_subfield_structure` VALUES ('711', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31565 INSERT INTO `marc_subfield_structure` VALUES ('711', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31566 INSERT INTO `marc_subfield_structure` VALUES ('711', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31567 INSERT INTO `marc_subfield_structure` VALUES ('711', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31568 INSERT INTO `marc_subfield_structure` VALUES ('711', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31569 INSERT INTO `marc_subfield_structure` VALUES ('711', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31570 INSERT INTO `marc_subfield_structure` VALUES ('711', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31571 INSERT INTO `marc_subfield_structure` VALUES ('715', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'IR', '', '');
31572 INSERT INTO `marc_subfield_structure` VALUES ('715', 'a', 'Corporate name or jurisdiction name', 'Corporate name or jurisdiction name', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31573 INSERT INTO `marc_subfield_structure` VALUES ('715', 'b', 'Subordinate unit', 'Subordinate unit', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31574 INSERT INTO `marc_subfield_structure` VALUES ('715', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31575 INSERT INTO `marc_subfield_structure` VALUES ('715', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31576 INSERT INTO `marc_subfield_structure` VALUES ('715', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31577 INSERT INTO `marc_subfield_structure` VALUES ('715', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31578 INSERT INTO `marc_subfield_structure` VALUES ('715', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31579 INSERT INTO `marc_subfield_structure` VALUES ('715', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31580 INSERT INTO `marc_subfield_structure` VALUES ('715', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31581 INSERT INTO `marc_subfield_structure` VALUES ('715', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31582 INSERT INTO `marc_subfield_structure` VALUES ('715', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31583 INSERT INTO `marc_subfield_structure` VALUES ('715', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31584 INSERT INTO `marc_subfield_structure` VALUES ('715', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31585 INSERT INTO `marc_subfield_structure` VALUES ('715', 'u', 'Nonprinting information', 'Nonprinting information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31586 INSERT INTO `marc_subfield_structure` VALUES ('720', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31587 INSERT INTO `marc_subfield_structure` VALUES ('720', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31588 INSERT INTO `marc_subfield_structure` VALUES ('720', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31589 INSERT INTO `marc_subfield_structure` VALUES ('720', 'a', 'Name', 'Name', 0, 0, '', 7, NULL, NULL, '', NULL, -1, 'IR', '', '');
31590 INSERT INTO `marc_subfield_structure` VALUES ('720', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'IR', '', '');
31591 INSERT INTO `marc_subfield_structure` VALUES ('730', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31592 INSERT INTO `marc_subfield_structure` VALUES ('730', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31593 INSERT INTO `marc_subfield_structure` VALUES ('730', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31594 INSERT INTO `marc_subfield_structure` VALUES ('730', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31595 INSERT INTO `marc_subfield_structure` VALUES ('730', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'IR', '', '');
31596 INSERT INTO `marc_subfield_structure` VALUES ('730', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31597 INSERT INTO `marc_subfield_structure` VALUES ('730', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31598 INSERT INTO `marc_subfield_structure` VALUES ('730', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31599 INSERT INTO `marc_subfield_structure` VALUES ('730', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31600 INSERT INTO `marc_subfield_structure` VALUES ('730', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31601 INSERT INTO `marc_subfield_structure` VALUES ('730', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31602 INSERT INTO `marc_subfield_structure` VALUES ('730', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31603 INSERT INTO `marc_subfield_structure` VALUES ('730', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31604 INSERT INTO `marc_subfield_structure` VALUES ('730', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31605 INSERT INTO `marc_subfield_structure` VALUES ('730', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31606 INSERT INTO `marc_subfield_structure` VALUES ('730', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31607 INSERT INTO `marc_subfield_structure` VALUES ('730', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31608 INSERT INTO `marc_subfield_structure` VALUES ('730', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31609 INSERT INTO `marc_subfield_structure` VALUES ('730', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31610 INSERT INTO `marc_subfield_structure` VALUES ('730', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31611 INSERT INTO `marc_subfield_structure` VALUES ('740', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31612 INSERT INTO `marc_subfield_structure` VALUES ('740', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31613 INSERT INTO `marc_subfield_structure` VALUES ('740', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31614 INSERT INTO `marc_subfield_structure` VALUES ('740', 'a', 'Uncontrolled related/analytical title', 'Uncontrolled related/analytical title', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31615 INSERT INTO `marc_subfield_structure` VALUES ('740', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31616 INSERT INTO `marc_subfield_structure` VALUES ('740', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31617 INSERT INTO `marc_subfield_structure` VALUES ('740', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31618 INSERT INTO `marc_subfield_structure` VALUES ('752', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31619 INSERT INTO `marc_subfield_structure` VALUES ('752', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31620 INSERT INTO `marc_subfield_structure` VALUES ('752', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31621 INSERT INTO `marc_subfield_structure` VALUES ('752', 'a', 'Country or larger entity', 'Country or larger entity', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31622 INSERT INTO `marc_subfield_structure` VALUES ('752', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31623 INSERT INTO `marc_subfield_structure` VALUES ('752', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31624 INSERT INTO `marc_subfield_structure` VALUES ('752', 'd', 'City', 'City', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31625 INSERT INTO `marc_subfield_structure` VALUES ('752', 'f', 'City subsection', 'City subsection', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31626 INSERT INTO `marc_subfield_structure` VALUES ('752', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31627 INSERT INTO `marc_subfield_structure` VALUES ('752', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31628 INSERT INTO `marc_subfield_structure` VALUES ('753', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31629 INSERT INTO `marc_subfield_structure` VALUES ('753', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31630 INSERT INTO `marc_subfield_structure` VALUES ('753', 'a', 'Make and model of machine', 'Make and model of machine', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31631 INSERT INTO `marc_subfield_structure` VALUES ('753', 'b', 'Programming language', 'Programming language', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31632 INSERT INTO `marc_subfield_structure` VALUES ('753', 'c', 'Operating system', 'Operating system', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31633 INSERT INTO `marc_subfield_structure` VALUES ('754', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31634 INSERT INTO `marc_subfield_structure` VALUES ('754', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31635 INSERT INTO `marc_subfield_structure` VALUES ('754', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31636 INSERT INTO `marc_subfield_structure` VALUES ('754', 'a', 'Taxonomic name', 'Taxonomic name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31637 INSERT INTO `marc_subfield_structure` VALUES ('754', 'c', 'Taxonomic category', 'Taxonomic category', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31638 INSERT INTO `marc_subfield_structure` VALUES ('754', 'd', 'Common or alternative name', 'Common or alternative name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31639 INSERT INTO `marc_subfield_structure` VALUES ('754', 'x', 'Non-public note', 'Non-public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31640 INSERT INTO `marc_subfield_structure` VALUES ('754', 'z', 'Public note', 'Public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31641 INSERT INTO `marc_subfield_structure` VALUES ('755', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31642 INSERT INTO `marc_subfield_structure` VALUES ('755', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31643 INSERT INTO `marc_subfield_structure` VALUES ('755', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31644 INSERT INTO `marc_subfield_structure` VALUES ('755', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31645 INSERT INTO `marc_subfield_structure` VALUES ('755', 'a', 'Access term', 'Access term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31646 INSERT INTO `marc_subfield_structure` VALUES ('755', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31647 INSERT INTO `marc_subfield_structure` VALUES ('755', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31648 INSERT INTO `marc_subfield_structure` VALUES ('755', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31649 INSERT INTO `marc_subfield_structure` VALUES ('760', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31650 INSERT INTO `marc_subfield_structure` VALUES ('760', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31651 INSERT INTO `marc_subfield_structure` VALUES ('760', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31652 INSERT INTO `marc_subfield_structure` VALUES ('760', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31653 INSERT INTO `marc_subfield_structure` VALUES ('760', 'b', 'Edition', 'Edition', 0, 0, NULL, -6, NULL, NULL, '', NULL, 0, 'IR', '', '');
31654 INSERT INTO `marc_subfield_structure` VALUES ('760', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31655 INSERT INTO `marc_subfield_structure` VALUES ('760', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31656 INSERT INTO `marc_subfield_structure` VALUES ('760', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31657 INSERT INTO `marc_subfield_structure` VALUES ('760', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31658 INSERT INTO `marc_subfield_structure` VALUES ('760', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31659 INSERT INTO `marc_subfield_structure` VALUES ('760', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31660 INSERT INTO `marc_subfield_structure` VALUES ('760', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31661 INSERT INTO `marc_subfield_structure` VALUES ('760', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31662 INSERT INTO `marc_subfield_structure` VALUES ('760', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31663 INSERT INTO `marc_subfield_structure` VALUES ('760', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31664 INSERT INTO `marc_subfield_structure` VALUES ('760', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31665 INSERT INTO `marc_subfield_structure` VALUES ('760', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31666 INSERT INTO `marc_subfield_structure` VALUES ('760', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31667 INSERT INTO `marc_subfield_structure` VALUES ('760', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31668 INSERT INTO `marc_subfield_structure` VALUES ('762', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31669 INSERT INTO `marc_subfield_structure` VALUES ('762', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31670 INSERT INTO `marc_subfield_structure` VALUES ('762', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31671 INSERT INTO `marc_subfield_structure` VALUES ('762', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31672 INSERT INTO `marc_subfield_structure` VALUES ('762', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31673 INSERT INTO `marc_subfield_structure` VALUES ('762', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31674 INSERT INTO `marc_subfield_structure` VALUES ('762', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31675 INSERT INTO `marc_subfield_structure` VALUES ('762', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31676 INSERT INTO `marc_subfield_structure` VALUES ('762', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31677 INSERT INTO `marc_subfield_structure` VALUES ('762', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31678 INSERT INTO `marc_subfield_structure` VALUES ('762', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31679 INSERT INTO `marc_subfield_structure` VALUES ('762', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31680 INSERT INTO `marc_subfield_structure` VALUES ('762', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31681 INSERT INTO `marc_subfield_structure` VALUES ('762', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31682 INSERT INTO `marc_subfield_structure` VALUES ('762', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31683 INSERT INTO `marc_subfield_structure` VALUES ('762', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31684 INSERT INTO `marc_subfield_structure` VALUES ('762', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31685 INSERT INTO `marc_subfield_structure` VALUES ('762', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31686 INSERT INTO `marc_subfield_structure` VALUES ('762', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31687 INSERT INTO `marc_subfield_structure` VALUES ('765', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31688 INSERT INTO `marc_subfield_structure` VALUES ('765', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31689 INSERT INTO `marc_subfield_structure` VALUES ('765', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31690 INSERT INTO `marc_subfield_structure` VALUES ('765', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31691 INSERT INTO `marc_subfield_structure` VALUES ('765', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31692 INSERT INTO `marc_subfield_structure` VALUES ('765', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31693 INSERT INTO `marc_subfield_structure` VALUES ('765', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31694 INSERT INTO `marc_subfield_structure` VALUES ('765', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31695 INSERT INTO `marc_subfield_structure` VALUES ('765', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31696 INSERT INTO `marc_subfield_structure` VALUES ('765', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31697 INSERT INTO `marc_subfield_structure` VALUES ('765', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31698 INSERT INTO `marc_subfield_structure` VALUES ('765', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31699 INSERT INTO `marc_subfield_structure` VALUES ('765', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31700 INSERT INTO `marc_subfield_structure` VALUES ('765', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31701 INSERT INTO `marc_subfield_structure` VALUES ('765', 'q', 'Parallel title (BK SE)  [OBSOLETE]', 'Parallel title (BK SE)  [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31702 INSERT INTO `marc_subfield_structure` VALUES ('765', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31703 INSERT INTO `marc_subfield_structure` VALUES ('765', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31704 INSERT INTO `marc_subfield_structure` VALUES ('765', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31705 INSERT INTO `marc_subfield_structure` VALUES ('765', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31706 INSERT INTO `marc_subfield_structure` VALUES ('765', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31707 INSERT INTO `marc_subfield_structure` VALUES ('765', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31708 INSERT INTO `marc_subfield_structure` VALUES ('765', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31709 INSERT INTO `marc_subfield_structure` VALUES ('765', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31710 INSERT INTO `marc_subfield_structure` VALUES ('767', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31711 INSERT INTO `marc_subfield_structure` VALUES ('767', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31712 INSERT INTO `marc_subfield_structure` VALUES ('767', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31713 INSERT INTO `marc_subfield_structure` VALUES ('767', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31714 INSERT INTO `marc_subfield_structure` VALUES ('767', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31715 INSERT INTO `marc_subfield_structure` VALUES ('767', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31716 INSERT INTO `marc_subfield_structure` VALUES ('767', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31717 INSERT INTO `marc_subfield_structure` VALUES ('767', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31718 INSERT INTO `marc_subfield_structure` VALUES ('767', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31719 INSERT INTO `marc_subfield_structure` VALUES ('767', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31720 INSERT INTO `marc_subfield_structure` VALUES ('767', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31721 INSERT INTO `marc_subfield_structure` VALUES ('767', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31722 INSERT INTO `marc_subfield_structure` VALUES ('767', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31723 INSERT INTO `marc_subfield_structure` VALUES ('767', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31724 INSERT INTO `marc_subfield_structure` VALUES ('767', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31725 INSERT INTO `marc_subfield_structure` VALUES ('767', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31726 INSERT INTO `marc_subfield_structure` VALUES ('767', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31727 INSERT INTO `marc_subfield_structure` VALUES ('767', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31728 INSERT INTO `marc_subfield_structure` VALUES ('767', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31729 INSERT INTO `marc_subfield_structure` VALUES ('767', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31730 INSERT INTO `marc_subfield_structure` VALUES ('767', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31731 INSERT INTO `marc_subfield_structure` VALUES ('767', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31732 INSERT INTO `marc_subfield_structure` VALUES ('767', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31733 INSERT INTO `marc_subfield_structure` VALUES ('770', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31734 INSERT INTO `marc_subfield_structure` VALUES ('770', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31735 INSERT INTO `marc_subfield_structure` VALUES ('770', '8', 'Field link and sequence number', 'Field link and sequence number ', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31736 INSERT INTO `marc_subfield_structure` VALUES ('770', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31737 INSERT INTO `marc_subfield_structure` VALUES ('770', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31738 INSERT INTO `marc_subfield_structure` VALUES ('770', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31739 INSERT INTO `marc_subfield_structure` VALUES ('770', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31740 INSERT INTO `marc_subfield_structure` VALUES ('770', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31741 INSERT INTO `marc_subfield_structure` VALUES ('770', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31742 INSERT INTO `marc_subfield_structure` VALUES ('770', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31743 INSERT INTO `marc_subfield_structure` VALUES ('770', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31744 INSERT INTO `marc_subfield_structure` VALUES ('770', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31745 INSERT INTO `marc_subfield_structure` VALUES ('770', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31746 INSERT INTO `marc_subfield_structure` VALUES ('770', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31747 INSERT INTO `marc_subfield_structure` VALUES ('770', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31748 INSERT INTO `marc_subfield_structure` VALUES ('770', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31749 INSERT INTO `marc_subfield_structure` VALUES ('770', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31750 INSERT INTO `marc_subfield_structure` VALUES ('770', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31751 INSERT INTO `marc_subfield_structure` VALUES ('770', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31752 INSERT INTO `marc_subfield_structure` VALUES ('770', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31753 INSERT INTO `marc_subfield_structure` VALUES ('770', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31754 INSERT INTO `marc_subfield_structure` VALUES ('770', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31755 INSERT INTO `marc_subfield_structure` VALUES ('770', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31756 INSERT INTO `marc_subfield_structure` VALUES ('772', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31757 INSERT INTO `marc_subfield_structure` VALUES ('772', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31758 INSERT INTO `marc_subfield_structure` VALUES ('772', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31759 INSERT INTO `marc_subfield_structure` VALUES ('772', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31760 INSERT INTO `marc_subfield_structure` VALUES ('772', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31761 INSERT INTO `marc_subfield_structure` VALUES ('772', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31762 INSERT INTO `marc_subfield_structure` VALUES ('772', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31763 INSERT INTO `marc_subfield_structure` VALUES ('772', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31764 INSERT INTO `marc_subfield_structure` VALUES ('772', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31765 INSERT INTO `marc_subfield_structure` VALUES ('772', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31766 INSERT INTO `marc_subfield_structure` VALUES ('772', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31767 INSERT INTO `marc_subfield_structure` VALUES ('772', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31768 INSERT INTO `marc_subfield_structure` VALUES ('772', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31769 INSERT INTO `marc_subfield_structure` VALUES ('772', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31770 INSERT INTO `marc_subfield_structure` VALUES ('772', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31771 INSERT INTO `marc_subfield_structure` VALUES ('772', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31772 INSERT INTO `marc_subfield_structure` VALUES ('772', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31773 INSERT INTO `marc_subfield_structure` VALUES ('772', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31774 INSERT INTO `marc_subfield_structure` VALUES ('772', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31775 INSERT INTO `marc_subfield_structure` VALUES ('772', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31776 INSERT INTO `marc_subfield_structure` VALUES ('772', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31777 INSERT INTO `marc_subfield_structure` VALUES ('772', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31778 INSERT INTO `marc_subfield_structure` VALUES ('772', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31779 INSERT INTO `marc_subfield_structure` VALUES ('773', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31780 INSERT INTO `marc_subfield_structure` VALUES ('773', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31781 INSERT INTO `marc_subfield_structure` VALUES ('773', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31782 INSERT INTO `marc_subfield_structure` VALUES ('773', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31783 INSERT INTO `marc_subfield_structure` VALUES ('773', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31784 INSERT INTO `marc_subfield_structure` VALUES ('773', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31785 INSERT INTO `marc_subfield_structure` VALUES ('773', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31786 INSERT INTO `marc_subfield_structure` VALUES ('773', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31787 INSERT INTO `marc_subfield_structure` VALUES ('773', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31788 INSERT INTO `marc_subfield_structure` VALUES ('773', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31789 INSERT INTO `marc_subfield_structure` VALUES ('773', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31790 INSERT INTO `marc_subfield_structure` VALUES ('773', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31791 INSERT INTO `marc_subfield_structure` VALUES ('773', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31792 INSERT INTO `marc_subfield_structure` VALUES ('773', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31793 INSERT INTO `marc_subfield_structure` VALUES ('773', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31794 INSERT INTO `marc_subfield_structure` VALUES ('773', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31795 INSERT INTO `marc_subfield_structure` VALUES ('773', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31796 INSERT INTO `marc_subfield_structure` VALUES ('773', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31797 INSERT INTO `marc_subfield_structure` VALUES ('773', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31798 INSERT INTO `marc_subfield_structure` VALUES ('773', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31799 INSERT INTO `marc_subfield_structure` VALUES ('773', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31800 INSERT INTO `marc_subfield_structure` VALUES ('773', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31801 INSERT INTO `marc_subfield_structure` VALUES ('773', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31802 INSERT INTO `marc_subfield_structure` VALUES ('774', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31803 INSERT INTO `marc_subfield_structure` VALUES ('774', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31804 INSERT INTO `marc_subfield_structure` VALUES ('774', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31805 INSERT INTO `marc_subfield_structure` VALUES ('774', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31806 INSERT INTO `marc_subfield_structure` VALUES ('774', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31807 INSERT INTO `marc_subfield_structure` VALUES ('774', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31808 INSERT INTO `marc_subfield_structure` VALUES ('774', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31809 INSERT INTO `marc_subfield_structure` VALUES ('774', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31810 INSERT INTO `marc_subfield_structure` VALUES ('774', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31811 INSERT INTO `marc_subfield_structure` VALUES ('774', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31812 INSERT INTO `marc_subfield_structure` VALUES ('774', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31813 INSERT INTO `marc_subfield_structure` VALUES ('774', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31814 INSERT INTO `marc_subfield_structure` VALUES ('774', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31815 INSERT INTO `marc_subfield_structure` VALUES ('774', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31816 INSERT INTO `marc_subfield_structure` VALUES ('774', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31817 INSERT INTO `marc_subfield_structure` VALUES ('774', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31818 INSERT INTO `marc_subfield_structure` VALUES ('774', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31819 INSERT INTO `marc_subfield_structure` VALUES ('774', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31820 INSERT INTO `marc_subfield_structure` VALUES ('774', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31821 INSERT INTO `marc_subfield_structure` VALUES ('774', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31822 INSERT INTO `marc_subfield_structure` VALUES ('774', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31823 INSERT INTO `marc_subfield_structure` VALUES ('774', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31824 INSERT INTO `marc_subfield_structure` VALUES ('775', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31825 INSERT INTO `marc_subfield_structure` VALUES ('775', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31826 INSERT INTO `marc_subfield_structure` VALUES ('775', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31827 INSERT INTO `marc_subfield_structure` VALUES ('775', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31828 INSERT INTO `marc_subfield_structure` VALUES ('775', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31829 INSERT INTO `marc_subfield_structure` VALUES ('775', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31830 INSERT INTO `marc_subfield_structure` VALUES ('775', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31831 INSERT INTO `marc_subfield_structure` VALUES ('775', 'e', 'Language code', 'Language code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31832 INSERT INTO `marc_subfield_structure` VALUES ('775', 'f', 'Country code', 'Country code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31833 INSERT INTO `marc_subfield_structure` VALUES ('775', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31834 INSERT INTO `marc_subfield_structure` VALUES ('775', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31835 INSERT INTO `marc_subfield_structure` VALUES ('775', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31836 INSERT INTO `marc_subfield_structure` VALUES ('775', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31837 INSERT INTO `marc_subfield_structure` VALUES ('775', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31838 INSERT INTO `marc_subfield_structure` VALUES ('775', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31839 INSERT INTO `marc_subfield_structure` VALUES ('775', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31840 INSERT INTO `marc_subfield_structure` VALUES ('775', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31841 INSERT INTO `marc_subfield_structure` VALUES ('775', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31842 INSERT INTO `marc_subfield_structure` VALUES ('775', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31843 INSERT INTO `marc_subfield_structure` VALUES ('775', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31844 INSERT INTO `marc_subfield_structure` VALUES ('775', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31845 INSERT INTO `marc_subfield_structure` VALUES ('775', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31846 INSERT INTO `marc_subfield_structure` VALUES ('775', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31847 INSERT INTO `marc_subfield_structure` VALUES ('775', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31848 INSERT INTO `marc_subfield_structure` VALUES ('775', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31849 INSERT INTO `marc_subfield_structure` VALUES ('776', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31850 INSERT INTO `marc_subfield_structure` VALUES ('776', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31851 INSERT INTO `marc_subfield_structure` VALUES ('776', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31852 INSERT INTO `marc_subfield_structure` VALUES ('776', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31853 INSERT INTO `marc_subfield_structure` VALUES ('776', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31854 INSERT INTO `marc_subfield_structure` VALUES ('776', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31855 INSERT INTO `marc_subfield_structure` VALUES ('776', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31856 INSERT INTO `marc_subfield_structure` VALUES ('776', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31857 INSERT INTO `marc_subfield_structure` VALUES ('776', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31858 INSERT INTO `marc_subfield_structure` VALUES ('776', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31859 INSERT INTO `marc_subfield_structure` VALUES ('776', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31860 INSERT INTO `marc_subfield_structure` VALUES ('776', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31861 INSERT INTO `marc_subfield_structure` VALUES ('776', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31862 INSERT INTO `marc_subfield_structure` VALUES ('776', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31863 INSERT INTO `marc_subfield_structure` VALUES ('776', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31864 INSERT INTO `marc_subfield_structure` VALUES ('776', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31865 INSERT INTO `marc_subfield_structure` VALUES ('776', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31866 INSERT INTO `marc_subfield_structure` VALUES ('776', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31867 INSERT INTO `marc_subfield_structure` VALUES ('776', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31868 INSERT INTO `marc_subfield_structure` VALUES ('776', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31869 INSERT INTO `marc_subfield_structure` VALUES ('776', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31870 INSERT INTO `marc_subfield_structure` VALUES ('776', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31871 INSERT INTO `marc_subfield_structure` VALUES ('776', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31872 INSERT INTO `marc_subfield_structure` VALUES ('777', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31873 INSERT INTO `marc_subfield_structure` VALUES ('777', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31874 INSERT INTO `marc_subfield_structure` VALUES ('777', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31875 INSERT INTO `marc_subfield_structure` VALUES ('777', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31876 INSERT INTO `marc_subfield_structure` VALUES ('777', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31877 INSERT INTO `marc_subfield_structure` VALUES ('777', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31878 INSERT INTO `marc_subfield_structure` VALUES ('777', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31879 INSERT INTO `marc_subfield_structure` VALUES ('777', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31880 INSERT INTO `marc_subfield_structure` VALUES ('777', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31881 INSERT INTO `marc_subfield_structure` VALUES ('777', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31882 INSERT INTO `marc_subfield_structure` VALUES ('777', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31883 INSERT INTO `marc_subfield_structure` VALUES ('777', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31884 INSERT INTO `marc_subfield_structure` VALUES ('777', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31885 INSERT INTO `marc_subfield_structure` VALUES ('777', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31886 INSERT INTO `marc_subfield_structure` VALUES ('777', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31887 INSERT INTO `marc_subfield_structure` VALUES ('777', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31888 INSERT INTO `marc_subfield_structure` VALUES ('777', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31889 INSERT INTO `marc_subfield_structure` VALUES ('777', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31890 INSERT INTO `marc_subfield_structure` VALUES ('777', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31891 INSERT INTO `marc_subfield_structure` VALUES ('777', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31892 INSERT INTO `marc_subfield_structure` VALUES ('780', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31893 INSERT INTO `marc_subfield_structure` VALUES ('780', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31894 INSERT INTO `marc_subfield_structure` VALUES ('780', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31895 INSERT INTO `marc_subfield_structure` VALUES ('780', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31896 INSERT INTO `marc_subfield_structure` VALUES ('780', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31897 INSERT INTO `marc_subfield_structure` VALUES ('780', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31898 INSERT INTO `marc_subfield_structure` VALUES ('780', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31899 INSERT INTO `marc_subfield_structure` VALUES ('780', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31900 INSERT INTO `marc_subfield_structure` VALUES ('780', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31901 INSERT INTO `marc_subfield_structure` VALUES ('780', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31902 INSERT INTO `marc_subfield_structure` VALUES ('780', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31903 INSERT INTO `marc_subfield_structure` VALUES ('780', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31904 INSERT INTO `marc_subfield_structure` VALUES ('780', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31905 INSERT INTO `marc_subfield_structure` VALUES ('780', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31906 INSERT INTO `marc_subfield_structure` VALUES ('780', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31907 INSERT INTO `marc_subfield_structure` VALUES ('780', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31908 INSERT INTO `marc_subfield_structure` VALUES ('780', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31909 INSERT INTO `marc_subfield_structure` VALUES ('780', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31910 INSERT INTO `marc_subfield_structure` VALUES ('780', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31911 INSERT INTO `marc_subfield_structure` VALUES ('780', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31912 INSERT INTO `marc_subfield_structure` VALUES ('780', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31913 INSERT INTO `marc_subfield_structure` VALUES ('780', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31914 INSERT INTO `marc_subfield_structure` VALUES ('780', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31915 INSERT INTO `marc_subfield_structure` VALUES ('785', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31916 INSERT INTO `marc_subfield_structure` VALUES ('785', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31917 INSERT INTO `marc_subfield_structure` VALUES ('785', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31918 INSERT INTO `marc_subfield_structure` VALUES ('785', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31919 INSERT INTO `marc_subfield_structure` VALUES ('785', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31920 INSERT INTO `marc_subfield_structure` VALUES ('785', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31921 INSERT INTO `marc_subfield_structure` VALUES ('785', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31922 INSERT INTO `marc_subfield_structure` VALUES ('785', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31923 INSERT INTO `marc_subfield_structure` VALUES ('785', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31924 INSERT INTO `marc_subfield_structure` VALUES ('785', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31925 INSERT INTO `marc_subfield_structure` VALUES ('785', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31926 INSERT INTO `marc_subfield_structure` VALUES ('785', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31927 INSERT INTO `marc_subfield_structure` VALUES ('785', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31928 INSERT INTO `marc_subfield_structure` VALUES ('785', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31929 INSERT INTO `marc_subfield_structure` VALUES ('785', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31930 INSERT INTO `marc_subfield_structure` VALUES ('785', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31931 INSERT INTO `marc_subfield_structure` VALUES ('785', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31932 INSERT INTO `marc_subfield_structure` VALUES ('785', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31933 INSERT INTO `marc_subfield_structure` VALUES ('785', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31934 INSERT INTO `marc_subfield_structure` VALUES ('785', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31935 INSERT INTO `marc_subfield_structure` VALUES ('785', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31936 INSERT INTO `marc_subfield_structure` VALUES ('785', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31937 INSERT INTO `marc_subfield_structure` VALUES ('785', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31938 INSERT INTO `marc_subfield_structure` VALUES ('786', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31939 INSERT INTO `marc_subfield_structure` VALUES ('786', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31940 INSERT INTO `marc_subfield_structure` VALUES ('786', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31941 INSERT INTO `marc_subfield_structure` VALUES ('786', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31942 INSERT INTO `marc_subfield_structure` VALUES ('786', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31943 INSERT INTO `marc_subfield_structure` VALUES ('786', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31944 INSERT INTO `marc_subfield_structure` VALUES ('786', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31945 INSERT INTO `marc_subfield_structure` VALUES ('786', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31946 INSERT INTO `marc_subfield_structure` VALUES ('786', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31947 INSERT INTO `marc_subfield_structure` VALUES ('786', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31948 INSERT INTO `marc_subfield_structure` VALUES ('786', 'j', 'Period of content', 'Period of content', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31949 INSERT INTO `marc_subfield_structure` VALUES ('786', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31950 INSERT INTO `marc_subfield_structure` VALUES ('786', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31951 INSERT INTO `marc_subfield_structure` VALUES ('786', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31952 INSERT INTO `marc_subfield_structure` VALUES ('786', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31953 INSERT INTO `marc_subfield_structure` VALUES ('786', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31954 INSERT INTO `marc_subfield_structure` VALUES ('786', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31955 INSERT INTO `marc_subfield_structure` VALUES ('786', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31956 INSERT INTO `marc_subfield_structure` VALUES ('786', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31957 INSERT INTO `marc_subfield_structure` VALUES ('786', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31958 INSERT INTO `marc_subfield_structure` VALUES ('786', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31959 INSERT INTO `marc_subfield_structure` VALUES ('786', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31960 INSERT INTO `marc_subfield_structure` VALUES ('786', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31961 INSERT INTO `marc_subfield_structure` VALUES ('786', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31962 INSERT INTO `marc_subfield_structure` VALUES ('787', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31963 INSERT INTO `marc_subfield_structure` VALUES ('787', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31964 INSERT INTO `marc_subfield_structure` VALUES ('787', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31965 INSERT INTO `marc_subfield_structure` VALUES ('787', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31966 INSERT INTO `marc_subfield_structure` VALUES ('787', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31967 INSERT INTO `marc_subfield_structure` VALUES ('787', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31968 INSERT INTO `marc_subfield_structure` VALUES ('787', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31969 INSERT INTO `marc_subfield_structure` VALUES ('787', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31970 INSERT INTO `marc_subfield_structure` VALUES ('787', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31971 INSERT INTO `marc_subfield_structure` VALUES ('787', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31972 INSERT INTO `marc_subfield_structure` VALUES ('787', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31973 INSERT INTO `marc_subfield_structure` VALUES ('787', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31974 INSERT INTO `marc_subfield_structure` VALUES ('787', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31975 INSERT INTO `marc_subfield_structure` VALUES ('787', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31976 INSERT INTO `marc_subfield_structure` VALUES ('787', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31977 INSERT INTO `marc_subfield_structure` VALUES ('787', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31978 INSERT INTO `marc_subfield_structure` VALUES ('787', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31979 INSERT INTO `marc_subfield_structure` VALUES ('787', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31980 INSERT INTO `marc_subfield_structure` VALUES ('787', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31981 INSERT INTO `marc_subfield_structure` VALUES ('787', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31982 INSERT INTO `marc_subfield_structure` VALUES ('787', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31983 INSERT INTO `marc_subfield_structure` VALUES ('787', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31984 INSERT INTO `marc_subfield_structure` VALUES ('787', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
31985 INSERT INTO `marc_subfield_structure` VALUES ('789', '%', '%', '%', 0, 0, '', 7, '', '', '', 0, -6, 'IR', '', '');
31986 INSERT INTO `marc_subfield_structure` VALUES ('789', '2', '2', '2', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31987 INSERT INTO `marc_subfield_structure` VALUES ('789', '3', '3', '3', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31988 INSERT INTO `marc_subfield_structure` VALUES ('789', '4', '4', '4', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31989 INSERT INTO `marc_subfield_structure` VALUES ('789', '5', '5', '5', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31990 INSERT INTO `marc_subfield_structure` VALUES ('789', '6', '6', '6', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31991 INSERT INTO `marc_subfield_structure` VALUES ('789', '7', '7', '7', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31992 INSERT INTO `marc_subfield_structure` VALUES ('789', '8', '8', '8', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31993 INSERT INTO `marc_subfield_structure` VALUES ('789', '9', '9', '9', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31994 INSERT INTO `marc_subfield_structure` VALUES ('789', 'a', 'a', 'a', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31995 INSERT INTO `marc_subfield_structure` VALUES ('789', 'b', 'b', 'b', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31996 INSERT INTO `marc_subfield_structure` VALUES ('789', 'c', 'c', 'c', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31997 INSERT INTO `marc_subfield_structure` VALUES ('789', 'd', 'd', 'd', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31998 INSERT INTO `marc_subfield_structure` VALUES ('789', 'e', 'e', 'e', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
31999 INSERT INTO `marc_subfield_structure` VALUES ('789', 'f', 'f', 'f', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32000 INSERT INTO `marc_subfield_structure` VALUES ('789', 'g', 'g', 'g', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32001 INSERT INTO `marc_subfield_structure` VALUES ('789', 'h', 'h', 'h', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32002 INSERT INTO `marc_subfield_structure` VALUES ('789', 'i', 'i', 'i', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32003 INSERT INTO `marc_subfield_structure` VALUES ('789', 'j', 'j', 'j', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32004 INSERT INTO `marc_subfield_structure` VALUES ('789', 'k', 'k', 'k', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32005 INSERT INTO `marc_subfield_structure` VALUES ('789', 'l', 'l', 'l', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32006 INSERT INTO `marc_subfield_structure` VALUES ('789', 'm', 'm', 'm', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32007 INSERT INTO `marc_subfield_structure` VALUES ('789', 'n', 'n', 'n', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32008 INSERT INTO `marc_subfield_structure` VALUES ('789', 'o', 'o', 'o', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32009 INSERT INTO `marc_subfield_structure` VALUES ('789', 'p', 'p', 'p', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32010 INSERT INTO `marc_subfield_structure` VALUES ('789', 'q', 'q', 'q', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32011 INSERT INTO `marc_subfield_structure` VALUES ('789', 'r', 'r', 'r', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32012 INSERT INTO `marc_subfield_structure` VALUES ('789', 's', 's', 's', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32013 INSERT INTO `marc_subfield_structure` VALUES ('789', 't', 't', 't', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32014 INSERT INTO `marc_subfield_structure` VALUES ('789', 'u', 'u', 'u', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32015 INSERT INTO `marc_subfield_structure` VALUES ('789', 'v', 'v', 'v', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32016 INSERT INTO `marc_subfield_structure` VALUES ('789', 'w', 'w', 'w', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32017 INSERT INTO `marc_subfield_structure` VALUES ('789', 'x', 'x', 'x', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32018 INSERT INTO `marc_subfield_structure` VALUES ('789', 'y', 'y', 'y', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32019 INSERT INTO `marc_subfield_structure` VALUES ('789', 'z', 'z', 'z', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32020 INSERT INTO `marc_subfield_structure` VALUES ('796', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'IR', '', '');
32021 INSERT INTO `marc_subfield_structure` VALUES ('796', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32022 INSERT INTO `marc_subfield_structure` VALUES ('796', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32023 INSERT INTO `marc_subfield_structure` VALUES ('796', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32024 INSERT INTO `marc_subfield_structure` VALUES ('796', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32025 INSERT INTO `marc_subfield_structure` VALUES ('796', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32026 INSERT INTO `marc_subfield_structure` VALUES ('796', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'IR', '', '');
32027 INSERT INTO `marc_subfield_structure` VALUES ('796', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32028 INSERT INTO `marc_subfield_structure` VALUES ('796', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32029 INSERT INTO `marc_subfield_structure` VALUES ('796', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32030 INSERT INTO `marc_subfield_structure` VALUES ('796', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32031 INSERT INTO `marc_subfield_structure` VALUES ('796', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32032 INSERT INTO `marc_subfield_structure` VALUES ('796', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32033 INSERT INTO `marc_subfield_structure` VALUES ('796', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32034 INSERT INTO `marc_subfield_structure` VALUES ('796', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32035 INSERT INTO `marc_subfield_structure` VALUES ('796', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32036 INSERT INTO `marc_subfield_structure` VALUES ('796', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32037 INSERT INTO `marc_subfield_structure` VALUES ('796', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32038 INSERT INTO `marc_subfield_structure` VALUES ('796', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32039 INSERT INTO `marc_subfield_structure` VALUES ('796', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32040 INSERT INTO `marc_subfield_structure` VALUES ('796', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32041 INSERT INTO `marc_subfield_structure` VALUES ('796', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32042 INSERT INTO `marc_subfield_structure` VALUES ('796', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32043 INSERT INTO `marc_subfield_structure` VALUES ('796', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32044 INSERT INTO `marc_subfield_structure` VALUES ('796', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32045 INSERT INTO `marc_subfield_structure` VALUES ('796', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32046 INSERT INTO `marc_subfield_structure` VALUES ('796', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32047 INSERT INTO `marc_subfield_structure` VALUES ('796', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32048 INSERT INTO `marc_subfield_structure` VALUES ('797', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'IR', '', '');
32049 INSERT INTO `marc_subfield_structure` VALUES ('797', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32050 INSERT INTO `marc_subfield_structure` VALUES ('797', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32051 INSERT INTO `marc_subfield_structure` VALUES ('797', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32052 INSERT INTO `marc_subfield_structure` VALUES ('797', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32053 INSERT INTO `marc_subfield_structure` VALUES ('797', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32054 INSERT INTO `marc_subfield_structure` VALUES ('797', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'IR', '', '');
32055 INSERT INTO `marc_subfield_structure` VALUES ('797', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32056 INSERT INTO `marc_subfield_structure` VALUES ('797', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32057 INSERT INTO `marc_subfield_structure` VALUES ('797', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32058 INSERT INTO `marc_subfield_structure` VALUES ('797', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32059 INSERT INTO `marc_subfield_structure` VALUES ('797', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32060 INSERT INTO `marc_subfield_structure` VALUES ('797', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32061 INSERT INTO `marc_subfield_structure` VALUES ('797', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32062 INSERT INTO `marc_subfield_structure` VALUES ('797', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32063 INSERT INTO `marc_subfield_structure` VALUES ('797', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32064 INSERT INTO `marc_subfield_structure` VALUES ('797', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32065 INSERT INTO `marc_subfield_structure` VALUES ('797', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32066 INSERT INTO `marc_subfield_structure` VALUES ('797', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32067 INSERT INTO `marc_subfield_structure` VALUES ('797', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32068 INSERT INTO `marc_subfield_structure` VALUES ('797', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32069 INSERT INTO `marc_subfield_structure` VALUES ('797', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32070 INSERT INTO `marc_subfield_structure` VALUES ('797', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32071 INSERT INTO `marc_subfield_structure` VALUES ('797', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32072 INSERT INTO `marc_subfield_structure` VALUES ('797', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32073 INSERT INTO `marc_subfield_structure` VALUES ('797', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32074 INSERT INTO `marc_subfield_structure` VALUES ('798', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'IR', '', '');
32075 INSERT INTO `marc_subfield_structure` VALUES ('798', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32076 INSERT INTO `marc_subfield_structure` VALUES ('798', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32077 INSERT INTO `marc_subfield_structure` VALUES ('798', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32078 INSERT INTO `marc_subfield_structure` VALUES ('798', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32079 INSERT INTO `marc_subfield_structure` VALUES ('798', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32080 INSERT INTO `marc_subfield_structure` VALUES ('798', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'IR', '', '');
32081 INSERT INTO `marc_subfield_structure` VALUES ('798', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32082 INSERT INTO `marc_subfield_structure` VALUES ('798', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32083 INSERT INTO `marc_subfield_structure` VALUES ('798', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32084 INSERT INTO `marc_subfield_structure` VALUES ('798', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32085 INSERT INTO `marc_subfield_structure` VALUES ('798', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32086 INSERT INTO `marc_subfield_structure` VALUES ('798', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32087 INSERT INTO `marc_subfield_structure` VALUES ('798', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32088 INSERT INTO `marc_subfield_structure` VALUES ('798', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32089 INSERT INTO `marc_subfield_structure` VALUES ('798', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32090 INSERT INTO `marc_subfield_structure` VALUES ('798', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32091 INSERT INTO `marc_subfield_structure` VALUES ('798', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32092 INSERT INTO `marc_subfield_structure` VALUES ('798', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32093 INSERT INTO `marc_subfield_structure` VALUES ('798', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32094 INSERT INTO `marc_subfield_structure` VALUES ('798', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32095 INSERT INTO `marc_subfield_structure` VALUES ('798', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32096 INSERT INTO `marc_subfield_structure` VALUES ('798', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32097 INSERT INTO `marc_subfield_structure` VALUES ('798', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'IR', '', '');
32098 INSERT INTO `marc_subfield_structure` VALUES ('799', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'IR', '', '');
32099 INSERT INTO `marc_subfield_structure` VALUES ('799', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32100 INSERT INTO `marc_subfield_structure` VALUES ('799', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32101 INSERT INTO `marc_subfield_structure` VALUES ('799', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32102 INSERT INTO `marc_subfield_structure` VALUES ('799', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32103 INSERT INTO `marc_subfield_structure` VALUES ('799', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'IR', '', '');
32104 INSERT INTO `marc_subfield_structure` VALUES ('799', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32105 INSERT INTO `marc_subfield_structure` VALUES ('799', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32106 INSERT INTO `marc_subfield_structure` VALUES ('799', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32107 INSERT INTO `marc_subfield_structure` VALUES ('799', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32108 INSERT INTO `marc_subfield_structure` VALUES ('799', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32109 INSERT INTO `marc_subfield_structure` VALUES ('799', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32110 INSERT INTO `marc_subfield_structure` VALUES ('799', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32111 INSERT INTO `marc_subfield_structure` VALUES ('799', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32112 INSERT INTO `marc_subfield_structure` VALUES ('799', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32113 INSERT INTO `marc_subfield_structure` VALUES ('799', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32114 INSERT INTO `marc_subfield_structure` VALUES ('799', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32115 INSERT INTO `marc_subfield_structure` VALUES ('799', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32116 INSERT INTO `marc_subfield_structure` VALUES ('799', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32117 INSERT INTO `marc_subfield_structure` VALUES ('799', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32118 INSERT INTO `marc_subfield_structure` VALUES ('799', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'IR', '', '');
32119 INSERT INTO `marc_subfield_structure` VALUES ('800', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32120 INSERT INTO `marc_subfield_structure` VALUES ('800', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32121 INSERT INTO `marc_subfield_structure` VALUES ('800', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32122 INSERT INTO `marc_subfield_structure` VALUES ('800', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'IR', '', '');
32123 INSERT INTO `marc_subfield_structure` VALUES ('800', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32124 INSERT INTO `marc_subfield_structure` VALUES ('800', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32125 INSERT INTO `marc_subfield_structure` VALUES ('800', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32126 INSERT INTO `marc_subfield_structure` VALUES ('800', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32127 INSERT INTO `marc_subfield_structure` VALUES ('800', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32128 INSERT INTO `marc_subfield_structure` VALUES ('800', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32129 INSERT INTO `marc_subfield_structure` VALUES ('800', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32130 INSERT INTO `marc_subfield_structure` VALUES ('800', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32131 INSERT INTO `marc_subfield_structure` VALUES ('800', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32132 INSERT INTO `marc_subfield_structure` VALUES ('800', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32133 INSERT INTO `marc_subfield_structure` VALUES ('800', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32134 INSERT INTO `marc_subfield_structure` VALUES ('800', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32135 INSERT INTO `marc_subfield_structure` VALUES ('800', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32136 INSERT INTO `marc_subfield_structure` VALUES ('800', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32137 INSERT INTO `marc_subfield_structure` VALUES ('800', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32138 INSERT INTO `marc_subfield_structure` VALUES ('800', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32139 INSERT INTO `marc_subfield_structure` VALUES ('800', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32140 INSERT INTO `marc_subfield_structure` VALUES ('800', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32141 INSERT INTO `marc_subfield_structure` VALUES ('800', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32142 INSERT INTO `marc_subfield_structure` VALUES ('800', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32143 INSERT INTO `marc_subfield_structure` VALUES ('800', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32144 INSERT INTO `marc_subfield_structure` VALUES ('810', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32145 INSERT INTO `marc_subfield_structure` VALUES ('810', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32146 INSERT INTO `marc_subfield_structure` VALUES ('810', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32147 INSERT INTO `marc_subfield_structure` VALUES ('810', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'IR', '', '');
32148 INSERT INTO `marc_subfield_structure` VALUES ('810', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32149 INSERT INTO `marc_subfield_structure` VALUES ('810', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32150 INSERT INTO `marc_subfield_structure` VALUES ('810', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32151 INSERT INTO `marc_subfield_structure` VALUES ('810', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32152 INSERT INTO `marc_subfield_structure` VALUES ('810', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32153 INSERT INTO `marc_subfield_structure` VALUES ('810', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32154 INSERT INTO `marc_subfield_structure` VALUES ('810', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32155 INSERT INTO `marc_subfield_structure` VALUES ('810', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32156 INSERT INTO `marc_subfield_structure` VALUES ('810', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32157 INSERT INTO `marc_subfield_structure` VALUES ('810', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32158 INSERT INTO `marc_subfield_structure` VALUES ('810', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32159 INSERT INTO `marc_subfield_structure` VALUES ('810', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32160 INSERT INTO `marc_subfield_structure` VALUES ('810', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32161 INSERT INTO `marc_subfield_structure` VALUES ('810', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32162 INSERT INTO `marc_subfield_structure` VALUES ('810', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32163 INSERT INTO `marc_subfield_structure` VALUES ('810', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32164 INSERT INTO `marc_subfield_structure` VALUES ('810', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32165 INSERT INTO `marc_subfield_structure` VALUES ('810', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32166 INSERT INTO `marc_subfield_structure` VALUES ('810', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32167 INSERT INTO `marc_subfield_structure` VALUES ('811', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32168 INSERT INTO `marc_subfield_structure` VALUES ('811', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32169 INSERT INTO `marc_subfield_structure` VALUES ('811', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32170 INSERT INTO `marc_subfield_structure` VALUES ('811', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'IR', '', '');
32171 INSERT INTO `marc_subfield_structure` VALUES ('811', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32172 INSERT INTO `marc_subfield_structure` VALUES ('811', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32173 INSERT INTO `marc_subfield_structure` VALUES ('811', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32174 INSERT INTO `marc_subfield_structure` VALUES ('811', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32175 INSERT INTO `marc_subfield_structure` VALUES ('811', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32176 INSERT INTO `marc_subfield_structure` VALUES ('811', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32177 INSERT INTO `marc_subfield_structure` VALUES ('811', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32178 INSERT INTO `marc_subfield_structure` VALUES ('811', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32179 INSERT INTO `marc_subfield_structure` VALUES ('811', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32180 INSERT INTO `marc_subfield_structure` VALUES ('811', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32181 INSERT INTO `marc_subfield_structure` VALUES ('811', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32182 INSERT INTO `marc_subfield_structure` VALUES ('811', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32183 INSERT INTO `marc_subfield_structure` VALUES ('811', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32184 INSERT INTO `marc_subfield_structure` VALUES ('811', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32185 INSERT INTO `marc_subfield_structure` VALUES ('811', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32186 INSERT INTO `marc_subfield_structure` VALUES ('811', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32187 INSERT INTO `marc_subfield_structure` VALUES ('811', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32188 INSERT INTO `marc_subfield_structure` VALUES ('830', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32189 INSERT INTO `marc_subfield_structure` VALUES ('830', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32190 INSERT INTO `marc_subfield_structure` VALUES ('830', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'IR', '', '');
32191 INSERT INTO `marc_subfield_structure` VALUES ('830', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32192 INSERT INTO `marc_subfield_structure` VALUES ('830', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32193 INSERT INTO `marc_subfield_structure` VALUES ('830', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32194 INSERT INTO `marc_subfield_structure` VALUES ('830', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32195 INSERT INTO `marc_subfield_structure` VALUES ('830', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32196 INSERT INTO `marc_subfield_structure` VALUES ('830', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32197 INSERT INTO `marc_subfield_structure` VALUES ('830', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32198 INSERT INTO `marc_subfield_structure` VALUES ('830', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32199 INSERT INTO `marc_subfield_structure` VALUES ('830', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32200 INSERT INTO `marc_subfield_structure` VALUES ('830', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32201 INSERT INTO `marc_subfield_structure` VALUES ('830', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32202 INSERT INTO `marc_subfield_structure` VALUES ('830', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32203 INSERT INTO `marc_subfield_structure` VALUES ('830', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32204 INSERT INTO `marc_subfield_structure` VALUES ('830', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32205 INSERT INTO `marc_subfield_structure` VALUES ('830', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32206 INSERT INTO `marc_subfield_structure` VALUES ('840', 'a', 'Title', 'Title', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32207 INSERT INTO `marc_subfield_structure` VALUES ('840', 'h', 'Medium', 'Medium', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32208 INSERT INTO `marc_subfield_structure` VALUES ('840', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32209 INSERT INTO `marc_subfield_structure` VALUES ('841', 'a', 'Type of record', 'Type of record', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32210 INSERT INTO `marc_subfield_structure` VALUES ('841', 'b', 'Fixed-length data elements', 'Fixed-length data elements', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32211 INSERT INTO `marc_subfield_structure` VALUES ('841', 'e', 'Encoding level', 'Encoding level', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32212 INSERT INTO `marc_subfield_structure` VALUES ('842', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32213 INSERT INTO `marc_subfield_structure` VALUES ('842', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32214 INSERT INTO `marc_subfield_structure` VALUES ('842', 'a', 'Textual physical form designator', 'Textual physical form designator', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32215 INSERT INTO `marc_subfield_structure` VALUES ('843', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32216 INSERT INTO `marc_subfield_structure` VALUES ('843', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32217 INSERT INTO `marc_subfield_structure` VALUES ('843', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32218 INSERT INTO `marc_subfield_structure` VALUES ('843', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32219 INSERT INTO `marc_subfield_structure` VALUES ('843', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32220 INSERT INTO `marc_subfield_structure` VALUES ('843', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32221 INSERT INTO `marc_subfield_structure` VALUES ('843', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32222 INSERT INTO `marc_subfield_structure` VALUES ('843', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32223 INSERT INTO `marc_subfield_structure` VALUES ('843', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32224 INSERT INTO `marc_subfield_structure` VALUES ('843', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32225 INSERT INTO `marc_subfield_structure` VALUES ('843', 'm', 'Dates of publication and/or sequential designation of issues reproduced', 'Dates of publication and/or sequential designation of issues reproduced', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32226 INSERT INTO `marc_subfield_structure` VALUES ('843', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32227 INSERT INTO `marc_subfield_structure` VALUES ('844', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32228 INSERT INTO `marc_subfield_structure` VALUES ('844', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32229 INSERT INTO `marc_subfield_structure` VALUES ('844', 'a', 'Name of unit', 'Name of unit', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32230 INSERT INTO `marc_subfield_structure` VALUES ('845', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32231 INSERT INTO `marc_subfield_structure` VALUES ('845', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32232 INSERT INTO `marc_subfield_structure` VALUES ('845', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32233 INSERT INTO `marc_subfield_structure` VALUES ('845', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32234 INSERT INTO `marc_subfield_structure` VALUES ('845', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32235 INSERT INTO `marc_subfield_structure` VALUES ('845', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32236 INSERT INTO `marc_subfield_structure` VALUES ('845', 'c', 'Authorization', 'Authorization', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32237 INSERT INTO `marc_subfield_structure` VALUES ('845', 'd', 'Authorized users', 'Authorized users', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32238 INSERT INTO `marc_subfield_structure` VALUES ('850', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32239 INSERT INTO `marc_subfield_structure` VALUES ('850', 'a', 'Holding institution', 'Holding institution', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32240 INSERT INTO `marc_subfield_structure` VALUES ('850', 'b', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32241 INSERT INTO `marc_subfield_structure` VALUES ('850', 'd', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32242 INSERT INTO `marc_subfield_structure` VALUES ('850', 'e', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32243 INSERT INTO `marc_subfield_structure` VALUES ('851', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32244 INSERT INTO `marc_subfield_structure` VALUES ('851', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32245 INSERT INTO `marc_subfield_structure` VALUES ('851', 'a', 'Name (custodian or owner)', 'Name (custodian or owner)', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32246 INSERT INTO `marc_subfield_structure` VALUES ('851', 'b', 'Institutional division', 'Institutional division', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32247 INSERT INTO `marc_subfield_structure` VALUES ('851', 'c', 'Street address', 'Street address', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32248 INSERT INTO `marc_subfield_structure` VALUES ('851', 'd', 'Country', 'Country', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32249 INSERT INTO `marc_subfield_structure` VALUES ('851', 'e', 'Location of units', 'Location of units', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32250 INSERT INTO `marc_subfield_structure` VALUES ('851', 'f', 'Item number', 'Item number', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32251 INSERT INTO `marc_subfield_structure` VALUES ('851', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'IR', '', '');
32252 INSERT INTO `marc_subfield_structure` VALUES ('852', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32253 INSERT INTO `marc_subfield_structure` VALUES ('852', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32254 INSERT INTO `marc_subfield_structure` VALUES ('852', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32255 INSERT INTO `marc_subfield_structure` VALUES ('852', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32256 INSERT INTO `marc_subfield_structure` VALUES ('852', 'a', 'Location', 'Location', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32257 INSERT INTO `marc_subfield_structure` VALUES ('852', 'b', 'Sublocation or collection', 'Sublocation or collection', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32258 INSERT INTO `marc_subfield_structure` VALUES ('852', 'c', 'Shelving location', 'Shelving location', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32259 INSERT INTO `marc_subfield_structure` VALUES ('852', 'e', 'Address', 'Address', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32260 INSERT INTO `marc_subfield_structure` VALUES ('852', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32261 INSERT INTO `marc_subfield_structure` VALUES ('852', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32262 INSERT INTO `marc_subfield_structure` VALUES ('852', 'h', 'Classification part', 'Classification part', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32263 INSERT INTO `marc_subfield_structure` VALUES ('852', 'i', 'Item part', 'Item part', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32264 INSERT INTO `marc_subfield_structure` VALUES ('852', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32265 INSERT INTO `marc_subfield_structure` VALUES ('852', 'k', 'Call number prefix', 'Call number prefix', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32266 INSERT INTO `marc_subfield_structure` VALUES ('852', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32267 INSERT INTO `marc_subfield_structure` VALUES ('852', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32268 INSERT INTO `marc_subfield_structure` VALUES ('852', 'n', 'Country code', 'Country code', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32269 INSERT INTO `marc_subfield_structure` VALUES ('852', 'p', 'Piece designation', 'Piece designation', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32270 INSERT INTO `marc_subfield_structure` VALUES ('852', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32271 INSERT INTO `marc_subfield_structure` VALUES ('852', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32272 INSERT INTO `marc_subfield_structure` VALUES ('852', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32273 INSERT INTO `marc_subfield_structure` VALUES ('852', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32274 INSERT INTO `marc_subfield_structure` VALUES ('852', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32275 INSERT INTO `marc_subfield_structure` VALUES ('853', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32276 INSERT INTO `marc_subfield_structure` VALUES ('853', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32277 INSERT INTO `marc_subfield_structure` VALUES ('853', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32278 INSERT INTO `marc_subfield_structure` VALUES ('853', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32279 INSERT INTO `marc_subfield_structure` VALUES ('853', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32280 INSERT INTO `marc_subfield_structure` VALUES ('853', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32281 INSERT INTO `marc_subfield_structure` VALUES ('853', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32282 INSERT INTO `marc_subfield_structure` VALUES ('853', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32283 INSERT INTO `marc_subfield_structure` VALUES ('853', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32284 INSERT INTO `marc_subfield_structure` VALUES ('853', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32285 INSERT INTO `marc_subfield_structure` VALUES ('853', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32286 INSERT INTO `marc_subfield_structure` VALUES ('853', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32287 INSERT INTO `marc_subfield_structure` VALUES ('853', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32288 INSERT INTO `marc_subfield_structure` VALUES ('853', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32289 INSERT INTO `marc_subfield_structure` VALUES ('853', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32290 INSERT INTO `marc_subfield_structure` VALUES ('853', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32291 INSERT INTO `marc_subfield_structure` VALUES ('853', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32292 INSERT INTO `marc_subfield_structure` VALUES ('853', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32293 INSERT INTO `marc_subfield_structure` VALUES ('853', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32294 INSERT INTO `marc_subfield_structure` VALUES ('853', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32295 INSERT INTO `marc_subfield_structure` VALUES ('853', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32296 INSERT INTO `marc_subfield_structure` VALUES ('853', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32297 INSERT INTO `marc_subfield_structure` VALUES ('853', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32298 INSERT INTO `marc_subfield_structure` VALUES ('853', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32299 INSERT INTO `marc_subfield_structure` VALUES ('853', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32300 INSERT INTO `marc_subfield_structure` VALUES ('854', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32301 INSERT INTO `marc_subfield_structure` VALUES ('854', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32302 INSERT INTO `marc_subfield_structure` VALUES ('854', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32303 INSERT INTO `marc_subfield_structure` VALUES ('854', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32304 INSERT INTO `marc_subfield_structure` VALUES ('854', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32305 INSERT INTO `marc_subfield_structure` VALUES ('854', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32306 INSERT INTO `marc_subfield_structure` VALUES ('854', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32307 INSERT INTO `marc_subfield_structure` VALUES ('854', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32308 INSERT INTO `marc_subfield_structure` VALUES ('854', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32309 INSERT INTO `marc_subfield_structure` VALUES ('854', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32310 INSERT INTO `marc_subfield_structure` VALUES ('854', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32311 INSERT INTO `marc_subfield_structure` VALUES ('854', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32312 INSERT INTO `marc_subfield_structure` VALUES ('854', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32313 INSERT INTO `marc_subfield_structure` VALUES ('854', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32314 INSERT INTO `marc_subfield_structure` VALUES ('854', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32315 INSERT INTO `marc_subfield_structure` VALUES ('854', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32316 INSERT INTO `marc_subfield_structure` VALUES ('854', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32317 INSERT INTO `marc_subfield_structure` VALUES ('854', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32318 INSERT INTO `marc_subfield_structure` VALUES ('854', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32319 INSERT INTO `marc_subfield_structure` VALUES ('854', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32320 INSERT INTO `marc_subfield_structure` VALUES ('854', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32321 INSERT INTO `marc_subfield_structure` VALUES ('854', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32322 INSERT INTO `marc_subfield_structure` VALUES ('854', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32323 INSERT INTO `marc_subfield_structure` VALUES ('854', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32324 INSERT INTO `marc_subfield_structure` VALUES ('854', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32325 INSERT INTO `marc_subfield_structure` VALUES ('855', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32326 INSERT INTO `marc_subfield_structure` VALUES ('855', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32327 INSERT INTO `marc_subfield_structure` VALUES ('855', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32328 INSERT INTO `marc_subfield_structure` VALUES ('855', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32329 INSERT INTO `marc_subfield_structure` VALUES ('855', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32330 INSERT INTO `marc_subfield_structure` VALUES ('855', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32331 INSERT INTO `marc_subfield_structure` VALUES ('855', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32332 INSERT INTO `marc_subfield_structure` VALUES ('855', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32333 INSERT INTO `marc_subfield_structure` VALUES ('855', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32334 INSERT INTO `marc_subfield_structure` VALUES ('855', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32335 INSERT INTO `marc_subfield_structure` VALUES ('855', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32336 INSERT INTO `marc_subfield_structure` VALUES ('855', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32337 INSERT INTO `marc_subfield_structure` VALUES ('855', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32338 INSERT INTO `marc_subfield_structure` VALUES ('855', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32339 INSERT INTO `marc_subfield_structure` VALUES ('855', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32340 INSERT INTO `marc_subfield_structure` VALUES ('855', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32341 INSERT INTO `marc_subfield_structure` VALUES ('855', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32342 INSERT INTO `marc_subfield_structure` VALUES ('855', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32343 INSERT INTO `marc_subfield_structure` VALUES ('855', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32344 INSERT INTO `marc_subfield_structure` VALUES ('855', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32345 INSERT INTO `marc_subfield_structure` VALUES ('855', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32346 INSERT INTO `marc_subfield_structure` VALUES ('855', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32347 INSERT INTO `marc_subfield_structure` VALUES ('855', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32348 INSERT INTO `marc_subfield_structure` VALUES ('855', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32349 INSERT INTO `marc_subfield_structure` VALUES ('855', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32350 INSERT INTO `marc_subfield_structure` VALUES ('856', '2', 'Access method', 'Access method', 0, 0, '', 8, '', '', '', 0, -6, 'IR', '', '');
32351 INSERT INTO `marc_subfield_structure` VALUES ('856', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', 0, -6, 'IR', '', '');
32352 INSERT INTO `marc_subfield_structure` VALUES ('856', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', 0, -6, 'IR', '', '');
32353 INSERT INTO `marc_subfield_structure` VALUES ('856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', 0, -6, 'IR', '', '');
32354 INSERT INTO `marc_subfield_structure` VALUES ('856', 'a', 'Host name', 'Host name', 1, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32355 INSERT INTO `marc_subfield_structure` VALUES ('856', 'b', 'Access number', 'Access number', 1, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32356 INSERT INTO `marc_subfield_structure` VALUES ('856', 'c', 'Compression information', 'Compression information', 1, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32357 INSERT INTO `marc_subfield_structure` VALUES ('856', 'd', 'Path', 'Path', 1, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32358 INSERT INTO `marc_subfield_structure` VALUES ('856', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32359 INSERT INTO `marc_subfield_structure` VALUES ('856', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32360 INSERT INTO `marc_subfield_structure` VALUES ('856', 'i', 'Instruction', 'Instruction', 1, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32361 INSERT INTO `marc_subfield_structure` VALUES ('856', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32362 INSERT INTO `marc_subfield_structure` VALUES ('856', 'k', 'Password', 'Password', 0, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32363 INSERT INTO `marc_subfield_structure` VALUES ('856', 'l', 'Logon', 'Logon', 0, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32364 INSERT INTO `marc_subfield_structure` VALUES ('856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32365 INSERT INTO `marc_subfield_structure` VALUES ('856', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32366 INSERT INTO `marc_subfield_structure` VALUES ('856', 'o', 'Operating system', 'Operating system', 0, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32367 INSERT INTO `marc_subfield_structure` VALUES ('856', 'p', 'Port', 'Port', 0, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32368 INSERT INTO `marc_subfield_structure` VALUES ('856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32369 INSERT INTO `marc_subfield_structure` VALUES ('856', 'r', 'Settings', 'Settings', 0, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32370 INSERT INTO `marc_subfield_structure` VALUES ('856', 's', 'File size', 'File size', 1, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32371 INSERT INTO `marc_subfield_structure` VALUES ('856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32372 INSERT INTO `marc_subfield_structure` VALUES ('856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 'biblioitems.url', 8, '', '', '', 1, -1, 'IR', '', '');
32373 INSERT INTO `marc_subfield_structure` VALUES ('856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32374 INSERT INTO `marc_subfield_structure` VALUES ('856', 'w', 'Record control number', 'Record control number', 1, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32375 INSERT INTO `marc_subfield_structure` VALUES ('856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 1, 'IR', '', '');
32376 INSERT INTO `marc_subfield_structure` VALUES ('856', 'y', 'Link text', 'Link text', 1, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32377 INSERT INTO `marc_subfield_structure` VALUES ('856', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, -1, 'IR', '', '');
32378 INSERT INTO `marc_subfield_structure` VALUES ('859', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'IR', '', '');
32379 INSERT INTO `marc_subfield_structure` VALUES ('859', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'IR', '', '');
32380 INSERT INTO `marc_subfield_structure` VALUES ('859', 'd', 'TDC (RLIN)', 'TDC (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'IR', '', '');
32381 INSERT INTO `marc_subfield_structure` VALUES ('859', 'l', 'LIB (RLIN)', 'LIB (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'IR', '', '');
32382 INSERT INTO `marc_subfield_structure` VALUES ('859', 'p', 'PRI (RLIN)', 'PRI (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'IR', '', '');
32383 INSERT INTO `marc_subfield_structure` VALUES ('859', 'r', 'REG (RLIN)', 'REG (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'IR', '', '');
32384 INSERT INTO `marc_subfield_structure` VALUES ('859', 'v', 'VER (RLIN)', 'VER (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'IR', '', '');
32385 INSERT INTO `marc_subfield_structure` VALUES ('859', 'x', 'LDEL (RLIN)', 'LDEL (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'IR', '', '');
32386 INSERT INTO `marc_subfield_structure` VALUES ('866', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32387 INSERT INTO `marc_subfield_structure` VALUES ('866', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32388 INSERT INTO `marc_subfield_structure` VALUES ('866', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'IR', '', '');
32389 INSERT INTO `marc_subfield_structure` VALUES ('866', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'IR', '', '');
32390 INSERT INTO `marc_subfield_structure` VALUES ('866', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'IR', '', '');
32391 INSERT INTO `marc_subfield_structure` VALUES ('867', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32392 INSERT INTO `marc_subfield_structure` VALUES ('867', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32393 INSERT INTO `marc_subfield_structure` VALUES ('867', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'IR', '', '');
32394 INSERT INTO `marc_subfield_structure` VALUES ('867', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'IR', '', '');
32395 INSERT INTO `marc_subfield_structure` VALUES ('867', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'IR', '', '');
32396 INSERT INTO `marc_subfield_structure` VALUES ('868', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32397 INSERT INTO `marc_subfield_structure` VALUES ('868', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32398 INSERT INTO `marc_subfield_structure` VALUES ('868', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'IR', '', '');
32399 INSERT INTO `marc_subfield_structure` VALUES ('868', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'IR', '', '');
32400 INSERT INTO `marc_subfield_structure` VALUES ('868', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'IR', '', '');
32401 INSERT INTO `marc_subfield_structure` VALUES ('870', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32402 INSERT INTO `marc_subfield_structure` VALUES ('870', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32403 INSERT INTO `marc_subfield_structure` VALUES ('870', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32404 INSERT INTO `marc_subfield_structure` VALUES ('870', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32405 INSERT INTO `marc_subfield_structure` VALUES ('870', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32406 INSERT INTO `marc_subfield_structure` VALUES ('870', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32407 INSERT INTO `marc_subfield_structure` VALUES ('870', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32408 INSERT INTO `marc_subfield_structure` VALUES ('870', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32409 INSERT INTO `marc_subfield_structure` VALUES ('870', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32410 INSERT INTO `marc_subfield_structure` VALUES ('870', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32411 INSERT INTO `marc_subfield_structure` VALUES ('870', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32412 INSERT INTO `marc_subfield_structure` VALUES ('870', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32413 INSERT INTO `marc_subfield_structure` VALUES ('870', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32414 INSERT INTO `marc_subfield_structure` VALUES ('870', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32415 INSERT INTO `marc_subfield_structure` VALUES ('870', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32416 INSERT INTO `marc_subfield_structure` VALUES ('870', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32417 INSERT INTO `marc_subfield_structure` VALUES ('870', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32418 INSERT INTO `marc_subfield_structure` VALUES ('871', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32419 INSERT INTO `marc_subfield_structure` VALUES ('871', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32420 INSERT INTO `marc_subfield_structure` VALUES ('871', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32421 INSERT INTO `marc_subfield_structure` VALUES ('871', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32422 INSERT INTO `marc_subfield_structure` VALUES ('871', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32423 INSERT INTO `marc_subfield_structure` VALUES ('871', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32424 INSERT INTO `marc_subfield_structure` VALUES ('871', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32425 INSERT INTO `marc_subfield_structure` VALUES ('871', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32426 INSERT INTO `marc_subfield_structure` VALUES ('871', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32427 INSERT INTO `marc_subfield_structure` VALUES ('871', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32428 INSERT INTO `marc_subfield_structure` VALUES ('871', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32429 INSERT INTO `marc_subfield_structure` VALUES ('871', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32430 INSERT INTO `marc_subfield_structure` VALUES ('871', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32431 INSERT INTO `marc_subfield_structure` VALUES ('871', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32432 INSERT INTO `marc_subfield_structure` VALUES ('871', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32433 INSERT INTO `marc_subfield_structure` VALUES ('871', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32434 INSERT INTO `marc_subfield_structure` VALUES ('872', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32435 INSERT INTO `marc_subfield_structure` VALUES ('872', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32436 INSERT INTO `marc_subfield_structure` VALUES ('872', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32437 INSERT INTO `marc_subfield_structure` VALUES ('872', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32438 INSERT INTO `marc_subfield_structure` VALUES ('872', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32439 INSERT INTO `marc_subfield_structure` VALUES ('872', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32440 INSERT INTO `marc_subfield_structure` VALUES ('872', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32441 INSERT INTO `marc_subfield_structure` VALUES ('872', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32442 INSERT INTO `marc_subfield_structure` VALUES ('872', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32443 INSERT INTO `marc_subfield_structure` VALUES ('872', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32444 INSERT INTO `marc_subfield_structure` VALUES ('872', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32445 INSERT INTO `marc_subfield_structure` VALUES ('872', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32446 INSERT INTO `marc_subfield_structure` VALUES ('872', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32447 INSERT INTO `marc_subfield_structure` VALUES ('872', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32448 INSERT INTO `marc_subfield_structure` VALUES ('872', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32449 INSERT INTO `marc_subfield_structure` VALUES ('872', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32450 INSERT INTO `marc_subfield_structure` VALUES ('872', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32451 INSERT INTO `marc_subfield_structure` VALUES ('873', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32452 INSERT INTO `marc_subfield_structure` VALUES ('873', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32453 INSERT INTO `marc_subfield_structure` VALUES ('873', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32454 INSERT INTO `marc_subfield_structure` VALUES ('873', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32455 INSERT INTO `marc_subfield_structure` VALUES ('873', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32456 INSERT INTO `marc_subfield_structure` VALUES ('873', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32457 INSERT INTO `marc_subfield_structure` VALUES ('873', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32458 INSERT INTO `marc_subfield_structure` VALUES ('873', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32459 INSERT INTO `marc_subfield_structure` VALUES ('873', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32460 INSERT INTO `marc_subfield_structure` VALUES ('873', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32461 INSERT INTO `marc_subfield_structure` VALUES ('873', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32462 INSERT INTO `marc_subfield_structure` VALUES ('873', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32463 INSERT INTO `marc_subfield_structure` VALUES ('873', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32464 INSERT INTO `marc_subfield_structure` VALUES ('873', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32465 INSERT INTO `marc_subfield_structure` VALUES ('873', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32466 INSERT INTO `marc_subfield_structure` VALUES ('873', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32467 INSERT INTO `marc_subfield_structure` VALUES ('876', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32468 INSERT INTO `marc_subfield_structure` VALUES ('876', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32469 INSERT INTO `marc_subfield_structure` VALUES ('876', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32470 INSERT INTO `marc_subfield_structure` VALUES ('876', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32471 INSERT INTO `marc_subfield_structure` VALUES ('876', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32472 INSERT INTO `marc_subfield_structure` VALUES ('876', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32473 INSERT INTO `marc_subfield_structure` VALUES ('876', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32474 INSERT INTO `marc_subfield_structure` VALUES ('876', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32475 INSERT INTO `marc_subfield_structure` VALUES ('876', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32476 INSERT INTO `marc_subfield_structure` VALUES ('876', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32477 INSERT INTO `marc_subfield_structure` VALUES ('876', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32478 INSERT INTO `marc_subfield_structure` VALUES ('876', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32479 INSERT INTO `marc_subfield_structure` VALUES ('876', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32480 INSERT INTO `marc_subfield_structure` VALUES ('876', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32481 INSERT INTO `marc_subfield_structure` VALUES ('876', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32482 INSERT INTO `marc_subfield_structure` VALUES ('876', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32483 INSERT INTO `marc_subfield_structure` VALUES ('877', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32484 INSERT INTO `marc_subfield_structure` VALUES ('877', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32485 INSERT INTO `marc_subfield_structure` VALUES ('877', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32486 INSERT INTO `marc_subfield_structure` VALUES ('877', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32487 INSERT INTO `marc_subfield_structure` VALUES ('877', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32488 INSERT INTO `marc_subfield_structure` VALUES ('877', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32489 INSERT INTO `marc_subfield_structure` VALUES ('877', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32490 INSERT INTO `marc_subfield_structure` VALUES ('877', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32491 INSERT INTO `marc_subfield_structure` VALUES ('877', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32492 INSERT INTO `marc_subfield_structure` VALUES ('877', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32493 INSERT INTO `marc_subfield_structure` VALUES ('877', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32494 INSERT INTO `marc_subfield_structure` VALUES ('877', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32495 INSERT INTO `marc_subfield_structure` VALUES ('877', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32496 INSERT INTO `marc_subfield_structure` VALUES ('877', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32497 INSERT INTO `marc_subfield_structure` VALUES ('877', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32498 INSERT INTO `marc_subfield_structure` VALUES ('877', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32499 INSERT INTO `marc_subfield_structure` VALUES ('878', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32500 INSERT INTO `marc_subfield_structure` VALUES ('878', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32501 INSERT INTO `marc_subfield_structure` VALUES ('878', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32502 INSERT INTO `marc_subfield_structure` VALUES ('878', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32503 INSERT INTO `marc_subfield_structure` VALUES ('878', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32504 INSERT INTO `marc_subfield_structure` VALUES ('878', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32505 INSERT INTO `marc_subfield_structure` VALUES ('878', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32506 INSERT INTO `marc_subfield_structure` VALUES ('878', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32507 INSERT INTO `marc_subfield_structure` VALUES ('878', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32508 INSERT INTO `marc_subfield_structure` VALUES ('878', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32509 INSERT INTO `marc_subfield_structure` VALUES ('878', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32510 INSERT INTO `marc_subfield_structure` VALUES ('878', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32511 INSERT INTO `marc_subfield_structure` VALUES ('878', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32512 INSERT INTO `marc_subfield_structure` VALUES ('878', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32513 INSERT INTO `marc_subfield_structure` VALUES ('878', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32514 INSERT INTO `marc_subfield_structure` VALUES ('878', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32515 INSERT INTO `marc_subfield_structure` VALUES ('880', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32516 INSERT INTO `marc_subfield_structure` VALUES ('880', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32517 INSERT INTO `marc_subfield_structure` VALUES ('880', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32518 INSERT INTO `marc_subfield_structure` VALUES ('880', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32519 INSERT INTO `marc_subfield_structure` VALUES ('880', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32520 INSERT INTO `marc_subfield_structure` VALUES ('880', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32521 INSERT INTO `marc_subfield_structure` VALUES ('880', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32522 INSERT INTO `marc_subfield_structure` VALUES ('880', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32523 INSERT INTO `marc_subfield_structure` VALUES ('880', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32524 INSERT INTO `marc_subfield_structure` VALUES ('880', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32525 INSERT INTO `marc_subfield_structure` VALUES ('880', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32526 INSERT INTO `marc_subfield_structure` VALUES ('880', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32527 INSERT INTO `marc_subfield_structure` VALUES ('880', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32528 INSERT INTO `marc_subfield_structure` VALUES ('880', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32529 INSERT INTO `marc_subfield_structure` VALUES ('880', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32530 INSERT INTO `marc_subfield_structure` VALUES ('880', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32531 INSERT INTO `marc_subfield_structure` VALUES ('880', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32532 INSERT INTO `marc_subfield_structure` VALUES ('880', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32533 INSERT INTO `marc_subfield_structure` VALUES ('880', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32534 INSERT INTO `marc_subfield_structure` VALUES ('880', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32535 INSERT INTO `marc_subfield_structure` VALUES ('880', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32536 INSERT INTO `marc_subfield_structure` VALUES ('880', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32537 INSERT INTO `marc_subfield_structure` VALUES ('880', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32538 INSERT INTO `marc_subfield_structure` VALUES ('880', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32539 INSERT INTO `marc_subfield_structure` VALUES ('880', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32540 INSERT INTO `marc_subfield_structure` VALUES ('880', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32541 INSERT INTO `marc_subfield_structure` VALUES ('880', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32542 INSERT INTO `marc_subfield_structure` VALUES ('880', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32543 INSERT INTO `marc_subfield_structure` VALUES ('880', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32544 INSERT INTO `marc_subfield_structure` VALUES ('880', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32545 INSERT INTO `marc_subfield_structure` VALUES ('880', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32546 INSERT INTO `marc_subfield_structure` VALUES ('880', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32547 INSERT INTO `marc_subfield_structure` VALUES ('880', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32548 INSERT INTO `marc_subfield_structure` VALUES ('880', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32549 INSERT INTO `marc_subfield_structure` VALUES ('886', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32550 INSERT INTO `marc_subfield_structure` VALUES ('886', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32551 INSERT INTO `marc_subfield_structure` VALUES ('886', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32552 INSERT INTO `marc_subfield_structure` VALUES ('886', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32553 INSERT INTO `marc_subfield_structure` VALUES ('886', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32554 INSERT INTO `marc_subfield_structure` VALUES ('886', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32555 INSERT INTO `marc_subfield_structure` VALUES ('886', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32556 INSERT INTO `marc_subfield_structure` VALUES ('886', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32557 INSERT INTO `marc_subfield_structure` VALUES ('886', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32558 INSERT INTO `marc_subfield_structure` VALUES ('886', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32559 INSERT INTO `marc_subfield_structure` VALUES ('886', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32560 INSERT INTO `marc_subfield_structure` VALUES ('886', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32561 INSERT INTO `marc_subfield_structure` VALUES ('886', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32562 INSERT INTO `marc_subfield_structure` VALUES ('886', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32563 INSERT INTO `marc_subfield_structure` VALUES ('886', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32564 INSERT INTO `marc_subfield_structure` VALUES ('886', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32565 INSERT INTO `marc_subfield_structure` VALUES ('886', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32566 INSERT INTO `marc_subfield_structure` VALUES ('886', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32567 INSERT INTO `marc_subfield_structure` VALUES ('886', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32568 INSERT INTO `marc_subfield_structure` VALUES ('886', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32569 INSERT INTO `marc_subfield_structure` VALUES ('886', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32570 INSERT INTO `marc_subfield_structure` VALUES ('886', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32571 INSERT INTO `marc_subfield_structure` VALUES ('886', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32572 INSERT INTO `marc_subfield_structure` VALUES ('886', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32573 INSERT INTO `marc_subfield_structure` VALUES ('886', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32574 INSERT INTO `marc_subfield_structure` VALUES ('886', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32575 INSERT INTO `marc_subfield_structure` VALUES ('886', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32576 INSERT INTO `marc_subfield_structure` VALUES ('886', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32577 INSERT INTO `marc_subfield_structure` VALUES ('886', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32578 INSERT INTO `marc_subfield_structure` VALUES ('886', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32579 INSERT INTO `marc_subfield_structure` VALUES ('886', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32580 INSERT INTO `marc_subfield_structure` VALUES ('886', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32581 INSERT INTO `marc_subfield_structure` VALUES ('886', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32582 INSERT INTO `marc_subfield_structure` VALUES ('886', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32583 INSERT INTO `marc_subfield_structure` VALUES ('886', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32584 INSERT INTO `marc_subfield_structure` VALUES ('886', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32585 INSERT INTO `marc_subfield_structure` VALUES ('887', '2', 'Source of data', 'Source of data', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32586 INSERT INTO `marc_subfield_structure` VALUES ('887', 'a', 'Content of non-MARC field', 'Content of non-MARC field', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32587 INSERT INTO `marc_subfield_structure` VALUES ('896', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'IR', '', '');
32588 INSERT INTO `marc_subfield_structure` VALUES ('896', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32589 INSERT INTO `marc_subfield_structure` VALUES ('896', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32590 INSERT INTO `marc_subfield_structure` VALUES ('896', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32591 INSERT INTO `marc_subfield_structure` VALUES ('896', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'IR', '', '');
32592 INSERT INTO `marc_subfield_structure` VALUES ('896', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32593 INSERT INTO `marc_subfield_structure` VALUES ('896', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32594 INSERT INTO `marc_subfield_structure` VALUES ('896', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32595 INSERT INTO `marc_subfield_structure` VALUES ('896', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32596 INSERT INTO `marc_subfield_structure` VALUES ('896', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32597 INSERT INTO `marc_subfield_structure` VALUES ('896', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32598 INSERT INTO `marc_subfield_structure` VALUES ('896', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32599 INSERT INTO `marc_subfield_structure` VALUES ('896', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32600 INSERT INTO `marc_subfield_structure` VALUES ('896', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32601 INSERT INTO `marc_subfield_structure` VALUES ('896', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32602 INSERT INTO `marc_subfield_structure` VALUES ('896', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32603 INSERT INTO `marc_subfield_structure` VALUES ('896', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32604 INSERT INTO `marc_subfield_structure` VALUES ('896', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32605 INSERT INTO `marc_subfield_structure` VALUES ('896', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32606 INSERT INTO `marc_subfield_structure` VALUES ('896', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32607 INSERT INTO `marc_subfield_structure` VALUES ('896', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32608 INSERT INTO `marc_subfield_structure` VALUES ('896', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32609 INSERT INTO `marc_subfield_structure` VALUES ('896', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32610 INSERT INTO `marc_subfield_structure` VALUES ('896', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32611 INSERT INTO `marc_subfield_structure` VALUES ('896', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32612 INSERT INTO `marc_subfield_structure` VALUES ('896', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32613 INSERT INTO `marc_subfield_structure` VALUES ('897', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'IR', '', '');
32614 INSERT INTO `marc_subfield_structure` VALUES ('897', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32615 INSERT INTO `marc_subfield_structure` VALUES ('897', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32616 INSERT INTO `marc_subfield_structure` VALUES ('897', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32617 INSERT INTO `marc_subfield_structure` VALUES ('897', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'IR', '', '');
32618 INSERT INTO `marc_subfield_structure` VALUES ('897', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32619 INSERT INTO `marc_subfield_structure` VALUES ('897', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32620 INSERT INTO `marc_subfield_structure` VALUES ('897', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32621 INSERT INTO `marc_subfield_structure` VALUES ('897', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32622 INSERT INTO `marc_subfield_structure` VALUES ('897', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32623 INSERT INTO `marc_subfield_structure` VALUES ('897', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32624 INSERT INTO `marc_subfield_structure` VALUES ('897', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32625 INSERT INTO `marc_subfield_structure` VALUES ('897', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32626 INSERT INTO `marc_subfield_structure` VALUES ('897', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32627 INSERT INTO `marc_subfield_structure` VALUES ('897', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32628 INSERT INTO `marc_subfield_structure` VALUES ('897', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32629 INSERT INTO `marc_subfield_structure` VALUES ('897', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32630 INSERT INTO `marc_subfield_structure` VALUES ('897', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32631 INSERT INTO `marc_subfield_structure` VALUES ('897', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32632 INSERT INTO `marc_subfield_structure` VALUES ('897', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32633 INSERT INTO `marc_subfield_structure` VALUES ('897', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32634 INSERT INTO `marc_subfield_structure` VALUES ('897', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32635 INSERT INTO `marc_subfield_structure` VALUES ('897', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32636 INSERT INTO `marc_subfield_structure` VALUES ('897', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32637 INSERT INTO `marc_subfield_structure` VALUES ('898', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'IR', '', '');
32638 INSERT INTO `marc_subfield_structure` VALUES ('898', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32639 INSERT INTO `marc_subfield_structure` VALUES ('898', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32640 INSERT INTO `marc_subfield_structure` VALUES ('898', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32641 INSERT INTO `marc_subfield_structure` VALUES ('898', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'IR', '', '');
32642 INSERT INTO `marc_subfield_structure` VALUES ('898', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32643 INSERT INTO `marc_subfield_structure` VALUES ('898', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32644 INSERT INTO `marc_subfield_structure` VALUES ('898', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32645 INSERT INTO `marc_subfield_structure` VALUES ('898', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32646 INSERT INTO `marc_subfield_structure` VALUES ('898', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32647 INSERT INTO `marc_subfield_structure` VALUES ('898', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32648 INSERT INTO `marc_subfield_structure` VALUES ('898', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32649 INSERT INTO `marc_subfield_structure` VALUES ('898', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32650 INSERT INTO `marc_subfield_structure` VALUES ('898', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32651 INSERT INTO `marc_subfield_structure` VALUES ('898', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32652 INSERT INTO `marc_subfield_structure` VALUES ('898', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32653 INSERT INTO `marc_subfield_structure` VALUES ('898', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32654 INSERT INTO `marc_subfield_structure` VALUES ('898', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32655 INSERT INTO `marc_subfield_structure` VALUES ('898', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32656 INSERT INTO `marc_subfield_structure` VALUES ('898', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32657 INSERT INTO `marc_subfield_structure` VALUES ('898', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32658 INSERT INTO `marc_subfield_structure` VALUES ('898', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
32659 INSERT INTO `marc_subfield_structure` VALUES ('899', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'IR', '', '');
32660 INSERT INTO `marc_subfield_structure` VALUES ('899', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32661 INSERT INTO `marc_subfield_structure` VALUES ('899', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32662 INSERT INTO `marc_subfield_structure` VALUES ('899', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'IR', '', '');
32663 INSERT INTO `marc_subfield_structure` VALUES ('899', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32664 INSERT INTO `marc_subfield_structure` VALUES ('899', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32665 INSERT INTO `marc_subfield_structure` VALUES ('899', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32666 INSERT INTO `marc_subfield_structure` VALUES ('899', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32667 INSERT INTO `marc_subfield_structure` VALUES ('899', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32668 INSERT INTO `marc_subfield_structure` VALUES ('899', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32669 INSERT INTO `marc_subfield_structure` VALUES ('899', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32670 INSERT INTO `marc_subfield_structure` VALUES ('899', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32671 INSERT INTO `marc_subfield_structure` VALUES ('899', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32672 INSERT INTO `marc_subfield_structure` VALUES ('899', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32673 INSERT INTO `marc_subfield_structure` VALUES ('899', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32674 INSERT INTO `marc_subfield_structure` VALUES ('899', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32675 INSERT INTO `marc_subfield_structure` VALUES ('899', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32676 INSERT INTO `marc_subfield_structure` VALUES ('899', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32677 INSERT INTO `marc_subfield_structure` VALUES ('899', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, 5, 'IR', '', '');
32678 INSERT INTO `marc_subfield_structure` VALUES ('89e', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32679 INSERT INTO `marc_subfield_structure` VALUES ('89e', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32680 INSERT INTO `marc_subfield_structure` VALUES ('89e', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32681 INSERT INTO `marc_subfield_structure` VALUES ('89e', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32682 INSERT INTO `marc_subfield_structure` VALUES ('89e', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32683 INSERT INTO `marc_subfield_structure` VALUES ('89e', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32684 INSERT INTO `marc_subfield_structure` VALUES ('89e', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32685 INSERT INTO `marc_subfield_structure` VALUES ('89e', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32686 INSERT INTO `marc_subfield_structure` VALUES ('89e', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32687 INSERT INTO `marc_subfield_structure` VALUES ('89e', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32688 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32689 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32690 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32691 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32692 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32693 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32694 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32695 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32696 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32697 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32698 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32699 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32700 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32701 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32702 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32703 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32704 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32705 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32706 INSERT INTO `marc_subfield_structure` VALUES ('89e', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32707 INSERT INTO `marc_subfield_structure` VALUES ('89e', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32708 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32709 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32710 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32711 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32712 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32713 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'IR', '', '');
32714 INSERT INTO `marc_subfield_structure` VALUES ('900', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32715 INSERT INTO `marc_subfield_structure` VALUES ('900', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32716 INSERT INTO `marc_subfield_structure` VALUES ('900', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32717 INSERT INTO `marc_subfield_structure` VALUES ('900', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
32718 INSERT INTO `marc_subfield_structure` VALUES ('900', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32719 INSERT INTO `marc_subfield_structure` VALUES ('900', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32720 INSERT INTO `marc_subfield_structure` VALUES ('900', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32721 INSERT INTO `marc_subfield_structure` VALUES ('900', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32722 INSERT INTO `marc_subfield_structure` VALUES ('900', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32723 INSERT INTO `marc_subfield_structure` VALUES ('900', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32724 INSERT INTO `marc_subfield_structure` VALUES ('900', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32725 INSERT INTO `marc_subfield_structure` VALUES ('900', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32726 INSERT INTO `marc_subfield_structure` VALUES ('900', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32727 INSERT INTO `marc_subfield_structure` VALUES ('900', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32728 INSERT INTO `marc_subfield_structure` VALUES ('900', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32729 INSERT INTO `marc_subfield_structure` VALUES ('900', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32730 INSERT INTO `marc_subfield_structure` VALUES ('900', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32731 INSERT INTO `marc_subfield_structure` VALUES ('900', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32732 INSERT INTO `marc_subfield_structure` VALUES ('901', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32733 INSERT INTO `marc_subfield_structure` VALUES ('901', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32734 INSERT INTO `marc_subfield_structure` VALUES ('901', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32735 INSERT INTO `marc_subfield_structure` VALUES ('901', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32736 INSERT INTO `marc_subfield_structure` VALUES ('901', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32737 INSERT INTO `marc_subfield_structure` VALUES ('901', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32738 INSERT INTO `marc_subfield_structure` VALUES ('901', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32739 INSERT INTO `marc_subfield_structure` VALUES ('901', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32740 INSERT INTO `marc_subfield_structure` VALUES ('901', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32741 INSERT INTO `marc_subfield_structure` VALUES ('901', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32742 INSERT INTO `marc_subfield_structure` VALUES ('901', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32743 INSERT INTO `marc_subfield_structure` VALUES ('901', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32744 INSERT INTO `marc_subfield_structure` VALUES ('901', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32745 INSERT INTO `marc_subfield_structure` VALUES ('901', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32746 INSERT INTO `marc_subfield_structure` VALUES ('901', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32747 INSERT INTO `marc_subfield_structure` VALUES ('901', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32748 INSERT INTO `marc_subfield_structure` VALUES ('901', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32749 INSERT INTO `marc_subfield_structure` VALUES ('901', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32750 INSERT INTO `marc_subfield_structure` VALUES ('901', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32751 INSERT INTO `marc_subfield_structure` VALUES ('901', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32752 INSERT INTO `marc_subfield_structure` VALUES ('901', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32753 INSERT INTO `marc_subfield_structure` VALUES ('901', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32754 INSERT INTO `marc_subfield_structure` VALUES ('901', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32755 INSERT INTO `marc_subfield_structure` VALUES ('901', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32756 INSERT INTO `marc_subfield_structure` VALUES ('901', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32757 INSERT INTO `marc_subfield_structure` VALUES ('901', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32758 INSERT INTO `marc_subfield_structure` VALUES ('901', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32759 INSERT INTO `marc_subfield_structure` VALUES ('901', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32760 INSERT INTO `marc_subfield_structure` VALUES ('901', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32761 INSERT INTO `marc_subfield_structure` VALUES ('901', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32762 INSERT INTO `marc_subfield_structure` VALUES ('901', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32763 INSERT INTO `marc_subfield_structure` VALUES ('901', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32764 INSERT INTO `marc_subfield_structure` VALUES ('901', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32765 INSERT INTO `marc_subfield_structure` VALUES ('901', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32766 INSERT INTO `marc_subfield_structure` VALUES ('901', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32767 INSERT INTO `marc_subfield_structure` VALUES ('901', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32768 INSERT INTO `marc_subfield_structure` VALUES ('902', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32769 INSERT INTO `marc_subfield_structure` VALUES ('902', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32770 INSERT INTO `marc_subfield_structure` VALUES ('902', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32771 INSERT INTO `marc_subfield_structure` VALUES ('902', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32772 INSERT INTO `marc_subfield_structure` VALUES ('902', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32773 INSERT INTO `marc_subfield_structure` VALUES ('902', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32774 INSERT INTO `marc_subfield_structure` VALUES ('902', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32775 INSERT INTO `marc_subfield_structure` VALUES ('902', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32776 INSERT INTO `marc_subfield_structure` VALUES ('902', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32777 INSERT INTO `marc_subfield_structure` VALUES ('902', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32778 INSERT INTO `marc_subfield_structure` VALUES ('902', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32779 INSERT INTO `marc_subfield_structure` VALUES ('902', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32780 INSERT INTO `marc_subfield_structure` VALUES ('902', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32781 INSERT INTO `marc_subfield_structure` VALUES ('902', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32782 INSERT INTO `marc_subfield_structure` VALUES ('902', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32783 INSERT INTO `marc_subfield_structure` VALUES ('902', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32784 INSERT INTO `marc_subfield_structure` VALUES ('902', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32785 INSERT INTO `marc_subfield_structure` VALUES ('902', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32786 INSERT INTO `marc_subfield_structure` VALUES ('902', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32787 INSERT INTO `marc_subfield_structure` VALUES ('902', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32788 INSERT INTO `marc_subfield_structure` VALUES ('902', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32789 INSERT INTO `marc_subfield_structure` VALUES ('902', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32790 INSERT INTO `marc_subfield_structure` VALUES ('902', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32791 INSERT INTO `marc_subfield_structure` VALUES ('902', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32792 INSERT INTO `marc_subfield_structure` VALUES ('902', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32793 INSERT INTO `marc_subfield_structure` VALUES ('902', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32794 INSERT INTO `marc_subfield_structure` VALUES ('902', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32795 INSERT INTO `marc_subfield_structure` VALUES ('902', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32796 INSERT INTO `marc_subfield_structure` VALUES ('902', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32797 INSERT INTO `marc_subfield_structure` VALUES ('902', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32798 INSERT INTO `marc_subfield_structure` VALUES ('902', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32799 INSERT INTO `marc_subfield_structure` VALUES ('902', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32800 INSERT INTO `marc_subfield_structure` VALUES ('902', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32801 INSERT INTO `marc_subfield_structure` VALUES ('902', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32802 INSERT INTO `marc_subfield_structure` VALUES ('902', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32803 INSERT INTO `marc_subfield_structure` VALUES ('902', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32804 INSERT INTO `marc_subfield_structure` VALUES ('903', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32805 INSERT INTO `marc_subfield_structure` VALUES ('903', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32806 INSERT INTO `marc_subfield_structure` VALUES ('903', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32807 INSERT INTO `marc_subfield_structure` VALUES ('903', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32808 INSERT INTO `marc_subfield_structure` VALUES ('903', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32809 INSERT INTO `marc_subfield_structure` VALUES ('903', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32810 INSERT INTO `marc_subfield_structure` VALUES ('903', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32811 INSERT INTO `marc_subfield_structure` VALUES ('903', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32812 INSERT INTO `marc_subfield_structure` VALUES ('903', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32813 INSERT INTO `marc_subfield_structure` VALUES ('903', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32814 INSERT INTO `marc_subfield_structure` VALUES ('903', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32815 INSERT INTO `marc_subfield_structure` VALUES ('903', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32816 INSERT INTO `marc_subfield_structure` VALUES ('903', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32817 INSERT INTO `marc_subfield_structure` VALUES ('903', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32818 INSERT INTO `marc_subfield_structure` VALUES ('903', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32819 INSERT INTO `marc_subfield_structure` VALUES ('903', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32820 INSERT INTO `marc_subfield_structure` VALUES ('903', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32821 INSERT INTO `marc_subfield_structure` VALUES ('903', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32822 INSERT INTO `marc_subfield_structure` VALUES ('903', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32823 INSERT INTO `marc_subfield_structure` VALUES ('903', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32824 INSERT INTO `marc_subfield_structure` VALUES ('903', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32825 INSERT INTO `marc_subfield_structure` VALUES ('903', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32826 INSERT INTO `marc_subfield_structure` VALUES ('903', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32827 INSERT INTO `marc_subfield_structure` VALUES ('903', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32828 INSERT INTO `marc_subfield_structure` VALUES ('903', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32829 INSERT INTO `marc_subfield_structure` VALUES ('903', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32830 INSERT INTO `marc_subfield_structure` VALUES ('903', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32831 INSERT INTO `marc_subfield_structure` VALUES ('903', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32832 INSERT INTO `marc_subfield_structure` VALUES ('903', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32833 INSERT INTO `marc_subfield_structure` VALUES ('903', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32834 INSERT INTO `marc_subfield_structure` VALUES ('903', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32835 INSERT INTO `marc_subfield_structure` VALUES ('903', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32836 INSERT INTO `marc_subfield_structure` VALUES ('903', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32837 INSERT INTO `marc_subfield_structure` VALUES ('903', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32838 INSERT INTO `marc_subfield_structure` VALUES ('903', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32839 INSERT INTO `marc_subfield_structure` VALUES ('903', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32840 INSERT INTO `marc_subfield_structure` VALUES ('904', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32841 INSERT INTO `marc_subfield_structure` VALUES ('904', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32842 INSERT INTO `marc_subfield_structure` VALUES ('904', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32843 INSERT INTO `marc_subfield_structure` VALUES ('904', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32844 INSERT INTO `marc_subfield_structure` VALUES ('904', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32845 INSERT INTO `marc_subfield_structure` VALUES ('904', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32846 INSERT INTO `marc_subfield_structure` VALUES ('904', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32847 INSERT INTO `marc_subfield_structure` VALUES ('904', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32848 INSERT INTO `marc_subfield_structure` VALUES ('904', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32849 INSERT INTO `marc_subfield_structure` VALUES ('904', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32850 INSERT INTO `marc_subfield_structure` VALUES ('904', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32851 INSERT INTO `marc_subfield_structure` VALUES ('904', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32852 INSERT INTO `marc_subfield_structure` VALUES ('904', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32853 INSERT INTO `marc_subfield_structure` VALUES ('904', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32854 INSERT INTO `marc_subfield_structure` VALUES ('904', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32855 INSERT INTO `marc_subfield_structure` VALUES ('904', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32856 INSERT INTO `marc_subfield_structure` VALUES ('904', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32857 INSERT INTO `marc_subfield_structure` VALUES ('904', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32858 INSERT INTO `marc_subfield_structure` VALUES ('904', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32859 INSERT INTO `marc_subfield_structure` VALUES ('904', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32860 INSERT INTO `marc_subfield_structure` VALUES ('904', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32861 INSERT INTO `marc_subfield_structure` VALUES ('904', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32862 INSERT INTO `marc_subfield_structure` VALUES ('904', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32863 INSERT INTO `marc_subfield_structure` VALUES ('904', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32864 INSERT INTO `marc_subfield_structure` VALUES ('904', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32865 INSERT INTO `marc_subfield_structure` VALUES ('904', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32866 INSERT INTO `marc_subfield_structure` VALUES ('904', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32867 INSERT INTO `marc_subfield_structure` VALUES ('904', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32868 INSERT INTO `marc_subfield_structure` VALUES ('904', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32869 INSERT INTO `marc_subfield_structure` VALUES ('904', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32870 INSERT INTO `marc_subfield_structure` VALUES ('904', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32871 INSERT INTO `marc_subfield_structure` VALUES ('904', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32872 INSERT INTO `marc_subfield_structure` VALUES ('904', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32873 INSERT INTO `marc_subfield_structure` VALUES ('904', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32874 INSERT INTO `marc_subfield_structure` VALUES ('904', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32875 INSERT INTO `marc_subfield_structure` VALUES ('904', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32876 INSERT INTO `marc_subfield_structure` VALUES ('905', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32877 INSERT INTO `marc_subfield_structure` VALUES ('905', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32878 INSERT INTO `marc_subfield_structure` VALUES ('905', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32879 INSERT INTO `marc_subfield_structure` VALUES ('905', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32880 INSERT INTO `marc_subfield_structure` VALUES ('905', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32881 INSERT INTO `marc_subfield_structure` VALUES ('905', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32882 INSERT INTO `marc_subfield_structure` VALUES ('905', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32883 INSERT INTO `marc_subfield_structure` VALUES ('905', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32884 INSERT INTO `marc_subfield_structure` VALUES ('905', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32885 INSERT INTO `marc_subfield_structure` VALUES ('905', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32886 INSERT INTO `marc_subfield_structure` VALUES ('905', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32887 INSERT INTO `marc_subfield_structure` VALUES ('905', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32888 INSERT INTO `marc_subfield_structure` VALUES ('905', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32889 INSERT INTO `marc_subfield_structure` VALUES ('905', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32890 INSERT INTO `marc_subfield_structure` VALUES ('905', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32891 INSERT INTO `marc_subfield_structure` VALUES ('905', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32892 INSERT INTO `marc_subfield_structure` VALUES ('905', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32893 INSERT INTO `marc_subfield_structure` VALUES ('905', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32894 INSERT INTO `marc_subfield_structure` VALUES ('905', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32895 INSERT INTO `marc_subfield_structure` VALUES ('905', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32896 INSERT INTO `marc_subfield_structure` VALUES ('905', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32897 INSERT INTO `marc_subfield_structure` VALUES ('905', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32898 INSERT INTO `marc_subfield_structure` VALUES ('905', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32899 INSERT INTO `marc_subfield_structure` VALUES ('905', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32900 INSERT INTO `marc_subfield_structure` VALUES ('905', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32901 INSERT INTO `marc_subfield_structure` VALUES ('905', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32902 INSERT INTO `marc_subfield_structure` VALUES ('905', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32903 INSERT INTO `marc_subfield_structure` VALUES ('905', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32904 INSERT INTO `marc_subfield_structure` VALUES ('905', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32905 INSERT INTO `marc_subfield_structure` VALUES ('905', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32906 INSERT INTO `marc_subfield_structure` VALUES ('905', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32907 INSERT INTO `marc_subfield_structure` VALUES ('905', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32908 INSERT INTO `marc_subfield_structure` VALUES ('905', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32909 INSERT INTO `marc_subfield_structure` VALUES ('905', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32910 INSERT INTO `marc_subfield_structure` VALUES ('905', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32911 INSERT INTO `marc_subfield_structure` VALUES ('905', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32912 INSERT INTO `marc_subfield_structure` VALUES ('906', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32913 INSERT INTO `marc_subfield_structure` VALUES ('906', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32914 INSERT INTO `marc_subfield_structure` VALUES ('906', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32915 INSERT INTO `marc_subfield_structure` VALUES ('906', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32916 INSERT INTO `marc_subfield_structure` VALUES ('906', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32917 INSERT INTO `marc_subfield_structure` VALUES ('906', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32918 INSERT INTO `marc_subfield_structure` VALUES ('906', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32919 INSERT INTO `marc_subfield_structure` VALUES ('906', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32920 INSERT INTO `marc_subfield_structure` VALUES ('906', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32921 INSERT INTO `marc_subfield_structure` VALUES ('906', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32922 INSERT INTO `marc_subfield_structure` VALUES ('906', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32923 INSERT INTO `marc_subfield_structure` VALUES ('906', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32924 INSERT INTO `marc_subfield_structure` VALUES ('906', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32925 INSERT INTO `marc_subfield_structure` VALUES ('906', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32926 INSERT INTO `marc_subfield_structure` VALUES ('906', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32927 INSERT INTO `marc_subfield_structure` VALUES ('906', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32928 INSERT INTO `marc_subfield_structure` VALUES ('906', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32929 INSERT INTO `marc_subfield_structure` VALUES ('906', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32930 INSERT INTO `marc_subfield_structure` VALUES ('906', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32931 INSERT INTO `marc_subfield_structure` VALUES ('906', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32932 INSERT INTO `marc_subfield_structure` VALUES ('906', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32933 INSERT INTO `marc_subfield_structure` VALUES ('906', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32934 INSERT INTO `marc_subfield_structure` VALUES ('906', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32935 INSERT INTO `marc_subfield_structure` VALUES ('906', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32936 INSERT INTO `marc_subfield_structure` VALUES ('906', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32937 INSERT INTO `marc_subfield_structure` VALUES ('906', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32938 INSERT INTO `marc_subfield_structure` VALUES ('906', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32939 INSERT INTO `marc_subfield_structure` VALUES ('906', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32940 INSERT INTO `marc_subfield_structure` VALUES ('906', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32941 INSERT INTO `marc_subfield_structure` VALUES ('906', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32942 INSERT INTO `marc_subfield_structure` VALUES ('906', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32943 INSERT INTO `marc_subfield_structure` VALUES ('906', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32944 INSERT INTO `marc_subfield_structure` VALUES ('906', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32945 INSERT INTO `marc_subfield_structure` VALUES ('906', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32946 INSERT INTO `marc_subfield_structure` VALUES ('906', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32947 INSERT INTO `marc_subfield_structure` VALUES ('906', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32948 INSERT INTO `marc_subfield_structure` VALUES ('907', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32949 INSERT INTO `marc_subfield_structure` VALUES ('907', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32950 INSERT INTO `marc_subfield_structure` VALUES ('907', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32951 INSERT INTO `marc_subfield_structure` VALUES ('907', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32952 INSERT INTO `marc_subfield_structure` VALUES ('907', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32953 INSERT INTO `marc_subfield_structure` VALUES ('907', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32954 INSERT INTO `marc_subfield_structure` VALUES ('907', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32955 INSERT INTO `marc_subfield_structure` VALUES ('907', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32956 INSERT INTO `marc_subfield_structure` VALUES ('907', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32957 INSERT INTO `marc_subfield_structure` VALUES ('907', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32958 INSERT INTO `marc_subfield_structure` VALUES ('907', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32959 INSERT INTO `marc_subfield_structure` VALUES ('907', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32960 INSERT INTO `marc_subfield_structure` VALUES ('907', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32961 INSERT INTO `marc_subfield_structure` VALUES ('907', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32962 INSERT INTO `marc_subfield_structure` VALUES ('907', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32963 INSERT INTO `marc_subfield_structure` VALUES ('907', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32964 INSERT INTO `marc_subfield_structure` VALUES ('907', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32965 INSERT INTO `marc_subfield_structure` VALUES ('907', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32966 INSERT INTO `marc_subfield_structure` VALUES ('907', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32967 INSERT INTO `marc_subfield_structure` VALUES ('907', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32968 INSERT INTO `marc_subfield_structure` VALUES ('907', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32969 INSERT INTO `marc_subfield_structure` VALUES ('907', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32970 INSERT INTO `marc_subfield_structure` VALUES ('907', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32971 INSERT INTO `marc_subfield_structure` VALUES ('907', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32972 INSERT INTO `marc_subfield_structure` VALUES ('907', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32973 INSERT INTO `marc_subfield_structure` VALUES ('907', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32974 INSERT INTO `marc_subfield_structure` VALUES ('907', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32975 INSERT INTO `marc_subfield_structure` VALUES ('907', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32976 INSERT INTO `marc_subfield_structure` VALUES ('907', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32977 INSERT INTO `marc_subfield_structure` VALUES ('907', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32978 INSERT INTO `marc_subfield_structure` VALUES ('907', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32979 INSERT INTO `marc_subfield_structure` VALUES ('907', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32980 INSERT INTO `marc_subfield_structure` VALUES ('907', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32981 INSERT INTO `marc_subfield_structure` VALUES ('907', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32982 INSERT INTO `marc_subfield_structure` VALUES ('907', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32983 INSERT INTO `marc_subfield_structure` VALUES ('907', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32984 INSERT INTO `marc_subfield_structure` VALUES ('908', 'a', 'Put command parameter', 'Put command parameter', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
32985 INSERT INTO `marc_subfield_structure` VALUES ('910', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32986 INSERT INTO `marc_subfield_structure` VALUES ('910', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32987 INSERT INTO `marc_subfield_structure` VALUES ('910', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32988 INSERT INTO `marc_subfield_structure` VALUES ('910', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32989 INSERT INTO `marc_subfield_structure` VALUES ('910', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32990 INSERT INTO `marc_subfield_structure` VALUES ('910', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32991 INSERT INTO `marc_subfield_structure` VALUES ('910', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32992 INSERT INTO `marc_subfield_structure` VALUES ('910', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32993 INSERT INTO `marc_subfield_structure` VALUES ('910', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32994 INSERT INTO `marc_subfield_structure` VALUES ('910', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32995 INSERT INTO `marc_subfield_structure` VALUES ('910', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32996 INSERT INTO `marc_subfield_structure` VALUES ('910', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32997 INSERT INTO `marc_subfield_structure` VALUES ('910', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32998 INSERT INTO `marc_subfield_structure` VALUES ('910', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
32999 INSERT INTO `marc_subfield_structure` VALUES ('910', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33000 INSERT INTO `marc_subfield_structure` VALUES ('910', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33001 INSERT INTO `marc_subfield_structure` VALUES ('91o', 'a', 'User-option data', 'User-option data', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33002 INSERT INTO `marc_subfield_structure` VALUES ('91r', 'a', 'RLG standards note', 'RLG standards note', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33003 INSERT INTO `marc_subfield_structure` VALUES ('911', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33004 INSERT INTO `marc_subfield_structure` VALUES ('911', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33005 INSERT INTO `marc_subfield_structure` VALUES ('911', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33006 INSERT INTO `marc_subfield_structure` VALUES ('911', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33007 INSERT INTO `marc_subfield_structure` VALUES ('911', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33008 INSERT INTO `marc_subfield_structure` VALUES ('911', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33009 INSERT INTO `marc_subfield_structure` VALUES ('911', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33010 INSERT INTO `marc_subfield_structure` VALUES ('911', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33011 INSERT INTO `marc_subfield_structure` VALUES ('911', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33012 INSERT INTO `marc_subfield_structure` VALUES ('911', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33013 INSERT INTO `marc_subfield_structure` VALUES ('911', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33014 INSERT INTO `marc_subfield_structure` VALUES ('911', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33015 INSERT INTO `marc_subfield_structure` VALUES ('911', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33016 INSERT INTO `marc_subfield_structure` VALUES ('911', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33017 INSERT INTO `marc_subfield_structure` VALUES ('911', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33018 INSERT INTO `marc_subfield_structure` VALUES ('911', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33019 INSERT INTO `marc_subfield_structure` VALUES ('911', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33020 INSERT INTO `marc_subfield_structure` VALUES ('930', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33021 INSERT INTO `marc_subfield_structure` VALUES ('930', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33022 INSERT INTO `marc_subfield_structure` VALUES ('930', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33023 INSERT INTO `marc_subfield_structure` VALUES ('930', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33024 INSERT INTO `marc_subfield_structure` VALUES ('930', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33025 INSERT INTO `marc_subfield_structure` VALUES ('930', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33026 INSERT INTO `marc_subfield_structure` VALUES ('930', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33027 INSERT INTO `marc_subfield_structure` VALUES ('930', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33028 INSERT INTO `marc_subfield_structure` VALUES ('930', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33029 INSERT INTO `marc_subfield_structure` VALUES ('930', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33030 INSERT INTO `marc_subfield_structure` VALUES ('930', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33031 INSERT INTO `marc_subfield_structure` VALUES ('930', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33032 INSERT INTO `marc_subfield_structure` VALUES ('930', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33033 INSERT INTO `marc_subfield_structure` VALUES ('930', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33034 INSERT INTO `marc_subfield_structure` VALUES ('930', 's', 'Version', 'Version', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33035 INSERT INTO `marc_subfield_structure` VALUES ('930', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33036 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'a', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'IR', '', '');
33037 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'b', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'IR', '', '');
33038 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'c', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'IR', '', '');
33039 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'd', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'IR', '', '');
33040 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'e', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'IR', '', '');
33041 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'f', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'IR', '', '');
33042 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'g', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'IR', '', '');
33043 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'h', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'IR', '', '');
33044 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'i', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'IR', '', '');
33045 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'k', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'IR', '', '');
33046 INSERT INTO `marc_subfield_structure` VALUES ('936', 'a', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33047 INSERT INTO `marc_subfield_structure` VALUES ('940', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33048 INSERT INTO `marc_subfield_structure` VALUES ('940', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33049 INSERT INTO `marc_subfield_structure` VALUES ('940', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', 1, -6, 'IR', '', '');
33050 INSERT INTO `marc_subfield_structure` VALUES ('940', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33051 INSERT INTO `marc_subfield_structure` VALUES ('940', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33052 INSERT INTO `marc_subfield_structure` VALUES ('940', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33053 INSERT INTO `marc_subfield_structure` VALUES ('940', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33054 INSERT INTO `marc_subfield_structure` VALUES ('940', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33055 INSERT INTO `marc_subfield_structure` VALUES ('940', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33056 INSERT INTO `marc_subfield_structure` VALUES ('940', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33057 INSERT INTO `marc_subfield_structure` VALUES ('940', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33058 INSERT INTO `marc_subfield_structure` VALUES ('940', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33059 INSERT INTO `marc_subfield_structure` VALUES ('940', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33060 INSERT INTO `marc_subfield_structure` VALUES ('940', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33061 INSERT INTO `marc_subfield_structure` VALUES ('940', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33062 INSERT INTO `marc_subfield_structure` VALUES ('941', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33063 INSERT INTO `marc_subfield_structure` VALUES ('941', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'IR', '', '');
33064 INSERT INTO `marc_subfield_structure` VALUES ('943', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33065 INSERT INTO `marc_subfield_structure` VALUES ('943', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33066 INSERT INTO `marc_subfield_structure` VALUES ('943', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 9, '', '', '', 1, 5, 'IR', '', '130');
33067 INSERT INTO `marc_subfield_structure` VALUES ('943', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33068 INSERT INTO `marc_subfield_structure` VALUES ('943', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33069 INSERT INTO `marc_subfield_structure` VALUES ('943', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33070 INSERT INTO `marc_subfield_structure` VALUES ('943', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33071 INSERT INTO `marc_subfield_structure` VALUES ('943', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33072 INSERT INTO `marc_subfield_structure` VALUES ('943', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33073 INSERT INTO `marc_subfield_structure` VALUES ('943', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33074 INSERT INTO `marc_subfield_structure` VALUES ('943', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33075 INSERT INTO `marc_subfield_structure` VALUES ('943', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33076 INSERT INTO `marc_subfield_structure` VALUES ('943', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33077 INSERT INTO `marc_subfield_structure` VALUES ('943', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33078 INSERT INTO `marc_subfield_structure` VALUES ('943', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33079 INSERT INTO `marc_subfield_structure` VALUES ('945', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33080 INSERT INTO `marc_subfield_structure` VALUES ('945', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33081 INSERT INTO `marc_subfield_structure` VALUES ('945', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33082 INSERT INTO `marc_subfield_structure` VALUES ('945', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33083 INSERT INTO `marc_subfield_structure` VALUES ('945', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33084 INSERT INTO `marc_subfield_structure` VALUES ('945', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33085 INSERT INTO `marc_subfield_structure` VALUES ('945', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33086 INSERT INTO `marc_subfield_structure` VALUES ('945', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33087 INSERT INTO `marc_subfield_structure` VALUES ('945', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33088 INSERT INTO `marc_subfield_structure` VALUES ('945', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33089 INSERT INTO `marc_subfield_structure` VALUES ('945', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33090 INSERT INTO `marc_subfield_structure` VALUES ('945', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33091 INSERT INTO `marc_subfield_structure` VALUES ('945', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33092 INSERT INTO `marc_subfield_structure` VALUES ('945', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33093 INSERT INTO `marc_subfield_structure` VALUES ('945', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33094 INSERT INTO `marc_subfield_structure` VALUES ('945', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33095 INSERT INTO `marc_subfield_structure` VALUES ('945', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33096 INSERT INTO `marc_subfield_structure` VALUES ('945', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33097 INSERT INTO `marc_subfield_structure` VALUES ('945', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33098 INSERT INTO `marc_subfield_structure` VALUES ('945', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33099 INSERT INTO `marc_subfield_structure` VALUES ('945', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33100 INSERT INTO `marc_subfield_structure` VALUES ('945', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33101 INSERT INTO `marc_subfield_structure` VALUES ('945', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33102 INSERT INTO `marc_subfield_structure` VALUES ('945', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33103 INSERT INTO `marc_subfield_structure` VALUES ('945', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33104 INSERT INTO `marc_subfield_structure` VALUES ('945', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33105 INSERT INTO `marc_subfield_structure` VALUES ('945', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33106 INSERT INTO `marc_subfield_structure` VALUES ('945', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33107 INSERT INTO `marc_subfield_structure` VALUES ('945', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33108 INSERT INTO `marc_subfield_structure` VALUES ('945', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33109 INSERT INTO `marc_subfield_structure` VALUES ('945', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33110 INSERT INTO `marc_subfield_structure` VALUES ('945', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33111 INSERT INTO `marc_subfield_structure` VALUES ('945', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33112 INSERT INTO `marc_subfield_structure` VALUES ('945', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33113 INSERT INTO `marc_subfield_structure` VALUES ('945', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33114 INSERT INTO `marc_subfield_structure` VALUES ('945', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33115 INSERT INTO `marc_subfield_structure` VALUES ('94c', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33116 INSERT INTO `marc_subfield_structure` VALUES ('94c', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33117 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'a', 'Title', 'Title', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33118 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33119 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33120 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33121 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33122 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33123 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33124 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33125 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'k', 'Form', 'Form', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33126 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33127 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33128 INSERT INTO `marc_subfield_structure` VALUES ('94c', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33129 INSERT INTO `marc_subfield_structure` VALUES ('946', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33130 INSERT INTO `marc_subfield_structure` VALUES ('946', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33131 INSERT INTO `marc_subfield_structure` VALUES ('946', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33132 INSERT INTO `marc_subfield_structure` VALUES ('946', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33133 INSERT INTO `marc_subfield_structure` VALUES ('946', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33134 INSERT INTO `marc_subfield_structure` VALUES ('946', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33135 INSERT INTO `marc_subfield_structure` VALUES ('946', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33136 INSERT INTO `marc_subfield_structure` VALUES ('946', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33137 INSERT INTO `marc_subfield_structure` VALUES ('946', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33138 INSERT INTO `marc_subfield_structure` VALUES ('946', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33139 INSERT INTO `marc_subfield_structure` VALUES ('946', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33140 INSERT INTO `marc_subfield_structure` VALUES ('946', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33141 INSERT INTO `marc_subfield_structure` VALUES ('946', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33142 INSERT INTO `marc_subfield_structure` VALUES ('946', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33143 INSERT INTO `marc_subfield_structure` VALUES ('946', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33144 INSERT INTO `marc_subfield_structure` VALUES ('946', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33145 INSERT INTO `marc_subfield_structure` VALUES ('946', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33146 INSERT INTO `marc_subfield_structure` VALUES ('946', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33147 INSERT INTO `marc_subfield_structure` VALUES ('946', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33148 INSERT INTO `marc_subfield_structure` VALUES ('946', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33149 INSERT INTO `marc_subfield_structure` VALUES ('946', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33150 INSERT INTO `marc_subfield_structure` VALUES ('946', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33151 INSERT INTO `marc_subfield_structure` VALUES ('946', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33152 INSERT INTO `marc_subfield_structure` VALUES ('946', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33153 INSERT INTO `marc_subfield_structure` VALUES ('946', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33154 INSERT INTO `marc_subfield_structure` VALUES ('946', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33155 INSERT INTO `marc_subfield_structure` VALUES ('946', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33156 INSERT INTO `marc_subfield_structure` VALUES ('946', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33157 INSERT INTO `marc_subfield_structure` VALUES ('946', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33158 INSERT INTO `marc_subfield_structure` VALUES ('946', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33159 INSERT INTO `marc_subfield_structure` VALUES ('946', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33160 INSERT INTO `marc_subfield_structure` VALUES ('946', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33161 INSERT INTO `marc_subfield_structure` VALUES ('946', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33162 INSERT INTO `marc_subfield_structure` VALUES ('946', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33163 INSERT INTO `marc_subfield_structure` VALUES ('946', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33164 INSERT INTO `marc_subfield_structure` VALUES ('946', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33165 INSERT INTO `marc_subfield_structure` VALUES ('947', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33166 INSERT INTO `marc_subfield_structure` VALUES ('947', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33167 INSERT INTO `marc_subfield_structure` VALUES ('947', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33168 INSERT INTO `marc_subfield_structure` VALUES ('947', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33169 INSERT INTO `marc_subfield_structure` VALUES ('947', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33170 INSERT INTO `marc_subfield_structure` VALUES ('947', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33171 INSERT INTO `marc_subfield_structure` VALUES ('947', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33172 INSERT INTO `marc_subfield_structure` VALUES ('947', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33173 INSERT INTO `marc_subfield_structure` VALUES ('947', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33174 INSERT INTO `marc_subfield_structure` VALUES ('947', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33175 INSERT INTO `marc_subfield_structure` VALUES ('947', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33176 INSERT INTO `marc_subfield_structure` VALUES ('947', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33177 INSERT INTO `marc_subfield_structure` VALUES ('947', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33178 INSERT INTO `marc_subfield_structure` VALUES ('947', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33179 INSERT INTO `marc_subfield_structure` VALUES ('947', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33180 INSERT INTO `marc_subfield_structure` VALUES ('947', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33181 INSERT INTO `marc_subfield_structure` VALUES ('947', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33182 INSERT INTO `marc_subfield_structure` VALUES ('947', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33183 INSERT INTO `marc_subfield_structure` VALUES ('947', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33184 INSERT INTO `marc_subfield_structure` VALUES ('947', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33185 INSERT INTO `marc_subfield_structure` VALUES ('947', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33186 INSERT INTO `marc_subfield_structure` VALUES ('947', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33187 INSERT INTO `marc_subfield_structure` VALUES ('947', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33188 INSERT INTO `marc_subfield_structure` VALUES ('947', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33189 INSERT INTO `marc_subfield_structure` VALUES ('947', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33190 INSERT INTO `marc_subfield_structure` VALUES ('947', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33191 INSERT INTO `marc_subfield_structure` VALUES ('947', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33192 INSERT INTO `marc_subfield_structure` VALUES ('947', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33193 INSERT INTO `marc_subfield_structure` VALUES ('947', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33194 INSERT INTO `marc_subfield_structure` VALUES ('947', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33195 INSERT INTO `marc_subfield_structure` VALUES ('947', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33196 INSERT INTO `marc_subfield_structure` VALUES ('947', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33197 INSERT INTO `marc_subfield_structure` VALUES ('947', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33198 INSERT INTO `marc_subfield_structure` VALUES ('947', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33199 INSERT INTO `marc_subfield_structure` VALUES ('947', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33200 INSERT INTO `marc_subfield_structure` VALUES ('947', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33201 INSERT INTO `marc_subfield_structure` VALUES ('948', '0', '0 (OCLC)', '0 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33202 INSERT INTO `marc_subfield_structure` VALUES ('948', '1', '1 (OCLC)', '1 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33203 INSERT INTO `marc_subfield_structure` VALUES ('948', '2', '2 (OCLC)', '2 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33204 INSERT INTO `marc_subfield_structure` VALUES ('948', '3', '3 (OCLC)', '3 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33205 INSERT INTO `marc_subfield_structure` VALUES ('948', '4', '4 (OCLC)', '4 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33206 INSERT INTO `marc_subfield_structure` VALUES ('948', '5', '5 (OCLC)', '5 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33207 INSERT INTO `marc_subfield_structure` VALUES ('948', '6', '6 (OCLC)', '6 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33208 INSERT INTO `marc_subfield_structure` VALUES ('948', '7', '7 (OCLC)', '7 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33209 INSERT INTO `marc_subfield_structure` VALUES ('948', '8', '8 (OCLC)', '8 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33210 INSERT INTO `marc_subfield_structure` VALUES ('948', '9', '9 (OCLC)', '9 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33211 INSERT INTO `marc_subfield_structure` VALUES ('948', 'a', 'Series part designator, SPT (RLIN)', 'Series part designator, SPT (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33212 INSERT INTO `marc_subfield_structure` VALUES ('948', 'b', 'b (OCLC)', 'b (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33213 INSERT INTO `marc_subfield_structure` VALUES ('948', 'c', 'c (OCLC)', 'c (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33214 INSERT INTO `marc_subfield_structure` VALUES ('948', 'd', 'd (OCLC)', 'd (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33215 INSERT INTO `marc_subfield_structure` VALUES ('948', 'e', 'e (OCLC)', 'e (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33216 INSERT INTO `marc_subfield_structure` VALUES ('948', 'f', 'f (OCLC)', 'f (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33217 INSERT INTO `marc_subfield_structure` VALUES ('948', 'g', 'g (OCLC)', 'g (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33218 INSERT INTO `marc_subfield_structure` VALUES ('948', 'h', 'h (OCLC)', 'h (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33219 INSERT INTO `marc_subfield_structure` VALUES ('948', 'i', 'i (OCLC)', 'i (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33220 INSERT INTO `marc_subfield_structure` VALUES ('948', 'j', 'j (OCLC)', 'j (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33221 INSERT INTO `marc_subfield_structure` VALUES ('948', 'k', 'k (OCLC)', 'k (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33222 INSERT INTO `marc_subfield_structure` VALUES ('948', 'l', 'l (OCLC)', 'l (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33223 INSERT INTO `marc_subfield_structure` VALUES ('948', 'm', 'm (OCLC)', 'm (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33224 INSERT INTO `marc_subfield_structure` VALUES ('948', 'n', 'n (OCLC)', 'n (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33225 INSERT INTO `marc_subfield_structure` VALUES ('948', 'o', 'o (OCLC)', 'o (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33226 INSERT INTO `marc_subfield_structure` VALUES ('948', 'p', 'p (OCLC)', 'p (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33227 INSERT INTO `marc_subfield_structure` VALUES ('948', 'q', 'q (OCLC)', 'q (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33228 INSERT INTO `marc_subfield_structure` VALUES ('948', 'r', 'r (OCLC)', 'r (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33229 INSERT INTO `marc_subfield_structure` VALUES ('948', 's', 's (OCLC)', 's (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33230 INSERT INTO `marc_subfield_structure` VALUES ('948', 't', 't (OCLC)', 't (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33231 INSERT INTO `marc_subfield_structure` VALUES ('948', 'u', 'u (OCLC)', 'u (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33232 INSERT INTO `marc_subfield_structure` VALUES ('948', 'v', 'v (OCLC)', 'v (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33233 INSERT INTO `marc_subfield_structure` VALUES ('948', 'w', 'w (OCLC)', 'w (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33234 INSERT INTO `marc_subfield_structure` VALUES ('948', 'x', 'x (OCLC)', 'x (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33235 INSERT INTO `marc_subfield_structure` VALUES ('948', 'y', 'y (OCLC)', 'y (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33236 INSERT INTO `marc_subfield_structure` VALUES ('948', 'z', 'z (OCLC)', 'z (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33237 INSERT INTO `marc_subfield_structure` VALUES ('949', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33238 INSERT INTO `marc_subfield_structure` VALUES ('949', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33239 INSERT INTO `marc_subfield_structure` VALUES ('949', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33240 INSERT INTO `marc_subfield_structure` VALUES ('949', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33241 INSERT INTO `marc_subfield_structure` VALUES ('949', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33242 INSERT INTO `marc_subfield_structure` VALUES ('949', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33243 INSERT INTO `marc_subfield_structure` VALUES ('949', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33244 INSERT INTO `marc_subfield_structure` VALUES ('949', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33245 INSERT INTO `marc_subfield_structure` VALUES ('949', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33246 INSERT INTO `marc_subfield_structure` VALUES ('949', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33247 INSERT INTO `marc_subfield_structure` VALUES ('949', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33248 INSERT INTO `marc_subfield_structure` VALUES ('949', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33249 INSERT INTO `marc_subfield_structure` VALUES ('949', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33250 INSERT INTO `marc_subfield_structure` VALUES ('949', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33251 INSERT INTO `marc_subfield_structure` VALUES ('949', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33252 INSERT INTO `marc_subfield_structure` VALUES ('949', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33253 INSERT INTO `marc_subfield_structure` VALUES ('949', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33254 INSERT INTO `marc_subfield_structure` VALUES ('949', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33255 INSERT INTO `marc_subfield_structure` VALUES ('949', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33256 INSERT INTO `marc_subfield_structure` VALUES ('949', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33257 INSERT INTO `marc_subfield_structure` VALUES ('949', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33258 INSERT INTO `marc_subfield_structure` VALUES ('949', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33259 INSERT INTO `marc_subfield_structure` VALUES ('949', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33260 INSERT INTO `marc_subfield_structure` VALUES ('949', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33261 INSERT INTO `marc_subfield_structure` VALUES ('949', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33262 INSERT INTO `marc_subfield_structure` VALUES ('949', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33263 INSERT INTO `marc_subfield_structure` VALUES ('949', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33264 INSERT INTO `marc_subfield_structure` VALUES ('949', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33265 INSERT INTO `marc_subfield_structure` VALUES ('949', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33266 INSERT INTO `marc_subfield_structure` VALUES ('949', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33267 INSERT INTO `marc_subfield_structure` VALUES ('949', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33268 INSERT INTO `marc_subfield_structure` VALUES ('949', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33269 INSERT INTO `marc_subfield_structure` VALUES ('949', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33270 INSERT INTO `marc_subfield_structure` VALUES ('949', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33271 INSERT INTO `marc_subfield_structure` VALUES ('949', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33272 INSERT INTO `marc_subfield_structure` VALUES ('949', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33273 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'a', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33274 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'b', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33275 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'c', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33276 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'd', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33277 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'e', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33278 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'a', 'ATC', 'ATC', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33279 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'b', 'SNR', 'SNR', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33280 INSERT INTO `marc_subfield_structure` VALUES ('950', 'a', 'Classification number, LCAL (RLIN)', 'Classification number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33281 INSERT INTO `marc_subfield_structure` VALUES ('950', 'b', 'Book number/undivided call number, LCAL (RLIN)', 'Book number/undivided call number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33282 INSERT INTO `marc_subfield_structure` VALUES ('950', 'd', 'Additional free-text stamp above the call number, LCAL (RLIN)', 'Additional free-text stamp above the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33283 INSERT INTO `marc_subfield_structure` VALUES ('950', 'e', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33284 INSERT INTO `marc_subfield_structure` VALUES ('950', 'f', 'Location-level footnote, LFNT (RLIN)', 'Location-level footnote, LFNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33285 INSERT INTO `marc_subfield_structure` VALUES ('950', 'h', 'Location-level output transaction history, LHST (RLIN)', 'Location-level output transaction history, LHST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33286 INSERT INTO `marc_subfield_structure` VALUES ('950', 'i', 'Location-level extra card request, LEXT (RLIN)', 'Location-level extra card request, LEXT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33287 INSERT INTO `marc_subfield_structure` VALUES ('950', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33288 INSERT INTO `marc_subfield_structure` VALUES ('950', 'n', 'Location-level additional note, LANT (RLIN)', 'Location-level additional note, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33289 INSERT INTO `marc_subfield_structure` VALUES ('950', 'p', 'Location-level pathfinder, LPTH (RLIN)', 'Location-level pathfinder, LPTH (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33290 INSERT INTO `marc_subfield_structure` VALUES ('950', 't', 'Location-level field suppression, LFSP (RLIN)', 'Location-level field suppression, LFSP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33291 INSERT INTO `marc_subfield_structure` VALUES ('950', 'u', 'Non-printing notes, LANT (RLIN)', 'Non-printing notes, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33292 INSERT INTO `marc_subfield_structure` VALUES ('950', 'v', 'Volumes, LVOL (RLIN)', 'Volumes, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33293 INSERT INTO `marc_subfield_structure` VALUES ('950', 'w', 'Subscription status code, LANT (RLIN)', 'Subscription status code, LANT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33294 INSERT INTO `marc_subfield_structure` VALUES ('950', 'y', 'Date, LVOL (RLIN)', 'Date, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33295 INSERT INTO `marc_subfield_structure` VALUES ('950', 'z', 'Retention, LVOL (RLIN)', 'Retention, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33296 INSERT INTO `marc_subfield_structure` VALUES ('951', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
33297 INSERT INTO `marc_subfield_structure` VALUES ('951', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
33298 INSERT INTO `marc_subfield_structure` VALUES ('951', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
33299 INSERT INTO `marc_subfield_structure` VALUES ('951', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
33300 INSERT INTO `marc_subfield_structure` VALUES ('951', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
33301 INSERT INTO `marc_subfield_structure` VALUES ('951', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
33302 INSERT INTO `marc_subfield_structure` VALUES ('951', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
33303 INSERT INTO `marc_subfield_structure` VALUES ('951', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
33304 INSERT INTO `marc_subfield_structure` VALUES ('951', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
33305 INSERT INTO `marc_subfield_structure` VALUES ('951', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'IR', '', '');
33306 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'a', 'Record ID (RLIN)', 'Record ID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33307 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'b', 'Institution name (RLIN)', 'Institution name (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33308 INSERT INTO `marc_subfield_structure` VALUES ('95r', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'IR', '', '');
33309 INSERT INTO `marc_subfield_structure` VALUES ('95r', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'IR', '', '');
33310 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'a', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'IR', '', '');
33311 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'b', 'State, province, territory', 'State, province, territory', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'IR', '', '');
33312 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'c', 'County, region, islands area', 'County, region, islands area', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'IR', '', '');
33313 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'd', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'IR', '', '');
33314 INSERT INTO `marc_subfield_structure` VALUES ('955', 'a', 'Classification number, CCAL (RLIN)', 'Classification number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33315 INSERT INTO `marc_subfield_structure` VALUES ('955', 'b', 'Book number/undivided call number, CCAL (RLIN)', 'Book number/undivided call number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33316 INSERT INTO `marc_subfield_structure` VALUES ('955', 'c', 'Copy information and material description, CCAL + MDES (RLIN)', 'Copy information and material description, CCAL + MDES (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33317 INSERT INTO `marc_subfield_structure` VALUES ('955', 'h', 'Copy status--for earlier dates, CST (RLIN)', 'Copy status--for earlier dates, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33318 INSERT INTO `marc_subfield_structure` VALUES ('955', 'i', 'Copy status, CST (RLIN)', 'Copy status, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33319 INSERT INTO `marc_subfield_structure` VALUES ('955', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33320 INSERT INTO `marc_subfield_structure` VALUES ('955', 'q', 'Aquisitions control number, HNT (RLIN)', 'Aquisitions control number, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33321 INSERT INTO `marc_subfield_structure` VALUES ('955', 'r', 'Circulation control number, HNT (RLIN)', 'Circulation control number, HNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33322 INSERT INTO `marc_subfield_structure` VALUES ('955', 's', 'Shelflist note, HNT (RLIN)', 'Shelflist note, HNT (RLIN)', 1, 0, '', 9, '', '', '', 1, 5, 'IR', '', '');
33323 INSERT INTO `marc_subfield_structure` VALUES ('955', 'u', 'Non-printing notes, HNT (RLIN)', 'Non-printing notes, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33324 INSERT INTO `marc_subfield_structure` VALUES ('956', '2', 'Access method', 'Access method', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33325 INSERT INTO `marc_subfield_structure` VALUES ('956', '3', 'Materials specified', 'Materials specified', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33326 INSERT INTO `marc_subfield_structure` VALUES ('956', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33327 INSERT INTO `marc_subfield_structure` VALUES ('956', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33328 INSERT INTO `marc_subfield_structure` VALUES ('956', 'a', 'Host name', 'Host name', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33329 INSERT INTO `marc_subfield_structure` VALUES ('956', 'b', 'Access number', 'Access number', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33330 INSERT INTO `marc_subfield_structure` VALUES ('956', 'c', 'Compression information', 'Compression information', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33331 INSERT INTO `marc_subfield_structure` VALUES ('956', 'd', 'Path', 'Path', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33332 INSERT INTO `marc_subfield_structure` VALUES ('956', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33333 INSERT INTO `marc_subfield_structure` VALUES ('956', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33334 INSERT INTO `marc_subfield_structure` VALUES ('956', 'i', 'Instruction', 'Instruction', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33335 INSERT INTO `marc_subfield_structure` VALUES ('956', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33336 INSERT INTO `marc_subfield_structure` VALUES ('956', 'k', 'Password', 'Password', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33337 INSERT INTO `marc_subfield_structure` VALUES ('956', 'l', 'Logon', 'Logon', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33338 INSERT INTO `marc_subfield_structure` VALUES ('956', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33339 INSERT INTO `marc_subfield_structure` VALUES ('956', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33340 INSERT INTO `marc_subfield_structure` VALUES ('956', 'o', 'Operating system', 'Operating system', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33341 INSERT INTO `marc_subfield_structure` VALUES ('956', 'p', 'Port', 'Port', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33342 INSERT INTO `marc_subfield_structure` VALUES ('956', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33343 INSERT INTO `marc_subfield_structure` VALUES ('956', 'r', 'Settings', 'Settings', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33344 INSERT INTO `marc_subfield_structure` VALUES ('956', 's', 'File size', 'File size', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33345 INSERT INTO `marc_subfield_structure` VALUES ('956', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33346 INSERT INTO `marc_subfield_structure` VALUES ('956', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -6, 'IR', '', '');
33347 INSERT INTO `marc_subfield_structure` VALUES ('956', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33348 INSERT INTO `marc_subfield_structure` VALUES ('956', 'w', 'Record control number', 'Record control number', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33349 INSERT INTO `marc_subfield_structure` VALUES ('956', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', 0, 6, 'IR', '', '');
33350 INSERT INTO `marc_subfield_structure` VALUES ('956', 'y', 'Link text', 'Link text', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33351 INSERT INTO `marc_subfield_structure` VALUES ('956', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33352 INSERT INTO `marc_subfield_structure` VALUES ('960', '3', 'Materials specified, MATL', 'Materials specified, MATL', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33353 INSERT INTO `marc_subfield_structure` VALUES ('960', 'a', 'Physical location, PLOC (RLIN)', 'Physical location, PLOC (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33354 INSERT INTO `marc_subfield_structure` VALUES ('967', 'a', 'GNR (RLIN)', 'GNR (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33355 INSERT INTO `marc_subfield_structure` VALUES ('967', 'c', 'PSI (RLIN)', 'PSI (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33356 INSERT INTO `marc_subfield_structure` VALUES ('980', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33357 INSERT INTO `marc_subfield_structure` VALUES ('980', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33358 INSERT INTO `marc_subfield_structure` VALUES ('980', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33359 INSERT INTO `marc_subfield_structure` VALUES ('980', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33360 INSERT INTO `marc_subfield_structure` VALUES ('980', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33361 INSERT INTO `marc_subfield_structure` VALUES ('980', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33362 INSERT INTO `marc_subfield_structure` VALUES ('980', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33363 INSERT INTO `marc_subfield_structure` VALUES ('980', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33364 INSERT INTO `marc_subfield_structure` VALUES ('980', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33365 INSERT INTO `marc_subfield_structure` VALUES ('980', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33366 INSERT INTO `marc_subfield_structure` VALUES ('980', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33367 INSERT INTO `marc_subfield_structure` VALUES ('980', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33368 INSERT INTO `marc_subfield_structure` VALUES ('980', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33369 INSERT INTO `marc_subfield_structure` VALUES ('980', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33370 INSERT INTO `marc_subfield_structure` VALUES ('980', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33371 INSERT INTO `marc_subfield_structure` VALUES ('980', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33372 INSERT INTO `marc_subfield_structure` VALUES ('980', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33373 INSERT INTO `marc_subfield_structure` VALUES ('980', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33374 INSERT INTO `marc_subfield_structure` VALUES ('980', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33375 INSERT INTO `marc_subfield_structure` VALUES ('980', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33376 INSERT INTO `marc_subfield_structure` VALUES ('980', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33377 INSERT INTO `marc_subfield_structure` VALUES ('980', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33378 INSERT INTO `marc_subfield_structure` VALUES ('980', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33379 INSERT INTO `marc_subfield_structure` VALUES ('980', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33380 INSERT INTO `marc_subfield_structure` VALUES ('981', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33381 INSERT INTO `marc_subfield_structure` VALUES ('981', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33382 INSERT INTO `marc_subfield_structure` VALUES ('981', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33383 INSERT INTO `marc_subfield_structure` VALUES ('981', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33384 INSERT INTO `marc_subfield_structure` VALUES ('981', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33385 INSERT INTO `marc_subfield_structure` VALUES ('981', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33386 INSERT INTO `marc_subfield_structure` VALUES ('981', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33387 INSERT INTO `marc_subfield_structure` VALUES ('981', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33388 INSERT INTO `marc_subfield_structure` VALUES ('981', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33389 INSERT INTO `marc_subfield_structure` VALUES ('981', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33390 INSERT INTO `marc_subfield_structure` VALUES ('981', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33391 INSERT INTO `marc_subfield_structure` VALUES ('981', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33392 INSERT INTO `marc_subfield_structure` VALUES ('981', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33393 INSERT INTO `marc_subfield_structure` VALUES ('981', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33394 INSERT INTO `marc_subfield_structure` VALUES ('981', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33395 INSERT INTO `marc_subfield_structure` VALUES ('981', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33396 INSERT INTO `marc_subfield_structure` VALUES ('981', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33397 INSERT INTO `marc_subfield_structure` VALUES ('981', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33398 INSERT INTO `marc_subfield_structure` VALUES ('981', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33399 INSERT INTO `marc_subfield_structure` VALUES ('981', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33400 INSERT INTO `marc_subfield_structure` VALUES ('981', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33401 INSERT INTO `marc_subfield_structure` VALUES ('981', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33402 INSERT INTO `marc_subfield_structure` VALUES ('982', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33403 INSERT INTO `marc_subfield_structure` VALUES ('982', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33404 INSERT INTO `marc_subfield_structure` VALUES ('982', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33405 INSERT INTO `marc_subfield_structure` VALUES ('982', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33406 INSERT INTO `marc_subfield_structure` VALUES ('982', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33407 INSERT INTO `marc_subfield_structure` VALUES ('982', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33408 INSERT INTO `marc_subfield_structure` VALUES ('982', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33409 INSERT INTO `marc_subfield_structure` VALUES ('982', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33410 INSERT INTO `marc_subfield_structure` VALUES ('982', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33411 INSERT INTO `marc_subfield_structure` VALUES ('982', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33412 INSERT INTO `marc_subfield_structure` VALUES ('982', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33413 INSERT INTO `marc_subfield_structure` VALUES ('982', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33414 INSERT INTO `marc_subfield_structure` VALUES ('982', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33415 INSERT INTO `marc_subfield_structure` VALUES ('982', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33416 INSERT INTO `marc_subfield_structure` VALUES ('982', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33417 INSERT INTO `marc_subfield_structure` VALUES ('982', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33418 INSERT INTO `marc_subfield_structure` VALUES ('982', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33419 INSERT INTO `marc_subfield_structure` VALUES ('982', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33420 INSERT INTO `marc_subfield_structure` VALUES ('982', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33421 INSERT INTO `marc_subfield_structure` VALUES ('982', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'IR', '', '');
33422 INSERT INTO `marc_subfield_structure` VALUES ('983', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33423 INSERT INTO `marc_subfield_structure` VALUES ('983', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33424 INSERT INTO `marc_subfield_structure` VALUES ('983', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33425 INSERT INTO `marc_subfield_structure` VALUES ('983', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33426 INSERT INTO `marc_subfield_structure` VALUES ('983', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33427 INSERT INTO `marc_subfield_structure` VALUES ('983', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33428 INSERT INTO `marc_subfield_structure` VALUES ('983', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33429 INSERT INTO `marc_subfield_structure` VALUES ('983', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33430 INSERT INTO `marc_subfield_structure` VALUES ('983', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33431 INSERT INTO `marc_subfield_structure` VALUES ('983', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33432 INSERT INTO `marc_subfield_structure` VALUES ('983', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33433 INSERT INTO `marc_subfield_structure` VALUES ('983', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33434 INSERT INTO `marc_subfield_structure` VALUES ('983', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33435 INSERT INTO `marc_subfield_structure` VALUES ('983', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33436 INSERT INTO `marc_subfield_structure` VALUES ('983', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33437 INSERT INTO `marc_subfield_structure` VALUES ('983', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33438 INSERT INTO `marc_subfield_structure` VALUES ('983', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33439 INSERT INTO `marc_subfield_structure` VALUES ('984', 'a', 'Holding library identification number', 'Holding library identification number', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33440 INSERT INTO `marc_subfield_structure` VALUES ('984', 'b', 'Physical description codes', 'Physical description codes', 1, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33441 INSERT INTO `marc_subfield_structure` VALUES ('984', 'c', 'Call number', 'Call number', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33442 INSERT INTO `marc_subfield_structure` VALUES ('984', 'd', 'Volume or other numbering', 'Volume or other numbering', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33443 INSERT INTO `marc_subfield_structure` VALUES ('984', 'e', 'Dates', 'Dates', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33444 INSERT INTO `marc_subfield_structure` VALUES ('984', 'f', 'Completeness note', 'Completeness note', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33445 INSERT INTO `marc_subfield_structure` VALUES ('984', 'g', 'Referral note', 'Referral note', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33446 INSERT INTO `marc_subfield_structure` VALUES ('984', 'h', 'Retention note', 'Retention note', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33447 INSERT INTO `marc_subfield_structure` VALUES ('987', 'a', 'Romanization/conversion identifier', 'Romanization/conversion identifier', 0, 0, '', 9, '', '', '', NULL, -6, 'IR', '', '');
33448 INSERT INTO `marc_subfield_structure` VALUES ('987', 'b', 'Agency that converted, created or reviewed', 'Agency that converted, created or reviewed', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33449 INSERT INTO `marc_subfield_structure` VALUES ('987', 'c', 'Date of conversion or review', 'Date of conversion or review', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33450 INSERT INTO `marc_subfield_structure` VALUES ('987', 'd', 'Status code', 'Status code ', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33451 INSERT INTO `marc_subfield_structure` VALUES ('987', 'e', 'Version of conversion program used', 'Version of conversion program used', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33452 INSERT INTO `marc_subfield_structure` VALUES ('987', 'f', 'Note', 'Note', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33453 INSERT INTO `marc_subfield_structure` VALUES ('990', 'a', 'Link information for 9XX fields', 'Link information for 9XX fields', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33454 INSERT INTO `marc_subfield_structure` VALUES ('990', 'b', 'Link information for field corresponding to 9XX field', 'Link information for field corresponding to 9XX field', 1, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33455 INSERT INTO `marc_subfield_structure` VALUES ('995', 'a', 'Origine du document, texte libre', 'Origine du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33456 INSERT INTO `marc_subfield_structure` VALUES ('995', 'b', 'Origine du document, donn&eacute;e cod&eacute;e', '', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33457 INSERT INTO `marc_subfield_structure` VALUES ('995', 'c', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33458 INSERT INTO `marc_subfield_structure` VALUES ('995', 'd', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33459 INSERT INTO `marc_subfield_structure` VALUES ('995', 'e', 'Genre d&eacute;taill&eacute;', 'Genre d&eacute;taill&eacute;', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33460 INSERT INTO `marc_subfield_structure` VALUES ('995', 'f', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33461 INSERT INTO `marc_subfield_structure` VALUES ('995', 'g', 'Code &agrave; barres, pr&eacute;fixe', 'Code &agrave; barres, pr&eacute;fixe', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33462 INSERT INTO `marc_subfield_structure` VALUES ('995', 'h', 'Code &agrave; barres, incr&eacute;mentation', 'Code &agrave; barres, incr&eacute;mentation', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33463 INSERT INTO `marc_subfield_structure` VALUES ('995', 'i', 'Code &agrave; barres, suffixe', 'Code &agrave; barres, suffixe', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33464 INSERT INTO `marc_subfield_structure` VALUES ('995', 'j', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33465 INSERT INTO `marc_subfield_structure` VALUES ('995', 'k', 'Cote', 'Cote', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33466 INSERT INTO `marc_subfield_structure` VALUES ('995', 'l', 'Volumaison', 'Volumaison', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33467 INSERT INTO `marc_subfield_structure` VALUES ('995', 'm', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33468 INSERT INTO `marc_subfield_structure` VALUES ('995', 'n', 'Date de restitution pr&eacute;vue', 'Date de restitution pr&eacute;vue', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33469 INSERT INTO `marc_subfield_structure` VALUES ('995', 'o', 'Cat&eacute;gorie de circulation', 'Cat&eacute;gorie de circulation', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33470 INSERT INTO `marc_subfield_structure` VALUES ('995', 'p', 'P&eacute;riodique', 'P&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33471 INSERT INTO `marc_subfield_structure` VALUES ('995', 'q', 'Public vis&eacute; (selon l\'&acirc;ge)', 'Public vis&eacute; (selon l\'&acirc;ge)', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33472 INSERT INTO `marc_subfield_structure` VALUES ('995', 'r', 'Type de document et support mat&eacute;riel', 'Type de document et support mat&eacute;riel', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33473 INSERT INTO `marc_subfield_structure` VALUES ('995', 's', 'Él&eacute;ment de tri', 'Él&eacute;ment de tri', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33474 INSERT INTO `marc_subfield_structure` VALUES ('995', 't', 'Genre', 'Genre', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33475 INSERT INTO `marc_subfield_structure` VALUES ('995', 'u', 'Note sur l\'exemplaire', 'Note sur l\'exemplaire', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33476 INSERT INTO `marc_subfield_structure` VALUES ('995', 'v', 'Note sur le num&eacute;ro de p&eacute;riodique', 'Note sur le num&eacute;ro de p&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33477 INSERT INTO `marc_subfield_structure` VALUES ('995', 'w', 'Établissement cible du document, texte libre', 'Établissement cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33478 INSERT INTO `marc_subfield_structure` VALUES ('995', 'x', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33479 INSERT INTO `marc_subfield_structure` VALUES ('995', 'y', 'Ensemble cible du document , texte libre', 'Ensemble cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33480 INSERT INTO `marc_subfield_structure` VALUES ('995', 'z', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'IR', '', '');
33481 INSERT INTO `marc_subfield_structure` VALUES ('998', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33482 INSERT INTO `marc_subfield_structure` VALUES ('998', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33483 INSERT INTO `marc_subfield_structure` VALUES ('998', 'd', 'First date, FD (RLIN)', 'First Date, FD (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'IR', '', '');
33484 INSERT INTO `marc_subfield_structure` VALUES ('998', 'i', 'RINS (RLIN)', 'RINS (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33485 INSERT INTO `marc_subfield_structure` VALUES ('998', 'l', 'LI (RLIN)', 'LI (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33486 INSERT INTO `marc_subfield_structure` VALUES ('998', 'n', 'NUC (RLIN)', 'NUC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33487 INSERT INTO `marc_subfield_structure` VALUES ('998', 'p', 'PROC (RLIN)', 'PROC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33488 INSERT INTO `marc_subfield_structure` VALUES ('998', 's', 'CC (RLIN)', 'CC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33489 INSERT INTO `marc_subfield_structure` VALUES ('998', 't', 'RTYP (RLIN)', 'RTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33490 INSERT INTO `marc_subfield_structure` VALUES ('998', 'w', 'PLINK (RLIN)', 'PLINK (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33491 INSERT INTO `marc_subfield_structure` VALUES ('999', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
33492 INSERT INTO `marc_subfield_structure` VALUES ('999', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'IR', '', '');
33493 INSERT INTO `marc_subfield_structure` VALUES ('999', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
33494 INSERT INTO `marc_subfield_structure` VALUES ('999', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
33495 INSERT INTO `marc_subfield_structure` VALUES ('999', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
33496 INSERT INTO `marc_subfield_structure` VALUES ('999', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
33497 INSERT INTO `marc_subfield_structure` VALUES ('999', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
33498 INSERT INTO `marc_subfield_structure` VALUES ('999', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
33499 INSERT INTO `marc_subfield_structure` VALUES ('999', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
33500 INSERT INTO `marc_subfield_structure` VALUES ('999', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
33501 INSERT INTO `marc_subfield_structure` VALUES ('999', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
33502 INSERT INTO `marc_subfield_structure` VALUES ('999', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
33503 INSERT INTO `marc_subfield_structure` VALUES ('999', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'IR', '', '');
33504 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'a', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33505 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'd', 'UAD (RLIN)', 'UAD (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33506 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'f', 'FPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33507 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'h', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33508 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'i', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33509 INSERT INTO `marc_subfield_structure` VALUES ('u01', 's', 'UST (RLIN)', 'UST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33510 INSERT INTO `marc_subfield_structure` VALUES ('u01', 't', 'UTYP (RLIN)', 'UTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33511 INSERT INTO `marc_subfield_structure` VALUES ('u02', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33512 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33513 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'b', 'Additional codes following the standard number', 'Additional codes following the standard number', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33514 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33515 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33516 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'n', 'LSI', 'LSI', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33517 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'o', 'SID', 'SID', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33518 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'p', 'DP', 'DP', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33519 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'r', 'RUSH', 'RUSH', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33520 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'a', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33521 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'b', 'SID', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33522 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'c', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33523 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'd', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33524 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'e', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33525 INSERT INTO `marc_subfield_structure` VALUES ('u10', 's', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33526 INSERT INTO `marc_subfield_structure` VALUES ('u11', 'a', 'Department report request, DRR (DRRH for earlier occurrences)', 'DRR (DRRH for earlier occurrences)', 1, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33527 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'a', 'SUPN', 'SUPN', 1, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33528 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'b', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33529 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'c', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33530 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'd', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33531 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'e', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33532 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'x', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33533 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'a', 'SHIP', 'SHIP', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33534 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'b', 'BILL', 'BILL', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33535 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'c', 'DAC', 'DAC', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33536 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'n', 'LSAC', 'LSAC', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33537 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'a', 'SICO', 'SICO', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33538 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'b', 'SICO', 'SICO', 1, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33539 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'c', 'SCAT', 'SCAT', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33540 INSERT INTO `marc_subfield_structure` VALUES ('u25', 'a', 'Supplier report(s), SRPT', 'Supplier report(s), SRPT', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33541 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'a', 'NCC [OBSOLETE]', 'NCC [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33542 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'i', 'ICI', 'ICI', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33543 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'm', 'MCI', 'MCI', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33544 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'a', 'NCC', 'NCC', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33545 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'b', 'NCS', 'NCS', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33546 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'a', 'ICL', 'ICL', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33547 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'd', 'ICAD', 'ICAD', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33548 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'a', 'EPCL', 'EPCL', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33549 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'r', 'ERI', 'ERI', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33550 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'd', 'EPDT [OBSOLETE]', 'EPDT [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33551 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'f', 'EFRQ', 'EFRQ', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33552 INSERT INTO `marc_subfield_structure` VALUES ('u40', 's', 'EPST', 'EPST', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33553 INSERT INTO `marc_subfield_structure` VALUES ('u40', 't', 'ETYP', 'ETYP', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33554 INSERT INTO `marc_subfield_structure` VALUES ('u50', 'a', 'Acquisitions notes, AQNT', 'Acquisitions notes, AQNT', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33555 INSERT INTO `marc_subfield_structure` VALUES ('u51', 'a', 'Selection notes, SLNT', 'Selection notes, SLNT', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33556 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'a', 'INT', 'INT', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33557 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'b', 'INT', 'NT', 1, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33558 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'a', 'CLNT', 'CLNT', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33559 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'b', 'CLNT', 'CLNT', 1, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33560 INSERT INTO `marc_subfield_structure` VALUES ('u54', 'a', 'Notes to serials department, SRNT', 'Notes to serials department, SRNT', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33561 INSERT INTO `marc_subfield_structure` VALUES ('u55', 'a', 'Cataloging notes, CTNT', 'Cataloging notes, CTNT', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33562 INSERT INTO `marc_subfield_structure` VALUES ('u5f', 'a', 'Accounting notes, ACNT', 'Accounting notes, ACNT', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33563 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'a', 'QTY', 'QTY', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33564 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'b', 'MAT', 'MAT', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33565 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'l', 'MLOC', 'MLOC', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33566 INSERT INTO `marc_subfield_structure` VALUES ('u71', 'a', 'Fund account, FUND', 'Fund account, FUND', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33567 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'a', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33568 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'c', 'CIRC', 'CIRC', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33569 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'h', 'IPST', 'IPST', 1, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33570 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'i', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33571 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'l', 'SLOC', 'SLOC', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33572 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'a', 'LPRI', 'LPRI', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33573 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'b', 'CURR', 'CURR', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33574 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'k', 'CVRT [OBSOLETE]', 'CVRT [OBSOLETE]', 1, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33575 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'p', 'LPD', 'LPD', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33576 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'r', 'EDRT', 'EDRT', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33577 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'h', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33578 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'i', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33579 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'a', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33580 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'b', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33581 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'c', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33582 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'd', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33583 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'e', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33584 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'f', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33585 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'g', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33586 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'h', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33587 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'n', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'IR', '', '');
33588
33589
33590 -- *******************************************************
33591
33592
33593 -- *********************************************************************
33594 -- SIMPLE SERIALS KOHA RECORD AND HOLDINGS MANAGEMENT FIELDS/SUBFIELDS. 
33595 -- *********************************************************************
33596
33597 -- These ought to be adjusted for different less conflicting and more 
33598 -- rationally chosen fields and subfields but I had left that for last. 
33599
33600 -- ADJUST ME
33601 -- Use values from your dump of marc_tag_structure and marc_subfield_structure 
33602 -- to provide support for your Koha database.
33603
33604
33605 -- ******************************************************
33606
33607
33608 -- Current Record ID Field/Subfields 
33609
33610
33611 INSERT INTO `marc_tag_structure` VALUES ('090', 'SYSTEM CONTROL NUMBERS (KOHA)', 'SYSTEM CONTROL NUMBERS (KOHA)', 1, 0, '', 'SER');
33612
33613 INSERT INTO `marc_subfield_structure` VALUES ('090', 'a', 'Item type [OBSOLETE]', 'Item type [OBSOLETE]', 0, 0, NULL, -1, NULL, NULL, '', NULL, -5, 'SER', '', '');
33614 INSERT INTO `marc_subfield_structure` VALUES ('090', 'b', 'Koha Dewey Subclass [OBSOLETE]', 'Koha Dewey Subclass [OBSOLETE]', 0, 0, NULL, 0, NULL, NULL, '', NULL, -5, 'SER', '', '');
33615 INSERT INTO `marc_subfield_structure` VALUES ('090', 'c', 'Koha biblionumber', 'Koha biblionumber', 0, 0, 'biblio.biblionumber', -1, NULL, NULL, '', NULL, -5, 'SER', '', '');
33616 INSERT INTO `marc_subfield_structure` VALUES ('090', 'd', 'Koha biblioitemnumber', 'Koha biblioitemnumber', 0, 0, 'biblioitems.biblioitemnumber', -1, NULL, NULL, '', NULL, -5, 'SER', '', '');
33617
33618
33619 -- ******************************************************
33620
33621
33622 -- Current primary biblioitems Field/Subfields 
33623
33624
33625 INSERT INTO `marc_tag_structure` VALUES ('942', 'ADDED ENTRY ELEMENTS (KOHA)', 'ADDED ENTRY ELEMENTS (KOHA)', 0, 0, '', 'SER');
33626
33627 INSERT INTO `marc_subfield_structure` VALUES ('942', 'a', 'Institution code [OBSOLETE]', 'Institution code [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -5, 'SER', '', '');
33628 INSERT INTO `marc_subfield_structure` VALUES ('942', 'c', 'Item type', 'Item type', 0, 1, 'biblioitems.itemtype', 9, 'itemtypes', '', '', NULL, 0, 'SER', '', '');
33629 INSERT INTO `marc_subfield_structure` VALUES ('942', 'j', 'Location (call number prefix code)', 'Location (call number prefix code)', 0, 0, 'biblioitems.classification', 9, '', '', '', NULL, -6, 'SER', '', '');
33630 INSERT INTO `marc_subfield_structure` VALUES ('942', 'k', 'Classification base (DDC to decimal or LCC letter class padded after single letter classes with trailing 0', 'Classification base', 0, 0, 'biblioitems.dewey', 9, '', '', '', NULL, -6, 'SER', '', '');
33631 INSERT INTO `marc_subfield_structure` VALUES ('942', 'l', 'Classification subclass (DDC after decimal or LCC number after letters', 'Classification subclass', 0, 0, 'biblioitems.subclass', 9, '', '', '', NULL, -6, 'SER', '', '');
33632
33633
33634 -- ******************************************************
33635
33636
33637 -- Recommended items Field/Subfields 
33638
33639
33640 -- INSERT INTO `marc_tag_structure` VALUES ('95k', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', '');
33641
33642 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '0', 'Item status (withdrawn) (similar to 876-8 $j)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'SER', '', '');
33643 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '1', 'Item status (lost) (similar to 876-8 $j)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'SER', '', '');
33644 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '2', 'Source of classification or shelving scheme (similar to 852 $2)', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33645 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '3', 'Materials specified (similar to 852, 876-8 $3)', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'SER', '', '');
33646 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '4', 'Use restrictions (similar to 506 $a, 876-8 $h)', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'SER', '', '');
33647 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '6', 'Linkage (similar to 852, 876-8 $6)', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'SER', '', '');
33648 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '8', 'Sequence number (similar to 852, 876-8 $8)', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33649 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', '9', 'Koha itemnumber (autogenerated similar to 852, 876-8 $3 $8 $t combined)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, 'SER', '', '');
33650 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'a', 'Location (homebranch) (similar to 852 $a)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, '', '', '');
33651 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'b', 'Sublocation or collection (holdingbranch) (similar to 852 $b)', 'Sublocation or collection (holdingbranch)', 1, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'SER', '', '');
33652 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'c', 'Shelving location (similar to 852 $c, 876-8 $l)', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'SER', '', '');
33653 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'd', 'Date acquired (similar to 541, 876-8 $d)', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, 'SER', '', '');
33654 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'e', 'Source of acquisition (similar to 541 $a, 876-8 $e)', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'SER', '', '');
33655 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'f', 'Coded location qualifier (similar to 852 $f)', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33656 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'g', 'Non-coded location qualifier (similar to 852 $g)', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33657 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'h', 'Classification part (similar to 852 $h)', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33658 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'i', 'Item part (similar to 852 $i)', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33659 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'j', 'Shelving control number (similar to 852 $j)', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33660 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'k', 'Call number prefix (similar to 852 $k)', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33661 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'l', 'Shelving form of title (similar to 852 $l)', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33662 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'm', 'Call number suffix (similar to 852 $m)', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33663 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'n', 'Country code (similar to 852 $n)', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33664 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'o', 'Call number (similar to 852 $k $h $i $m combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'SER', '', '');
33665 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'p', 'Piece designation (barcode) (similar to 852, 876-8 $p)', 'Piece designation (barcode)', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, 'SER', '', '');
33666 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'q', 'Piece physical condition (similar to 562 $a, 852 $q)', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33667 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'r', 'Invalid or canceled piece designation (canceled barcode) (similar to 876-8 $r)', 'Invalid or canceled piece designation (canceled barcode)', 1, 0, '', 10, '', '', '', NULL, -1, 'SER', '', '');
33668 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 's', 'Copyright article-fee code (similar to 018 $a, 852 $s)', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33669 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 't', 'Copy number (similar to 852, 876-8 $t)', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33670 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'u', 'Cost, normal purchase price (similar to 541 $h, 876-8 $c)', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'SER', '', '');
33671 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'v', 'Cost, replacement price (similar to 365 $b, 876-8 $c)', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'SER', '', '');
33672 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'w', 'Price effective from (similar to 365 $f)', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'SER', '', '');
33673 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'x', 'Nonpublic note (similar to 852, 876-8 $x)', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'SER', '', '');
33674 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'y', 'Use restrictions (not for loan) (similar to 506 $a, 876-8 $h)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'SER', '', '');
33675 -- INSERT INTO `marc_subfield_structure` VALUES ('95k', 'z', 'Public note (similar to 852, 876-8 $z)', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'SER', '', '');
33676
33677
33678
33679 -- Current items Field/Subfields 
33680
33681
33682 INSERT INTO `marc_tag_structure` VALUES ('952', 'LOCATION AND ITEM INFORMATION (KOHA)', 'LOCATION AND ITEM INFORMATION (KOHA)', 1, 0, '', 'SER');
33683
33684 INSERT INTO `marc_subfield_structure` VALUES ('952', '0', 'Item status (withdrawn)', 'Item status (withdrawn)', 0, 0, 'items.withdrawn', 10, '', '', '', 0, 0, 'SER', '', '');
33685 INSERT INTO `marc_subfield_structure` VALUES ('952', '1', 'Item status (lost)', 'Item status (lost)', 0, 0, 'items.itemlost', 10, '', '', '', 0, 0, 'SER', '', '');
33686 INSERT INTO `marc_subfield_structure` VALUES ('952', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33687 INSERT INTO `marc_subfield_structure` VALUES ('952', '3', 'Materials specified', 'Materials specified', 0, 0, '', 10, '', '', '', NULL, -1, 'SER', '', '');
33688 INSERT INTO `marc_subfield_structure` VALUES ('952', '4', 'Use restrictions', 'Use restrictions', 0, 0, 'items.restricted', 10, '', '', '', 0, 0, 'SER', '', '');
33689 INSERT INTO `marc_subfield_structure` VALUES ('952', '6', 'Linkage', 'Linkage', 0, 0, '', 10, '', '', '', NULL, -6, 'SER', '', '');
33690 INSERT INTO `marc_subfield_structure` VALUES ('952', '8', 'Sequence number', 'Sequence number', 1, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33691 INSERT INTO `marc_subfield_structure` VALUES ('952', '9', 'Cost, normal purchase price', 'Cost, normal purchase price', 0, 0, 'items.price', 10, '', '', '', 0, 0, 'SER', '', '');
33692 INSERT INTO `marc_subfield_structure` VALUES ('952', 'a', 'Canceled barcode', 'Canceled barcode', 1, 0, '', 10, '', '', '', NULL, -1, 'SER', '', '');
33693 INSERT INTO `marc_subfield_structure` VALUES ('952', 'b', 'Location (homebranch)', 'Location (homebranch)', 0, 0, 'items.homebranch', 10, 'branches', '', '', 0, 0, 'SER', '', '');
33694 INSERT INTO `marc_subfield_structure` VALUES ('952', 'c', 'Shelving location', 'Shelving location', 1, 0, 'items.location', 10, '', '', '', 0, 0, 'SER', '', '');
33695 INSERT INTO `marc_subfield_structure` VALUES ('952', 'd', 'Sublocation or collection (holdingbranch)', 'Sublocation or collection (holdingbranch)', 0, 0, 'items.holdingbranch', 10, 'branches', '', '', 0, 0, 'SER', '''952b''', '');
33696 INSERT INTO `marc_subfield_structure` VALUES ('952', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, 'items.booksellerid', 10, '', '', '', 0, 0, 'SER', '', '');
33697 INSERT INTO `marc_subfield_structure` VALUES ('952', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33698 INSERT INTO `marc_subfield_structure` VALUES ('952', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33699 INSERT INTO `marc_subfield_structure` VALUES ('952', 'h', 'Classification part', 'Classification part', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33700 INSERT INTO `marc_subfield_structure` VALUES ('952', 'i', 'Item part', 'Item part', 1, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33701 INSERT INTO `marc_subfield_structure` VALUES ('952', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33702 INSERT INTO `marc_subfield_structure` VALUES ('952', 'k', 'Call number (combined)', 'Call number', 0, 0, 'items.itemcallnumber', 10, '', '', NULL, 0, 0, 'SER', '', '');
33703 INSERT INTO `marc_subfield_structure` VALUES ('952', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33704 INSERT INTO `marc_subfield_structure` VALUES ('952', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33705 INSERT INTO `marc_subfield_structure` VALUES ('952', 'n', 'Country code', 'Country code', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33706 INSERT INTO `marc_subfield_structure` VALUES ('952', 'o', 'Call number prefix', 'Call number prefix', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33707 INSERT INTO `marc_subfield_structure` VALUES ('952', 'p', 'Barcode', 'Barcode', 0, 1, 'items.barcode', 10, '', '', 'barcode.pl', 0, 0, 'SER', '', '');
33708 INSERT INTO `marc_subfield_structure` VALUES ('952', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33709 INSERT INTO `marc_subfield_structure` VALUES ('952', 'r', 'Cost, replacement price', 'Cost, replacement price', 0, 0, 'items.replacementprice', 10, '', '', '', 0, 0, 'SER', '', '');
33710 INSERT INTO `marc_subfield_structure` VALUES ('952', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33711 INSERT INTO `marc_subfield_structure` VALUES ('952', 't', 'Copy number', 'Copy number', 0, 0, '', 10, '', '', '', NULL, 0, 'SER', '', '');
33712 INSERT INTO `marc_subfield_structure` VALUES ('952', 'u', 'Koha itemnumber (autogenerated)', 'Koha itemnumber', 0, 0, 'items.itemnumber', -1, '', '', '', 0, -5, 'SER', '', '');
33713 INSERT INTO `marc_subfield_structure` VALUES ('952', 'v', 'Date acquired', 'Date acquired', 0, 0, 'items.dateaccessioned', 10, 'usmarc_field_952v.pl', '', '', 0, 0, 'SER', '', '');
33714 INSERT INTO `marc_subfield_structure` VALUES ('952', 'w', 'Price effective from', 'Price effective from', 0, 0, 'items.replacementpricedate', 10, '', '', '', 0, 0, 'SER', '', '');
33715 INSERT INTO `marc_subfield_structure` VALUES ('952', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 10, '', '', '', NULL, 6, 'SER', '', '');
33716 INSERT INTO `marc_subfield_structure` VALUES ('952', 'y', 'Use restrictions (not for loan)', 'Use restrictions (not for loan)', 0, 0, 'items.notforloan', 10, '', '', '', 0, 0, 'SER', '', '');
33717 INSERT INTO `marc_subfield_structure` VALUES ('952', 'z', 'Public note', 'Public note', 0, 0, 'items.itemnotes', 10, '', '', '', 1, 0, 'SER', '', '');
33718
33719
33720 -- *******************************************************
33721
33722
33723 -- ***********************************************************************
33724 -- SIMPLE SERIALS MARC 21 FIELDS/SUBFIELDS AND COMMMONLY USED EXTENSIONS. 
33725 -- ***********************************************************************
33726
33727
33728 -- A Few local use codes need specifying.  Several seealso, plugin, and 
33729 -- authority framework columns need improving.  $9 for authority record linking 
33730 -- needs to be added where not already provided by RLIN specifications. 
33731 -- Needs checking for errors but probably tolerable for use on a production. 
33732 -- A server can be upgraded easily from later versions of this file.
33733 --                                                                          
33734 -- In the absense of more column support for qualifying the relative 
33735 -- importance of subfields to the record editor, some modest modification of 
33736 -- the default framework is needed setting the not-useful non-Koha holdings 
33737 -- subfields to not managed in Koha.
33738
33739 -- MARC fields including letters as part of the field identifier are from RLIN
33740 -- and should be expected to remain along with RLIN $% subfields.  RLIN has 
33741 -- been using letters in fields because there are not enough local use number 
33742 -- fields which have not already been specified for very large union catalogue 
33743 -- networks such as RLIN itself.
33744
33745
33746 -- Fields ending in c, o, or r are temporary placeholders for information from
33747 -- a numeric value until a non-conflicting way to treat the content under the
33748 -- proper original numeric field is adopted.  090 for LC call numbers is much 
33749 -- too common and important so 999 is also provided as a temporary place 
33750 -- holder until all Koha code for finding control fields has been changed from 
33751 -- a numeric test of < 10 to a regular expression match of m/^00/ to prevent 
33752 -- mistaken matching of fields with letters such as 09o if they were control 
33753 -- fields.
33754
33755 INSERT INTO `marc_tag_structure` VALUES ('000', 'LEADER', 'LEADER', 0, 1, '', 'SER');
33756 INSERT INTO `marc_tag_structure` VALUES ('001', 'CONTROL NUMBER', 'CONTROL NUMBER', 0, 0, '', 'SER');
33757 INSERT INTO `marc_tag_structure` VALUES ('003', 'CONTROL NUMBER IDENTIFIER', 'CONTROL NUMBER IDENTIFIER', 0, 0, '', 'SER');
33758 INSERT INTO `marc_tag_structure` VALUES ('005', 'DATE AND TIME OF LATEST TRANSACTION', 'DATE AND TIME OF LATEST TRANSACTION', 0, 0, '', 'SER');
33759 INSERT INTO `marc_tag_structure` VALUES ('006', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION', 1, 0, '', 'SER');
33760 INSERT INTO `marc_tag_structure` VALUES ('007', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 'PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION', 1, 0, '', 'SER');
33761 INSERT INTO `marc_tag_structure` VALUES ('008', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 'FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION', 0, 1, '', 'SER');
33762 INSERT INTO `marc_tag_structure` VALUES ('009', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FIXED-FIELD FOR ARCHIVAL COLLECTION (VM) [OBSOLETE]', 1, 0, '', 'SER');
33763 INSERT INTO `marc_tag_structure` VALUES ('010', 'LIBRARY OF CONGRESS CONTROL NUMBER', 'LIBRARY OF CONGRESS CONTROL NUMBER', 0, 0, '', 'SER');
33764 INSERT INTO `marc_tag_structure` VALUES ('011', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 'LINKING LIBRARY OF CONGRESS CONTROL NUMBER [OBSOLETE]', 0, 0, '', 'SER');
33765 INSERT INTO `marc_tag_structure` VALUES ('013', 'PATENT CONTROL INFORMATION', 'PATENT CONTROL INFORMATION', 1, 0, '', 'SER');
33766 INSERT INTO `marc_tag_structure` VALUES ('015', 'NATIONAL BIBLIOGRAPHY NUMBER', 'NATIONAL BIBLIOGRAPHY NUMBER', 1, 0, '', 'SER');
33767 INSERT INTO `marc_tag_structure` VALUES ('016', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 'NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER', 1, 0, '', 'SER');
33768 INSERT INTO `marc_tag_structure` VALUES ('017', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 'COPYRIGHT OR LEGAL DEPOSIT NUMBER', 1, 0, '', 'SER');
33769 INSERT INTO `marc_tag_structure` VALUES ('018', 'COPYRIGHT ARTICLE-FEE CODE', 'COPYRIGHT ARTICLE-FEE CODE', 0, 0, '', 'SER');
33770 INSERT INTO `marc_tag_structure` VALUES ('01e', 'CODED FIELD ERROR (RLIN)', 'CODED FIELD ERROR (RLIN)', 1, 0, '', 'SER');
33771 INSERT INTO `marc_tag_structure` VALUES ('020', 'INTERNATIONAL STANDARD BOOK NUMBER', 'INTERNATIONAL STANDARD BOOK NUMBER', 1, 0, NULL, 'SER');
33772 INSERT INTO `marc_tag_structure` VALUES ('022', 'ISSN', 'INTERNATIONAL STANDARD SERIAL NUMBER', 1, 0, NULL, 'SER');
33773 INSERT INTO `marc_tag_structure` VALUES ('023', 'STANDARD FILM NUMBER (VM) [DELETED]', 'STANDARD FILM NUMBER (VM) [DELETED]', 1, 0, NULL, 'SER');
33774 INSERT INTO `marc_tag_structure` VALUES ('024', 'OTHER STANDARD IDENTIFIER', 'OTHER STANDARD IDENTIFIER', 1, 0, NULL, 'SER');
33775 INSERT INTO `marc_tag_structure` VALUES ('025', 'OVERSEAS ACQUISITION NUMBER', 'OVERSEAS ACQUISITION NUMBER', 1, 0, '', 'SER');
33776 INSERT INTO `marc_tag_structure` VALUES ('026', 'FINGERPRINT IDENTIFIER', 'FINGERPRINT IDENTIFIER', 1, 0, '', 'SER');
33777 INSERT INTO `marc_tag_structure` VALUES ('027', 'STANDARD TECHNICAL REPORT NUMBER', 'STANDARD TECHNICAL REPORT NUMBER', 1, 0, '', 'SER');
33778 INSERT INTO `marc_tag_structure` VALUES ('028', 'PUBLISHER NUMBER', 'PUBLISHER NUMBER', 1, 0, NULL, 'SER');
33779 INSERT INTO `marc_tag_structure` VALUES ('029', 'OTHER SYSTEM CONTROL NUMBER (OCLC)', ' (OCLC)', 1, 0, '', 'SER');
33780 INSERT INTO `marc_tag_structure` VALUES ('030', 'CODEN DESIGNATION', 'CODEN DESIGNATION', 1, 0, '', 'SER');
33781 INSERT INTO `marc_tag_structure` VALUES ('031', 'MUSICAL INCIPITS INFORMATION', 'MUSICAL INCIPITS INFORMATION', 1, 0, '', 'SER');
33782 INSERT INTO `marc_tag_structure` VALUES ('032', 'POSTAL REGISTRATION NUMBER', 'POSTAL REGISTRATION NUMBER', 1, 0, '', 'SER');
33783 INSERT INTO `marc_tag_structure` VALUES ('033', 'DATE/TIME AND PLACE OF AN EVENT', 'DATE/TIME AND PLACE OF AN EVENT', 1, 0, '', 'SER');
33784 INSERT INTO `marc_tag_structure` VALUES ('034', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 'CODED CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, '', 'SER');
33785 INSERT INTO `marc_tag_structure` VALUES ('035', 'SYSTEM CONTROL NUMBER', 'SYSTEM CONTROL NUMBER', 1, 0, NULL, 'SER');
33786 INSERT INTO `marc_tag_structure` VALUES ('036', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 'ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES', 0, 0, '', 'SER');
33787 INSERT INTO `marc_tag_structure` VALUES ('037', 'PUBLICATION, DISTRIBUTION DETAILS--SOURCE OF ACQUISITION', 'SOURCE OF ACQUISITION', 1, 0, NULL, 'SER');
33788 INSERT INTO `marc_tag_structure` VALUES ('038', 'RECORD CONTENT LICENSOR', 'RECORD CONTENT LICENSOR', 0, 0, '', 'SER');
33789 INSERT INTO `marc_tag_structure` VALUES ('039', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 'LEVEL OF BIBLIOGRAPHIC CONTROL AND CODING DETAIL [OBSOLETE]', 0, 0, '', 'SER');
33790 INSERT INTO `marc_tag_structure` VALUES ('040', 'CATALOGING SOURCE', 'CATALOGING SOURCE', 0, 0, NULL, 'SER');
33791 INSERT INTO `marc_tag_structure` VALUES ('041', 'LANGUAGE CODE', 'LANGUAGE CODE', 1, 0, '', 'SER');
33792 INSERT INTO `marc_tag_structure` VALUES ('042', 'AUTHENTICATION CODE', 'AUTHENTICATION CODE', 0, 0, '', 'SER');
33793 INSERT INTO `marc_tag_structure` VALUES ('043', 'GEOGRAPHIC AREA CODE', 'GEOGRAPHIC AREA CODE', 0, 0, NULL, 'SER');
33794 INSERT INTO `marc_tag_structure` VALUES ('044', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 'COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE', 0, 0, '', 'SER');
33795 INSERT INTO `marc_tag_structure` VALUES ('045', 'TIME PERIOD OF CONTENT', 'TIME PERIOD OF CONTENT', 0, 0, '', 'SER');
33796 INSERT INTO `marc_tag_structure` VALUES ('046', 'SPECIAL CODED DATES', 'SPECIAL CODED DATES', 1, 0, '', 'SER');
33797 INSERT INTO `marc_tag_structure` VALUES ('047', 'FORM OF MUSICAL COMPOSITION CODE', 'FORM OF MUSICAL COMPOSITION CODE', 0, 0, '', 'SER');
33798 INSERT INTO `marc_tag_structure` VALUES ('048', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 'NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE', 1, 0, '', 'SER');
33799 INSERT INTO `marc_tag_structure` VALUES ('049', 'LOCAL HOLDINGS (OCLC)', 'LOCAL HOLDINGS (OCLC)', 0, 0, '', 'SER');
33800 INSERT INTO `marc_tag_structure` VALUES ('050', 'LIBRARY OF CONGRESS CALL NUMBER', 'LIBRARY OF CONGRESS CALL NUMBER', 1, 0, NULL, 'SER');
33801 INSERT INTO `marc_tag_structure` VALUES ('051', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 'LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT', 1, 0, NULL, 'SER');
33802 INSERT INTO `marc_tag_structure` VALUES ('052', 'GEOGRAPHIC CLASSIFICATION', 'GEOGRAPHIC CLASSIFICATION', 1, 0, NULL, 'SER');
33803 INSERT INTO `marc_tag_structure` VALUES ('055', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 'CLASSIFICATION NUMBERS ASSIGNED IN CANADA', 1, 0, NULL, 'SER');
33804 INSERT INTO `marc_tag_structure` VALUES ('060', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 'NATIONAL LIBRARY OF MEDICINE CALL NUMBER', 1, 0, NULL, 'SER');
33805 INSERT INTO `marc_tag_structure` VALUES ('061', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 'NATIONAL LIBRARY OF MEDICINE COPY STATEMENT', 1, 0, NULL, 'SER');
33806 INSERT INTO `marc_tag_structure` VALUES ('066', 'CHARACTER SETS PRESENT', 'CHARACTER SETS PRESENT', 0, 0, NULL, 'SER');
33807 INSERT INTO `marc_tag_structure` VALUES ('070', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 'NATIONAL AGRICULTURAL LIBRARY CALL NUMBER', 1, 0, NULL, 'SER');
33808 INSERT INTO `marc_tag_structure` VALUES ('071', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 'NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT', 1, 0, NULL, 'SER');
33809 INSERT INTO `marc_tag_structure` VALUES ('072', 'SUBJECT CATEGORY CODE', 'SUBJECT CATEGORY CODE', 1, 0, NULL, 'SER');
33810 INSERT INTO `marc_tag_structure` VALUES ('074', 'GPO ITEM NUMBER', 'GPO ITEM NUMBER', 1, 0, NULL, 'SER');
33811 INSERT INTO `marc_tag_structure` VALUES ('080', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 'UNIVERSAL DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'SER');
33812 INSERT INTO `marc_tag_structure` VALUES ('082', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 'DEWEY DECIMAL CLASSIFICATION NUMBER', 1, 0, NULL, 'SER');
33813 INSERT INTO `marc_tag_structure` VALUES ('084', 'OTHER CLASSIFICATION NUMBER', 'OTHER CLASSIFICATION NUMBER', 1, 0, NULL, 'SER');
33814 INSERT INTO `marc_tag_structure` VALUES ('086', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 'GOVERNMENT DOCUMENT CLASSIFICATION NUMBER', 1, 0, NULL, 'SER');
33815 INSERT INTO `marc_tag_structure` VALUES ('087', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 'REPORT NUMBER [OBSOLETE, CAN/MARC]', 1, 0, NULL, 'SER');
33816 INSERT INTO `marc_tag_structure` VALUES ('088', 'REPORT NUMBER', 'REPORT NUMBER', 1, 0, NULL, 'SER');
33817 INSERT INTO `marc_tag_structure` VALUES ('09o', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', 'LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'SER');
33818 INSERT INTO `marc_tag_structure` VALUES ('091', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 'MICROFILM SHELF LOCATION (AM) [OBSOLETE]', 0, 0, '', 'SER');
33819 INSERT INTO `marc_tag_structure` VALUES ('092', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED DEWEY CALL NUMBER (OCLC)', 1, 0, '', 'SER');
33820 INSERT INTO `marc_tag_structure` VALUES ('096', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 'LOCALLY ASSIGNED NLM-TYPE CALL NUMBER (OCLC)', 1, 0, '', 'SER');
33821 INSERT INTO `marc_tag_structure` VALUES ('098', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 'OTHER CLASSIFICATION SCHEMES (OCLC)', 1, 0, '', 'SER');
33822 INSERT INTO `marc_tag_structure` VALUES ('099', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 'LOCAL FREE-TEXT CALL NUMBER (OCLC)', 1, 0, '', 'SER');
33823 INSERT INTO `marc_tag_structure` VALUES ('100', 'MAIN ENTRY--PERSONAL EDITOR', 'MAIN ENTRY--PERSONAL NAME', 0, 0, NULL, 'SER');
33824 INSERT INTO `marc_tag_structure` VALUES ('110', 'MAIN ENTRY--CORPORATE EDITOR', 'MAIN ENTRY--CORPORATE NAME', 0, 0, NULL, 'SER');
33825 INSERT INTO `marc_tag_structure` VALUES ('111', 'MAIN ENTRY--MEETING NAME', 'MAIN ENTRY--MEETING NAME', 0, 0, NULL, 'SER');
33826 INSERT INTO `marc_tag_structure` VALUES ('130', 'MAIN ENTRY--UNIFORM TITLE', 'MAIN ENTRY--UNIFORM TITLE', 0, 0, NULL, 'SER');
33827 INSERT INTO `marc_tag_structure` VALUES ('210', 'ABBREVIATED TITLE', 'ABBREVIATED TITLE', 1, 0, NULL, 'SER');
33828 INSERT INTO `marc_tag_structure` VALUES ('211', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 'ACRONYM OR SHORTENED TITLE [OBSOLETE]', 1, 0, NULL, 'SER');
33829 INSERT INTO `marc_tag_structure` VALUES ('212', 'VARIANT ACCESS TITLE [OBSOLETE]', 'VARIANT ACCESS TITLE [OBSOLETE]', 1, 0, NULL, 'SER');
33830 INSERT INTO `marc_tag_structure` VALUES ('214', 'AUGMENTED TITLE [OBSOLETE]', 'AUGMENTED TITLE [OBSOLETE]', 1, 0, NULL, 'SER');
33831 INSERT INTO `marc_tag_structure` VALUES ('222', 'KEY TITLE', 'KEY TITLE', 1, 0, NULL, 'SER');
33832 INSERT INTO `marc_tag_structure` VALUES ('240', 'UNIFORM TITLE', 'UNIFORM TITLE', 0, 0, 'Unititle', 'SER');
33833 INSERT INTO `marc_tag_structure` VALUES ('241', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 'ROMANIZED TITLE (BK AM CF MP MU VM) [OBSOLETE]', 0, 0, '', 'SER');
33834 INSERT INTO `marc_tag_structure` VALUES ('242', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 'TRANSLATION OF TITLE BY CATALOGING AGENCY', 1, 0, NULL, 'SER');
33835 INSERT INTO `marc_tag_structure` VALUES ('243', 'COLLECTIVE UNIFORM TITLE', 'COLLECTIVE UNIFORM TITLE', 0, 0, '', 'SER');
33836 INSERT INTO `marc_tag_structure` VALUES ('245', 'TITLE', 'TITLE STATEMENT', 0, 1, '', 'SER');
33837 INSERT INTO `marc_tag_structure` VALUES ('246', 'VARYING FORM OF TITLE', 'VARYING FORM OF TITLE', 1, 0, NULL, 'SER');
33838 INSERT INTO `marc_tag_structure` VALUES ('247', 'FORMER TITLE', 'FORMER TITLE', 1, 0, NULL, 'SER');
33839 INSERT INTO `marc_tag_structure` VALUES ('250', 'EDITION STATEMENT', 'EDITION STATEMENT', 0, 0, NULL, 'SER');
33840 INSERT INTO `marc_tag_structure` VALUES ('254', 'MUSICAL PRESENTATION STATEMENT', 'MUSICAL PRESENTATION STATEMENT', 0, 0, NULL, 'SER');
33841 INSERT INTO `marc_tag_structure` VALUES ('255', 'CARTOGRAPHIC MATHEMATICAL DATA', 'CARTOGRAPHIC MATHEMATICAL DATA', 1, 0, NULL, 'SER');
33842 INSERT INTO `marc_tag_structure` VALUES ('256', 'COMPUTER FILE CHARACTERISTICS', 'COMPUTER FILE CHARACTERISTICS', 0, 0, NULL, 'SER');
33843 INSERT INTO `marc_tag_structure` VALUES ('257', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 'COUNTRY OF PRODUCING ENTITY FOR ARCHIVAL FILMS', 0, 0, NULL, 'SER');
33844 INSERT INTO `marc_tag_structure` VALUES ('258', 'PHILATELIC ISSUE DATE', 'PHILATELIC ISSUE DATE', 1, 0, NULL, 'SER');
33845 INSERT INTO `marc_tag_structure` VALUES ('260', 'PUBLISHER--PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 'PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)', 1, 0, NULL, 'SER');
33846 INSERT INTO `marc_tag_structure` VALUES ('261', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, NULL, 'SER');
33847 INSERT INTO `marc_tag_structure` VALUES ('262', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 'IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2) [LOCAL, USA]', 0, 0, NULL, 'SER');
33848 INSERT INTO `marc_tag_structure` VALUES ('263', 'PROJECTED PUBLICATION DATE', 'PROJECTED PUBLICATION DATE', 0, 0, NULL, 'SER');
33849 INSERT INTO `marc_tag_structure` VALUES ('265', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 'SOURCE FOR ACQUISITION/SUBSCRIPTION ADDRESS [OBSOLETE]', 0, 0, NULL, 'SER');
33850 INSERT INTO `marc_tag_structure` VALUES ('270', 'PUBLICATION, DISTRIBUTION DETAILS--ADDRESS', 'ADDRESS', 1, 0, NULL, 'SER');
33851 INSERT INTO `marc_tag_structure` VALUES ('300', 'PHYSICAL DESCRIPTION', 'PHYSICAL DESCRIPTION', 1, 1, NULL, 'SER');
33852 INSERT INTO `marc_tag_structure` VALUES ('301', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 'PHYSICAL DESCRIPTION FOR FILMS (PRE-AACR 2) (VM) [OBSOLETE, USMARC]', 0, 0, NULL, 'SER');
33853 INSERT INTO `marc_tag_structure` VALUES ('302', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 'PAGE OR ITEM COUNT (BK AM) [OBSOLETE]', 0, 0, NULL, 'SER');
33854 INSERT INTO `marc_tag_structure` VALUES ('303', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 'UNIT COUNT (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'SER');
33855 INSERT INTO `marc_tag_structure` VALUES ('304', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 'LINEAR FOOTAGE (AM) [OBSOLETE, USMARC]', 0, 0, NULL, 'SER');
33856 INSERT INTO `marc_tag_structure` VALUES ('305', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR SOUND RECORDINGS (Pre-AACR 2) (MU) [OBSOLETE]', 0, 0, NULL, 'SER');
33857 INSERT INTO `marc_tag_structure` VALUES ('306', 'PLAYING TIME', 'PLAYING TIME', 0, 0, NULL, 'SER');
33858 INSERT INTO `marc_tag_structure` VALUES ('307', 'HOURS, ETC.', 'HOURS, ETC.', 1, 0, NULL, 'SER');
33859 INSERT INTO `marc_tag_structure` VALUES ('308', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 'PHYSICAL DESCRIPTION FOR FILMS (ARCHIVAL) (VM) [OBSOLETE]', 1, 0, NULL, 'SER');
33860 INSERT INTO `marc_tag_structure` VALUES ('310', 'CURRENT PUBLICATION FREQUENCY', 'CURRENT PUBLICATION FREQUENCY', 0, 0, NULL, 'SER');
33861 INSERT INTO `marc_tag_structure` VALUES ('315', 'FREQUENCY (CF MP) [OBSOLETE]', 'FREQUENCY (CF MP) [OBSOLETE]', 0, 0, NULL, 'SER');
33862 INSERT INTO `marc_tag_structure` VALUES ('321', 'FORMER PUBLICATION FREQUENCY', 'FORMER PUBLICATION FREQUENCY', 1, 0, NULL, 'SER');
33863 INSERT INTO `marc_tag_structure` VALUES ('340', 'PHYSICAL MEDIUM', 'PHYSICAL MEDIUM', 1, 0, NULL, 'SER');
33864 INSERT INTO `marc_tag_structure` VALUES ('342', 'GEOSPATIAL REFERENCE DATA', 'GEOSPATIAL REFERENCE DATA', 1, 0, NULL, 'SER');
33865 INSERT INTO `marc_tag_structure` VALUES ('343', 'PLANAR COORDINATE DATA', 'PLANAR COORDINATE DATA', 1, 0, NULL, 'SER');
33866 INSERT INTO `marc_tag_structure` VALUES ('350', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 'PRICE (NR) (BK AM CF MU VM SE) [OBSOLETE]', 1, 0, NULL, 'SER');
33867 INSERT INTO `marc_tag_structure` VALUES ('351', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 'ORGANIZATION AND ARRANGEMENT OF MATERIALS', 1, 0, NULL, 'SER');
33868 INSERT INTO `marc_tag_structure` VALUES ('352', 'DIGITAL GRAPHIC REPRESENTATION', 'DIGITAL GRAPHIC REPRESENTATION', 1, 0, NULL, 'SER');
33869 INSERT INTO `marc_tag_structure` VALUES ('355', 'SECURITY CLASSIFICATION CONTROL', 'SECURITY CLASSIFICATION CONTROL', 1, 0, NULL, 'SER');
33870 INSERT INTO `marc_tag_structure` VALUES ('357', 'ORIGINATOR DISSEMINATION CONTROL', 'ORIGINATOR DISSEMINATION CONTROL', 0, 0, NULL, 'SER');
33871 INSERT INTO `marc_tag_structure` VALUES ('359', 'RENTAL PRICE (VM) [OBSOLETE]', 'RENTAL PRICE (VM) [OBSOLETE]', 0, 0, NULL, 'SER');
33872 INSERT INTO `marc_tag_structure` VALUES ('362', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 'DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION', 1, 0, NULL, 'SER');
33873 INSERT INTO `marc_tag_structure` VALUES ('365', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE PRICE', 'TRADE PRICE', 1, 0, NULL, 'SER');
33874 INSERT INTO `marc_tag_structure` VALUES ('366', 'PUBLICATION, DISTRIBUTION DETAILS--TRADE AVAILABILITY INFORMATION', 'TRADE AVAILABILITY INFORMATION', 1, 0, NULL, 'SER');
33875 INSERT INTO `marc_tag_structure` VALUES ('400', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'SER');
33876 INSERT INTO `marc_tag_structure` VALUES ('410', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'SER');
33877 INSERT INTO `marc_tag_structure` VALUES ('411', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'SERIES STATEMENT/ADDED ENTRY--MEETING NAME [OBSOLETE, CAN/MARC], [LOCAL, USA]', 1, 0, NULL, 'SER');
33878 INSERT INTO `marc_tag_structure` VALUES ('440', 'SERIES--TITLE', 'SERIES STATEMENT/ADDED ENTRY--TITLE', 1, 0, NULL, 'SER');
33879 INSERT INTO `marc_tag_structure` VALUES ('490', 'SERIES STATEMENT', 'SERIES STATEMENT', 1, 0, '', 'SER');
33880 INSERT INTO `marc_tag_structure` VALUES ('500', 'GENERAL NOTE', 'GENERAL NOTE', 1, 0, NULL, 'SER');
33881 INSERT INTO `marc_tag_structure` VALUES ('501', 'WITH NOTE', 'WITH NOTE', 1, 0, NULL, 'SER');
33882 INSERT INTO `marc_tag_structure` VALUES ('502', 'DISSERTATION NOTE', 'DISSERTATION NOTE', 1, 0, NULL, 'SER');
33883 INSERT INTO `marc_tag_structure` VALUES ('503', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 'BIBLIOGRAPHIC HISTORY NOTE (BK CF MU) [OBSOLETE]', 1, 0, NULL, 'SER');
33884 INSERT INTO `marc_tag_structure` VALUES ('504', 'BIBLIOGRAPHY, ETC. NOTE', 'BIBLIOGRAPHY, ETC. NOTE', 1, 0, NULL, 'SER');
33885 INSERT INTO `marc_tag_structure` VALUES ('505', 'FORMATTED CONTENTS NOTE', 'FORMATTED CONTENTS NOTE', 1, 0, NULL, 'SER');
33886 INSERT INTO `marc_tag_structure` VALUES ('506', 'RESTRICTIONS ON ACCESS NOTE', 'RESTRICTIONS ON ACCESS NOTE', 1, 0, NULL, 'SER');
33887 INSERT INTO `marc_tag_structure` VALUES ('507', 'SCALE NOTE FOR GRAPHIC MATERIAL', 'SCALE NOTE FOR GRAPHIC MATERIAL', 0, 0, NULL, 'SER');
33888 INSERT INTO `marc_tag_structure` VALUES ('508', 'CREATION/PRODUCTION CREDITS NOTE', 'CREATION/PRODUCTION CREDITS NOTE', 1, 0, NULL, 'SER');
33889 INSERT INTO `marc_tag_structure` VALUES ('509', 'INFORMAL NOTES (RLIN)', 'INFORMAL NOTES (RLIN)', 0, 0, NULL, 'SER');
33890 INSERT INTO `marc_tag_structure` VALUES ('510', 'CITATION/REFERENCES NOTE', 'CITATION/REFERENCES NOTE', 1, 0, NULL, 'SER');
33891 INSERT INTO `marc_tag_structure` VALUES ('511', 'PARTICIPANT OR PERFORMER NOTE', 'PARTICIPANT OR PERFORMER NOTE', 1, 0, NULL, 'SER');
33892 INSERT INTO `marc_tag_structure` VALUES ('512', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 'EARLIER OR LATER VOLUMES SEPARATELY CATALOGED NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'SER');
33893 INSERT INTO `marc_tag_structure` VALUES ('513', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 'TYPE OF REPORT AND PERIOD COVERED NOTE', 1, 0, NULL, 'SER');
33894 INSERT INTO `marc_tag_structure` VALUES ('514', 'DATA QUALITY NOTE', 'DATA QUALITY NOTE', 0, 0, NULL, 'SER');
33895 INSERT INTO `marc_tag_structure` VALUES ('515', 'NUMBERING PECULIARITIES NOTE', 'NUMBERING PECULIARITIES NOTE', 1, 0, NULL, 'SER');
33896 INSERT INTO `marc_tag_structure` VALUES ('516', 'TYPE OF COMPUTER FILE OR DATA NOTE', 'TYPE OF COMPUTER FILE OR DATA NOTE', 1, 0, NULL, 'SER');
33897 INSERT INTO `marc_tag_structure` VALUES ('517', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 'CATEGORIES OF FILMS NOTE (ARCHIVAL) (VM) [OBSOLETE]', 0, 0, NULL, 'SER');
33898 INSERT INTO `marc_tag_structure` VALUES ('518', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 'DATE/TIME AND PLACE OF AN EVENT NOTE', 1, 0, NULL, 'SER');
33899 INSERT INTO `marc_tag_structure` VALUES ('520', 'SUMMARY, ETC.', 'SUMMARY, ETC.', 1, 0, NULL, 'SER');
33900 INSERT INTO `marc_tag_structure` VALUES ('521', 'GRADE LEVEL/TARGET AUDIENCE NOTE', 'TARGET AUDIENCE NOTE', 1, 0, NULL, 'SER');
33901 INSERT INTO `marc_tag_structure` VALUES ('522', 'GEOGRAPHIC DETAILS/GEOGRAPHIC COVERAGE NOTE', 'GEOGRAPHIC COVERAGE NOTE', 1, 0, NULL, 'SER');
33902 INSERT INTO `marc_tag_structure` VALUES ('523', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 'TIME PERIOD OF CONTENT NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'SER');
33903 INSERT INTO `marc_tag_structure` VALUES ('524', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 'PREFERRED CITATION OF DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'SER');
33904 INSERT INTO `marc_tag_structure` VALUES ('525', 'SUPPLEMENT NOTE', 'SUPPLEMENT NOTE', 0, 0, NULL, 'SER');
33905 INSERT INTO `marc_tag_structure` VALUES ('526', 'STUDY PROGRAM INFORMATION NOTE', 'STUDY PROGRAM INFORMATION NOTE', 0, 0, NULL, 'SER');
33906 INSERT INTO `marc_tag_structure` VALUES ('527', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 'CENSORSHIP NOTE (VM) [OBSOLETE]', 1, 0, NULL, 'SER');
33907 INSERT INTO `marc_tag_structure` VALUES ('530', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 'ADDITIONAL PHYSICAL FORM AVAILABLE NOTE', 1, 0, NULL, 'SER');
33908 INSERT INTO `marc_tag_structure` VALUES ('533', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'SER');
33909 INSERT INTO `marc_tag_structure` VALUES ('534', 'ORIGINAL VERSION NOTE', 'ORIGINAL VERSION NOTE', 1, 0, NULL, 'SER');
33910 INSERT INTO `marc_tag_structure` VALUES ('535', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 'LOCATION OF ORIGINALS/DUPLICATES NOTE', 1, 0, NULL, 'SER');
33911 INSERT INTO `marc_tag_structure` VALUES ('536', 'FUNDING INFORMATION NOTE', 'FUNDING INFORMATION NOTE', 1, 0, NULL, 'SER');
33912 INSERT INTO `marc_tag_structure` VALUES ('537', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 'SOURCE OF DATA NOTE (CF) [OBSOLETE]', 0, 0, NULL, 'SER');
33913 INSERT INTO `marc_tag_structure` VALUES ('538', 'SYSTEM DETAILS NOTE', 'SYSTEM DETAILS NOTE', 1, 0, NULL, 'SER');
33914 INSERT INTO `marc_tag_structure` VALUES ('540', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'SER');
33915 INSERT INTO `marc_tag_structure` VALUES ('541', 'ACQUISITION INFO--IMMEDIATE SOURCE OF ACQUISITION NOTE', 'IMMEDIATE SOURCE OF ACQUISITION NOTE', 1, 0, NULL, 'SER');
33916 INSERT INTO `marc_tag_structure` VALUES ('543', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 'SOLICITATION INFORMATION NOTE (AM) [OBSOLETE]', 1, 0, NULL, 'SER');
33917 INSERT INTO `marc_tag_structure` VALUES ('544', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 'LOCATION OF OTHER ARCHIVAL MATERIALS NOTE', 1, 0, NULL, 'SER');
33918 INSERT INTO `marc_tag_structure` VALUES ('546', 'LANGUAGE/TRANSLATION INFO', 'LANGUAGE NOTE', 1, 0, NULL, 'SER');
33919 INSERT INTO `marc_tag_structure` VALUES ('547', 'FORMER TITLE COMPLEXITY NOTE', 'FORMER TITLE COMPLEXITY NOTE', 1, 0, NULL, 'SER');
33920 INSERT INTO `marc_tag_structure` VALUES ('550', 'ISSUING BODY NOTE', 'ISSUING BODY NOTE', 1, 0, NULL, 'SER');
33921 INSERT INTO `marc_tag_structure` VALUES ('552', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 'ENTITY AND ATTRIBUTE INFORMATION NOTE', 1, 0, NULL, 'SER');
33922 INSERT INTO `marc_tag_structure` VALUES ('555', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 'CUMULATIVE INDEX/FINDING AIDS NOTE', 1, 0, NULL, 'SER');
33923 INSERT INTO `marc_tag_structure` VALUES ('556', 'INFORMATION ABOUT DOCUMENTATION NOTE', 'INFORMATION ABOUT DOCUMENTATION NOTE', 1, 0, NULL, 'SER');
33924 INSERT INTO `marc_tag_structure` VALUES ('561', 'OWNERSHIP AND CUSTODIAL HISTORY', 'OWNERSHIP AND CUSTODIAL HISTORY', 1, 0, NULL, 'SER');
33925 INSERT INTO `marc_tag_structure` VALUES ('562', 'COPY AND VERSION IDENTIFICATION NOTE', 'COPY AND VERSION IDENTIFICATION NOTE', 1, 0, NULL, 'SER');
33926 INSERT INTO `marc_tag_structure` VALUES ('563', 'BINDING INFORMATION', 'BINDING INFORMATION', 1, 0, NULL, 'SER');
33927 INSERT INTO `marc_tag_structure` VALUES ('565', 'CASE FILE CHARACTERISTICS NOTE', 'CASE FILE CHARACTERISTICS NOTE', 1, 0, NULL, 'SER');
33928 INSERT INTO `marc_tag_structure` VALUES ('567', 'METHODOLOGY NOTE', 'METHODOLOGY NOTE', 1, 0, NULL, 'SER');
33929 INSERT INTO `marc_tag_structure` VALUES ('570', 'EDITOR NOTE (SE) [OBSOLETE]', 'EDITOR NOTE (SE) [OBSOLETE]', 1, 0, NULL, 'SER');
33930 INSERT INTO `marc_tag_structure` VALUES ('580', 'LINKING ENTRY COMPLEXITY NOTE', 'LINKING ENTRY COMPLEXITY NOTE', 1, 0, NULL, 'SER');
33931 INSERT INTO `marc_tag_structure` VALUES ('581', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 'PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE', 1, 0, NULL, 'SER');
33932 INSERT INTO `marc_tag_structure` VALUES ('582', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 'RELATED COMPUTER FILES NOTE (CF) [OBSOLETE]', 1, 0, NULL, 'SER');
33933 INSERT INTO `marc_tag_structure` VALUES ('583', 'ACQUISITION INFO--ACTION NOTE', 'ACTION NOTE', 1, 0, NULL, 'SER');
33934 INSERT INTO `marc_tag_structure` VALUES ('584', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 'ACCUMULATION AND FREQUENCY OF USE NOTE', 1, 0, NULL, 'SER');
33935 INSERT INTO `marc_tag_structure` VALUES ('585', 'EXHIBITIONS NOTE', 'EXHIBITIONS NOTE', 1, 0, NULL, 'SER');
33936 INSERT INTO `marc_tag_structure` VALUES ('586', 'AWARDS', 'AWARDS NOTE', 1, 0, NULL, 'SER');
33937 INSERT INTO `marc_tag_structure` VALUES ('590', 'LOCAL NOTE (RLIN)', 'LOCAL NOTE (RLIN)', 1, 0, NULL, 'SER');
33938 INSERT INTO `marc_tag_structure` VALUES ('600', 'SUBJECT--PERSONAL NAME', 'SUBJECT ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'SER');
33939 INSERT INTO `marc_tag_structure` VALUES ('610', 'SUBJECT--CORPORATE NAME', 'SUBJECT ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'SER');
33940 INSERT INTO `marc_tag_structure` VALUES ('611', 'SUBJECT--MEETING NAME', 'SUBJECT ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'SER');
33941 INSERT INTO `marc_tag_structure` VALUES ('630', 'SUBJECT--UNIFORM TITLE', 'SUBJECT ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'SER');
33942 INSERT INTO `marc_tag_structure` VALUES ('648', 'SUBJECT--CHRONOLOGICAL TERM', 'SUBJECT ADDED ENTRY--CHRONOLOGICAL TERM', 1, 0, NULL, 'SER');
33943 INSERT INTO `marc_tag_structure` VALUES ('650', 'SUBJECT--TOPIC', 'SUBJECT ADDED ENTRY--TOPICAL TERM', 1, 0, NULL, 'SER');
33944 INSERT INTO `marc_tag_structure` VALUES ('651', 'SUBJECT--GEOGRAPHIC NAME', 'SUBJECT ADDED ENTRY--GEOGRAPHIC NAME', 1, 0, NULL, 'SER');
33945 INSERT INTO `marc_tag_structure` VALUES ('652', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 'SUBJECT ADDED ENTRY--REVERSE GEOGRAPHIC (BK MP SE) [OBSOLETE]', 1, 0, NULL, 'SER');
33946 INSERT INTO `marc_tag_structure` VALUES ('653', 'SUBJECT--UNCONTROLLED', 'INDEX TERM--UNCONTROLLED', 1, 0, NULL, 'SER');
33947 INSERT INTO `marc_tag_structure` VALUES ('654', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 'SUBJECT ADDED ENTRY--FACETED TOPICAL TERM', 1, 0, NULL, 'SER');
33948 INSERT INTO `marc_tag_structure` VALUES ('655', 'SUBJECT--GENRE/FORM', 'INDEX TERM--GENRE/FORM', 1, 0, NULL, 'SER');
33949 INSERT INTO `marc_tag_structure` VALUES ('656', 'SUBJECT--OCCUPATION', 'INDEX TERM--OCCUPATION', 1, 0, NULL, 'SER');
33950 INSERT INTO `marc_tag_structure` VALUES ('657', 'SUBJECT--FUNCTION', 'INDEX TERM--FUNCTION', 1, 0, NULL, 'SER');
33951 INSERT INTO `marc_tag_structure` VALUES ('658', 'SUBJECT--CURRICULUM OBJECTIVE', 'INDEX TERM--CURRICULUM OBJECTIVE', 1, 0, NULL, 'SER');
33952 INSERT INTO `marc_tag_structure` VALUES ('662', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 'SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'SER');
33953 INSERT INTO `marc_tag_structure` VALUES ('690', 'LOCAL SUBJECT--TOPICAL TERM (OCLC, RLIN)', 'LOCAL SUBJECT ADDED ENTRY--TOPICAL TERM (OCLC, RLIN)', 1, 0, '', 'SER');
33954 INSERT INTO `marc_tag_structure` VALUES ('691', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--GEOGRAPHIC NAME (RLIN)', 1, 0, '', 'SER');
33955 INSERT INTO `marc_tag_structure` VALUES ('696', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'SER');
33956 INSERT INTO `marc_tag_structure` VALUES ('697', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'SER');
33957 INSERT INTO `marc_tag_structure` VALUES ('698', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'SER');
33958 INSERT INTO `marc_tag_structure` VALUES ('699', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SUBJECT ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'SER');
33959 INSERT INTO `marc_tag_structure` VALUES ('700', 'ADDED ENTRY--PERSONAL EDITOR', 'ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'SER');
33960 INSERT INTO `marc_tag_structure` VALUES ('705', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--PERSONAL NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'SER');
33961 INSERT INTO `marc_tag_structure` VALUES ('710', 'ADDED ENTRY--CORPORATE EDITOR', 'ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'SER');
33962 INSERT INTO `marc_tag_structure` VALUES ('711', 'ADDED ENTRY--MEETING NAME', 'ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'SER');
33963 INSERT INTO `marc_tag_structure` VALUES ('715', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 'ADDED ENTRY--CORPORATE NAME (PERFORMER) (MU) [OBSOLETE]', 1, 0, NULL, 'SER');
33964 INSERT INTO `marc_tag_structure` VALUES ('720', 'ADDED ENTRY--UNCONTROLLED NAME', 'ADDED ENTRY--UNCONTROLLED NAME', 1, 0, NULL, 'SER');
33965 INSERT INTO `marc_tag_structure` VALUES ('730', 'ADDED ENTRY--UNIFORM TITLE', 'ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'SER');
33966 INSERT INTO `marc_tag_structure` VALUES ('740', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 'ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE', 1, 0, NULL, 'SER');
33967 INSERT INTO `marc_tag_structure` VALUES ('752', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 'ADDED ENTRY--HIERARCHICAL PLACE NAME', 1, 0, NULL, 'SER');
33968 INSERT INTO `marc_tag_structure` VALUES ('753', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 'SYSTEM DETAILS ACCESS TO COMPUTER FILES', 1, 0, NULL, 'SER');
33969 INSERT INTO `marc_tag_structure` VALUES ('754', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 'ADDED ENTRY--TAXONOMIC IDENTIFICATION', 1, 0, NULL, 'SER');
33970 INSERT INTO `marc_tag_structure` VALUES ('755', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 'ADDED ENTRY--PHYSICAL CHARACTERISTICS [OBSOLETE]', 1, 0, NULL, 'SER');
33971 INSERT INTO `marc_tag_structure` VALUES ('760', 'MAIN SERIES ENTRY', 'MAIN SERIES ENTRY', 1, 0, NULL, 'SER');
33972 INSERT INTO `marc_tag_structure` VALUES ('762', 'SUBSERIES ENTRY', 'SUBSERIES ENTRY', 1, 0, NULL, 'SER');
33973 INSERT INTO `marc_tag_structure` VALUES ('765', 'ORIGINAL LANGUAGE ENTRY', 'ORIGINAL LANGUAGE ENTRY', 1, 0, NULL, 'SER');
33974 INSERT INTO `marc_tag_structure` VALUES ('767', 'TRANSLATION ENTRY', 'TRANSLATION ENTRY', 1, 0, NULL, 'SER');
33975 INSERT INTO `marc_tag_structure` VALUES ('770', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 'SUPPLEMENT/SPECIAL ISSUE ENTRY', 1, 0, NULL, 'SER');
33976 INSERT INTO `marc_tag_structure` VALUES ('772', 'SUPPLEMENT PARENT ENTRY', 'SUPPLEMENT PARENT ENTRY', 1, 0, NULL, 'SER');
33977 INSERT INTO `marc_tag_structure` VALUES ('773', 'HOST ITEM ENTRY', 'HOST ITEM ENTRY', 1, 0, NULL, 'SER');
33978 INSERT INTO `marc_tag_structure` VALUES ('774', 'CONSTITUENT UNIT ENTRY', 'CONSTITUENT UNIT ENTRY', 1, 0, NULL, 'SER');
33979 INSERT INTO `marc_tag_structure` VALUES ('775', 'OTHER EDITION ENTRY', 'OTHER EDITION ENTRY', 1, 0, NULL, 'SER');
33980 INSERT INTO `marc_tag_structure` VALUES ('776', 'ADDITIONAL PHYSICAL FORM ENTRY', 'ADDITIONAL PHYSICAL FORM ENTRY', 1, 0, NULL, 'SER');
33981 INSERT INTO `marc_tag_structure` VALUES ('777', 'ISSUED WITH ENTRY', 'ISSUED WITH ENTRY', 1, 0, NULL, 'SER');
33982 INSERT INTO `marc_tag_structure` VALUES ('780', 'PRECEDING ENTRY', 'PRECEDING ENTRY', 1, 0, NULL, 'SER');
33983 INSERT INTO `marc_tag_structure` VALUES ('785', 'SUCCEEDING ENTRY', 'SUCCEEDING ENTRY', 1, 0, NULL, 'SER');
33984 INSERT INTO `marc_tag_structure` VALUES ('786', 'DATA SOURCE ENTRY', 'DATA SOURCE ENTRY', 1, 0, NULL, 'SER');
33985 INSERT INTO `marc_tag_structure` VALUES ('787', 'NONSPECIFIC RELATIONSHIP ENTRY', 'NONSPECIFIC RELATIONSHIP ENTRY', 1, 0, NULL, 'SER');
33986 INSERT INTO `marc_tag_structure` VALUES ('789', 'COMPONENT ITEM ENTRY (RLIN)', 'COMPONENT ITEM ENTRY (RLIN)', 1, 0, '', 'SER');
33987 INSERT INTO `marc_tag_structure` VALUES ('796', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'SER');
33988 INSERT INTO `marc_tag_structure` VALUES ('797', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'SER');
33989 INSERT INTO `marc_tag_structure` VALUES ('798', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'SER');
33990 INSERT INTO `marc_tag_structure` VALUES ('799', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'SER');
33991 INSERT INTO `marc_tag_structure` VALUES ('800', 'SERIES ADDED ENTRY--PERSONAL NAME', 'SERIES ADDED ENTRY--PERSONAL NAME', 1, 0, NULL, 'SER');
33992 INSERT INTO `marc_tag_structure` VALUES ('810', 'SERIES ADDED ENTRY--CORPORATE NAME', 'SERIES ADDED ENTRY--CORPORATE NAME', 1, 0, NULL, 'SER');
33993 INSERT INTO `marc_tag_structure` VALUES ('811', 'SERIES ADDED ENTRY--MEETING NAME', 'SERIES ADDED ENTRY--MEETING NAME', 1, 0, NULL, 'SER');
33994 INSERT INTO `marc_tag_structure` VALUES ('830', 'SERIES ADDED ENTRY--UNIFORM TITLE', 'SERIES ADDED ENTRY--UNIFORM TITLE', 1, 0, NULL, 'SER');
33995 INSERT INTO `marc_tag_structure` VALUES ('840', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 'SERIES ADDED ENTRY--TITLE [OBSOLETE]', 1, 0, NULL, 'SER');
33996 INSERT INTO `marc_tag_structure` VALUES ('841', 'HOLDINGS CODED DATA VALUES', 'HOLDINGS CODED DATA VALUES', 0, 0, NULL, 'SER');
33997 INSERT INTO `marc_tag_structure` VALUES ('842', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 'TEXTUAL PHYSICAL FORM DESIGNATOR', 0, 0, NULL, 'SER');
33998 INSERT INTO `marc_tag_structure` VALUES ('843', 'REPRODUCTION NOTE', 'REPRODUCTION NOTE', 1, 0, NULL, 'SER');
33999 INSERT INTO `marc_tag_structure` VALUES ('844', 'NAME OF UNIT', 'NAME OF UNIT', 0, 0, NULL, 'SER');
34000 INSERT INTO `marc_tag_structure` VALUES ('845', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 'TERMS GOVERNING USE AND REPRODUCTION NOTE', 1, 0, NULL, 'SER');
34001 INSERT INTO `marc_tag_structure` VALUES ('850', 'HOLDING INSTITUTION', 'HOLDING INSTITUTION', 1, 0, NULL, 'SER');
34002 INSERT INTO `marc_tag_structure` VALUES ('851', 'LOCATION [OBSOLETE]', 'LOCATION [OBSOLETE]', 1, 0, NULL, 'SER');
34003 INSERT INTO `marc_tag_structure` VALUES ('852', 'LOCATION/CALL NUMBER', 'LOCATION/CALL NUMBER', 1, 0, NULL, 'SER');
34004 INSERT INTO `marc_tag_structure` VALUES ('853', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 'CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'SER');
34005 INSERT INTO `marc_tag_structure` VALUES ('854', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 'CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'SER');
34006 INSERT INTO `marc_tag_structure` VALUES ('855', 'CAPTIONS AND PATTERN--INDEXES', 'CAPTIONS AND PATTERN--INDEXES', 1, 0, NULL, 'SER');
34007 INSERT INTO `marc_tag_structure` VALUES ('856', 'URL/ELECTRONIC LOCATION AND ACCESS', 'ELECTRONIC LOCATION AND ACCESS', 1, 0, NULL, 'SER');
34008 INSERT INTO `marc_tag_structure` VALUES ('859', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'SER');
34009 INSERT INTO `marc_tag_structure` VALUES ('863', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 'ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'SER');
34010 INSERT INTO `marc_tag_structure` VALUES ('864', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 'ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'SER');
34011 INSERT INTO `marc_tag_structure` VALUES ('865', 'ENUMERATION AND CHRONOLOGY--INDEXES', 'ENUMERATION AND CHRONOLOGY--INDEXES', 1, 0, NULL, 'SER');
34012 INSERT INTO `marc_tag_structure` VALUES ('866', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 'TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'SER');
34013 INSERT INTO `marc_tag_structure` VALUES ('867', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 'TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'SER');
34014 INSERT INTO `marc_tag_structure` VALUES ('868', 'TEXTUAL HOLDINGS--INDEXES', 'TEXTUAL HOLDINGS--INDEXES', 1, 0, NULL, 'SER');
34015 INSERT INTO `marc_tag_structure` VALUES ('870', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 'VARIANT PERSONAL NAME (SE) [OBSOLETE]', 1, 0, NULL, 'SER');
34016 INSERT INTO `marc_tag_structure` VALUES ('871', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 'VARIANT CORPORATE NAME (SE)[OBSOLETE]', 1, 0, NULL, 'SER');
34017 INSERT INTO `marc_tag_structure` VALUES ('872', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 'VARIANT CONFERENCE OR MEETING NAME (SE) [OBSOLETE]', 1, 0, NULL, 'SER');
34018 INSERT INTO `marc_tag_structure` VALUES ('873', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 'VARIANT UNIFORM TITLE HEADING (SE) [OBSOLETE]', 1, 0, NULL, 'SER');
34019 INSERT INTO `marc_tag_structure` VALUES ('876', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 'ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT', 1, 0, NULL, 'SER');
34020 INSERT INTO `marc_tag_structure` VALUES ('877', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 'ITEM INFORMATION--SUPPLEMENTARY MATERIAL', 1, 0, NULL, 'SER');
34021 INSERT INTO `marc_tag_structure` VALUES ('878', 'ITEM INFORMATION--INDEXES', 'ITEM INFORMATION--INDEXES', 1, 0, NULL, 'SER');
34022 INSERT INTO `marc_tag_structure` VALUES ('880', 'ALTERNATE GRAPHIC REPRESENTATION', 'ALTERNATE GRAPHIC REPRESENTATION', 1, 0, NULL, 'SER');
34023 INSERT INTO `marc_tag_structure` VALUES ('886', 'FOREIGN MARC INFORMATION FIELD', 'FOREIGN MARC INFORMATION FIELD', 1, 0, NULL, 'SER');
34024 INSERT INTO `marc_tag_structure` VALUES ('887', 'NON-MARC INFORMATION FIELD', 'NON-MARC INFORMATION FIELD', 1, 0, NULL, 'SER');
34025 INSERT INTO `marc_tag_structure` VALUES ('896', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--PERSONAL NAME (RLIN)', 1, 0, '', 'SER');
34026 INSERT INTO `marc_tag_structure` VALUES ('897', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--CORPORATE NAME (RLIN)', 1, 0, '', 'SER');
34027 INSERT INTO `marc_tag_structure` VALUES ('898', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 'LOCAL SERIES ADDED ENTRY--MEETING NAME (RLIN)', 1, 0, '', 'SER');
34028 INSERT INTO `marc_tag_structure` VALUES ('899', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 'LOCAL SERIES ADDED ENTRY--UNIFORM TITLE (RLIN)', 1, 0, '', 'SER');
34029 INSERT INTO `marc_tag_structure` VALUES ('89e', 'ERRONEOUS FIELD, ERR (RLIN)', 'ERRONEOUS FIELD, ERR (RLIN)', 1, 0, '', 'SER');
34030 INSERT INTO `marc_tag_structure` VALUES ('900', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-PERSONAL NAME [LOCAL, CANADA]', 1, 0, '', 'SER');
34031 INSERT INTO `marc_tag_structure` VALUES ('901', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 'LOCAL DATA ELEMENT A, LDA (RLIN)', 1, 0, '', 'SER');
34032 INSERT INTO `marc_tag_structure` VALUES ('902', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 'LOCAL DATA ELEMENT B, LDB (RLIN)', 1, 0, '', 'SER');
34033 INSERT INTO `marc_tag_structure` VALUES ('903', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 'LOCAL DATA ELEMENT C, LDC (RLIN)', 1, 0, '', 'SER');
34034 INSERT INTO `marc_tag_structure` VALUES ('904', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 'LOCAL DATA ELEMENT D, LDD (RLIN)', 1, 0, '', 'SER');
34035 INSERT INTO `marc_tag_structure` VALUES ('905', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 'LOCAL DATA ELEMENT E, LDE (RLIN)', 1, 0, '', 'SER');
34036 INSERT INTO `marc_tag_structure` VALUES ('906', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 'LOCAL DATA ELEMENT F, LDF (RLIN)', 1, 0, '', 'SER');
34037 INSERT INTO `marc_tag_structure` VALUES ('907', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 'LOCAL DATA ELEMENT G, LDG (RLIN)', 1, 0, '', 'SER');
34038 INSERT INTO `marc_tag_structure` VALUES ('908', 'PUT COMMAND PARAMETER (RLIN)', 'PUT COMMAND PARAMETER (RLIN)', 0, 0, '', 'SER');
34039 INSERT INTO `marc_tag_structure` VALUES ('910', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CORPORATE NAME [LOCAL, CANADA]', 1, 0, '', 'SER');
34040 INSERT INTO `marc_tag_structure` VALUES ('91o', 'USER-OPTION DATA (COLC)', 'USER-OPTION DATA (OCLC)', 0, 0, '', 'SER');
34041 INSERT INTO `marc_tag_structure` VALUES ('91r', 'RLG STANDARDS NOTE (RLIN)', 'RLG STANDARDS NOTE (RLIN)', 1, 0, '', 'SER');
34042 INSERT INTO `marc_tag_structure` VALUES ('911', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-CONFERENCE OR MEETING NAME [LOCAL, CANADA]', 1, 0, '', 'SER');
34043 INSERT INTO `marc_tag_structure` VALUES ('930', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-UNIFORM TITLE HEADING [LOCAL, CANADA]', 1, 0, '', 'SER');
34044 INSERT INTO `marc_tag_structure` VALUES ('93r', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 'SUMMARY HOLDINGS STATEMENT (RLIN)', 1, 0, '', 'SER');
34045 INSERT INTO `marc_tag_structure` VALUES ('936', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 'OCLC/CONSER MISCELLANEOUS DATA (OCLC); PIECE USED FOR CATALOGING (pre-AACR2) (RLIN)', 0, 0, '', 'SER');
34046 INSERT INTO `marc_tag_structure` VALUES ('940', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--UNIFORM TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'SER');
34047 INSERT INTO `marc_tag_structure` VALUES ('941', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--ROMANIZED TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'SER');
34048 INSERT INTO `marc_tag_structure` VALUES ('943', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--COLLECTIVE TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'SER');
34049 INSERT INTO `marc_tag_structure` VALUES ('945', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'SER');
34050 INSERT INTO `marc_tag_structure` VALUES ('94c', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE--TITLE [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'SER');
34051 INSERT INTO `marc_tag_structure` VALUES ('946', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'SER');
34052 INSERT INTO `marc_tag_structure` VALUES ('947', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'SER');
34053 INSERT INTO `marc_tag_structure` VALUES ('948', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 'LOCAL PROCESSING INFORMATION (OCLC); SERIES PART DESIGNATOR (RLIN)', 1, 0, '', 'SER');
34054 INSERT INTO `marc_tag_structure` VALUES ('949', 'LOCAL PROCESSING INFORMATION (OCLC)', 'LOCAL PROCESSING INFORMATION (OCLC)', 1, 0, '', 'SER');
34055 INSERT INTO `marc_tag_structure` VALUES ('94a', 'ANALYSIS TREATMENT NOTE (RLIN)', 'ANALYSIS TREATMENT NOTE (RLIN)', 1, 0, '', 'SER');
34056 INSERT INTO `marc_tag_structure` VALUES ('94b', 'TREATMENT CODES (RLIN)', 'TREATMENT CODES (RLIN)', 1, 0, '', 'SER');
34057 INSERT INTO `marc_tag_structure` VALUES ('950', 'LOCAL HOLDINGS (RLIN)', 'LOCAL HOLDINGS (RLIN)', 1, 0, '', 'SER');
34058 INSERT INTO `marc_tag_structure` VALUES ('951', 'EQUIVALENCE OR CROSS-REFERENCE--GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-GEOGRAPHIC NAME/AREA NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'SER');
34059 INSERT INTO `marc_tag_structure` VALUES ('95c', 'EQUIVALENCE OR CROSS-REFERENCE--HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 'EQUIVALENCE OR CROSS-REFERENCE-HIERARCHICAL PLACE NAME [OBSOLETE] [CAN/MARC only]', 1, 0, '', 'SER');
34060 INSERT INTO `marc_tag_structure` VALUES ('95r', 'CLUSTER MEMBER (RLIN)', 'CLUSTER MEMBER (RLIN)', 1, 0, '', 'SER');
34061 INSERT INTO `marc_tag_structure` VALUES ('955', 'COPY-LEVEL INFORMATION (RLIN)', 'COPY-LEVEL INFORMATION (RLIN)', 1, 0, '', 'SER');
34062 INSERT INTO `marc_tag_structure` VALUES ('956', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 'LOCAL ELECTRONIC LOCATION AND ACCESS (OCLC)', 1, 0, '', 'SER');
34063 INSERT INTO `marc_tag_structure` VALUES ('960', 'PHYSICAL LOCATION (RLIN)', 'PHYSICAL LOCATION (RLIN)', 1, 0, '', 'SER');
34064 INSERT INTO `marc_tag_structure` VALUES ('967', 'ADDITIONAL ESTC CODES (RLIN)', 'ADDITIONAL ESTC CODES (RLIN)', 1, 0, '', 'SER');
34065 INSERT INTO `marc_tag_structure` VALUES ('980', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--PERSONAL NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'SER');
34066 INSERT INTO `marc_tag_structure` VALUES ('981', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CORPORATE NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'SER');
34067 INSERT INTO `marc_tag_structure` VALUES ('982', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--CONFERENCE OR MEETING NAME/TITLE [LOCAL, CANADA]', 1, 0, '', 'SER');
34068 INSERT INTO `marc_tag_structure` VALUES ('983', 'EQUIVALENCE OR CROSS-REFERENCE-SERIES STATEMENT--TITLE/UNIFORM TITLE [LOCAL, CANADA]', 'EQUIVALENCE OR CROSS-REFERENCE--SERIES STATEMENT-TITLE/UNIFORM TITLE [LOCAL, CANADA]', 1, 0, '', 'SER');
34069 INSERT INTO `marc_tag_structure` VALUES ('984', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 'WLN AUTOMATIC HOLDINGS STATEMENT (OCLC)', 1, 0, '', 'SER');
34070 INSERT INTO `marc_tag_structure` VALUES ('987', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 'LOCAL ROMANIZATION/CONVERSION HISTORY (OCLC)', 1, 0, '', 'SER');
34071 INSERT INTO `marc_tag_structure` VALUES ('990', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 'EQUIVALENCES OR CROSS-REFERENCES [LOCAL, CANADA]', 1, 0, '', 'SER');
34072 INSERT INTO `marc_tag_structure` VALUES ('995', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 'RECOMMANDATION 995 [LOCAL, UNIMARC FRANCE]', 1, 0, '', 'SER');
34073 INSERT INTO `marc_tag_structure` VALUES ('998', 'LOCAL CONTROL INFORMATION (RLIN)', 'LOCAL CONTROL INFORMATION (RLIN)', 1, 0, '', 'SER');
34074 INSERT INTO `marc_tag_structure` VALUES ('999', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (RLIN)', '090: LOCALLY ASSIGNED LC-TYPE CALL NUMBER (OCLC); LOCAL CALL NUMBER (OCLC)', 1, 0, '', 'SER');
34075 INSERT INTO `marc_tag_structure` VALUES ('b99', 'PRIVATE LOCAL INFORMATION (RLIN)', 'PRIVATE LOCAL INFORMATION (RLIN)', 1, 0, '', 'SER');
34076 INSERT INTO `marc_tag_structure` VALUES ('u01', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 'UNIT IDENTIFICATION, STATUS, AND TYPE (RLIN)', 0, 0, '', 'SER');
34077 INSERT INTO `marc_tag_structure` VALUES ('u02', 'STANDARD NUMBER (RLIN)', 'STANDARD NUMBER (RLIN)', 0, 0, '', 'SER');
34078 INSERT INTO `marc_tag_structure` VALUES ('u08', 'CODED INFORMATION (RLIN)', 'CODED INFORMATION (RLIN)', 0, 0, '', 'SER');
34079 INSERT INTO `marc_tag_structure` VALUES ('u10', 'REQUESTER IDENTIFICATION (RLIN)', 'REQUESTER IDENTIFICATION (RLIN)', 1, 0, '', 'SER');
34080 INSERT INTO `marc_tag_structure` VALUES ('u11', 'DEPARTMENT REPORT REQUEST (RLIN)', 'DEPARTMENT REPORT REQUEST (RLIN)', 1, 0, '', 'SER');
34081 INSERT INTO `marc_tag_structure` VALUES ('u20', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 'SUPPLIER IDENTIFICATION, SUPN (RLIN)', 0, 0, '', 'SER');
34082 INSERT INTO `marc_tag_structure` VALUES ('u21', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 'LIBRARY CODES FOR VENDOR AND ORDER (RLIN)', 0, 0, '', 'SER');
34083 INSERT INTO `marc_tag_structure` VALUES ('u22', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 'SUPPLIER CODES AND CATALOG INFORMATION (RLIN)', 0, 0, '', 'SER');
34084 INSERT INTO `marc_tag_structure` VALUES ('u25', 'SUPPLIER REPORT(S) (RLIN)', 'SUPPLIER REPORT(S) (RLIN)', 0, 0, '', 'SER');
34085 INSERT INTO `marc_tag_structure` VALUES ('u30', 'INTERVALS (RLIN)', 'INTERVALS (RLIN)', 0, 0, '', 'SER');
34086 INSERT INTO `marc_tag_structure` VALUES ('u31', 'CLAIM COUNTS (RLIN)', 'CLAIM COUNTS (RLIN)', 0, 0, '', 'SER');
34087 INSERT INTO `marc_tag_structure` VALUES ('u33', 'INVOICE CLAIM (RLIN)', 'INVOICE CLAIM (RLIN)', 0, 0, '', 'SER');
34088 INSERT INTO `marc_tag_structure` VALUES ('u34', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 'EXTENDED PROCUREMENT CLAIM AND REVIEW (RLIN)', 0, 0, '', 'SER');
34089 INSERT INTO `marc_tag_structure` VALUES ('u40', 'EXTENDED PROCUREMENT CODES (RLIN)', 'EXTENDED PROCUREMENT CODES (RLIN)', 0, 0, '', 'SER');
34090 INSERT INTO `marc_tag_structure` VALUES ('u50', 'ACQUISITIONS NOTES (RLIN)', 'ACQUISITIONS NOTES (RLIN)', 0, 0, '', 'SER');
34091 INSERT INTO `marc_tag_structure` VALUES ('u51', 'SELECTION NOTES (RLIN)', 'SELECTION NOTES (RLIN)', 0, 0, '', 'SER');
34092 INSERT INTO `marc_tag_structure` VALUES ('u52', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 'SUPPLIER INSTRUCTIONS AND NOTES, SINT (RLIN)', 0, 0, '', 'SER');
34093 INSERT INTO `marc_tag_structure` VALUES ('u53', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 'CLAIM INSTRUCTIONS AND NOTES, CLNT (RLIN)', 0, 0, '', 'SER');
34094 INSERT INTO `marc_tag_structure` VALUES ('u54', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 'NOTES TO SERIALS DEPARTMENT (RLIN)', 0, 0, '', 'SER');
34095 INSERT INTO `marc_tag_structure` VALUES ('u55', 'CATALOGING NOTES (RLIN)', 'CATALOGING NOTES (RLIN)', 0, 0, '', 'SER');
34096 INSERT INTO `marc_tag_structure` VALUES ('u5f', 'ACCOUNTING NOTES (RLIN)', 'ACCOUNTING NOTES (RLIN)', 0, 0, '', 'SER');
34097 INSERT INTO `marc_tag_structure` VALUES ('u70', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 'MATERIAL AND LOCATION INFORMATION (RLIN)', 0, 0, '', 'SER');
34098 INSERT INTO `marc_tag_structure` VALUES ('u71', 'FUND ACCOUNT (RLIN)', 'FUND ACCOUNT (RLIN)', 0, 0, '', 'SER');
34099 INSERT INTO `marc_tag_structure` VALUES ('u75', 'ITEM DETAILS (RLIN)', 'ITEM DETAILS (RLIN)', 1, 0, '', 'SER');
34100 INSERT INTO `marc_tag_structure` VALUES ('u7f', 'PRICE INFORMATION (RLIN)', 'PRICE INFORMATION (RLIN)', 1, 0, '', 'SER');
34101 INSERT INTO `marc_tag_structure` VALUES ('u90', 'TAPE OUTPUT, TAPE (RLIN)', 'TAPE OUTPUT, TAPE (RLIN)', 0, 0, '', 'SER');
34102 INSERT INTO `marc_tag_structure` VALUES ('ufi', 'FISCAL INFORMATION, FI (RLIN)', 'FISCAL INFORMATION, FI (RLIN)', 1, 0, '', 'SER');
34103
34104
34105
34106 INSERT INTO `marc_subfield_structure` VALUES ('000', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_leader.pl', 0, 0, 'SER', '', '');
34107 INSERT INTO `marc_subfield_structure` VALUES ('001', '@', 'control field', 'control field', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34108 INSERT INTO `marc_subfield_structure` VALUES ('003', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_003.pl', 0, -6, 'SER', '', '');
34109 INSERT INTO `marc_subfield_structure` VALUES ('005', '@', 'control field', 'control field', 0, 0, '', 0, '', '', 'marc21_field_005.pl', 0, -1, 'SER', '', '');
34110 INSERT INTO `marc_subfield_structure` VALUES ('006', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_006.pl', 0, -1, 'SER', '', '');
34111 INSERT INTO `marc_subfield_structure` VALUES ('007', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', 'marc21_field_007.pl', 0, 0, 'SER', '', '');
34112 INSERT INTO `marc_subfield_structure` VALUES ('008', '@', 'fixed length control field', 'fixed length control field', 0, 1, '', 0, '', '', 'marc21_field_008.pl', 0, 0, 'SER', '', '');
34113 INSERT INTO `marc_subfield_structure` VALUES ('009', '@', 'fixed length control field', 'fixed length control field', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34114 INSERT INTO `marc_subfield_structure` VALUES ('010', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', NULL, 0, -6, 'SER', '', '');
34115 INSERT INTO `marc_subfield_structure` VALUES ('010', 'a', 'LC control number', 'LC control number', 0, 0, 'biblioitems.lccn', 0, '', '', '', 0, -6, 'SER', '', '');
34116 INSERT INTO `marc_subfield_structure` VALUES ('010', 'b', 'NUCMC control number', 'NUCMC control number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34117 INSERT INTO `marc_subfield_structure` VALUES ('010', 'z', 'Canceled/invalid LC control number', 'Canceled/invalid LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34118 INSERT INTO `marc_subfield_structure` VALUES ('011', 'a', 'LC control number', 'LC control number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34119 INSERT INTO `marc_subfield_structure` VALUES ('013', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'SER', '', '');
34120 INSERT INTO `marc_subfield_structure` VALUES ('013', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34121 INSERT INTO `marc_subfield_structure` VALUES ('013', 'a', 'Number', 'Number', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34122 INSERT INTO `marc_subfield_structure` VALUES ('013', 'b', 'Country', 'Country', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34123 INSERT INTO `marc_subfield_structure` VALUES ('013', 'c', 'Type of number', 'Type of number', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34124 INSERT INTO `marc_subfield_structure` VALUES ('013', 'd', 'Date', 'Date', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34125 INSERT INTO `marc_subfield_structure` VALUES ('013', 'e', 'Status', 'Status', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34126 INSERT INTO `marc_subfield_structure` VALUES ('013', 'f', 'Party to document', 'Party to document', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34127 INSERT INTO `marc_subfield_structure` VALUES ('015', '2', 'Source', 'Source', 0, 0, '', 0, '', '', NULL, 0, -6, 'SER', '', '');
34128 INSERT INTO `marc_subfield_structure` VALUES ('015', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34129 INSERT INTO `marc_subfield_structure` VALUES ('015', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34130 INSERT INTO `marc_subfield_structure` VALUES ('015', 'a', 'National bibliography number', 'National bibliography number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34131 INSERT INTO `marc_subfield_structure` VALUES ('016', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34132 INSERT INTO `marc_subfield_structure` VALUES ('016', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34133 INSERT INTO `marc_subfield_structure` VALUES ('016', 'a', 'Record control number', 'Record control number', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34134 INSERT INTO `marc_subfield_structure` VALUES ('016', 'z', 'Canceled or invalid record control number', 'Canceled or invalid record control number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34135 INSERT INTO `marc_subfield_structure` VALUES ('017', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34136 INSERT INTO `marc_subfield_structure` VALUES ('017', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34137 INSERT INTO `marc_subfield_structure` VALUES ('017', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34138 INSERT INTO `marc_subfield_structure` VALUES ('017', 'a', 'Copyright or legal deposit number', 'Copyright or legal deposit number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34139 INSERT INTO `marc_subfield_structure` VALUES ('017', 'b', 'Assigning agency', 'Assigning agency', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34140 INSERT INTO `marc_subfield_structure` VALUES ('017', 'd', 'Date', 'Date', 0, 0, '', 0, '', '', NULL, 0, -6, 'SER', '', '');
34141 INSERT INTO `marc_subfield_structure` VALUES ('017', 'i', 'Display text', 'Display text', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34142 INSERT INTO `marc_subfield_structure` VALUES ('018', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34143 INSERT INTO `marc_subfield_structure` VALUES ('018', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34144 INSERT INTO `marc_subfield_structure` VALUES ('018', 'a', 'Copyright article-fee code', 'Copyright article-fee code', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34145 INSERT INTO `marc_subfield_structure` VALUES ('01e', 'a', 'Coded field error', 'Coded field error', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34146 INSERT INTO `marc_subfield_structure` VALUES ('020', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34147 INSERT INTO `marc_subfield_structure` VALUES ('020', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34148 INSERT INTO `marc_subfield_structure` VALUES ('020', 'a', 'International Standard Book Number', 'International Standard Book Number', 0, 0, 'biblioitems.isbn', 0, '', '', '', 0, -6, 'SER', '', '');
34149 INSERT INTO `marc_subfield_structure` VALUES ('020', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34150 INSERT INTO `marc_subfield_structure` VALUES ('020', 'z', 'Cancelled/invalid ISBN', 'Cancelled/invalid ISBN', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34151 INSERT INTO `marc_subfield_structure` VALUES ('022', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34152 INSERT INTO `marc_subfield_structure` VALUES ('022', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34153 INSERT INTO `marc_subfield_structure` VALUES ('022', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34154 INSERT INTO `marc_subfield_structure` VALUES ('022', 'a', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, 'biblioitems.issn', 0, '', '', '', 0, 0, 'SER', '', '');
34155 INSERT INTO `marc_subfield_structure` VALUES ('022', 'y', 'Incorrect ISSN', 'Incorrect ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34156 INSERT INTO `marc_subfield_structure` VALUES ('022', 'z', 'Canceled ISSN', 'Canceled ISSN', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34157 INSERT INTO `marc_subfield_structure` VALUES ('023', 'a', 'Standard film number', 'Standard film number', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34158 INSERT INTO `marc_subfield_structure` VALUES ('024', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 0, '', '', '', 0, -1, 'SER', '', '');
34159 INSERT INTO `marc_subfield_structure` VALUES ('024', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34160 INSERT INTO `marc_subfield_structure` VALUES ('024', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34161 INSERT INTO `marc_subfield_structure` VALUES ('024', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'SER', '', '');
34162 INSERT INTO `marc_subfield_structure` VALUES ('024', 'b', 'Additional codes following the standard number [OBSOLETE]', 'Additional codes following the standard number [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34163 INSERT INTO `marc_subfield_structure` VALUES ('024', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 0, '', '', '', 0, -1, 'SER', '', '');
34164 INSERT INTO `marc_subfield_structure` VALUES ('024', 'd', 'Additional codes following the standard number or code', 'Additional codes following the standard number or code', 0, 0, '', 0, '', '', '', 0, -1, 'SER', '', '');
34165 INSERT INTO `marc_subfield_structure` VALUES ('024', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34166 INSERT INTO `marc_subfield_structure` VALUES ('025', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34167 INSERT INTO `marc_subfield_structure` VALUES ('025', 'a', 'Overseas acquisition number', 'Overseas acquisition number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34168 INSERT INTO `marc_subfield_structure` VALUES ('026', '2', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34169 INSERT INTO `marc_subfield_structure` VALUES ('026', '5', 'Institution to which field applies', 'Institution to which field applies', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34170 INSERT INTO `marc_subfield_structure` VALUES ('026', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34171 INSERT INTO `marc_subfield_structure` VALUES ('026', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34172 INSERT INTO `marc_subfield_structure` VALUES ('026', 'a', 'First and second groups of characters', 'First and second groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34173 INSERT INTO `marc_subfield_structure` VALUES ('026', 'b', 'Third and fourth groups of characters', 'Third and fourth groups of characters', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34174 INSERT INTO `marc_subfield_structure` VALUES ('026', 'c', 'Date', 'Date', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34175 INSERT INTO `marc_subfield_structure` VALUES ('026', 'd', 'Number of volume or part', 'Number of volume or part', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34176 INSERT INTO `marc_subfield_structure` VALUES ('026', 'e', 'unparsed fingerprint', 'unparsed fingerprint', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34177 INSERT INTO `marc_subfield_structure` VALUES ('027', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34178 INSERT INTO `marc_subfield_structure` VALUES ('027', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34179 INSERT INTO `marc_subfield_structure` VALUES ('027', 'a', 'Standard technical report number', 'Standard technical report number', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34180 INSERT INTO `marc_subfield_structure` VALUES ('027', 'z', 'Canceled/invalid number', 'Canceled/invalid number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34181 INSERT INTO `marc_subfield_structure` VALUES ('028', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34182 INSERT INTO `marc_subfield_structure` VALUES ('028', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34183 INSERT INTO `marc_subfield_structure` VALUES ('028', 'a', 'Publisher number', 'Publisher number', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34184 INSERT INTO `marc_subfield_structure` VALUES ('028', 'b', 'Source', 'Source', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34185 INSERT INTO `marc_subfield_structure` VALUES ('030', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34186 INSERT INTO `marc_subfield_structure` VALUES ('030', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34187 INSERT INTO `marc_subfield_structure` VALUES ('030', 'a', 'CODEN', 'CODEN', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34188 INSERT INTO `marc_subfield_structure` VALUES ('030', 'z', 'Canceled/invalid CODEN', 'Canceled/invalid CODEN', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34189 INSERT INTO `marc_subfield_structure` VALUES ('031', '2', 'System code', 'System code', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34190 INSERT INTO `marc_subfield_structure` VALUES ('031', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34191 INSERT INTO `marc_subfield_structure` VALUES ('031', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34192 INSERT INTO `marc_subfield_structure` VALUES ('031', 'a', 'Number of work', 'Number of work', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34193 INSERT INTO `marc_subfield_structure` VALUES ('031', 'b', 'Number of movement', 'Number of movement', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34194 INSERT INTO `marc_subfield_structure` VALUES ('031', 'c', 'Number of excerpt', 'Number of excerpt', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34195 INSERT INTO `marc_subfield_structure` VALUES ('031', 'd', 'Caption or heading', 'Caption or heading', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34196 INSERT INTO `marc_subfield_structure` VALUES ('031', 'e', 'Role', 'Role', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34197 INSERT INTO `marc_subfield_structure` VALUES ('031', 'g', 'Clef', 'Clef', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34198 INSERT INTO `marc_subfield_structure` VALUES ('031', 'm', 'Voice/instrument', 'Voice/instrument', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34199 INSERT INTO `marc_subfield_structure` VALUES ('031', 'n', 'Key signature', 'Key signature', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34200 INSERT INTO `marc_subfield_structure` VALUES ('031', 'o', 'Time signature', 'Time signature', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34201 INSERT INTO `marc_subfield_structure` VALUES ('031', 'p', 'Musical notation', 'Musical notation', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34202 INSERT INTO `marc_subfield_structure` VALUES ('031', 'q', 'General note', 'General note', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34203 INSERT INTO `marc_subfield_structure` VALUES ('031', 'r', 'Key or mode', 'Key or mode', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34204 INSERT INTO `marc_subfield_structure` VALUES ('031', 's', 'Coded validity note', 'Coded validity note', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34205 INSERT INTO `marc_subfield_structure` VALUES ('031', 't', 'Text incipit', 'Text incipit', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34206 INSERT INTO `marc_subfield_structure` VALUES ('031', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 0, '', '', '', 1, -6, 'SER', '', '');
34207 INSERT INTO `marc_subfield_structure` VALUES ('031', 'y', 'Link text', 'Link text', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34208 INSERT INTO `marc_subfield_structure` VALUES ('031', 'z', 'Public note', 'Public note', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34209 INSERT INTO `marc_subfield_structure` VALUES ('032', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', NULL, 0, -6, 'SER', '', '');
34210 INSERT INTO `marc_subfield_structure` VALUES ('032', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34211 INSERT INTO `marc_subfield_structure` VALUES ('032', 'a', 'Postal registration number', 'Postal registration number', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34212 INSERT INTO `marc_subfield_structure` VALUES ('032', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34213 INSERT INTO `marc_subfield_structure` VALUES ('033', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34214 INSERT INTO `marc_subfield_structure` VALUES ('033', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34215 INSERT INTO `marc_subfield_structure` VALUES ('033', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34216 INSERT INTO `marc_subfield_structure` VALUES ('033', 'a', 'Formatted date/time', 'Formatted date/time', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34217 INSERT INTO `marc_subfield_structure` VALUES ('033', 'b', 'Geographic classification area code', 'Geographic classification area code', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34218 INSERT INTO `marc_subfield_structure` VALUES ('033', 'c', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34219 INSERT INTO `marc_subfield_structure` VALUES ('034', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34220 INSERT INTO `marc_subfield_structure` VALUES ('034', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34221 INSERT INTO `marc_subfield_structure` VALUES ('034', 'a', 'Category of scale', 'Category of scale', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34222 INSERT INTO `marc_subfield_structure` VALUES ('034', 'b', 'Constant ratio linear horizontal scale', 'Constant ratio linear horizontal scale', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34223 INSERT INTO `marc_subfield_structure` VALUES ('034', 'c', 'Constant ratio linear vertical scale', 'Constant ratio linear vertical scale', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34224 INSERT INTO `marc_subfield_structure` VALUES ('034', 'd', 'Coordinates--westernmost longitude', 'Coordinates--westernmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34225 INSERT INTO `marc_subfield_structure` VALUES ('034', 'e', 'Coordinates--easternmost longitude', 'Coordinates--easternmost longitude', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34226 INSERT INTO `marc_subfield_structure` VALUES ('034', 'f', 'Coordinates--northernmost latitude', 'Coordinates--northernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34227 INSERT INTO `marc_subfield_structure` VALUES ('034', 'g', 'Coordinates--southernmost latitude', 'Coordinates--southernmost latitude', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34228 INSERT INTO `marc_subfield_structure` VALUES ('034', 'h', 'Angular scale', 'Angular scale', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34229 INSERT INTO `marc_subfield_structure` VALUES ('034', 'j', 'Declination--northern limit', 'Declination--northern limit', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34230 INSERT INTO `marc_subfield_structure` VALUES ('034', 'k', 'Declination--southern limit', 'Declination--southern limit', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34231 INSERT INTO `marc_subfield_structure` VALUES ('034', 'm', 'Right ascension--eastern limit', 'Right ascension--eastern limit', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34232 INSERT INTO `marc_subfield_structure` VALUES ('034', 'n', 'Right ascension--western limit', 'Right ascension--western limit', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34233 INSERT INTO `marc_subfield_structure` VALUES ('034', 'p', 'Equinox', 'Equinox', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34234 INSERT INTO `marc_subfield_structure` VALUES ('034', 's', 'G-ring latitude', 'G-ring latitude', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34235 INSERT INTO `marc_subfield_structure` VALUES ('034', 't', 'G-ring longitude', 'G-ring longitude', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34236 INSERT INTO `marc_subfield_structure` VALUES ('035', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34237 INSERT INTO `marc_subfield_structure` VALUES ('035', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34238 INSERT INTO `marc_subfield_structure` VALUES ('035', 'a', 'System control number', 'System control number', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34239 INSERT INTO `marc_subfield_structure` VALUES ('035', 'z', 'Canceled/invalid control number', 'Canceled/invalid control number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34240 INSERT INTO `marc_subfield_structure` VALUES ('036', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34241 INSERT INTO `marc_subfield_structure` VALUES ('036', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34242 INSERT INTO `marc_subfield_structure` VALUES ('036', 'a', 'Original study number', 'Original study number', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34243 INSERT INTO `marc_subfield_structure` VALUES ('036', 'b', 'Source (agency assigning number)', 'Source (agency assigning number)', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34244 INSERT INTO `marc_subfield_structure` VALUES ('037', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
34245 INSERT INTO `marc_subfield_structure` VALUES ('037', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
34246 INSERT INTO `marc_subfield_structure` VALUES ('037', 'a', 'Stock number', 'Stock number', 0, 0, '', 9, '', '', '', 0, -1, 'SER', '', '');
34247 INSERT INTO `marc_subfield_structure` VALUES ('037', 'b', 'Source of stock number/acquisition', 'Source of stock number/acquisition', 0, 0, '', 9, '', '', '', 0, -1, 'SER', '', '');
34248 INSERT INTO `marc_subfield_structure` VALUES ('037', 'c', 'Terms of availability', 'Terms of availability', 1, 0, '', 9, '', '', '', 0, -1, 'SER', '', '');
34249 INSERT INTO `marc_subfield_structure` VALUES ('037', 'f', 'Form of issue', 'Form of issue', 1, 0, '', 9, '', '', '', 0, -1, 'SER', '', '');
34250 INSERT INTO `marc_subfield_structure` VALUES ('037', 'g', 'Additional format characteristics', 'Additional format characteristics', 1, 0, '', 9, '', '', '', 0, -1, 'SER', '', '');
34251 INSERT INTO `marc_subfield_structure` VALUES ('037', 'n', 'Note', 'Note', 1, 0, '', 9, '', '', '', 0, -1, 'SER', '', '');
34252 INSERT INTO `marc_subfield_structure` VALUES ('038', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34253 INSERT INTO `marc_subfield_structure` VALUES ('038', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34254 INSERT INTO `marc_subfield_structure` VALUES ('038', 'a', 'Record content licensor', 'Record content licensor', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34255 INSERT INTO `marc_subfield_structure` VALUES ('039', 'a', 'Level of rules in bibliographic description', 'Level of rules in bibliographic description', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34256 INSERT INTO `marc_subfield_structure` VALUES ('039', 'b', 'Level of effort used to assign nonsubject heading access points', 'Level of effort used to assign nonsubject heading access points', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34257 INSERT INTO `marc_subfield_structure` VALUES ('039', 'c', 'Level of effort used to assign subject headings', 'Level of effort used to assign subject headings', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34258 INSERT INTO `marc_subfield_structure` VALUES ('039', 'd', 'Level of effort used to assign classification', 'Level of effort used to assign classification', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34259 INSERT INTO `marc_subfield_structure` VALUES ('039', 'e', 'Number of fixed field character positions coded', 'Number of fixed field character positions coded', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34260 INSERT INTO `marc_subfield_structure` VALUES ('040', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34261 INSERT INTO `marc_subfield_structure` VALUES ('040', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34262 INSERT INTO `marc_subfield_structure` VALUES ('040', 'a', 'Original cataloging agency', 'Original cataloging agency', 0, 0, '', 0, '', '', '', 0, -1, 'SER', '', '');
34263 INSERT INTO `marc_subfield_structure` VALUES ('040', 'b', 'Language of cataloging', 'Language of cataloging', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34264 INSERT INTO `marc_subfield_structure` VALUES ('040', 'c', 'Transcribing agency', 'Transcribing agency', 0, 0, '', 0, '', '', '', 0, -1, 'SER', '', '');
34265 INSERT INTO `marc_subfield_structure` VALUES ('040', 'd', 'Modifying agency', 'Modifying agency', 1, 0, '', 0, '', '', '', 0, -1, 'SER', '', '');
34266 INSERT INTO `marc_subfield_structure` VALUES ('040', 'e', 'Description conventions', 'Description conventions', 0, 0, '', 0, '', '', '', 0, -1, 'SER', '', '');
34267 INSERT INTO `marc_subfield_structure` VALUES ('041', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34268 INSERT INTO `marc_subfield_structure` VALUES ('041', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34269 INSERT INTO `marc_subfield_structure` VALUES ('041', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34270 INSERT INTO `marc_subfield_structure` VALUES ('041', 'a', 'Language code of text/sound track or separate title', 'Language code of text/sound track or separate title', 1, 0, '', 0, '', '', '', 0, -1, 'SER', '', '');
34271 INSERT INTO `marc_subfield_structure` VALUES ('041', 'b', 'Language code of summary or abstract/overprinted title or subtitle', 'Language code of summary or abstract/overprinted title or subtitle', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34272 INSERT INTO `marc_subfield_structure` VALUES ('041', 'c', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 'Languages of separate titles (VM) [OBSOLETE] ; Languages of available translation  (SE) [OBSOLETE]', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34273 INSERT INTO `marc_subfield_structure` VALUES ('041', 'd', 'Language code of sung or spoken text', 'Language code of sung or spoken text', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34274 INSERT INTO `marc_subfield_structure` VALUES ('041', 'e', 'Language code of librettos', 'Language code of librettos', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34275 INSERT INTO `marc_subfield_structure` VALUES ('041', 'f', 'Language code of table of contents', 'Language code of table of contents', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34276 INSERT INTO `marc_subfield_structure` VALUES ('041', 'g', 'Language code of accompanying material other than librettos', 'Language code of accompanying material other than librettos', 1, 0, '', 0, '', '', '', 0, -1, 'SER', '', '');
34277 INSERT INTO `marc_subfield_structure` VALUES ('041', 'h', 'Language code of original and/or intermediate translations of text', 'Language code of original and/or intermediate translations of text', 1, 0, '', 0, '', '', '', 0, -1, 'SER', '', '');
34278 INSERT INTO `marc_subfield_structure` VALUES ('042', 'a', 'Authentication code', 'Authentication code', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34279 INSERT INTO `marc_subfield_structure` VALUES ('043', '2', 'Source of local code', 'Source of local code', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34280 INSERT INTO `marc_subfield_structure` VALUES ('043', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34281 INSERT INTO `marc_subfield_structure` VALUES ('043', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34282 INSERT INTO `marc_subfield_structure` VALUES ('043', 'a', 'Geographic area code', 'Geographic area code', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34283 INSERT INTO `marc_subfield_structure` VALUES ('043', 'b', 'Local GAC code', 'Local GAC code', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34284 INSERT INTO `marc_subfield_structure` VALUES ('043', 'c', 'ISO code', 'ISO code', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34285 INSERT INTO `marc_subfield_structure` VALUES ('044', '2', 'Source of local subentity code', 'Source of local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34286 INSERT INTO `marc_subfield_structure` VALUES ('044', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34287 INSERT INTO `marc_subfield_structure` VALUES ('044', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34288 INSERT INTO `marc_subfield_structure` VALUES ('044', 'a', 'MARC country code', 'MARC country code', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34289 INSERT INTO `marc_subfield_structure` VALUES ('044', 'b', 'Local subentity code', 'Local subentity code', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34290 INSERT INTO `marc_subfield_structure` VALUES ('044', 'c', 'ISO country code', 'ISO country code', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34291 INSERT INTO `marc_subfield_structure` VALUES ('045', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34292 INSERT INTO `marc_subfield_structure` VALUES ('045', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34293 INSERT INTO `marc_subfield_structure` VALUES ('045', 'a', 'Time period code', 'Time period code', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34294 INSERT INTO `marc_subfield_structure` VALUES ('045', 'b', 'Formatted 9999 B.C. through C.E. time period', 'Formatted 9999 B.C. through C.E. time period', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34295 INSERT INTO `marc_subfield_structure` VALUES ('045', 'c', 'Formatted pre-9999 B.C. time period', 'Formatted pre-9999 B.C. time period', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34296 INSERT INTO `marc_subfield_structure` VALUES ('046', '2', 'Source of date', 'Source of date', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34297 INSERT INTO `marc_subfield_structure` VALUES ('046', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34298 INSERT INTO `marc_subfield_structure` VALUES ('046', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34299 INSERT INTO `marc_subfield_structure` VALUES ('046', 'a', 'Type of date code', 'Type of date code', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34300 INSERT INTO `marc_subfield_structure` VALUES ('046', 'b', 'Date 1 (B.C. date)', 'Date 1 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34301 INSERT INTO `marc_subfield_structure` VALUES ('046', 'c', 'Date 1 (C.E. date)', 'Date 1 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34302 INSERT INTO `marc_subfield_structure` VALUES ('046', 'd', 'Date 2 (B.C. date)', 'Date 2 (B.C. date)', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34303 INSERT INTO `marc_subfield_structure` VALUES ('046', 'e', 'Date 2 (C.E. date)', 'Date 2 (C.E. date)', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34304 INSERT INTO `marc_subfield_structure` VALUES ('046', 'j', 'Date resource modified', 'Date resource modified', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34305 INSERT INTO `marc_subfield_structure` VALUES ('046', 'k', 'Beginning or single date created', 'Beginning or single date created', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34306 INSERT INTO `marc_subfield_structure` VALUES ('046', 'l', 'Ending date created', 'Ending date created', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34307 INSERT INTO `marc_subfield_structure` VALUES ('046', 'm', 'Beginning of date valid', 'Beginning of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34308 INSERT INTO `marc_subfield_structure` VALUES ('046', 'n', 'End of date valid', 'End of date valid', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34309 INSERT INTO `marc_subfield_structure` VALUES ('047', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34310 INSERT INTO `marc_subfield_structure` VALUES ('047', 'a', 'Form of musical composition code', 'Form of musical composition code', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34311 INSERT INTO `marc_subfield_structure` VALUES ('048', '2', 'Source of code', 'Source of code', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34312 INSERT INTO `marc_subfield_structure` VALUES ('048', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34313 INSERT INTO `marc_subfield_structure` VALUES ('048', 'a', 'Performer or ensemble', 'Performer or ensemble', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34314 INSERT INTO `marc_subfield_structure` VALUES ('048', 'b', 'Soloist', 'Soloist', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34315 INSERT INTO `marc_subfield_structure` VALUES ('049', 'a', 'Holding library', 'Holding library', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34316 INSERT INTO `marc_subfield_structure` VALUES ('049', 'c', 'Copy statement', 'Copy statement', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34317 INSERT INTO `marc_subfield_structure` VALUES ('049', 'd', 'Definition of bibliographic subdivisions', 'Definition of bibliographic subdivisions', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34318 INSERT INTO `marc_subfield_structure` VALUES ('049', 'l', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34319 INSERT INTO `marc_subfield_structure` VALUES ('049', 'm', 'Missing elements', 'Missing elements', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34320 INSERT INTO `marc_subfield_structure` VALUES ('049', 'n', 'Notes about holdings', 'Notes about holdings', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34321 INSERT INTO `marc_subfield_structure` VALUES ('049', 'o', 'Local processing data', 'Local processing data', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34322 INSERT INTO `marc_subfield_structure` VALUES ('049', 'p', 'Secondary bibliographic subdivision', 'Secondary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34323 INSERT INTO `marc_subfield_structure` VALUES ('049', 'q', 'Third bibliographic subdivision', 'Third bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34324 INSERT INTO `marc_subfield_structure` VALUES ('049', 'r', 'Fourth bibliographic subdivision', 'Fourth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34325 INSERT INTO `marc_subfield_structure` VALUES ('049', 's', 'Fifth bibliographic subdivision', 'Fifth bibliographic subdivision', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34326 INSERT INTO `marc_subfield_structure` VALUES ('049', 't', 'Sixth bibliographic subdivision', 'Sixth bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34327 INSERT INTO `marc_subfield_structure` VALUES ('049', 'u', 'Seventh bibliographic subdivision', 'Seventh bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34328 INSERT INTO `marc_subfield_structure` VALUES ('049', 'v', 'Primary bibliographic subdivision', 'Primary bibliographic subdivision', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34329 INSERT INTO `marc_subfield_structure` VALUES ('049', 'y', 'Inclusive dates of publication or coverage', 'Inclusive dates of publication or coverage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34330 INSERT INTO `marc_subfield_structure` VALUES ('050', '3', 'Materials specified', 'Materials specified', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34331 INSERT INTO `marc_subfield_structure` VALUES ('050', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34332 INSERT INTO `marc_subfield_structure` VALUES ('050', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34333 INSERT INTO `marc_subfield_structure` VALUES ('050', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, 0, 'SER', '', '');
34334 INSERT INTO `marc_subfield_structure` VALUES ('050', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, 0, 'SER', '', '');
34335 INSERT INTO `marc_subfield_structure` VALUES ('050', 'd', 'Supplementary class number (MU) [OBSOLETE]', 'Supplementary class number (MU) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34336 INSERT INTO `marc_subfield_structure` VALUES ('051', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34337 INSERT INTO `marc_subfield_structure` VALUES ('051', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34338 INSERT INTO `marc_subfield_structure` VALUES ('051', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34339 INSERT INTO `marc_subfield_structure` VALUES ('051', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34340 INSERT INTO `marc_subfield_structure` VALUES ('052', '2', 'Code Source', 'Code Source', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34341 INSERT INTO `marc_subfield_structure` VALUES ('052', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34342 INSERT INTO `marc_subfield_structure` VALUES ('052', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34343 INSERT INTO `marc_subfield_structure` VALUES ('052', 'a', 'Geographic classification area code', 'Geographic classification area code', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34344 INSERT INTO `marc_subfield_structure` VALUES ('052', 'b', 'Geographic classification subarea code', 'Geographic classification subarea code', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34345 INSERT INTO `marc_subfield_structure` VALUES ('052', 'c', 'Subject (MP) [OBSOLETE]', 'Subject (MP) [OBSOLETE]', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34346 INSERT INTO `marc_subfield_structure` VALUES ('052', 'd', 'Populated place name', 'Populated place name', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34347 INSERT INTO `marc_subfield_structure` VALUES ('055', '2', 'Source of call/class number', 'Source of call/class number', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34348 INSERT INTO `marc_subfield_structure` VALUES ('055', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34349 INSERT INTO `marc_subfield_structure` VALUES ('055', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34350 INSERT INTO `marc_subfield_structure` VALUES ('055', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34351 INSERT INTO `marc_subfield_structure` VALUES ('055', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34352 INSERT INTO `marc_subfield_structure` VALUES ('060', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34353 INSERT INTO `marc_subfield_structure` VALUES ('060', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34354 INSERT INTO `marc_subfield_structure` VALUES ('060', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34355 INSERT INTO `marc_subfield_structure` VALUES ('061', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34356 INSERT INTO `marc_subfield_structure` VALUES ('061', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34357 INSERT INTO `marc_subfield_structure` VALUES ('061', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34358 INSERT INTO `marc_subfield_structure` VALUES ('061', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34359 INSERT INTO `marc_subfield_structure` VALUES ('066', 'a', 'Primary G0 character set', 'Primary G0 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34360 INSERT INTO `marc_subfield_structure` VALUES ('066', 'b', 'Primary G1 character set', 'Primary G1 character set', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34361 INSERT INTO `marc_subfield_structure` VALUES ('066', 'c', 'Alternate G0 or G1 character set', 'Alternate G0 or G1 character set', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34362 INSERT INTO `marc_subfield_structure` VALUES ('070', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34363 INSERT INTO `marc_subfield_structure` VALUES ('070', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34364 INSERT INTO `marc_subfield_structure` VALUES ('070', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34365 INSERT INTO `marc_subfield_structure` VALUES ('071', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34366 INSERT INTO `marc_subfield_structure` VALUES ('071', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34367 INSERT INTO `marc_subfield_structure` VALUES ('071', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34368 INSERT INTO `marc_subfield_structure` VALUES ('071', 'c', 'Copy information', 'Copy information', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34369 INSERT INTO `marc_subfield_structure` VALUES ('072', '2', 'Source', 'Source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34370 INSERT INTO `marc_subfield_structure` VALUES ('072', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34371 INSERT INTO `marc_subfield_structure` VALUES ('072', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34372 INSERT INTO `marc_subfield_structure` VALUES ('072', 'a', 'Subject category code', 'Subject category code', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34373 INSERT INTO `marc_subfield_structure` VALUES ('072', 'x', 'Subject category code subdivision', 'Subject category code subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34374 INSERT INTO `marc_subfield_structure` VALUES ('074', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34375 INSERT INTO `marc_subfield_structure` VALUES ('074', 'a', 'GPO item number', 'GPO item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'SER', '', '');
34376 INSERT INTO `marc_subfield_structure` VALUES ('074', 'z', 'Canceled/invalid GPO item number', 'Canceled/invalid GPO item number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34377 INSERT INTO `marc_subfield_structure` VALUES ('080', '2', 'Edition identifier', 'Edition identifier', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34378 INSERT INTO `marc_subfield_structure` VALUES ('080', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34379 INSERT INTO `marc_subfield_structure` VALUES ('080', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34380 INSERT INTO `marc_subfield_structure` VALUES ('080', 'a', 'Universal Decimal Classification number', 'Universal Decimal Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34381 INSERT INTO `marc_subfield_structure` VALUES ('080', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34382 INSERT INTO `marc_subfield_structure` VALUES ('080', 'x', 'Common auxiliary subdivision', 'Common auxiliary subdivision', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34383 INSERT INTO `marc_subfield_structure` VALUES ('082', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, 0, 'SER', '', '');
34384 INSERT INTO `marc_subfield_structure` VALUES ('082', '6', 'Linkage', 'Linkage', 0, 0, '', 0, '', '', '', NULL, -6, 'SER', '', '');
34385 INSERT INTO `marc_subfield_structure` VALUES ('082', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 0, '', '', '', NULL, -6, 'SER', '', '');
34386 INSERT INTO `marc_subfield_structure` VALUES ('082', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, 0, 'SER', '', '');
34387 INSERT INTO `marc_subfield_structure` VALUES ('082', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, 0, 'SER', '', '');
34388 INSERT INTO `marc_subfield_structure` VALUES ('084', '2', 'Source of number', 'Source of number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34389 INSERT INTO `marc_subfield_structure` VALUES ('084', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34390 INSERT INTO `marc_subfield_structure` VALUES ('084', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34391 INSERT INTO `marc_subfield_structure` VALUES ('084', 'a', 'Classification number', 'Classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34392 INSERT INTO `marc_subfield_structure` VALUES ('084', 'b', 'Item number', 'Item number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34393 INSERT INTO `marc_subfield_structure` VALUES ('086', '2', 'Number source', 'Number source', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'SER', '', '');
34394 INSERT INTO `marc_subfield_structure` VALUES ('086', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34395 INSERT INTO `marc_subfield_structure` VALUES ('086', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34396 INSERT INTO `marc_subfield_structure` VALUES ('086', 'a', 'Classification number', 'Classification number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -1, 'SER', '', '');
34397 INSERT INTO `marc_subfield_structure` VALUES ('086', 'z', 'Canceled/invalid classification number', 'Canceled/invalid classification number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34398 INSERT INTO `marc_subfield_structure` VALUES ('087', 'a', 'Report number [OBSOLETE, CAN/MARC]', 'Report number [OBSOLETE, CAN/MARC]', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34399 INSERT INTO `marc_subfield_structure` VALUES ('087', 'z', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 'Canceled/invalid report number [OBSOLETE, CAN/MARC]', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34400 INSERT INTO `marc_subfield_structure` VALUES ('088', '6', 'Linkage', 'Linkage', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34401 INSERT INTO `marc_subfield_structure` VALUES ('088', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34402 INSERT INTO `marc_subfield_structure` VALUES ('088', 'a', 'Report number', 'Report number', 0, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34403 INSERT INTO `marc_subfield_structure` VALUES ('088', 'z', 'Canceled/invalid report number', 'Canceled/invalid report number', 1, 0, NULL, 0, NULL, NULL, '', NULL, -6, 'SER', '', '');
34404 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34405 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34406 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
34407 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
34408 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
34409 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
34410 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
34411 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
34412 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
34413 INSERT INTO `marc_subfield_structure` VALUES ('09o', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
34414 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
34415 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
34416 INSERT INTO `marc_subfield_structure` VALUES ('09o', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
34417 INSERT INTO `marc_subfield_structure` VALUES ('091', 'a', 'Microfilm shelf location', 'Microfilm shelf location', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34418 INSERT INTO `marc_subfield_structure` VALUES ('092', '2', 'Edition number', 'Edition number', 0, 0, '', 0, '', '', '', NULL, -6, 'SER', '', '');
34419 INSERT INTO `marc_subfield_structure` VALUES ('092', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'SER', '', '');
34420 INSERT INTO `marc_subfield_structure` VALUES ('092', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'SER', '', '');
34421 INSERT INTO `marc_subfield_structure` VALUES ('092', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34422 INSERT INTO `marc_subfield_structure` VALUES ('092', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34423 INSERT INTO `marc_subfield_structure` VALUES ('096', 'a', 'Classification number', 'Classification number', 0, 0, '', 0, '', '', '', NULL, -6, 'SER', '', '');
34424 INSERT INTO `marc_subfield_structure` VALUES ('096', 'b', 'Item number', 'Item number', 0, 0, '', 0, '', '', '', NULL, -6, 'SER', '', '');
34425 INSERT INTO `marc_subfield_structure` VALUES ('096', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34426 INSERT INTO `marc_subfield_structure` VALUES ('096', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34427 INSERT INTO `marc_subfield_structure` VALUES ('098', 'a', 'Call number based on other classification scheme', 'Call number based on other classification scheme', 0, 0, '', 0, '', '', '', NULL, -6, 'SER', '', '');
34428 INSERT INTO `marc_subfield_structure` VALUES ('098', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34429 INSERT INTO `marc_subfield_structure` VALUES ('098', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34430 INSERT INTO `marc_subfield_structure` VALUES ('099', 'a', 'Classification number', 'Classification number', 1, 0, '', 0, '', '', '', NULL, -6, 'SER', '', '');
34431 INSERT INTO `marc_subfield_structure` VALUES ('099', 'e', 'Feature heading', 'Feature heading', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34432 INSERT INTO `marc_subfield_structure` VALUES ('099', 'f', 'Filing suffix', 'Filing suffix', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
34433 INSERT INTO `marc_subfield_structure` VALUES ('100', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', 0, -6, 'SER', '', '');
34434 INSERT INTO `marc_subfield_structure` VALUES ('100', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', 0, -6, 'SER', '', '');
34435 INSERT INTO `marc_subfield_structure` VALUES ('100', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', 0, -6, 'SER', '', '');
34436 INSERT INTO `marc_subfield_structure` VALUES ('100', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
34437 INSERT INTO `marc_subfield_structure` VALUES ('100', 'a', 'Personal name', 'Personal name', 0, 0, 'biblio.author', 1, '', '', '', 0, -1, 'SER', '''100b'',''100c'',''100q'',''100d'',''100e'',''110a'',''110b'',''110c'',''110d'',''110e'',''700a'',''700b'',''700c'',''700q'',''700d'',''700e'',''710a'',''710b'',''710c'',''710d'',''710e'',''720a'',''720e'',''900a''', '');
34438 INSERT INTO `marc_subfield_structure` VALUES ('100', 'b', 'Numeration', 'Numeration', 0, 0, '', 1, '', '', '', 0, -1, 'SER', '', '');
34439 INSERT INTO `marc_subfield_structure` VALUES ('100', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 1, '', '', '', 0, -1, 'SER', '', '');
34440 INSERT INTO `marc_subfield_structure` VALUES ('100', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 1, '', '', '', 0, -1, 'SER', '', '');
34441 INSERT INTO `marc_subfield_structure` VALUES ('100', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', 0, -1, 'SER', '', '');
34442 INSERT INTO `marc_subfield_structure` VALUES ('100', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', 0, -6, 'SER', '', '');
34443 INSERT INTO `marc_subfield_structure` VALUES ('100', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', 0, -6, 'SER', '', '');
34444 INSERT INTO `marc_subfield_structure` VALUES ('100', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 1, '', '', '', 0, -6, 'SER', '', '');
34445 INSERT INTO `marc_subfield_structure` VALUES ('100', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', 0, -6, 'SER', '', '');
34446 INSERT INTO `marc_subfield_structure` VALUES ('100', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', 0, -6, 'SER', '', '');
34447 INSERT INTO `marc_subfield_structure` VALUES ('100', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'SER', '', '');
34448 INSERT INTO `marc_subfield_structure` VALUES ('100', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', 0, -6, 'SER', '', '');
34449 INSERT INTO `marc_subfield_structure` VALUES ('100', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 1, '', '', '', 0, -1, 'SER', '', '');
34450 INSERT INTO `marc_subfield_structure` VALUES ('100', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', 0, -6, 'SER', '', '');
34451 INSERT INTO `marc_subfield_structure` VALUES ('100', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', 0, -6, 'SER', '', '');
34452 INSERT INTO `marc_subfield_structure` VALUES ('110', '4', 'Relator code', 'Relator code', 1, 0, '', 1, '', '', '', NULL, -6, 'SER', '', '');
34453 INSERT INTO `marc_subfield_structure` VALUES ('110', '6', 'Linkage', 'Linkage', 0, 0, '', 1, '', '', '', NULL, -6, 'SER', '', '');
34454 INSERT INTO `marc_subfield_structure` VALUES ('110', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 1, '', '', '', NULL, -6, 'SER', '', '');
34455 INSERT INTO `marc_subfield_structure` VALUES ('110', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
34456 INSERT INTO `marc_subfield_structure` VALUES ('110', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 1, '', '', '', NULL, -1, 'SER', '', '');
34457 INSERT INTO `marc_subfield_structure` VALUES ('110', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 1, '', '', '', NULL, -1, 'SER', '', '');
34458 INSERT INTO `marc_subfield_structure` VALUES ('110', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 1, '', '', '', NULL, -1, 'SER', '', '');
34459 INSERT INTO `marc_subfield_structure` VALUES ('110', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 1, '', '', '', NULL, -1, 'SER', '', '');
34460 INSERT INTO `marc_subfield_structure` VALUES ('110', 'e', 'Relator term', 'Relator term', 1, 0, '', 1, '', '', '', NULL, -1, 'SER', '', '');
34461 INSERT INTO `marc_subfield_structure` VALUES ('110', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'SER', '', '');
34462 INSERT INTO `marc_subfield_structure` VALUES ('110', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 1, '', '', '', NULL, -6, 'SER', '', '');
34463 INSERT INTO `marc_subfield_structure` VALUES ('110', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 1, '', '', '', NULL, -6, 'SER', '', '');
34464 INSERT INTO `marc_subfield_structure` VALUES ('110', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'SER', '', '');
34465 INSERT INTO `marc_subfield_structure` VALUES ('110', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 1, '', '', '', NULL, -6, 'SER', '', '');
34466 INSERT INTO `marc_subfield_structure` VALUES ('110', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 1, '', '', '', NULL, -6, 'SER', '', '');
34467 INSERT INTO `marc_subfield_structure` VALUES ('110', 't', 'Title of a work', 'Title of a work', 0, 0, '', 1, '', '', '', NULL, -6, 'SER', '', '');
34468 INSERT INTO `marc_subfield_structure` VALUES ('110', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 1, '', '', '', NULL, -6, 'SER', '', '');
34469 INSERT INTO `marc_subfield_structure` VALUES ('111', '4', 'Relator code', 'Relator code', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34470 INSERT INTO `marc_subfield_structure` VALUES ('111', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34471 INSERT INTO `marc_subfield_structure` VALUES ('111', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34472 INSERT INTO `marc_subfield_structure` VALUES ('111', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
34473 INSERT INTO `marc_subfield_structure` VALUES ('111', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'SER', '', '');
34474 INSERT INTO `marc_subfield_structure` VALUES ('111', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34475 INSERT INTO `marc_subfield_structure` VALUES ('111', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'SER', '', '');
34476 INSERT INTO `marc_subfield_structure` VALUES ('111', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'SER', '', '');
34477 INSERT INTO `marc_subfield_structure` VALUES ('111', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 1, NULL, NULL, '', NULL, -1, 'SER', '', '');
34478 INSERT INTO `marc_subfield_structure` VALUES ('111', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34479 INSERT INTO `marc_subfield_structure` VALUES ('111', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34480 INSERT INTO `marc_subfield_structure` VALUES ('111', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34481 INSERT INTO `marc_subfield_structure` VALUES ('111', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34482 INSERT INTO `marc_subfield_structure` VALUES ('111', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34483 INSERT INTO `marc_subfield_structure` VALUES ('111', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34484 INSERT INTO `marc_subfield_structure` VALUES ('111', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34485 INSERT INTO `marc_subfield_structure` VALUES ('111', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34486 INSERT INTO `marc_subfield_structure` VALUES ('111', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34487 INSERT INTO `marc_subfield_structure` VALUES ('130', '6', 'Linkage', 'Linkage', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34488 INSERT INTO `marc_subfield_structure` VALUES ('130', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34489 INSERT INTO `marc_subfield_structure` VALUES ('130', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
34490 INSERT INTO `marc_subfield_structure` VALUES ('130', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34491 INSERT INTO `marc_subfield_structure` VALUES ('130', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34492 INSERT INTO `marc_subfield_structure` VALUES ('130', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34493 INSERT INTO `marc_subfield_structure` VALUES ('130', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34494 INSERT INTO `marc_subfield_structure` VALUES ('130', 'h', 'Medium', 'Medium', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34495 INSERT INTO `marc_subfield_structure` VALUES ('130', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34496 INSERT INTO `marc_subfield_structure` VALUES ('130', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34497 INSERT INTO `marc_subfield_structure` VALUES ('130', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34498 INSERT INTO `marc_subfield_structure` VALUES ('130', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34499 INSERT INTO `marc_subfield_structure` VALUES ('130', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34500 INSERT INTO `marc_subfield_structure` VALUES ('130', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34501 INSERT INTO `marc_subfield_structure` VALUES ('130', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34502 INSERT INTO `marc_subfield_structure` VALUES ('130', 's', 'Version', 'Version', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34503 INSERT INTO `marc_subfield_structure` VALUES ('130', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 1, NULL, NULL, '', NULL, -6, 'SER', '', '');
34504 INSERT INTO `marc_subfield_structure` VALUES ('210', '2', 'Source', 'Source', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34505 INSERT INTO `marc_subfield_structure` VALUES ('210', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34506 INSERT INTO `marc_subfield_structure` VALUES ('210', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34507 INSERT INTO `marc_subfield_structure` VALUES ('210', 'a', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, 'SER', '', '');
34508 INSERT INTO `marc_subfield_structure` VALUES ('210', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34509 INSERT INTO `marc_subfield_structure` VALUES ('211', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34510 INSERT INTO `marc_subfield_structure` VALUES ('211', 'a', 'Acronym or shortened title', 'Acronym or shortened title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34511 INSERT INTO `marc_subfield_structure` VALUES ('212', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34512 INSERT INTO `marc_subfield_structure` VALUES ('212', 'a', 'Variant access title', 'Variant access title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34513 INSERT INTO `marc_subfield_structure` VALUES ('214', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34514 INSERT INTO `marc_subfield_structure` VALUES ('214', 'a', 'Augmented title', 'Augmented title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34515 INSERT INTO `marc_subfield_structure` VALUES ('222', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34516 INSERT INTO `marc_subfield_structure` VALUES ('222', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34517 INSERT INTO `marc_subfield_structure` VALUES ('222', 'a', 'Key title', 'Key title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -1, 'SER', '', '');
34518 INSERT INTO `marc_subfield_structure` VALUES ('222', 'b', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34519 INSERT INTO `marc_subfield_structure` VALUES ('240', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34520 INSERT INTO `marc_subfield_structure` VALUES ('240', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34521 INSERT INTO `marc_subfield_structure` VALUES ('240', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
34522 INSERT INTO `marc_subfield_structure` VALUES ('240', 'a', 'Uniform title', 'Uniform title', 0, 0, 'biblio.unititle', 2, '', '', '', 1, -1, 'SER', '', '');
34523 INSERT INTO `marc_subfield_structure` VALUES ('240', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34524 INSERT INTO `marc_subfield_structure` VALUES ('240', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34525 INSERT INTO `marc_subfield_structure` VALUES ('240', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34526 INSERT INTO `marc_subfield_structure` VALUES ('240', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'SER', '', '');
34527 INSERT INTO `marc_subfield_structure` VALUES ('240', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34528 INSERT INTO `marc_subfield_structure` VALUES ('240', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'SER', '', '');
34529 INSERT INTO `marc_subfield_structure` VALUES ('240', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34530 INSERT INTO `marc_subfield_structure` VALUES ('240', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34531 INSERT INTO `marc_subfield_structure` VALUES ('240', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34532 INSERT INTO `marc_subfield_structure` VALUES ('240', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34533 INSERT INTO `marc_subfield_structure` VALUES ('240', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34534 INSERT INTO `marc_subfield_structure` VALUES ('240', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'SER', '', '');
34535 INSERT INTO `marc_subfield_structure` VALUES ('241', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34536 INSERT INTO `marc_subfield_structure` VALUES ('241', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34537 INSERT INTO `marc_subfield_structure` VALUES ('242', '6', 'Linkage', 'Linkage', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34538 INSERT INTO `marc_subfield_structure` VALUES ('242', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34539 INSERT INTO `marc_subfield_structure` VALUES ('242', 'a', 'Title', 'Title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34540 INSERT INTO `marc_subfield_structure` VALUES ('242', 'b', 'Remainder of title', 'Remainder of title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34541 INSERT INTO `marc_subfield_structure` VALUES ('242', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34542 INSERT INTO `marc_subfield_structure` VALUES ('242', 'd', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 'Designation of section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34543 INSERT INTO `marc_subfield_structure` VALUES ('242', 'e', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 'Name of part/section (BK AM MP MU VM SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34544 INSERT INTO `marc_subfield_structure` VALUES ('242', 'h', 'Medium', 'Medium', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34545 INSERT INTO `marc_subfield_structure` VALUES ('242', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34546 INSERT INTO `marc_subfield_structure` VALUES ('242', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34547 INSERT INTO `marc_subfield_structure` VALUES ('242', 'y', 'Language code of translated title', 'Language code of translated title', 0, 0, NULL, 2, NULL, NULL, '', NULL, -6, 'SER', '', '');
34548 INSERT INTO `marc_subfield_structure` VALUES ('243', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34549 INSERT INTO `marc_subfield_structure` VALUES ('243', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34550 INSERT INTO `marc_subfield_structure` VALUES ('243', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
34551 INSERT INTO `marc_subfield_structure` VALUES ('243', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 2, '', '', '', 1, -1, 'SER', '', '');
34552 INSERT INTO `marc_subfield_structure` VALUES ('243', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34553 INSERT INTO `marc_subfield_structure` VALUES ('243', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34554 INSERT INTO `marc_subfield_structure` VALUES ('243', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34555 INSERT INTO `marc_subfield_structure` VALUES ('243', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', 0, -1, 'SER', '', '');
34556 INSERT INTO `marc_subfield_structure` VALUES ('243', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34557 INSERT INTO `marc_subfield_structure` VALUES ('243', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 2, '', '', '', 0, -1, 'SER', '', '');
34558 INSERT INTO `marc_subfield_structure` VALUES ('243', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34559 INSERT INTO `marc_subfield_structure` VALUES ('243', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34560 INSERT INTO `marc_subfield_structure` VALUES ('243', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34561 INSERT INTO `marc_subfield_structure` VALUES ('243', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34562 INSERT INTO `marc_subfield_structure` VALUES ('243', 'r', 'Key for music', 'Key for music', 0, 0, '', 2, '', '', '', 0, -6, 'SER', '', '');
34563 INSERT INTO `marc_subfield_structure` VALUES ('243', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', 0, -1, 'SER', '', '');
34564 INSERT INTO `marc_subfield_structure` VALUES ('245', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34565 INSERT INTO `marc_subfield_structure` VALUES ('245', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34566 INSERT INTO `marc_subfield_structure` VALUES ('245', 'a', 'Title', 'Title', 0, 1, 'biblio.title', 2, '', '', '', NULL, 0, 'SER', '''245b'',''245f'',''245g'',''245k'',''245n'',''245p'',''245s'',''245h'',''246i'',''246a'',''246b'',''246f'',''246g'',''246n'',''246p'',''246h'',''242a'',''242b'',''242n'',''242p'',''242h''', '');
34567 INSERT INTO `marc_subfield_structure` VALUES ('245', 'b', 'Remainder of title', 'Remainder of title', 0, 0, 'bibliosubtitle.subtitle', 2, '', '', '', NULL, 0, 'SER', '', '');
34568 INSERT INTO `marc_subfield_structure` VALUES ('245', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 2, '', '', '', NULL, 0, 'SER', '', '');
34569 INSERT INTO `marc_subfield_structure` VALUES ('245', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series: (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34570 INSERT INTO `marc_subfield_structure` VALUES ('245', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34571 INSERT INTO `marc_subfield_structure` VALUES ('245', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34572 INSERT INTO `marc_subfield_structure` VALUES ('245', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34573 INSERT INTO `marc_subfield_structure` VALUES ('245', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -1, 'SER', '', '');
34574 INSERT INTO `marc_subfield_structure` VALUES ('245', 'k', 'Form', 'Form', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34575 INSERT INTO `marc_subfield_structure` VALUES ('245', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34576 INSERT INTO `marc_subfield_structure` VALUES ('245', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34577 INSERT INTO `marc_subfield_structure` VALUES ('245', 's', 'Version', 'Version', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34578 INSERT INTO `marc_subfield_structure` VALUES ('246', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34579 INSERT INTO `marc_subfield_structure` VALUES ('246', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34580 INSERT INTO `marc_subfield_structure` VALUES ('246', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34581 INSERT INTO `marc_subfield_structure` VALUES ('246', 'a', 'Title proper/short title', 'Title proper/short title', 0, 0, '', 2, '', '', '', NULL, -1, 'SER', '', '');
34582 INSERT INTO `marc_subfield_structure` VALUES ('246', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -1, 'SER', '', '');
34583 INSERT INTO `marc_subfield_structure` VALUES ('246', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34584 INSERT INTO `marc_subfield_structure` VALUES ('246', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34585 INSERT INTO `marc_subfield_structure` VALUES ('246', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34586 INSERT INTO `marc_subfield_structure` VALUES ('246', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34587 INSERT INTO `marc_subfield_structure` VALUES ('246', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -1, 'SER', '', '');
34588 INSERT INTO `marc_subfield_structure` VALUES ('246', 'i', 'Display text', 'Display text', 0, 0, '', 2, '', '', '', NULL, -1, 'SER', '', '');
34589 INSERT INTO `marc_subfield_structure` VALUES ('246', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34590 INSERT INTO `marc_subfield_structure` VALUES ('246', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34591 INSERT INTO `marc_subfield_structure` VALUES ('247', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34592 INSERT INTO `marc_subfield_structure` VALUES ('247', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34593 INSERT INTO `marc_subfield_structure` VALUES ('247', 'a', 'Title', 'Title', 0, 0, '', 2, '', '', '', NULL, -1, 'SER', '', '');
34594 INSERT INTO `marc_subfield_structure` VALUES ('247', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 2, '', '', '', NULL, -1, 'SER', '', '');
34595 INSERT INTO `marc_subfield_structure` VALUES ('247', 'd', 'Designation of section (SE) [OBSOLETE]', 'Designation of section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34596 INSERT INTO `marc_subfield_structure` VALUES ('247', 'e', 'Name of part/section (SE) [OBSOLETE]', 'Name of part/section (SE) [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34597 INSERT INTO `marc_subfield_structure` VALUES ('247', 'f', 'Date or sequential designation', 'Date or sequential designation', 0, 0, '', 2, '', '', '', NULL, -1, 'SER', '', '');
34598 INSERT INTO `marc_subfield_structure` VALUES ('247', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34599 INSERT INTO `marc_subfield_structure` VALUES ('247', 'h', 'Medium', 'Medium', 0, 0, '', 2, '', '', '', NULL, -1, 'SER', '', '');
34600 INSERT INTO `marc_subfield_structure` VALUES ('247', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34601 INSERT INTO `marc_subfield_structure` VALUES ('247', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34602 INSERT INTO `marc_subfield_structure` VALUES ('247', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 2, '', '', '', NULL, -1, 'SER', '', '');
34603 INSERT INTO `marc_subfield_structure` VALUES ('250', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34604 INSERT INTO `marc_subfield_structure` VALUES ('250', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34605 INSERT INTO `marc_subfield_structure` VALUES ('250', 'a', 'Edition statement', 'Edition statement', 0, 0, '', 2, '', '', '', NULL, -1, 'SER', '', '');
34606 INSERT INTO `marc_subfield_structure` VALUES ('250', 'b', 'Remainder of edition statement', 'Remainder of edition statement', 0, 0, '', 2, '', '', '', NULL, -1, 'SER', '', '');
34607 INSERT INTO `marc_subfield_structure` VALUES ('254', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34608 INSERT INTO `marc_subfield_structure` VALUES ('254', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34609 INSERT INTO `marc_subfield_structure` VALUES ('254', 'a', 'Musical presentation statement', 'Musical presentation statement', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34610 INSERT INTO `marc_subfield_structure` VALUES ('255', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34611 INSERT INTO `marc_subfield_structure` VALUES ('255', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34612 INSERT INTO `marc_subfield_structure` VALUES ('255', 'a', 'Statement of scale', 'Statement of scale', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34613 INSERT INTO `marc_subfield_structure` VALUES ('255', 'b', 'Statement of projection', 'Statement of projection', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34614 INSERT INTO `marc_subfield_structure` VALUES ('255', 'c', 'Statement of coordinates', 'Statement of coordinates', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34615 INSERT INTO `marc_subfield_structure` VALUES ('255', 'd', 'Statement of zone', 'Statement of zone', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34616 INSERT INTO `marc_subfield_structure` VALUES ('255', 'e', 'Statement of equinox', 'Statement of equinox', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34617 INSERT INTO `marc_subfield_structure` VALUES ('255', 'f', 'Outer G-ring coordinate pairs', 'Outer G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34618 INSERT INTO `marc_subfield_structure` VALUES ('255', 'g', 'Exclusion G-ring coordinate pairs', 'Exclusion G-ring coordinate pairs', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34619 INSERT INTO `marc_subfield_structure` VALUES ('256', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34620 INSERT INTO `marc_subfield_structure` VALUES ('256', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34621 INSERT INTO `marc_subfield_structure` VALUES ('256', 'a', 'Computer file characteristics', 'Computer file characteristics', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34622 INSERT INTO `marc_subfield_structure` VALUES ('257', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34623 INSERT INTO `marc_subfield_structure` VALUES ('257', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34624 INSERT INTO `marc_subfield_structure` VALUES ('257', 'a', 'Country of producing entity', 'Country of producing entity', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34625 INSERT INTO `marc_subfield_structure` VALUES ('258', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34626 INSERT INTO `marc_subfield_structure` VALUES ('258', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34627 INSERT INTO `marc_subfield_structure` VALUES ('258', 'a', 'Issuing jurisdiction', 'Issuing jurisdiction', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34628 INSERT INTO `marc_subfield_structure` VALUES ('258', 'b', 'Denomination', 'Denomination', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34629 INSERT INTO `marc_subfield_structure` VALUES ('260', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34630 INSERT INTO `marc_subfield_structure` VALUES ('260', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34631 INSERT INTO `marc_subfield_structure` VALUES ('260', 'a', 'Place of publication, distribution, etc', 'Place of publication, distribution, etc', 1, 0, 'biblioitems.place', 2, '', '', '', NULL, 0, 'SER', '', '');
34632 INSERT INTO `marc_subfield_structure` VALUES ('260', 'b', 'Name of publisher, distributor, etc', 'Name of publisher, distributor, etc', 1, 0, 'biblioitems.publishercode', 2, '', '', '', NULL, 0, 'SER', '', '');
34633 INSERT INTO `marc_subfield_structure` VALUES ('260', 'c', 'Date of copyright, publication, distribution, etc', 'Date of publication, distribution, etc', 1, 0, 'biblio.copyrightdate', 2, '', '', '', NULL, 0, 'SER', '', '');
34634 INSERT INTO `marc_subfield_structure` VALUES ('260', 'd', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 'Plate or publisher\'s number for music (Pre-AACR 2) [OBSOLETE, CAN/MARC], [LOCAL, USA]', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34635 INSERT INTO `marc_subfield_structure` VALUES ('260', 'e', 'Place of manufacture', 'Place of manufacture', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34636 INSERT INTO `marc_subfield_structure` VALUES ('260', 'f', 'Manufacturer', 'Manufacturer', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34637 INSERT INTO `marc_subfield_structure` VALUES ('260', 'g', 'Date of manufacture', 'Date of manufacture', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34638 INSERT INTO `marc_subfield_structure` VALUES ('260', 'k', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34639 INSERT INTO `marc_subfield_structure` VALUES ('260', 'l', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [OBSOLETE, CAN/MARC]', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34640 INSERT INTO `marc_subfield_structure` VALUES ('261', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34641 INSERT INTO `marc_subfield_structure` VALUES ('261', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34642 INSERT INTO `marc_subfield_structure` VALUES ('261', 'a', 'Producing company', 'Producing company', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34643 INSERT INTO `marc_subfield_structure` VALUES ('261', 'b', 'Releasing company (primary distributor)', 'Releasing company (primary distributor)', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34644 INSERT INTO `marc_subfield_structure` VALUES ('261', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34645 INSERT INTO `marc_subfield_structure` VALUES ('261', 'd', 'Date of production, release, etc.', 'Date of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34646 INSERT INTO `marc_subfield_structure` VALUES ('261', 'e', 'Contractual producer', 'Contractual producer', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34647 INSERT INTO `marc_subfield_structure` VALUES ('261', 'f', 'Place of production, release, etc.', 'Place of production, release, etc.', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34648 INSERT INTO `marc_subfield_structure` VALUES ('262', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34649 INSERT INTO `marc_subfield_structure` VALUES ('262', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34650 INSERT INTO `marc_subfield_structure` VALUES ('262', 'a', 'Place of production, release, etc.', 'Place of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34651 INSERT INTO `marc_subfield_structure` VALUES ('262', 'b', 'Publisher or trade name', 'Publisher or trade name', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34652 INSERT INTO `marc_subfield_structure` VALUES ('262', 'c', 'Date of production, release, etc.', 'Date of production, release, etc.', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34653 INSERT INTO `marc_subfield_structure` VALUES ('262', 'k', 'Serial identification', 'Serial identification', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34654 INSERT INTO `marc_subfield_structure` VALUES ('262', 'l', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34655 INSERT INTO `marc_subfield_structure` VALUES ('263', '6', 'Linkage', 'Linkage', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34656 INSERT INTO `marc_subfield_structure` VALUES ('263', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34657 INSERT INTO `marc_subfield_structure` VALUES ('263', 'a', 'Projected publication date', 'Projected publication date', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34658 INSERT INTO `marc_subfield_structure` VALUES ('265', '6', 'Linkage [OBSOLETE]', 'Linkage [OBSOLETE]', 0, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34659 INSERT INTO `marc_subfield_structure` VALUES ('265', 'a', 'Source for acquisition/subscription address [OBSOLETE]', 'Source for acquisition/subscription address [OBSOLETE]', 1, 0, '', 2, '', '', '', NULL, -6, 'SER', '', '');
34660 INSERT INTO `marc_subfield_structure` VALUES ('270', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
34661 INSERT INTO `marc_subfield_structure` VALUES ('270', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
34662 INSERT INTO `marc_subfield_structure` VALUES ('270', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
34663 INSERT INTO `marc_subfield_structure` VALUES ('270', 'a', 'Address', 'Address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SER', '', '');
34664 INSERT INTO `marc_subfield_structure` VALUES ('270', 'b', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SER', '', '');
34665 INSERT INTO `marc_subfield_structure` VALUES ('270', 'c', 'State or province', 'State or province', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
34666 INSERT INTO `marc_subfield_structure` VALUES ('270', 'd', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SER', '', '');
34667 INSERT INTO `marc_subfield_structure` VALUES ('270', 'e', 'Postal code', 'Postal code', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SER', '', '');
34668 INSERT INTO `marc_subfield_structure` VALUES ('270', 'f', 'Terms preceding attention name', 'Terms preceding attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SER', '', '');
34669 INSERT INTO `marc_subfield_structure` VALUES ('270', 'g', 'Attention name', 'Attention name', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SER', '', '');
34670 INSERT INTO `marc_subfield_structure` VALUES ('270', 'h', 'Attention position', 'Attention position', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SER', '', '');
34671 INSERT INTO `marc_subfield_structure` VALUES ('270', 'i', 'Type of address', 'Type of address', 0, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SER', '', '');
34672 INSERT INTO `marc_subfield_structure` VALUES ('270', 'j', 'Specialized telephone number', 'Specialized telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SER', '', '');
34673 INSERT INTO `marc_subfield_structure` VALUES ('270', 'k', 'Telephone number', 'Telephone number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SER', '', '');
34674 INSERT INTO `marc_subfield_structure` VALUES ('270', 'l', 'Fax number', 'Fax number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SER', '', '');
34675 INSERT INTO `marc_subfield_structure` VALUES ('270', 'm', 'Electronic mail address', 'Electronic mail address', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SER', '', '');
34676 INSERT INTO `marc_subfield_structure` VALUES ('270', 'n', 'TDD or TTY number', 'TDD or TTY number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SER', '', '');
34677 INSERT INTO `marc_subfield_structure` VALUES ('270', 'p', 'Contact person', 'Contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SER', '', '');
34678 INSERT INTO `marc_subfield_structure` VALUES ('270', 'q', 'Title of contact person', 'Title of contact person', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SER', '', '');
34679 INSERT INTO `marc_subfield_structure` VALUES ('270', 'r', 'Hours', 'Hours', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SER', '', '');
34680 INSERT INTO `marc_subfield_structure` VALUES ('270', 'z', 'Public note', 'Public note', 1, 0, NULL, 9, NULL, NULL, '', NULL, -1, 'SER', '', '');
34681 INSERT INTO `marc_subfield_structure` VALUES ('300', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34682 INSERT INTO `marc_subfield_structure` VALUES ('300', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34683 INSERT INTO `marc_subfield_structure` VALUES ('300', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34684 INSERT INTO `marc_subfield_structure` VALUES ('300', 'a', 'Extent (v. : )', 'Extent', 1, 1, 'biblioitems.pages', 3, '', '', '', NULL, 0, 'SER', '', '');
34685 INSERT INTO `marc_subfield_structure` VALUES ('300', 'b', 'Other physical details', 'Other physical details', 0, 0, 'biblioitems.illus', 3, '', '', '', 0, 0, 'SER', '', '');
34686 INSERT INTO `marc_subfield_structure` VALUES ('300', 'c', 'Dimensions', 'Dimensions', 1, 0, 'biblioitems.size', 3, '', '', '', NULL, 0, 'SER', '', '');
34687 INSERT INTO `marc_subfield_structure` VALUES ('300', 'd', 'Accompanying material [OBSOLETE, CAN/MARC]', 'Accompanying material [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34688 INSERT INTO `marc_subfield_structure` VALUES ('300', 'e', 'Accompanying material', 'Accompanying material', 0, 0, '', 3, '', '', '', NULL, 0, 'SER', '', '');
34689 INSERT INTO `marc_subfield_structure` VALUES ('300', 'f', 'Type of unit', 'Type of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'SER', '', '');
34690 INSERT INTO `marc_subfield_structure` VALUES ('300', 'g', 'Size of unit', 'Size of unit', 1, 0, '', 3, '', '', '', NULL, -1, 'SER', '', '');
34691 INSERT INTO `marc_subfield_structure` VALUES ('300', 'k', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Speed [Videodiscs, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34692 INSERT INTO `marc_subfield_structure` VALUES ('300', 'm', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Identification/manufacturer number [pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34693 INSERT INTO `marc_subfield_structure` VALUES ('300', 'n', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 'Matrix and/or take number [Sound recordings, pre-AACR2 records only] [OBSOLETE, CAN/MARC]', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34694 INSERT INTO `marc_subfield_structure` VALUES ('301', 'a', 'Extent of item', 'Extent of item', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34695 INSERT INTO `marc_subfield_structure` VALUES ('301', 'b', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34696 INSERT INTO `marc_subfield_structure` VALUES ('301', 'c', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', NULL, NULL, -6, 'SER', '', '');
34697 INSERT INTO `marc_subfield_structure` VALUES ('301', 'd', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34698 INSERT INTO `marc_subfield_structure` VALUES ('301', 'e', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34699 INSERT INTO `marc_subfield_structure` VALUES ('301', 'f', 'Speed', 'Speed', 0, 0, '', 3, '', '', NULL, NULL, -6, 'SER', '', '');
34700 INSERT INTO `marc_subfield_structure` VALUES ('302', 'a', 'Page count', 'Page count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'SER', '', '');
34701 INSERT INTO `marc_subfield_structure` VALUES ('303', 'a', 'Unit count', 'Unit count', 0, 0, '', 3, '', '', NULL, NULL, -6, 'SER', '', '');
34702 INSERT INTO `marc_subfield_structure` VALUES ('304', 'a', 'Linear footage', 'Linear footage', 0, 0, '', 3, '', '', NULL, NULL, -6, 'SER', '', '');
34703 INSERT INTO `marc_subfield_structure` VALUES ('305', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34704 INSERT INTO `marc_subfield_structure` VALUES ('305', 'a', 'Extent', 'Extent', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34705 INSERT INTO `marc_subfield_structure` VALUES ('305', 'b', 'Other physical details', 'Other physical details', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34706 INSERT INTO `marc_subfield_structure` VALUES ('305', 'c', 'Dimensions', 'Dimensions', 0, 0, '', 3, '', '', NULL, NULL, -6, 'SER', '', '');
34707 INSERT INTO `marc_subfield_structure` VALUES ('305', 'd', 'Microgroove or standard', 'Microgroove or standard', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34708 INSERT INTO `marc_subfield_structure` VALUES ('305', 'e', 'Stereophonic, monaural', 'Stereophonic, monaural', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34709 INSERT INTO `marc_subfield_structure` VALUES ('305', 'f', 'Number of tracks', 'Number of tracks', 0, 0, '', 3, '', '', NULL, NULL, -6, 'SER', '', '');
34710 INSERT INTO `marc_subfield_structure` VALUES ('305', 'm', 'Serial identification', 'Serial identification', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34711 INSERT INTO `marc_subfield_structure` VALUES ('305', 'n', 'Matrix and/or take number', 'Matrix and/or take number', 0, 0, '', 3, '', '', NULL, NULL, -6, 'SER', '', '');
34712 INSERT INTO `marc_subfield_structure` VALUES ('306', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34713 INSERT INTO `marc_subfield_structure` VALUES ('306', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34714 INSERT INTO `marc_subfield_structure` VALUES ('306', 'a', 'Playing time', 'Playing time', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34715 INSERT INTO `marc_subfield_structure` VALUES ('307', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34716 INSERT INTO `marc_subfield_structure` VALUES ('307', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34717 INSERT INTO `marc_subfield_structure` VALUES ('307', 'a', 'Hours', 'Hours', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34718 INSERT INTO `marc_subfield_structure` VALUES ('307', 'b', 'Additional information', 'Additional information', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34719 INSERT INTO `marc_subfield_structure` VALUES ('308', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34720 INSERT INTO `marc_subfield_structure` VALUES ('308', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34721 INSERT INTO `marc_subfield_structure` VALUES ('308', 'a', 'Number of reels', 'Number of reels', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34722 INSERT INTO `marc_subfield_structure` VALUES ('308', 'b', 'Footage', 'Footage', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34723 INSERT INTO `marc_subfield_structure` VALUES ('308', 'c', 'Sound characteristics', 'Sound characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34724 INSERT INTO `marc_subfield_structure` VALUES ('308', 'd', 'Color characteristics', 'Color characteristics', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34725 INSERT INTO `marc_subfield_structure` VALUES ('308', 'e', 'Width', 'Width', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34726 INSERT INTO `marc_subfield_structure` VALUES ('308', 'f', 'Presentation format', 'Presentation format', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34727 INSERT INTO `marc_subfield_structure` VALUES ('310', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34728 INSERT INTO `marc_subfield_structure` VALUES ('310', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34729 INSERT INTO `marc_subfield_structure` VALUES ('310', 'a', 'Current publication frequency', 'Current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -1, 'SER', '', '');
34730 INSERT INTO `marc_subfield_structure` VALUES ('310', 'b', 'Date of current publication frequency', 'Date of current publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -1, 'SER', '', '');
34731 INSERT INTO `marc_subfield_structure` VALUES ('315', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34732 INSERT INTO `marc_subfield_structure` VALUES ('315', 'a', 'Frequency', 'Frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34733 INSERT INTO `marc_subfield_structure` VALUES ('315', 'b', 'Dates of frequency', 'Dates of frequency', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34734 INSERT INTO `marc_subfield_structure` VALUES ('321', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34735 INSERT INTO `marc_subfield_structure` VALUES ('321', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34736 INSERT INTO `marc_subfield_structure` VALUES ('321', 'a', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34737 INSERT INTO `marc_subfield_structure` VALUES ('321', 'b', 'Former publication frequency', 'Former publication frequency', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34738 INSERT INTO `marc_subfield_structure` VALUES ('340', '3', 'Materials specified', 'Materials specified', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34739 INSERT INTO `marc_subfield_structure` VALUES ('340', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34740 INSERT INTO `marc_subfield_structure` VALUES ('340', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34741 INSERT INTO `marc_subfield_structure` VALUES ('340', 'a', 'Material base and configuration', 'Material base and configuration', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34742 INSERT INTO `marc_subfield_structure` VALUES ('340', 'b', 'Dimensions', 'Dimensions', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34743 INSERT INTO `marc_subfield_structure` VALUES ('340', 'c', 'Materials applied to surface', 'Materials applied to surface', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34744 INSERT INTO `marc_subfield_structure` VALUES ('340', 'd', 'Information recording technique', 'Information recording technique', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34745 INSERT INTO `marc_subfield_structure` VALUES ('340', 'e', 'Support', 'Support', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34746 INSERT INTO `marc_subfield_structure` VALUES ('340', 'f', 'Production rate/ratio', 'Production rate/ratio', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34747 INSERT INTO `marc_subfield_structure` VALUES ('340', 'h', 'Location within medium', 'Location within medium', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34748 INSERT INTO `marc_subfield_structure` VALUES ('340', 'i', 'Technical specifications of medium', 'Technical specifications of medium', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34749 INSERT INTO `marc_subfield_structure` VALUES ('342', '2', 'Reference method used', 'Reference method used', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34750 INSERT INTO `marc_subfield_structure` VALUES ('342', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34751 INSERT INTO `marc_subfield_structure` VALUES ('342', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34752 INSERT INTO `marc_subfield_structure` VALUES ('342', 'a', 'Name', 'Name', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34753 INSERT INTO `marc_subfield_structure` VALUES ('342', 'b', 'Coordinate or distance units', 'Coordinate or distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34754 INSERT INTO `marc_subfield_structure` VALUES ('342', 'c', 'Latitude resolution', 'Latitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34755 INSERT INTO `marc_subfield_structure` VALUES ('342', 'd', 'Longitude resolution', 'Longitude resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34756 INSERT INTO `marc_subfield_structure` VALUES ('342', 'e', 'Standard parallel or oblique line latitude', 'Standard parallel or oblique line latitude', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34757 INSERT INTO `marc_subfield_structure` VALUES ('342', 'f', 'Oblique line longitude', 'Oblique line longitude', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34758 INSERT INTO `marc_subfield_structure` VALUES ('342', 'g', 'Longitude of central meridian or projection center', 'Longitude of central meridian or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34759 INSERT INTO `marc_subfield_structure` VALUES ('342', 'h', 'Latitude of projection origin or projection center', 'Latitude of projection origin or projection center', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34760 INSERT INTO `marc_subfield_structure` VALUES ('342', 'i', 'False easting', 'False easting', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34761 INSERT INTO `marc_subfield_structure` VALUES ('342', 'j', 'False northing', 'False northing', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34762 INSERT INTO `marc_subfield_structure` VALUES ('342', 'k', 'Scale factor', 'Scale factor', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34763 INSERT INTO `marc_subfield_structure` VALUES ('342', 'l', 'Height of perspective point above surface', 'Height of perspective point above surface', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34764 INSERT INTO `marc_subfield_structure` VALUES ('342', 'm', 'Azimuthal angle', 'Azimuthal angle', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34765 INSERT INTO `marc_subfield_structure` VALUES ('342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole', 'Azimuth measure point longitude or straight vertical longitude from pole', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34766 INSERT INTO `marc_subfield_structure` VALUES ('342', 'o', 'Landsat number and path number', 'Landsat number and path number', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34767 INSERT INTO `marc_subfield_structure` VALUES ('342', 'p', 'Zone identifier', 'Zone identifier', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34768 INSERT INTO `marc_subfield_structure` VALUES ('342', 'q', 'Ellipsoid name', 'Ellipsoid name', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34769 INSERT INTO `marc_subfield_structure` VALUES ('342', 'r', 'Semi-major axis', 'Semi-major axis', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34770 INSERT INTO `marc_subfield_structure` VALUES ('342', 's', 'Denominator of flattening ratio', 'Denominator of flattening ratio', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34771 INSERT INTO `marc_subfield_structure` VALUES ('342', 't', 'Vertical resolution', 'Vertical resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34772 INSERT INTO `marc_subfield_structure` VALUES ('342', 'u', 'Vertical encoding method', 'Vertical encoding method', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34773 INSERT INTO `marc_subfield_structure` VALUES ('342', 'v', 'Local planar, local, or other projection or grid description', 'Local planar, local, or other projection or grid description', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34774 INSERT INTO `marc_subfield_structure` VALUES ('342', 'w', 'Local planar or local georeference information', 'Local planar or local georeference information', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34775 INSERT INTO `marc_subfield_structure` VALUES ('343', '6', 'Linkage', 'Linkage', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34776 INSERT INTO `marc_subfield_structure` VALUES ('343', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34777 INSERT INTO `marc_subfield_structure` VALUES ('343', 'a', 'Planar coordinate encoding method', 'Planar coordinate encoding method', 1, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34778 INSERT INTO `marc_subfield_structure` VALUES ('343', 'b', 'Planar distance units', 'Planar distance units', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34779 INSERT INTO `marc_subfield_structure` VALUES ('343', 'c', 'Abscissa resolution', 'Abscissa resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34780 INSERT INTO `marc_subfield_structure` VALUES ('343', 'd', 'Ordinate resolution', 'Ordinate resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34781 INSERT INTO `marc_subfield_structure` VALUES ('343', 'e', 'Distance resolution', 'Distance resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34782 INSERT INTO `marc_subfield_structure` VALUES ('343', 'f', 'Bearing resolution', 'Bearing resolution', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34783 INSERT INTO `marc_subfield_structure` VALUES ('343', 'g', 'Bearing unit', 'Bearing unit', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34784 INSERT INTO `marc_subfield_structure` VALUES ('343', 'h', 'Bearing reference direction', 'Bearing reference direction', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34785 INSERT INTO `marc_subfield_structure` VALUES ('343', 'i', 'Bearing reference meridian', 'Bearing reference meridian', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
34786 INSERT INTO `marc_subfield_structure` VALUES ('350', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34787 INSERT INTO `marc_subfield_structure` VALUES ('350', 'a', 'Price', 'Price', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34788 INSERT INTO `marc_subfield_structure` VALUES ('350', 'b', 'Form of issue', 'Form of issue', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34789 INSERT INTO `marc_subfield_structure` VALUES ('351', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34790 INSERT INTO `marc_subfield_structure` VALUES ('351', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34791 INSERT INTO `marc_subfield_structure` VALUES ('351', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34792 INSERT INTO `marc_subfield_structure` VALUES ('351', 'a', 'Organization', 'Organization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34793 INSERT INTO `marc_subfield_structure` VALUES ('351', 'b', 'Arrangement', 'Arrangement', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34794 INSERT INTO `marc_subfield_structure` VALUES ('351', 'c', 'Hierarchical level', 'Hierarchical level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34795 INSERT INTO `marc_subfield_structure` VALUES ('352', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34796 INSERT INTO `marc_subfield_structure` VALUES ('352', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34797 INSERT INTO `marc_subfield_structure` VALUES ('352', 'a', 'Direct reference method', 'Direct reference method', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34798 INSERT INTO `marc_subfield_structure` VALUES ('352', 'b', 'Object type', 'Object type', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34799 INSERT INTO `marc_subfield_structure` VALUES ('352', 'c', 'Object count', 'Object count', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34800 INSERT INTO `marc_subfield_structure` VALUES ('352', 'd', 'Row count', 'Row count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34801 INSERT INTO `marc_subfield_structure` VALUES ('352', 'e', 'Column count', 'Column count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34802 INSERT INTO `marc_subfield_structure` VALUES ('352', 'f', 'Vertical count', 'Vertical count', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34803 INSERT INTO `marc_subfield_structure` VALUES ('352', 'g', 'VPF topology level', 'VPF topology level', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34804 INSERT INTO `marc_subfield_structure` VALUES ('352', 'i', 'Indirect reference description', 'Indirect reference description', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34805 INSERT INTO `marc_subfield_structure` VALUES ('355', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34806 INSERT INTO `marc_subfield_structure` VALUES ('355', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34807 INSERT INTO `marc_subfield_structure` VALUES ('355', 'a', 'Security classification', 'Security classification', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34808 INSERT INTO `marc_subfield_structure` VALUES ('355', 'b', 'Handling instructions', 'Handling instructions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34809 INSERT INTO `marc_subfield_structure` VALUES ('355', 'c', 'External dissemination information', 'External dissemination information', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34810 INSERT INTO `marc_subfield_structure` VALUES ('355', 'd', 'Downgrading or declassification event', 'Downgrading or declassification event', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34811 INSERT INTO `marc_subfield_structure` VALUES ('355', 'e', 'Classification system', 'Classification system', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34812 INSERT INTO `marc_subfield_structure` VALUES ('355', 'f', 'Country of origin code', 'Country of origin code', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34813 INSERT INTO `marc_subfield_structure` VALUES ('355', 'g', 'Downgrading date', 'Downgrading date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34814 INSERT INTO `marc_subfield_structure` VALUES ('355', 'h', 'Declassification date', 'Declassification date', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34815 INSERT INTO `marc_subfield_structure` VALUES ('355', 'j', 'Authorization', 'Authorization', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34816 INSERT INTO `marc_subfield_structure` VALUES ('357', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34817 INSERT INTO `marc_subfield_structure` VALUES ('357', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34818 INSERT INTO `marc_subfield_structure` VALUES ('357', 'a', 'Originator control term', 'Originator control term', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34819 INSERT INTO `marc_subfield_structure` VALUES ('357', 'b', 'Originating agency', 'Originating agency', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34820 INSERT INTO `marc_subfield_structure` VALUES ('357', 'c', 'Authorized recipients of material', 'Authorized recipients of material', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34821 INSERT INTO `marc_subfield_structure` VALUES ('357', 'g', 'Other restrictions', 'Other restrictions', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34822 INSERT INTO `marc_subfield_structure` VALUES ('359', 'a', 'Rental price', 'Rental price', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34823 INSERT INTO `marc_subfield_structure` VALUES ('362', '6', 'Linkage', 'Linkage', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34824 INSERT INTO `marc_subfield_structure` VALUES ('362', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34825 INSERT INTO `marc_subfield_structure` VALUES ('362', 'a', 'Dates of publication and/or sequential designation', 'Dates of publication and/or sequential designation', 0, 0, 'biblioitems.volumedesc', 3, NULL, NULL, '', NULL, -1, 'SER', '', '');
34826 INSERT INTO `marc_subfield_structure` VALUES ('362', 'z', 'Source of information', 'Source of information', 0, 0, NULL, 3, NULL, NULL, '', NULL, -6, 'SER', '', '');
34827 INSERT INTO `marc_subfield_structure` VALUES ('365', '2', 'Source of price type code', 'Source of price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34828 INSERT INTO `marc_subfield_structure` VALUES ('365', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
34829 INSERT INTO `marc_subfield_structure` VALUES ('365', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
34830 INSERT INTO `marc_subfield_structure` VALUES ('365', 'a', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34831 INSERT INTO `marc_subfield_structure` VALUES ('365', 'b', 'Price amount', 'Price amount', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34832 INSERT INTO `marc_subfield_structure` VALUES ('365', 'c', 'Price type code', 'Price type code', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34833 INSERT INTO `marc_subfield_structure` VALUES ('365', 'd', 'Unit of pricing', 'Unit of pricing', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34834 INSERT INTO `marc_subfield_structure` VALUES ('365', 'e', 'Price note', 'Price note', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34835 INSERT INTO `marc_subfield_structure` VALUES ('365', 'f', 'Price effective from', 'Price effective from', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34836 INSERT INTO `marc_subfield_structure` VALUES ('365', 'g', 'Price effective until', 'Price effective until', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34837 INSERT INTO `marc_subfield_structure` VALUES ('365', 'h', 'Tax rate 1', 'Tax rate 1', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34838 INSERT INTO `marc_subfield_structure` VALUES ('365', 'i', 'Tax rate 2', 'Tax rate 2', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34839 INSERT INTO `marc_subfield_structure` VALUES ('365', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34840 INSERT INTO `marc_subfield_structure` VALUES ('365', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34841 INSERT INTO `marc_subfield_structure` VALUES ('365', 'm', 'Identification of pricing entity', 'Identification of pricing entity', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34842 INSERT INTO `marc_subfield_structure` VALUES ('366', '2', 'Source of availability status code', 'Source of availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34843 INSERT INTO `marc_subfield_structure` VALUES ('366', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
34844 INSERT INTO `marc_subfield_structure` VALUES ('366', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
34845 INSERT INTO `marc_subfield_structure` VALUES ('366', 'a', 'Publishers\' compressed title identification', 'Publishers\' compressed title identification', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34846 INSERT INTO `marc_subfield_structure` VALUES ('366', 'b', 'Detailed date of publication', 'Detailed date of publication', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34847 INSERT INTO `marc_subfield_structure` VALUES ('366', 'c', 'Availability status code', 'Availability status code', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34848 INSERT INTO `marc_subfield_structure` VALUES ('366', 'd', 'Expected next availability date', 'Expected next availability date', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34849 INSERT INTO `marc_subfield_structure` VALUES ('366', 'e', 'Note', 'Note', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34850 INSERT INTO `marc_subfield_structure` VALUES ('366', 'f', 'Publishers\' discount category', 'Publishers\' discount category', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34851 INSERT INTO `marc_subfield_structure` VALUES ('366', 'g', 'Date made out of print', 'Date made out of print', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34852 INSERT INTO `marc_subfield_structure` VALUES ('366', 'j', 'ISO country code', 'ISO country code', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34853 INSERT INTO `marc_subfield_structure` VALUES ('366', 'k', 'MARC country code', 'MARC country code', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34854 INSERT INTO `marc_subfield_structure` VALUES ('366', 'm', 'Identification of agency', 'Identification of agency', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
34855 INSERT INTO `marc_subfield_structure` VALUES ('400', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', 0, -6, 'SER', '', '');
34856 INSERT INTO `marc_subfield_structure` VALUES ('400', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', 0, -6, 'SER', '', '');
34857 INSERT INTO `marc_subfield_structure` VALUES ('400', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', 0, -6, 'SER', '', '');
34858 INSERT INTO `marc_subfield_structure` VALUES ('400', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
34859 INSERT INTO `marc_subfield_structure` VALUES ('400', 'a', 'Personal name', 'Personal name', 0, 0, '', 4, '', '', '', 0, -6, 'SER', '', '');
34860 INSERT INTO `marc_subfield_structure` VALUES ('400', 'b', 'Numeration', 'Numeration', 0, 0, '', 4, '', '', '', 0, -6, 'SER', '', '');
34861 INSERT INTO `marc_subfield_structure` VALUES ('400', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 4, '', '', '', 0, -6, 'SER', '', '');
34862 INSERT INTO `marc_subfield_structure` VALUES ('400', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 4, '', '', '', 0, -6, 'SER', '', '');
34863 INSERT INTO `marc_subfield_structure` VALUES ('400', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', 0, -6, 'SER', '', '');
34864 INSERT INTO `marc_subfield_structure` VALUES ('400', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', 0, -6, 'SER', '', '');
34865 INSERT INTO `marc_subfield_structure` VALUES ('400', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', 0, -6, 'SER', '', '');
34866 INSERT INTO `marc_subfield_structure` VALUES ('400', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', 0, -6, 'SER', '', '');
34867 INSERT INTO `marc_subfield_structure` VALUES ('400', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', 0, -6, 'SER', '', '');
34868 INSERT INTO `marc_subfield_structure` VALUES ('400', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'SER', '', '');
34869 INSERT INTO `marc_subfield_structure` VALUES ('400', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', 0, -6, 'SER', '', '');
34870 INSERT INTO `marc_subfield_structure` VALUES ('400', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 4, '', '', '', 0, -6, 'SER', '', '');
34871 INSERT INTO `marc_subfield_structure` VALUES ('400', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', 0, -6, 'SER', '', '');
34872 INSERT INTO `marc_subfield_structure` VALUES ('400', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', 0, -6, 'SER', '', '');
34873 INSERT INTO `marc_subfield_structure` VALUES ('400', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34874 INSERT INTO `marc_subfield_structure` VALUES ('400', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34875 INSERT INTO `marc_subfield_structure` VALUES ('410', '4', 'Relator code', 'Relator code', 1, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34876 INSERT INTO `marc_subfield_structure` VALUES ('410', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34877 INSERT INTO `marc_subfield_structure` VALUES ('410', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34878 INSERT INTO `marc_subfield_structure` VALUES ('410', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'SER', '', '');
34879 INSERT INTO `marc_subfield_structure` VALUES ('410', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34880 INSERT INTO `marc_subfield_structure` VALUES ('410', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34881 INSERT INTO `marc_subfield_structure` VALUES ('410', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34882 INSERT INTO `marc_subfield_structure` VALUES ('410', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34883 INSERT INTO `marc_subfield_structure` VALUES ('410', 'e', 'Relator term', 'Relator term', 1, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34884 INSERT INTO `marc_subfield_structure` VALUES ('410', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34885 INSERT INTO `marc_subfield_structure` VALUES ('410', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34886 INSERT INTO `marc_subfield_structure` VALUES ('410', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34887 INSERT INTO `marc_subfield_structure` VALUES ('410', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34888 INSERT INTO `marc_subfield_structure` VALUES ('410', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34889 INSERT INTO `marc_subfield_structure` VALUES ('410', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34890 INSERT INTO `marc_subfield_structure` VALUES ('410', 't', 'Title of a work', 'Title of a work', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34891 INSERT INTO `marc_subfield_structure` VALUES ('410', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34892 INSERT INTO `marc_subfield_structure` VALUES ('410', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34893 INSERT INTO `marc_subfield_structure` VALUES ('410', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34894 INSERT INTO `marc_subfield_structure` VALUES ('411', '4', 'Relator code', 'Relator code', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SER', '', '');
34895 INSERT INTO `marc_subfield_structure` VALUES ('411', '6', 'Linkage', 'Linkage', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SER', '', '');
34896 INSERT INTO `marc_subfield_structure` VALUES ('411', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SER', '', '');
34897 INSERT INTO `marc_subfield_structure` VALUES ('411', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
34898 INSERT INTO `marc_subfield_structure` VALUES ('411', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SER', '', '');
34899 INSERT INTO `marc_subfield_structure` VALUES ('411', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SER', '', '');
34900 INSERT INTO `marc_subfield_structure` VALUES ('411', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SER', '', '');
34901 INSERT INTO `marc_subfield_structure` VALUES ('411', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SER', '', '');
34902 INSERT INTO `marc_subfield_structure` VALUES ('411', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SER', '', '');
34903 INSERT INTO `marc_subfield_structure` VALUES ('411', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SER', '', '');
34904 INSERT INTO `marc_subfield_structure` VALUES ('411', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SER', '', '');
34905 INSERT INTO `marc_subfield_structure` VALUES ('411', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SER', '', '');
34906 INSERT INTO `marc_subfield_structure` VALUES ('411', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SER', '', '');
34907 INSERT INTO `marc_subfield_structure` VALUES ('411', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SER', '', '');
34908 INSERT INTO `marc_subfield_structure` VALUES ('411', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SER', '', '');
34909 INSERT INTO `marc_subfield_structure` VALUES ('411', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SER', '', '');
34910 INSERT INTO `marc_subfield_structure` VALUES ('411', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SER', '', '');
34911 INSERT INTO `marc_subfield_structure` VALUES ('411', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 4, NULL, NULL, '', NULL, -6, 'SER', '', '');
34912 INSERT INTO `marc_subfield_structure` VALUES ('411', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34913 INSERT INTO `marc_subfield_structure` VALUES ('411', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34914 INSERT INTO `marc_subfield_structure` VALUES ('440', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34915 INSERT INTO `marc_subfield_structure` VALUES ('440', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34916 INSERT INTO `marc_subfield_structure` VALUES ('440', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
34917 INSERT INTO `marc_subfield_structure` VALUES ('440', 'a', 'Title', 'Title', 0, 0, 'biblio.seriestitle', 4, '', '', '', NULL, 0, 'SER', '', '');
34918 INSERT INTO `marc_subfield_structure` VALUES ('440', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, 'biblioitems.number', 4, '', '', '', NULL, 0, 'SER', '', '');
34919 INSERT INTO `marc_subfield_structure` VALUES ('440', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 4, '', '', '', NULL, 0, 'SER', '', '');
34920 INSERT INTO `marc_subfield_structure` VALUES ('440', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, 'biblioitems.volume', 4, '', '', '', NULL, 0, 'SER', '', '');
34921 INSERT INTO `marc_subfield_structure` VALUES ('440', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, 0, 'SER', '', '');
34922 INSERT INTO `marc_subfield_structure` VALUES ('490', '6', 'Linkage', 'Linkage', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34923 INSERT INTO `marc_subfield_structure` VALUES ('490', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 4, '', '', NULL, NULL, -6, 'SER', '', '');
34924 INSERT INTO `marc_subfield_structure` VALUES ('490', 'a', 'Series statement', 'Series statement', 1, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34925 INSERT INTO `marc_subfield_structure` VALUES ('490', 'l', 'Library of Congress call number', 'Library of Congress call number', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34926 INSERT INTO `marc_subfield_structure` VALUES ('490', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 1, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34927 INSERT INTO `marc_subfield_structure` VALUES ('490', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 4, '', '', '', NULL, -6, 'SER', '', '');
34928 INSERT INTO `marc_subfield_structure` VALUES ('500', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34929 INSERT INTO `marc_subfield_structure` VALUES ('500', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34930 INSERT INTO `marc_subfield_structure` VALUES ('500', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34931 INSERT INTO `marc_subfield_structure` VALUES ('500', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34932 INSERT INTO `marc_subfield_structure` VALUES ('500', 'a', 'General note', 'General note', 0, 0, 'biblio.notes', 5, '', '', '', NULL, -1, 'SER', '', '');
34933 INSERT INTO `marc_subfield_structure` VALUES ('500', 'l', 'Library of Congress call number (SE) [OBSOLETE]', 'Library of Congress call number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34934 INSERT INTO `marc_subfield_structure` VALUES ('500', 'n', 'n (RLIN) [OBSOLETE]', 'n (RLIN) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34935 INSERT INTO `marc_subfield_structure` VALUES ('500', 'x', 'International Standard Serial Number (SE) [OBSOLETE]', 'International Standard Serial Number (SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34936 INSERT INTO `marc_subfield_structure` VALUES ('500', 'z', 'Source of note information (AM SE) [OBSOLETE]', 'Source of note information (AM SE) [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34937 INSERT INTO `marc_subfield_structure` VALUES ('501', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34938 INSERT INTO `marc_subfield_structure` VALUES ('501', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34939 INSERT INTO `marc_subfield_structure` VALUES ('501', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34940 INSERT INTO `marc_subfield_structure` VALUES ('501', 'a', 'With note', 'With note', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34941 INSERT INTO `marc_subfield_structure` VALUES ('502', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34942 INSERT INTO `marc_subfield_structure` VALUES ('502', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34943 INSERT INTO `marc_subfield_structure` VALUES ('502', 'a', 'Dissertation note', 'Dissertation note', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34944 INSERT INTO `marc_subfield_structure` VALUES ('503', '8', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34945 INSERT INTO `marc_subfield_structure` VALUES ('503', 'a', 'Bibliographic history note', 'Bibliographic history note', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34946 INSERT INTO `marc_subfield_structure` VALUES ('504', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
34947 INSERT INTO `marc_subfield_structure` VALUES ('504', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
34948 INSERT INTO `marc_subfield_structure` VALUES ('504', 'a', 'Bibliography, etc', 'Bibliography, etc', 0, 0, '', 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
34949 INSERT INTO `marc_subfield_structure` VALUES ('504', 'b', 'Number of references', 'Number of references', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
34950 INSERT INTO `marc_subfield_structure` VALUES ('505', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34951 INSERT INTO `marc_subfield_structure` VALUES ('505', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34952 INSERT INTO `marc_subfield_structure` VALUES ('505', 'a', 'Formatted contents note', 'Formatted contents note', 0, 0, '', 5, '', '', '', NULL, -1, 'SER', '', '');
34953 INSERT INTO `marc_subfield_structure` VALUES ('505', 'g', 'Miscellaneous information', 'Miscellaneous information', 1, 0, '', 5, '', '', '', NULL, -1, 'SER', '', '');
34954 INSERT INTO `marc_subfield_structure` VALUES ('505', 'r', 'Statement of responsibility', 'Statement of responsibility', 1, 0, '', 5, '', '', '', NULL, -1, 'SER', '', '');
34955 INSERT INTO `marc_subfield_structure` VALUES ('505', 't', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -1, 'SER', '', '');
34956 INSERT INTO `marc_subfield_structure` VALUES ('505', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'SER', '', '');
34957 INSERT INTO `marc_subfield_structure` VALUES ('506', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34958 INSERT INTO `marc_subfield_structure` VALUES ('506', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34959 INSERT INTO `marc_subfield_structure` VALUES ('506', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34960 INSERT INTO `marc_subfield_structure` VALUES ('506', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34961 INSERT INTO `marc_subfield_structure` VALUES ('506', 'a', 'Terms governing access', 'Terms governing access', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34962 INSERT INTO `marc_subfield_structure` VALUES ('506', 'b', 'Jurisdiction', 'Jurisdiction', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34963 INSERT INTO `marc_subfield_structure` VALUES ('506', 'c', 'Physical access provisions', 'Physical access provisions', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34964 INSERT INTO `marc_subfield_structure` VALUES ('506', 'd', 'Authorized users', 'Authorized users', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34965 INSERT INTO `marc_subfield_structure` VALUES ('506', 'e', 'Authorization', 'Authorization', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34966 INSERT INTO `marc_subfield_structure` VALUES ('506', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'SER', '', '');
34967 INSERT INTO `marc_subfield_structure` VALUES ('507', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34968 INSERT INTO `marc_subfield_structure` VALUES ('507', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34969 INSERT INTO `marc_subfield_structure` VALUES ('507', 'a', 'Representative fraction of scale note', 'Representative fraction of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34970 INSERT INTO `marc_subfield_structure` VALUES ('507', 'b', 'Remainder of scale note', 'Remainder of scale note', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34971 INSERT INTO `marc_subfield_structure` VALUES ('508', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34972 INSERT INTO `marc_subfield_structure` VALUES ('508', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
34973 INSERT INTO `marc_subfield_structure` VALUES ('508', 'a', 'Creation/production credits note', 'Creation/production credits note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
34974 INSERT INTO `marc_subfield_structure` VALUES ('509', 'a', 'Informal Notes', 'Informal Notes', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
34975 INSERT INTO `marc_subfield_structure` VALUES ('510', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34976 INSERT INTO `marc_subfield_structure` VALUES ('510', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34977 INSERT INTO `marc_subfield_structure` VALUES ('510', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34978 INSERT INTO `marc_subfield_structure` VALUES ('510', 'a', 'Name of source', 'Name of source', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34979 INSERT INTO `marc_subfield_structure` VALUES ('510', 'b', 'Coverage of source', 'Coverage of source', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34980 INSERT INTO `marc_subfield_structure` VALUES ('510', 'c', 'Location within source', 'Location within source', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34981 INSERT INTO `marc_subfield_structure` VALUES ('510', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34982 INSERT INTO `marc_subfield_structure` VALUES ('511', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34983 INSERT INTO `marc_subfield_structure` VALUES ('511', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34984 INSERT INTO `marc_subfield_structure` VALUES ('511', 'a', 'Participant or performer note', 'Participant or performer note', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34985 INSERT INTO `marc_subfield_structure` VALUES ('512', '6', 'Linkage', 'Linkage', 0, 0, '', -1, '', '', '', NULL, -6, 'SER', '', '');
34986 INSERT INTO `marc_subfield_structure` VALUES ('512', 'a', 'Earlier or later volumes separately cataloged note', 'Earlier or later volumes separately cataloged note', 0, 0, '', -1, '', '', '', NULL, -6, 'SER', '', '');
34987 INSERT INTO `marc_subfield_structure` VALUES ('513', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34988 INSERT INTO `marc_subfield_structure` VALUES ('513', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34989 INSERT INTO `marc_subfield_structure` VALUES ('513', 'a', 'Type of report', 'Type of report', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34990 INSERT INTO `marc_subfield_structure` VALUES ('513', 'b', 'Period covered', 'Period covered', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34991 INSERT INTO `marc_subfield_structure` VALUES ('514', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34992 INSERT INTO `marc_subfield_structure` VALUES ('514', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34993 INSERT INTO `marc_subfield_structure` VALUES ('514', 'a', 'Attribute accuracy report', 'Attribute accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34994 INSERT INTO `marc_subfield_structure` VALUES ('514', 'b', 'Attribute accuracy value', 'Attribute accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34995 INSERT INTO `marc_subfield_structure` VALUES ('514', 'c', 'Attribute accuracy explanation', 'Attribute accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34996 INSERT INTO `marc_subfield_structure` VALUES ('514', 'd', 'Logical consistency report', 'Logical consistency report', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34997 INSERT INTO `marc_subfield_structure` VALUES ('514', 'e', 'Completeness report', 'Completeness report', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34998 INSERT INTO `marc_subfield_structure` VALUES ('514', 'f', 'Horizontal position accuracy report', 'Horizontal position accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
34999 INSERT INTO `marc_subfield_structure` VALUES ('514', 'g', 'Horizontal position accuracy value', 'Horizontal position accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35000 INSERT INTO `marc_subfield_structure` VALUES ('514', 'h', 'Horizontal position accuracy explanation', 'Horizontal position accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35001 INSERT INTO `marc_subfield_structure` VALUES ('514', 'i', 'Vertical positional accuracy report', 'Vertical positional accuracy report', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35002 INSERT INTO `marc_subfield_structure` VALUES ('514', 'j', 'Vertical positional accuracy value', 'Vertical positional accuracy value', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35003 INSERT INTO `marc_subfield_structure` VALUES ('514', 'k', 'Vertical positional accuracy explanation', 'Vertical positional accuracy explanation', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35004 INSERT INTO `marc_subfield_structure` VALUES ('514', 'm', 'Cloud cover', 'Cloud cover', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35005 INSERT INTO `marc_subfield_structure` VALUES ('514', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'SER', '', '');
35006 INSERT INTO `marc_subfield_structure` VALUES ('514', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35007 INSERT INTO `marc_subfield_structure` VALUES ('515', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35008 INSERT INTO `marc_subfield_structure` VALUES ('515', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35009 INSERT INTO `marc_subfield_structure` VALUES ('515', 'a', 'Numbering peculiarities note', 'Numbering peculiarities note', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35010 INSERT INTO `marc_subfield_structure` VALUES ('515', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, '', -1, '', '', '', NULL, -6, 'SER', '', '');
35011 INSERT INTO `marc_subfield_structure` VALUES ('516', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35012 INSERT INTO `marc_subfield_structure` VALUES ('516', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35013 INSERT INTO `marc_subfield_structure` VALUES ('516', 'a', 'Type of computer file or data note', 'Type of computer file or data note', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35014 INSERT INTO `marc_subfield_structure` VALUES ('517', 'a', 'Different formats', 'Different formats', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35015 INSERT INTO `marc_subfield_structure` VALUES ('517', 'b', 'Content descriptors', 'Content descriptors', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35016 INSERT INTO `marc_subfield_structure` VALUES ('517', 'c', 'Additional animation techniques', 'Additional animation techniques', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35017 INSERT INTO `marc_subfield_structure` VALUES ('518', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35018 INSERT INTO `marc_subfield_structure` VALUES ('518', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35019 INSERT INTO `marc_subfield_structure` VALUES ('518', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35020 INSERT INTO `marc_subfield_structure` VALUES ('518', 'a', 'Date/time and place of an event note', 'Date/time and place of an event note', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35021 INSERT INTO `marc_subfield_structure` VALUES ('520', '3', 'Materials specified', 'Materials specified', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35022 INSERT INTO `marc_subfield_structure` VALUES ('520', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35023 INSERT INTO `marc_subfield_structure` VALUES ('520', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35024 INSERT INTO `marc_subfield_structure` VALUES ('520', 'a', 'Summary, etc', 'Summary, etc', 0, 0, 'biblio.abstract', 5, '', '', '', NULL, -1, 'SER', '', '');
35025 INSERT INTO `marc_subfield_structure` VALUES ('520', 'b', 'Expansion of summary note', 'Expansion of summary note', 0, 0, '', 5, '', '', '', NULL, -1, 'SER', '', '');
35026 INSERT INTO `marc_subfield_structure` VALUES ('520', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'SER', '', '');
35027 INSERT INTO `marc_subfield_structure` VALUES ('520', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35028 INSERT INTO `marc_subfield_structure` VALUES ('521', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35029 INSERT INTO `marc_subfield_structure` VALUES ('521', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35030 INSERT INTO `marc_subfield_structure` VALUES ('521', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35031 INSERT INTO `marc_subfield_structure` VALUES ('521', 'a', 'Target audience note', 'Target audience note', 1, 0, NULL, 5, NULL, NULL, '', NULL, 0, 'SER', '', '');
35032 INSERT INTO `marc_subfield_structure` VALUES ('521', 'b', 'Source', 'Source', 0, 0, NULL, 5, NULL, NULL, '', NULL, 0, 'SER', '', '');
35033 INSERT INTO `marc_subfield_structure` VALUES ('522', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35034 INSERT INTO `marc_subfield_structure` VALUES ('522', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35035 INSERT INTO `marc_subfield_structure` VALUES ('522', 'a', 'Geographic coverage note', 'Geographic coverage note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'SER', '', '');
35036 INSERT INTO `marc_subfield_structure` VALUES ('523', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35037 INSERT INTO `marc_subfield_structure` VALUES ('523', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35038 INSERT INTO `marc_subfield_structure` VALUES ('523', 'a', 'Time period of content note', 'Time period of content note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35039 INSERT INTO `marc_subfield_structure` VALUES ('524', '2', 'Source of schema used', 'Source of schema used', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35040 INSERT INTO `marc_subfield_structure` VALUES ('524', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35041 INSERT INTO `marc_subfield_structure` VALUES ('524', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35042 INSERT INTO `marc_subfield_structure` VALUES ('524', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35043 INSERT INTO `marc_subfield_structure` VALUES ('524', 'a', 'Preferred citation of described materials note', 'Preferred citation of described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35044 INSERT INTO `marc_subfield_structure` VALUES ('525', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35045 INSERT INTO `marc_subfield_structure` VALUES ('525', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35046 INSERT INTO `marc_subfield_structure` VALUES ('525', 'a', 'Supplement note', 'Supplement note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35047 INSERT INTO `marc_subfield_structure` VALUES ('525', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35048 INSERT INTO `marc_subfield_structure` VALUES ('526', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35049 INSERT INTO `marc_subfield_structure` VALUES ('526', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35050 INSERT INTO `marc_subfield_structure` VALUES ('526', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35051 INSERT INTO `marc_subfield_structure` VALUES ('526', 'a', 'Program name', 'Program name', 0, 0, '', 5, '', '', '', NULL, -1, 'SER', '', '');
35052 INSERT INTO `marc_subfield_structure` VALUES ('526', 'b', 'Interest level', 'Interest level', 0, 0, '', 5, '', '', '', NULL, -1, 'SER', '', '');
35053 INSERT INTO `marc_subfield_structure` VALUES ('526', 'c', 'Reading level', 'Reading level', 0, 0, '', 5, '', '', '', NULL, -1, 'SER', '', '');
35054 INSERT INTO `marc_subfield_structure` VALUES ('526', 'd', 'Title point value', 'Title point value', 0, 0, '', 5, '', '', '', NULL, -1, 'SER', '', '');
35055 INSERT INTO `marc_subfield_structure` VALUES ('526', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35056 INSERT INTO `marc_subfield_structure` VALUES ('526', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 5, '', '', '', NULL, 6, 'SER', '', '');
35057 INSERT INTO `marc_subfield_structure` VALUES ('526', 'z', 'Public note', 'Public note', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35058 INSERT INTO `marc_subfield_structure` VALUES ('527', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35059 INSERT INTO `marc_subfield_structure` VALUES ('527', 'a', 'Censorship note', 'Censorship note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35060 INSERT INTO `marc_subfield_structure` VALUES ('530', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35061 INSERT INTO `marc_subfield_structure` VALUES ('530', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35062 INSERT INTO `marc_subfield_structure` VALUES ('530', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35063 INSERT INTO `marc_subfield_structure` VALUES ('530', 'a', 'Additional physical form available note', 'Additional physical form available note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35064 INSERT INTO `marc_subfield_structure` VALUES ('530', 'b', 'Availability source', 'Availability source', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35065 INSERT INTO `marc_subfield_structure` VALUES ('530', 'c', 'Availability conditions', 'Availability conditions', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35066 INSERT INTO `marc_subfield_structure` VALUES ('530', 'd', 'Order number', 'Order number', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35067 INSERT INTO `marc_subfield_structure` VALUES ('530', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'SER', '', '');
35068 INSERT INTO `marc_subfield_structure` VALUES ('530', 'z', 'Source of note information (AM CF VM SE) [OBSOLETE]', 'Source of note information (AM CF VM SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35069 INSERT INTO `marc_subfield_structure` VALUES ('533', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35070 INSERT INTO `marc_subfield_structure` VALUES ('533', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35071 INSERT INTO `marc_subfield_structure` VALUES ('533', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35072 INSERT INTO `marc_subfield_structure` VALUES ('533', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35073 INSERT INTO `marc_subfield_structure` VALUES ('533', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35074 INSERT INTO `marc_subfield_structure` VALUES ('533', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35075 INSERT INTO `marc_subfield_structure` VALUES ('533', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35076 INSERT INTO `marc_subfield_structure` VALUES ('533', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35077 INSERT INTO `marc_subfield_structure` VALUES ('533', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35078 INSERT INTO `marc_subfield_structure` VALUES ('533', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35079 INSERT INTO `marc_subfield_structure` VALUES ('533', 'm', 'Dates and/or sequential designation of issues reproduced', 'Dates and/or sequential designation of issues reproduced', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35080 INSERT INTO `marc_subfield_structure` VALUES ('533', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35081 INSERT INTO `marc_subfield_structure` VALUES ('534', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35082 INSERT INTO `marc_subfield_structure` VALUES ('534', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35083 INSERT INTO `marc_subfield_structure` VALUES ('534', 'a', 'Main entry of original', 'Main entry of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35084 INSERT INTO `marc_subfield_structure` VALUES ('534', 'b', 'Edition statement of original', 'Edition statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35085 INSERT INTO `marc_subfield_structure` VALUES ('534', 'c', 'Publication, distribution, etc', 'Publication, distribution, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35086 INSERT INTO `marc_subfield_structure` VALUES ('534', 'e', 'Physical description, etc', 'Physical description, etc', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35087 INSERT INTO `marc_subfield_structure` VALUES ('534', 'f', 'Series statement of original', 'Series statement of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35088 INSERT INTO `marc_subfield_structure` VALUES ('534', 'k', 'Key title of original', 'Key title of original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35089 INSERT INTO `marc_subfield_structure` VALUES ('534', 'l', 'Location of original', 'Location of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35090 INSERT INTO `marc_subfield_structure` VALUES ('534', 'm', 'Material specific details', 'Material specific details', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35091 INSERT INTO `marc_subfield_structure` VALUES ('534', 'n', 'Note about original', 'Note about original', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35092 INSERT INTO `marc_subfield_structure` VALUES ('534', 'p', 'Introductory phrase', 'Introductory phrase', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35093 INSERT INTO `marc_subfield_structure` VALUES ('534', 't', 'Title statement of original', 'Title statement of original', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35094 INSERT INTO `marc_subfield_structure` VALUES ('534', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35095 INSERT INTO `marc_subfield_structure` VALUES ('534', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35096 INSERT INTO `marc_subfield_structure` VALUES ('535', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35097 INSERT INTO `marc_subfield_structure` VALUES ('535', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35098 INSERT INTO `marc_subfield_structure` VALUES ('535', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35099 INSERT INTO `marc_subfield_structure` VALUES ('535', 'a', 'Custodian', 'Custodian', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35100 INSERT INTO `marc_subfield_structure` VALUES ('535', 'b', 'Postal address', 'Postal address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35101 INSERT INTO `marc_subfield_structure` VALUES ('535', 'c', 'Country', 'Country', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35102 INSERT INTO `marc_subfield_structure` VALUES ('535', 'd', 'Telecommunications address', 'Telecommunications address', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35103 INSERT INTO `marc_subfield_structure` VALUES ('535', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35104 INSERT INTO `marc_subfield_structure` VALUES ('536', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35105 INSERT INTO `marc_subfield_structure` VALUES ('536', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35106 INSERT INTO `marc_subfield_structure` VALUES ('536', 'a', 'Text of note', 'Text of note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35107 INSERT INTO `marc_subfield_structure` VALUES ('536', 'b', 'Contract number', 'Contract number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35108 INSERT INTO `marc_subfield_structure` VALUES ('536', 'c', 'Grant number', 'Grant number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35109 INSERT INTO `marc_subfield_structure` VALUES ('536', 'd', 'Undifferentiated number', 'Undifferentiated number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35110 INSERT INTO `marc_subfield_structure` VALUES ('536', 'e', 'Program element number', 'Program element number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35111 INSERT INTO `marc_subfield_structure` VALUES ('536', 'f', 'Project number', 'Project number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35112 INSERT INTO `marc_subfield_structure` VALUES ('536', 'g', 'Task number', 'Task number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35113 INSERT INTO `marc_subfield_structure` VALUES ('536', 'h', 'Work unit number', 'Work unit number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35114 INSERT INTO `marc_subfield_structure` VALUES ('537', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35115 INSERT INTO `marc_subfield_structure` VALUES ('537', 'a', 'Source of data note', 'Source of data note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35116 INSERT INTO `marc_subfield_structure` VALUES ('538', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35117 INSERT INTO `marc_subfield_structure` VALUES ('538', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35118 INSERT INTO `marc_subfield_structure` VALUES ('538', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35119 INSERT INTO `marc_subfield_structure` VALUES ('538', 'a', 'System details note', 'System details note', 0, 0, '', 5, '', '', '', NULL, -1, 'SER', '', '');
35120 INSERT INTO `marc_subfield_structure` VALUES ('538', 'i', 'Display text', 'Display text', 0, 0, '', 5, '', '', '', NULL, -1, 'SER', '', '');
35121 INSERT INTO `marc_subfield_structure` VALUES ('538', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -1, 'SER', '', '');
35122 INSERT INTO `marc_subfield_structure` VALUES ('540', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35123 INSERT INTO `marc_subfield_structure` VALUES ('540', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35124 INSERT INTO `marc_subfield_structure` VALUES ('540', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35125 INSERT INTO `marc_subfield_structure` VALUES ('540', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35126 INSERT INTO `marc_subfield_structure` VALUES ('540', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35127 INSERT INTO `marc_subfield_structure` VALUES ('540', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35128 INSERT INTO `marc_subfield_structure` VALUES ('540', 'c', 'Authorization', 'Authorization', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35129 INSERT INTO `marc_subfield_structure` VALUES ('540', 'd', 'Authorized users', 'Authorized users', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35130 INSERT INTO `marc_subfield_structure` VALUES ('540', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'SER', '', '');
35131 INSERT INTO `marc_subfield_structure` VALUES ('541', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
35132 INSERT INTO `marc_subfield_structure` VALUES ('541', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
35133 INSERT INTO `marc_subfield_structure` VALUES ('541', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
35134 INSERT INTO `marc_subfield_structure` VALUES ('541', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
35135 INSERT INTO `marc_subfield_structure` VALUES ('541', 'a', 'Source of acquisition', 'Source of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'SER', '', '');
35136 INSERT INTO `marc_subfield_structure` VALUES ('541', 'b', 'Address', 'Address', 0, 0, '', 9, '', '', '', NULL, 1, 'SER', '', '');
35137 INSERT INTO `marc_subfield_structure` VALUES ('541', 'c', 'Method of acquisition', 'Method of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'SER', '', '');
35138 INSERT INTO `marc_subfield_structure` VALUES ('541', 'd', 'Date of acquisition', 'Date of acquisition', 0, 0, '', 9, '', '', '', NULL, 1, 'SER', '', '');
35139 INSERT INTO `marc_subfield_structure` VALUES ('541', 'e', 'Accession number', 'Accession number', 0, 0, '', 9, '', '', '', NULL, 1, 'SER', '', '');
35140 INSERT INTO `marc_subfield_structure` VALUES ('541', 'f', 'Owner', 'Owner', 0, 0, '', 9, '', '', '', NULL, 1, 'SER', '', '');
35141 INSERT INTO `marc_subfield_structure` VALUES ('541', 'h', 'Purchase price', 'Purchase price', 0, 0, '', 9, '', '', '', NULL, 1, 'SER', '', '');
35142 INSERT INTO `marc_subfield_structure` VALUES ('541', 'n', 'Extent', 'Extent', 0, 0, '', 9, '', '', '', NULL, 1, 'SER', '', '');
35143 INSERT INTO `marc_subfield_structure` VALUES ('541', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, 1, 'SER', '', '');
35144 INSERT INTO `marc_subfield_structure` VALUES ('543', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35145 INSERT INTO `marc_subfield_structure` VALUES ('543', 'a', 'Solicitation information note', 'Solicitation information note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35146 INSERT INTO `marc_subfield_structure` VALUES ('544', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35147 INSERT INTO `marc_subfield_structure` VALUES ('544', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35148 INSERT INTO `marc_subfield_structure` VALUES ('544', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35149 INSERT INTO `marc_subfield_structure` VALUES ('544', 'a', 'Custodian', 'Custodian', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35150 INSERT INTO `marc_subfield_structure` VALUES ('544', 'b', 'Address', 'Address', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35151 INSERT INTO `marc_subfield_structure` VALUES ('544', 'c', 'Country', 'Country', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35152 INSERT INTO `marc_subfield_structure` VALUES ('544', 'd', 'Title', 'Title', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35153 INSERT INTO `marc_subfield_structure` VALUES ('544', 'e', 'Provenance', 'Provenance', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35154 INSERT INTO `marc_subfield_structure` VALUES ('544', 'n', 'Note', 'Note', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35155 INSERT INTO `marc_subfield_structure` VALUES ('545', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35156 INSERT INTO `marc_subfield_structure` VALUES ('545', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35157 INSERT INTO `marc_subfield_structure` VALUES ('545', 'a', 'Biographical or historical note', 'Biographical or historical note', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35158 INSERT INTO `marc_subfield_structure` VALUES ('545', 'b', 'Expansion', 'Expansion', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35159 INSERT INTO `marc_subfield_structure` VALUES ('545', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'SER', '', '');
35160 INSERT INTO `marc_subfield_structure` VALUES ('546', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35161 INSERT INTO `marc_subfield_structure` VALUES ('546', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35162 INSERT INTO `marc_subfield_structure` VALUES ('546', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35163 INSERT INTO `marc_subfield_structure` VALUES ('546', 'a', 'Language note', 'Language note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'SER', '', '');
35164 INSERT INTO `marc_subfield_structure` VALUES ('546', 'b', 'Information code or alphabet', 'Information code or alphabet', 1, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'SER', '', '');
35165 INSERT INTO `marc_subfield_structure` VALUES ('546', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35166 INSERT INTO `marc_subfield_structure` VALUES ('547', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35167 INSERT INTO `marc_subfield_structure` VALUES ('547', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35168 INSERT INTO `marc_subfield_structure` VALUES ('547', 'a', 'Former title complexity note', 'Former title complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35169 INSERT INTO `marc_subfield_structure` VALUES ('547', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35170 INSERT INTO `marc_subfield_structure` VALUES ('550', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35171 INSERT INTO `marc_subfield_structure` VALUES ('550', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35172 INSERT INTO `marc_subfield_structure` VALUES ('550', 'a', 'Issuing body note', 'Issuing body note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35173 INSERT INTO `marc_subfield_structure` VALUES ('550', 'z', 'Source of note information (SE) [OBSOLETE]', 'Source of note information (SE) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35174 INSERT INTO `marc_subfield_structure` VALUES ('552', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35175 INSERT INTO `marc_subfield_structure` VALUES ('552', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35176 INSERT INTO `marc_subfield_structure` VALUES ('552', 'a', 'Entity type label', 'Entity type label', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35177 INSERT INTO `marc_subfield_structure` VALUES ('552', 'b', 'Entity type definition and source', 'Entity type definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35178 INSERT INTO `marc_subfield_structure` VALUES ('552', 'c', 'Attribute label', 'Attribute label', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35179 INSERT INTO `marc_subfield_structure` VALUES ('552', 'd', 'Attribute definition and source', 'Attribute definition and source', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35180 INSERT INTO `marc_subfield_structure` VALUES ('552', 'e', 'Enumerated domain value', 'Enumerated domain value', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35181 INSERT INTO `marc_subfield_structure` VALUES ('552', 'f', 'Enumerated domain value definition and source', 'Enumerated domain value definition and source', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35182 INSERT INTO `marc_subfield_structure` VALUES ('552', 'g', 'Range domain minimum and maximum', 'Range domain minimum and maximum', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35183 INSERT INTO `marc_subfield_structure` VALUES ('552', 'h', 'Codeset name and source', 'Codeset name and source', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35184 INSERT INTO `marc_subfield_structure` VALUES ('552', 'i', 'Unrepresentable domain', 'Unrepresentable domain', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35185 INSERT INTO `marc_subfield_structure` VALUES ('552', 'j', 'Attribute units of measurement and resolution', 'Attribute units of measurement and resolution', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35186 INSERT INTO `marc_subfield_structure` VALUES ('552', 'k', 'Beginning date and ending date of attribute values', 'Beginning date and ending date of attribute values', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35187 INSERT INTO `marc_subfield_structure` VALUES ('552', 'l', 'Attribute value accuracy', 'Attribute value accuracy', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35188 INSERT INTO `marc_subfield_structure` VALUES ('552', 'm', 'Attribute value accuracy explanation', 'Attribute value accuracy explanation', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35189 INSERT INTO `marc_subfield_structure` VALUES ('552', 'n', 'Attribute measurement frequency', 'Attribute measurement frequency', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35190 INSERT INTO `marc_subfield_structure` VALUES ('552', 'o', 'Entity and attribute overview', 'Entity and attribute overview', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35191 INSERT INTO `marc_subfield_structure` VALUES ('552', 'p', 'Entity and attribute detail citation', 'Entity and attribute detail citation', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35192 INSERT INTO `marc_subfield_structure` VALUES ('552', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 5, '', '', '', 1, -6, 'SER', '', '');
35193 INSERT INTO `marc_subfield_structure` VALUES ('552', 'z', 'Display note', 'Display note', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35194 INSERT INTO `marc_subfield_structure` VALUES ('555', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35195 INSERT INTO `marc_subfield_structure` VALUES ('555', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35196 INSERT INTO `marc_subfield_structure` VALUES ('555', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35197 INSERT INTO `marc_subfield_structure` VALUES ('555', 'a', 'Cumulative index/finding aids note', 'Cumulative index/finding aids note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35198 INSERT INTO `marc_subfield_structure` VALUES ('555', 'b', 'Availability source', 'Availability source', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35199 INSERT INTO `marc_subfield_structure` VALUES ('555', 'c', 'Degree of control', 'Degree of control', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35200 INSERT INTO `marc_subfield_structure` VALUES ('555', 'd', 'Bibliographic reference', 'Bibliographic reference', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35201 INSERT INTO `marc_subfield_structure` VALUES ('555', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'SER', '', '');
35202 INSERT INTO `marc_subfield_structure` VALUES ('556', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35203 INSERT INTO `marc_subfield_structure` VALUES ('556', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35204 INSERT INTO `marc_subfield_structure` VALUES ('556', 'a', 'Information about documentation note', 'Information about documentation note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35205 INSERT INTO `marc_subfield_structure` VALUES ('556', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35206 INSERT INTO `marc_subfield_structure` VALUES ('561', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35207 INSERT INTO `marc_subfield_structure` VALUES ('561', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35208 INSERT INTO `marc_subfield_structure` VALUES ('561', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35209 INSERT INTO `marc_subfield_structure` VALUES ('561', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35210 INSERT INTO `marc_subfield_structure` VALUES ('561', 'a', 'History', 'History', 0, 0, '', 5, '', '', '', NULL, 6, 'SER', '', '');
35211 INSERT INTO `marc_subfield_structure` VALUES ('561', 'b', 'Time of collation [OBSOLETE]', 'Time of collation [OBSOLETE]', 0, 0, '', 5, '', '', '', NULL, 6, 'SER', '', '');
35212 INSERT INTO `marc_subfield_structure` VALUES ('562', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35213 INSERT INTO `marc_subfield_structure` VALUES ('562', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'SER', '', '');
35214 INSERT INTO `marc_subfield_structure` VALUES ('562', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35215 INSERT INTO `marc_subfield_structure` VALUES ('562', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35216 INSERT INTO `marc_subfield_structure` VALUES ('562', 'a', 'Identifying markings', 'Identifying markings', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35217 INSERT INTO `marc_subfield_structure` VALUES ('562', 'b', 'Copy identification', 'Copy identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35218 INSERT INTO `marc_subfield_structure` VALUES ('562', 'c', 'Version identification', 'Version identification', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35219 INSERT INTO `marc_subfield_structure` VALUES ('562', 'd', 'Presentation format', 'Presentation format', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35220 INSERT INTO `marc_subfield_structure` VALUES ('562', 'e', 'Number of copies', 'Number of copies', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35221 INSERT INTO `marc_subfield_structure` VALUES ('563', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35222 INSERT INTO `marc_subfield_structure` VALUES ('563', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'SER', '', '');
35223 INSERT INTO `marc_subfield_structure` VALUES ('563', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35224 INSERT INTO `marc_subfield_structure` VALUES ('563', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35225 INSERT INTO `marc_subfield_structure` VALUES ('563', 'a', 'Binding note', 'Binding note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35226 INSERT INTO `marc_subfield_structure` VALUES ('563', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, NULL, 5, NULL, NULL, '', 1, -6, 'SER', '', '');
35227 INSERT INTO `marc_subfield_structure` VALUES ('565', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35228 INSERT INTO `marc_subfield_structure` VALUES ('565', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35229 INSERT INTO `marc_subfield_structure` VALUES ('565', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35230 INSERT INTO `marc_subfield_structure` VALUES ('565', 'a', 'Number of cases/variables', 'Number of cases/variables', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35231 INSERT INTO `marc_subfield_structure` VALUES ('565', 'b', 'Name of variable', 'Name of variable', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35232 INSERT INTO `marc_subfield_structure` VALUES ('565', 'c', 'Unit of analysis', 'Unit of analysis', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35233 INSERT INTO `marc_subfield_structure` VALUES ('565', 'd', 'Universe of data', 'Universe of data', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35234 INSERT INTO `marc_subfield_structure` VALUES ('565', 'e', 'Filing scheme or code', 'Filing scheme or code', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35235 INSERT INTO `marc_subfield_structure` VALUES ('567', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35236 INSERT INTO `marc_subfield_structure` VALUES ('567', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35237 INSERT INTO `marc_subfield_structure` VALUES ('567', 'a', 'Methodology note', 'Methodology note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35238 INSERT INTO `marc_subfield_structure` VALUES ('570', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35239 INSERT INTO `marc_subfield_structure` VALUES ('570', 'a', 'Editor note', 'Editor note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35240 INSERT INTO `marc_subfield_structure` VALUES ('570', 'z', 'Source of note information', 'Source of note information', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35241 INSERT INTO `marc_subfield_structure` VALUES ('580', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35242 INSERT INTO `marc_subfield_structure` VALUES ('580', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35243 INSERT INTO `marc_subfield_structure` VALUES ('580', 'a', 'Linking entry complexity note', 'Linking entry complexity note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35244 INSERT INTO `marc_subfield_structure` VALUES ('580', 'z', 'Source of note information [OBSOLETE]', 'Source of note information [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35245 INSERT INTO `marc_subfield_structure` VALUES ('581', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35246 INSERT INTO `marc_subfield_structure` VALUES ('581', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35247 INSERT INTO `marc_subfield_structure` VALUES ('581', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35248 INSERT INTO `marc_subfield_structure` VALUES ('581', 'a', 'Publications about described materials note', 'Publications about described materials note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35249 INSERT INTO `marc_subfield_structure` VALUES ('581', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35250 INSERT INTO `marc_subfield_structure` VALUES ('582', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35251 INSERT INTO `marc_subfield_structure` VALUES ('582', 'a', 'Related computer files note', 'Related computer files note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35252 INSERT INTO `marc_subfield_structure` VALUES ('583', '2', 'Source of term', 'Source of term', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
35253 INSERT INTO `marc_subfield_structure` VALUES ('583', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
35254 INSERT INTO `marc_subfield_structure` VALUES ('583', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
35255 INSERT INTO `marc_subfield_structure` VALUES ('583', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
35256 INSERT INTO `marc_subfield_structure` VALUES ('583', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
35257 INSERT INTO `marc_subfield_structure` VALUES ('583', 'a', 'Action', 'Action', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
35258 INSERT INTO `marc_subfield_structure` VALUES ('583', 'b', 'Action identification', 'Action identification', 1, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
35259 INSERT INTO `marc_subfield_structure` VALUES ('583', 'c', 'Time/date of action', 'Time/date of action', 1, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
35260 INSERT INTO `marc_subfield_structure` VALUES ('583', 'd', 'Action interval', 'Action interval', 1, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
35261 INSERT INTO `marc_subfield_structure` VALUES ('583', 'e', 'Contingency for action', 'Contingency for action', 1, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
35262 INSERT INTO `marc_subfield_structure` VALUES ('583', 'f', 'Authorization', 'Authorization', 1, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
35263 INSERT INTO `marc_subfield_structure` VALUES ('583', 'h', 'Jurisdiction', 'Jurisdiction', 0, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
35264 INSERT INTO `marc_subfield_structure` VALUES ('583', 'i', 'Method of action', 'Method of action', 1, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
35265 INSERT INTO `marc_subfield_structure` VALUES ('583', 'j', 'Site of action', 'Site of action', 1, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
35266 INSERT INTO `marc_subfield_structure` VALUES ('583', 'k', 'Action agent', 'Action agent', 1, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
35267 INSERT INTO `marc_subfield_structure` VALUES ('583', 'l', 'Status', 'Status', 1, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
35268 INSERT INTO `marc_subfield_structure` VALUES ('583', 'n', 'Extent', 'Extent', 1, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
35269 INSERT INTO `marc_subfield_structure` VALUES ('583', 'o', 'Type of unit', 'Type of unit', 1, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
35270 INSERT INTO `marc_subfield_structure` VALUES ('583', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -1, 'SER', '', '');
35271 INSERT INTO `marc_subfield_structure` VALUES ('583', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', NULL, 4, 'SER', '', '');
35272 INSERT INTO `marc_subfield_structure` VALUES ('583', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', NULL, -1, 'SER', '', '');
35273 INSERT INTO `marc_subfield_structure` VALUES ('584', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35274 INSERT INTO `marc_subfield_structure` VALUES ('584', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35275 INSERT INTO `marc_subfield_structure` VALUES ('584', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35276 INSERT INTO `marc_subfield_structure` VALUES ('584', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35277 INSERT INTO `marc_subfield_structure` VALUES ('584', 'a', 'Accumulation', 'Accumulation', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35278 INSERT INTO `marc_subfield_structure` VALUES ('584', 'b', 'Frequency of use', 'Frequency of use', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35279 INSERT INTO `marc_subfield_structure` VALUES ('585', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35280 INSERT INTO `marc_subfield_structure` VALUES ('585', '5', 'Institution to which field applies', 'Institution to which field applies', 0, -6, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35281 INSERT INTO `marc_subfield_structure` VALUES ('585', '6', 'Linkage', 'Linkage', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35282 INSERT INTO `marc_subfield_structure` VALUES ('585', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35283 INSERT INTO `marc_subfield_structure` VALUES ('585', 'a', 'Exhibitions note', 'Exhibitions note', 0, 0, '', 5, '', '', '', NULL, -6, 'SER', '', '');
35284 INSERT INTO `marc_subfield_structure` VALUES ('586', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35285 INSERT INTO `marc_subfield_structure` VALUES ('586', '6', 'Linkage', 'Linkage', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35286 INSERT INTO `marc_subfield_structure` VALUES ('586', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35287 INSERT INTO `marc_subfield_structure` VALUES ('586', 'a', 'Awards note', 'Awards note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -1, 'SER', '', '');
35288 INSERT INTO `marc_subfield_structure` VALUES ('590', '6', 'Linkage (RLIN)', 'Linkage (RLIN)', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35289 INSERT INTO `marc_subfield_structure` VALUES ('590', '8', 'Field link and sequence number (RLIN)', 'Field link and sequence number (RLIN)', 1, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35290 INSERT INTO `marc_subfield_structure` VALUES ('590', 'a', 'Local note', 'Local note', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35291 INSERT INTO `marc_subfield_structure` VALUES ('590', 'b', 'Provenance (VM) [OBSOLETE]', 'Provenance (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35292 INSERT INTO `marc_subfield_structure` VALUES ('590', 'c', 'Condition of individual reels (VM) [OBSOLETE]', 'Condition of individual reels (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35293 INSERT INTO `marc_subfield_structure` VALUES ('590', 'd', 'Origin of safety copy (VM) [OBSOLETE]', 'Origin of safety copy (VM) [OBSOLETE]', 0, 0, NULL, 5, NULL, NULL, '', NULL, -6, 'SER', '', '');
35294 INSERT INTO `marc_subfield_structure` VALUES ('600', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35295 INSERT INTO `marc_subfield_structure` VALUES ('600', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35296 INSERT INTO `marc_subfield_structure` VALUES ('600', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35297 INSERT INTO `marc_subfield_structure` VALUES ('600', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35298 INSERT INTO `marc_subfield_structure` VALUES ('600', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35299 INSERT INTO `marc_subfield_structure` VALUES ('600', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
35300 INSERT INTO `marc_subfield_structure` VALUES ('600', 'a', 'Personal name', 'Personal name', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35301 INSERT INTO `marc_subfield_structure` VALUES ('600', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35302 INSERT INTO `marc_subfield_structure` VALUES ('600', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35303 INSERT INTO `marc_subfield_structure` VALUES ('600', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35304 INSERT INTO `marc_subfield_structure` VALUES ('600', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35305 INSERT INTO `marc_subfield_structure` VALUES ('600', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35306 INSERT INTO `marc_subfield_structure` VALUES ('600', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35307 INSERT INTO `marc_subfield_structure` VALUES ('600', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35308 INSERT INTO `marc_subfield_structure` VALUES ('600', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35309 INSERT INTO `marc_subfield_structure` VALUES ('600', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35310 INSERT INTO `marc_subfield_structure` VALUES ('600', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35311 INSERT INTO `marc_subfield_structure` VALUES ('600', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35312 INSERT INTO `marc_subfield_structure` VALUES ('600', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35313 INSERT INTO `marc_subfield_structure` VALUES ('600', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35314 INSERT INTO `marc_subfield_structure` VALUES ('600', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35315 INSERT INTO `marc_subfield_structure` VALUES ('600', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35316 INSERT INTO `marc_subfield_structure` VALUES ('600', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35317 INSERT INTO `marc_subfield_structure` VALUES ('600', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35318 INSERT INTO `marc_subfield_structure` VALUES ('600', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35319 INSERT INTO `marc_subfield_structure` VALUES ('600', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35320 INSERT INTO `marc_subfield_structure` VALUES ('600', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35321 INSERT INTO `marc_subfield_structure` VALUES ('600', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35322 INSERT INTO `marc_subfield_structure` VALUES ('600', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35323 INSERT INTO `marc_subfield_structure` VALUES ('600', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35324 INSERT INTO `marc_subfield_structure` VALUES ('610', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35325 INSERT INTO `marc_subfield_structure` VALUES ('610', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35326 INSERT INTO `marc_subfield_structure` VALUES ('610', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35327 INSERT INTO `marc_subfield_structure` VALUES ('610', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35328 INSERT INTO `marc_subfield_structure` VALUES ('610', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35329 INSERT INTO `marc_subfield_structure` VALUES ('610', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
35330 INSERT INTO `marc_subfield_structure` VALUES ('610', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35331 INSERT INTO `marc_subfield_structure` VALUES ('610', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35332 INSERT INTO `marc_subfield_structure` VALUES ('610', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35333 INSERT INTO `marc_subfield_structure` VALUES ('610', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35334 INSERT INTO `marc_subfield_structure` VALUES ('610', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35335 INSERT INTO `marc_subfield_structure` VALUES ('610', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35336 INSERT INTO `marc_subfield_structure` VALUES ('610', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35337 INSERT INTO `marc_subfield_structure` VALUES ('610', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35338 INSERT INTO `marc_subfield_structure` VALUES ('610', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35339 INSERT INTO `marc_subfield_structure` VALUES ('610', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35340 INSERT INTO `marc_subfield_structure` VALUES ('610', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35341 INSERT INTO `marc_subfield_structure` VALUES ('610', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35342 INSERT INTO `marc_subfield_structure` VALUES ('610', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35343 INSERT INTO `marc_subfield_structure` VALUES ('610', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35344 INSERT INTO `marc_subfield_structure` VALUES ('610', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35345 INSERT INTO `marc_subfield_structure` VALUES ('610', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35346 INSERT INTO `marc_subfield_structure` VALUES ('610', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35347 INSERT INTO `marc_subfield_structure` VALUES ('610', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35348 INSERT INTO `marc_subfield_structure` VALUES ('610', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35349 INSERT INTO `marc_subfield_structure` VALUES ('610', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35350 INSERT INTO `marc_subfield_structure` VALUES ('610', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35351 INSERT INTO `marc_subfield_structure` VALUES ('610', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35352 INSERT INTO `marc_subfield_structure` VALUES ('611', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35353 INSERT INTO `marc_subfield_structure` VALUES ('611', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35354 INSERT INTO `marc_subfield_structure` VALUES ('611', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35355 INSERT INTO `marc_subfield_structure` VALUES ('611', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35356 INSERT INTO `marc_subfield_structure` VALUES ('611', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35357 INSERT INTO `marc_subfield_structure` VALUES ('611', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
35358 INSERT INTO `marc_subfield_structure` VALUES ('611', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35359 INSERT INTO `marc_subfield_structure` VALUES ('611', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'SER', '', '');
35360 INSERT INTO `marc_subfield_structure` VALUES ('611', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35361 INSERT INTO `marc_subfield_structure` VALUES ('611', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35362 INSERT INTO `marc_subfield_structure` VALUES ('611', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35363 INSERT INTO `marc_subfield_structure` VALUES ('611', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35364 INSERT INTO `marc_subfield_structure` VALUES ('611', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35365 INSERT INTO `marc_subfield_structure` VALUES ('611', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35366 INSERT INTO `marc_subfield_structure` VALUES ('611', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35367 INSERT INTO `marc_subfield_structure` VALUES ('611', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35368 INSERT INTO `marc_subfield_structure` VALUES ('611', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35369 INSERT INTO `marc_subfield_structure` VALUES ('611', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35370 INSERT INTO `marc_subfield_structure` VALUES ('611', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35371 INSERT INTO `marc_subfield_structure` VALUES ('611', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35372 INSERT INTO `marc_subfield_structure` VALUES ('611', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35373 INSERT INTO `marc_subfield_structure` VALUES ('611', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35374 INSERT INTO `marc_subfield_structure` VALUES ('611', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35375 INSERT INTO `marc_subfield_structure` VALUES ('611', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35376 INSERT INTO `marc_subfield_structure` VALUES ('611', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35377 INSERT INTO `marc_subfield_structure` VALUES ('611', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35378 INSERT INTO `marc_subfield_structure` VALUES ('630', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35379 INSERT INTO `marc_subfield_structure` VALUES ('630', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35380 INSERT INTO `marc_subfield_structure` VALUES ('630', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35381 INSERT INTO `marc_subfield_structure` VALUES ('630', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35382 INSERT INTO `marc_subfield_structure` VALUES ('630', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35383 INSERT INTO `marc_subfield_structure` VALUES ('630', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
35384 INSERT INTO `marc_subfield_structure` VALUES ('630', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35385 INSERT INTO `marc_subfield_structure` VALUES ('630', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35386 INSERT INTO `marc_subfield_structure` VALUES ('630', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35387 INSERT INTO `marc_subfield_structure` VALUES ('630', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35388 INSERT INTO `marc_subfield_structure` VALUES ('630', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35389 INSERT INTO `marc_subfield_structure` VALUES ('630', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35390 INSERT INTO `marc_subfield_structure` VALUES ('630', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35391 INSERT INTO `marc_subfield_structure` VALUES ('630', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35392 INSERT INTO `marc_subfield_structure` VALUES ('630', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35393 INSERT INTO `marc_subfield_structure` VALUES ('630', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35394 INSERT INTO `marc_subfield_structure` VALUES ('630', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35395 INSERT INTO `marc_subfield_structure` VALUES ('630', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35396 INSERT INTO `marc_subfield_structure` VALUES ('630', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35397 INSERT INTO `marc_subfield_structure` VALUES ('630', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35398 INSERT INTO `marc_subfield_structure` VALUES ('630', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35399 INSERT INTO `marc_subfield_structure` VALUES ('630', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35400 INSERT INTO `marc_subfield_structure` VALUES ('630', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35401 INSERT INTO `marc_subfield_structure` VALUES ('630', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35402 INSERT INTO `marc_subfield_structure` VALUES ('630', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35403 INSERT INTO `marc_subfield_structure` VALUES ('648', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35404 INSERT INTO `marc_subfield_structure` VALUES ('648', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35405 INSERT INTO `marc_subfield_structure` VALUES ('648', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35406 INSERT INTO `marc_subfield_structure` VALUES ('648', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35407 INSERT INTO `marc_subfield_structure` VALUES ('648', 'a', 'Chronological term', 'Chronological term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35408 INSERT INTO `marc_subfield_structure` VALUES ('648', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35409 INSERT INTO `marc_subfield_structure` VALUES ('648', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35410 INSERT INTO `marc_subfield_structure` VALUES ('648', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35411 INSERT INTO `marc_subfield_structure` VALUES ('648', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35412 INSERT INTO `marc_subfield_structure` VALUES ('650', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, 0, 'SER', '', '');
35413 INSERT INTO `marc_subfield_structure` VALUES ('650', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'SER', '', '');
35414 INSERT INTO `marc_subfield_structure` VALUES ('650', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35415 INSERT INTO `marc_subfield_structure` VALUES ('650', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'SER', '', '');
35416 INSERT INTO `marc_subfield_structure` VALUES ('650', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'SER', '', '');
35417 INSERT INTO `marc_subfield_structure` VALUES ('650', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
35418 INSERT INTO `marc_subfield_structure` VALUES ('650', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, 'bibliosubject.subject', 6, '', '', '', 0, 0, 'SER', '''6003'',''600a'',''600b'',''600c'',''600d'',''600e'',''600f'',''600g'',''600h'',''600k'',''600l'',''600m'',''600n'',''600o'',''600p'',''600r'',''600s'',''600t'',''600u'',''600x'',''600z'',''600y'',''600v'',''6103'',''610a'',''610b'',''610c'',''610d'',''610e'',''610f'',''610g'',''610h'',''610k'',''610l'',''610m'',''610n'',''610o'',''610p'',''610r'',''610s'',''610t'',''610u'',''610x'',''610z'',''610y'',''610v'',''6113'',''611a'',''611b'',''611c'',''611d'',''611e'',''611f'',''611g'',''611h'',''611k'',''611l'',''611m'',''611n'',''611o'',''611p'',''611r'',''611s'',''611t'',''611u'',''611x'',''611z'',''611y'',''611v'',''630a'',''630b'',''630c'',''630d'',''630e'',''630f'',''630g'',''630h'',''630k'',''630l'',''630m'',''630n'',''630o'',''630p'',''630r'',''630s'',''630t'',''630x'',''630z'',''630y'',''630v'',''6483'',''648a'',''648x'',''648z'',''648y'',''648v'',''6503'',''650b'',''650c'',''650d'',''650e'',''650x'',''650z'',''650y'',''650v'',''6513'',''651a'',''651b'',''651c'',''651d'',''651e'',''651x'',''651z'',''651y'',''651v'',''653a'',''6543'',''654a'',''654b'',''654x'',''654z'',''654y'',''654v'',''6553'',''655a'',''655b'',''655x'',''655z'',''655y'',''655v'',''6563'',''656a'',''656k'',''656x'',''656z'',''656y'',''656v'',''6573'',''657a'',''657x'',''657z'',''657y'',''657v'',''658a'',''658b'',''658c'',''658d'',''658v''', '');
35419 INSERT INTO `marc_subfield_structure` VALUES ('650', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'SER', '', '');
35420 INSERT INTO `marc_subfield_structure` VALUES ('650', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'SER', '', '');
35421 INSERT INTO `marc_subfield_structure` VALUES ('650', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -1, 'SER', '', '');
35422 INSERT INTO `marc_subfield_structure` VALUES ('650', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -1, 'SER', '', '');
35423 INSERT INTO `marc_subfield_structure` VALUES ('650', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'SER', '', '');
35424 INSERT INTO `marc_subfield_structure` VALUES ('650', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'SER', '', '');
35425 INSERT INTO `marc_subfield_structure` VALUES ('650', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'SER', '', '');
35426 INSERT INTO `marc_subfield_structure` VALUES ('650', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, 0, 'SER', '', '');
35427 INSERT INTO `marc_subfield_structure` VALUES ('651', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35428 INSERT INTO `marc_subfield_structure` VALUES ('651', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35429 INSERT INTO `marc_subfield_structure` VALUES ('651', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35430 INSERT INTO `marc_subfield_structure` VALUES ('651', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35431 INSERT INTO `marc_subfield_structure` VALUES ('651', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35432 INSERT INTO `marc_subfield_structure` VALUES ('651', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
35433 INSERT INTO `marc_subfield_structure` VALUES ('651', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35434 INSERT INTO `marc_subfield_structure` VALUES ('651', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35435 INSERT INTO `marc_subfield_structure` VALUES ('651', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35436 INSERT INTO `marc_subfield_structure` VALUES ('651', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35437 INSERT INTO `marc_subfield_structure` VALUES ('651', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35438 INSERT INTO `marc_subfield_structure` VALUES ('651', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35439 INSERT INTO `marc_subfield_structure` VALUES ('651', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35440 INSERT INTO `marc_subfield_structure` VALUES ('652', 'a', 'Geographic name of place element', 'Geographic name of place element', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35441 INSERT INTO `marc_subfield_structure` VALUES ('652', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35442 INSERT INTO `marc_subfield_structure` VALUES ('652', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35443 INSERT INTO `marc_subfield_structure` VALUES ('652', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35444 INSERT INTO `marc_subfield_structure` VALUES ('653', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35445 INSERT INTO `marc_subfield_structure` VALUES ('653', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35446 INSERT INTO `marc_subfield_structure` VALUES ('653', 'a', 'Uncontrolled term', 'Uncontrolled term', 1, 0, NULL, 6, NULL, NULL, '', NULL, -1, 'SER', '', '');
35447 INSERT INTO `marc_subfield_structure` VALUES ('654', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35448 INSERT INTO `marc_subfield_structure` VALUES ('654', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35449 INSERT INTO `marc_subfield_structure` VALUES ('654', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35450 INSERT INTO `marc_subfield_structure` VALUES ('654', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35451 INSERT INTO `marc_subfield_structure` VALUES ('654', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35452 INSERT INTO `marc_subfield_structure` VALUES ('654', 'a', 'Focus term', 'Focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35453 INSERT INTO `marc_subfield_structure` VALUES ('654', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35454 INSERT INTO `marc_subfield_structure` VALUES ('654', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35455 INSERT INTO `marc_subfield_structure` VALUES ('654', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35456 INSERT INTO `marc_subfield_structure` VALUES ('654', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35457 INSERT INTO `marc_subfield_structure` VALUES ('654', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35458 INSERT INTO `marc_subfield_structure` VALUES ('654', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35459 INSERT INTO `marc_subfield_structure` VALUES ('654', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35460 INSERT INTO `marc_subfield_structure` VALUES ('655', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35461 INSERT INTO `marc_subfield_structure` VALUES ('655', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35462 INSERT INTO `marc_subfield_structure` VALUES ('655', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35463 INSERT INTO `marc_subfield_structure` VALUES ('655', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35464 INSERT INTO `marc_subfield_structure` VALUES ('655', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35465 INSERT INTO `marc_subfield_structure` VALUES ('655', 'a', 'Genre/form data or focus term', 'Genre/form data or focus term', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35466 INSERT INTO `marc_subfield_structure` VALUES ('655', 'b', 'Non-focus term', 'Non-focus term', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35467 INSERT INTO `marc_subfield_structure` VALUES ('655', 'c', 'Facet/hierarchy designation', 'Facet/hierarchy designation', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35468 INSERT INTO `marc_subfield_structure` VALUES ('655', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35469 INSERT INTO `marc_subfield_structure` VALUES ('655', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35470 INSERT INTO `marc_subfield_structure` VALUES ('655', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35471 INSERT INTO `marc_subfield_structure` VALUES ('655', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35472 INSERT INTO `marc_subfield_structure` VALUES ('656', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35473 INSERT INTO `marc_subfield_structure` VALUES ('656', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35474 INSERT INTO `marc_subfield_structure` VALUES ('656', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35475 INSERT INTO `marc_subfield_structure` VALUES ('656', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35476 INSERT INTO `marc_subfield_structure` VALUES ('656', 'a', 'Occupation', 'Occupation', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35477 INSERT INTO `marc_subfield_structure` VALUES ('656', 'k', 'Form', 'Form', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35478 INSERT INTO `marc_subfield_structure` VALUES ('656', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35479 INSERT INTO `marc_subfield_structure` VALUES ('656', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35480 INSERT INTO `marc_subfield_structure` VALUES ('656', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35481 INSERT INTO `marc_subfield_structure` VALUES ('656', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35482 INSERT INTO `marc_subfield_structure` VALUES ('657', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35483 INSERT INTO `marc_subfield_structure` VALUES ('657', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35484 INSERT INTO `marc_subfield_structure` VALUES ('657', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35485 INSERT INTO `marc_subfield_structure` VALUES ('657', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35486 INSERT INTO `marc_subfield_structure` VALUES ('657', 'a', 'Function', 'Function', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35487 INSERT INTO `marc_subfield_structure` VALUES ('657', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35488 INSERT INTO `marc_subfield_structure` VALUES ('657', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35489 INSERT INTO `marc_subfield_structure` VALUES ('657', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35490 INSERT INTO `marc_subfield_structure` VALUES ('657', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35491 INSERT INTO `marc_subfield_structure` VALUES ('658', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35492 INSERT INTO `marc_subfield_structure` VALUES ('658', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35493 INSERT INTO `marc_subfield_structure` VALUES ('658', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35494 INSERT INTO `marc_subfield_structure` VALUES ('658', 'a', 'Main curriculum objective', 'Main curriculum objective', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35495 INSERT INTO `marc_subfield_structure` VALUES ('658', 'b', 'Subordinate curriculum objective', 'Subordinate curriculum objective', 1, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35496 INSERT INTO `marc_subfield_structure` VALUES ('658', 'c', 'Curriculum code', 'Curriculum code', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35497 INSERT INTO `marc_subfield_structure` VALUES ('658', 'd', 'Correlation factor', 'Correlation factor', 0, 0, '', 6, '', '', '', NULL, -1, 'SER', '', '');
35498 INSERT INTO `marc_subfield_structure` VALUES ('662', '2', 'Source of term', 'Source of term', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35499 INSERT INTO `marc_subfield_structure` VALUES ('662', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35500 INSERT INTO `marc_subfield_structure` VALUES ('662', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35501 INSERT INTO `marc_subfield_structure` VALUES ('662', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35502 INSERT INTO `marc_subfield_structure` VALUES ('662', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35503 INSERT INTO `marc_subfield_structure` VALUES ('662', 'a', 'Country or larger entity', 'Country or larger entity', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35504 INSERT INTO `marc_subfield_structure` VALUES ('662', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35505 INSERT INTO `marc_subfield_structure` VALUES ('662', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35506 INSERT INTO `marc_subfield_structure` VALUES ('662', 'd', 'City', 'City', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35507 INSERT INTO `marc_subfield_structure` VALUES ('662', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35508 INSERT INTO `marc_subfield_structure` VALUES ('662', 'f', 'City subsection', 'City subsection', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35509 INSERT INTO `marc_subfield_structure` VALUES ('662', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35510 INSERT INTO `marc_subfield_structure` VALUES ('662', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35511 INSERT INTO `marc_subfield_structure` VALUES ('690', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'SER', '', '');
35512 INSERT INTO `marc_subfield_structure` VALUES ('690', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', 0, -6, 'SER', '', '');
35513 INSERT INTO `marc_subfield_structure` VALUES ('690', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', 0, -6, 'SER', '', '');
35514 INSERT INTO `marc_subfield_structure` VALUES ('690', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', 0, -6, 'SER', '', '');
35515 INSERT INTO `marc_subfield_structure` VALUES ('690', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', 0, -6, 'SER', '', '');
35516 INSERT INTO `marc_subfield_structure` VALUES ('690', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
35517 INSERT INTO `marc_subfield_structure` VALUES ('690', 'a', 'Topical term or geographic name as entry element', 'Topical term or geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'SER', '', '');
35518 INSERT INTO `marc_subfield_structure` VALUES ('690', 'b', 'Topical term following geographic name as entry element', 'Topical term following geographic name as entry element', 0, 0, '', 6, '', '', '', 0, -1, 'SER', '', '');
35519 INSERT INTO `marc_subfield_structure` VALUES ('690', 'c', 'Location of event', 'Location of event', 0, 0, '', 6, '', '', '', 0, -1, 'SER', '', '');
35520 INSERT INTO `marc_subfield_structure` VALUES ('690', 'd', 'Active dates', 'Active dates', 0, 0, '', 6, '', '', '', 0, -6, 'SER', '', '');
35521 INSERT INTO `marc_subfield_structure` VALUES ('690', 'e', 'Relator term', 'Relator term', 0, 0, '', 6, '', '', '', 0, -6, 'SER', '', '');
35522 INSERT INTO `marc_subfield_structure` VALUES ('690', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'SER', '', '');
35523 INSERT INTO `marc_subfield_structure` VALUES ('690', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'SER', '', '');
35524 INSERT INTO `marc_subfield_structure` VALUES ('690', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'SER', '', '');
35525 INSERT INTO `marc_subfield_structure` VALUES ('690', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', 0, -1, 'SER', '', '');
35526 INSERT INTO `marc_subfield_structure` VALUES ('691', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'SER', '', '');
35527 INSERT INTO `marc_subfield_structure` VALUES ('691', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35528 INSERT INTO `marc_subfield_structure` VALUES ('691', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35529 INSERT INTO `marc_subfield_structure` VALUES ('691', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35530 INSERT INTO `marc_subfield_structure` VALUES ('691', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35531 INSERT INTO `marc_subfield_structure` VALUES ('691', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
35532 INSERT INTO `marc_subfield_structure` VALUES ('691', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35533 INSERT INTO `marc_subfield_structure` VALUES ('691', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35534 INSERT INTO `marc_subfield_structure` VALUES ('691', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35535 INSERT INTO `marc_subfield_structure` VALUES ('691', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35536 INSERT INTO `marc_subfield_structure` VALUES ('691', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35537 INSERT INTO `marc_subfield_structure` VALUES ('691', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35538 INSERT INTO `marc_subfield_structure` VALUES ('696', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'SER', '', '');
35539 INSERT INTO `marc_subfield_structure` VALUES ('696', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35540 INSERT INTO `marc_subfield_structure` VALUES ('696', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35541 INSERT INTO `marc_subfield_structure` VALUES ('696', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35542 INSERT INTO `marc_subfield_structure` VALUES ('696', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35543 INSERT INTO `marc_subfield_structure` VALUES ('696', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35544 INSERT INTO `marc_subfield_structure` VALUES ('696', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
35545 INSERT INTO `marc_subfield_structure` VALUES ('696', 'a', 'Personal name', 'Personal name', 0, 0, '', 3, '', '', '', NULL, -6, 'SER', '', '');
35546 INSERT INTO `marc_subfield_structure` VALUES ('696', 'b', 'Numeration', 'Numeration', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35547 INSERT INTO `marc_subfield_structure` VALUES ('696', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35548 INSERT INTO `marc_subfield_structure` VALUES ('696', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35549 INSERT INTO `marc_subfield_structure` VALUES ('696', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35550 INSERT INTO `marc_subfield_structure` VALUES ('696', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35551 INSERT INTO `marc_subfield_structure` VALUES ('696', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35552 INSERT INTO `marc_subfield_structure` VALUES ('696', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35553 INSERT INTO `marc_subfield_structure` VALUES ('696', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35554 INSERT INTO `marc_subfield_structure` VALUES ('696', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35555 INSERT INTO `marc_subfield_structure` VALUES ('696', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35556 INSERT INTO `marc_subfield_structure` VALUES ('696', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35557 INSERT INTO `marc_subfield_structure` VALUES ('696', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35558 INSERT INTO `marc_subfield_structure` VALUES ('696', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35559 INSERT INTO `marc_subfield_structure` VALUES ('696', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35560 INSERT INTO `marc_subfield_structure` VALUES ('696', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35561 INSERT INTO `marc_subfield_structure` VALUES ('696', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35562 INSERT INTO `marc_subfield_structure` VALUES ('696', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35563 INSERT INTO `marc_subfield_structure` VALUES ('696', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35564 INSERT INTO `marc_subfield_structure` VALUES ('696', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35565 INSERT INTO `marc_subfield_structure` VALUES ('696', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35566 INSERT INTO `marc_subfield_structure` VALUES ('696', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35567 INSERT INTO `marc_subfield_structure` VALUES ('696', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35568 INSERT INTO `marc_subfield_structure` VALUES ('696', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35569 INSERT INTO `marc_subfield_structure` VALUES ('697', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'SER', '', '');
35570 INSERT INTO `marc_subfield_structure` VALUES ('697', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35571 INSERT INTO `marc_subfield_structure` VALUES ('697', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35572 INSERT INTO `marc_subfield_structure` VALUES ('697', '4', 'Relator code', 'Relator code', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35573 INSERT INTO `marc_subfield_structure` VALUES ('697', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35574 INSERT INTO `marc_subfield_structure` VALUES ('697', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35575 INSERT INTO `marc_subfield_structure` VALUES ('697', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
35576 INSERT INTO `marc_subfield_structure` VALUES ('697', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35577 INSERT INTO `marc_subfield_structure` VALUES ('697', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35578 INSERT INTO `marc_subfield_structure` VALUES ('697', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35579 INSERT INTO `marc_subfield_structure` VALUES ('697', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35580 INSERT INTO `marc_subfield_structure` VALUES ('697', 'e', 'Relator term', 'Relator term', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35581 INSERT INTO `marc_subfield_structure` VALUES ('697', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35582 INSERT INTO `marc_subfield_structure` VALUES ('697', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35583 INSERT INTO `marc_subfield_structure` VALUES ('697', 'h', 'Medium', 'Medium', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35584 INSERT INTO `marc_subfield_structure` VALUES ('697', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35585 INSERT INTO `marc_subfield_structure` VALUES ('697', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35586 INSERT INTO `marc_subfield_structure` VALUES ('697', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35587 INSERT INTO `marc_subfield_structure` VALUES ('697', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35588 INSERT INTO `marc_subfield_structure` VALUES ('697', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35589 INSERT INTO `marc_subfield_structure` VALUES ('697', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35590 INSERT INTO `marc_subfield_structure` VALUES ('697', 'r', 'Key for music', 'Key for music', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35591 INSERT INTO `marc_subfield_structure` VALUES ('697', 's', 'Version', 'Version', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35592 INSERT INTO `marc_subfield_structure` VALUES ('697', 't', 'Title of a work', 'Title of a work', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35593 INSERT INTO `marc_subfield_structure` VALUES ('697', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35594 INSERT INTO `marc_subfield_structure` VALUES ('697', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35595 INSERT INTO `marc_subfield_structure` VALUES ('697', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35596 INSERT INTO `marc_subfield_structure` VALUES ('697', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35597 INSERT INTO `marc_subfield_structure` VALUES ('697', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
35598 INSERT INTO `marc_subfield_structure` VALUES ('698', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'SER', '', '');
35599 INSERT INTO `marc_subfield_structure` VALUES ('698', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35600 INSERT INTO `marc_subfield_structure` VALUES ('698', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35601 INSERT INTO `marc_subfield_structure` VALUES ('698', '4', 'Relator code', 'Relator code', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35602 INSERT INTO `marc_subfield_structure` VALUES ('698', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35603 INSERT INTO `marc_subfield_structure` VALUES ('698', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35604 INSERT INTO `marc_subfield_structure` VALUES ('698', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
35605 INSERT INTO `marc_subfield_structure` VALUES ('698', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35606 INSERT INTO `marc_subfield_structure` VALUES ('698', 'b', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 'Number  (BK CF MP MU SE VM MX)  [OBSOLETE]', 1, 0, NULL, -1, NULL, NULL, '', NULL, -6, 'SER', '', '');
35607 INSERT INTO `marc_subfield_structure` VALUES ('698', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35608 INSERT INTO `marc_subfield_structure` VALUES ('698', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35609 INSERT INTO `marc_subfield_structure` VALUES ('698', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35610 INSERT INTO `marc_subfield_structure` VALUES ('698', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35611 INSERT INTO `marc_subfield_structure` VALUES ('698', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35612 INSERT INTO `marc_subfield_structure` VALUES ('698', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35613 INSERT INTO `marc_subfield_structure` VALUES ('698', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35614 INSERT INTO `marc_subfield_structure` VALUES ('698', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35615 INSERT INTO `marc_subfield_structure` VALUES ('698', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35616 INSERT INTO `marc_subfield_structure` VALUES ('698', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35617 INSERT INTO `marc_subfield_structure` VALUES ('698', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35618 INSERT INTO `marc_subfield_structure` VALUES ('698', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35619 INSERT INTO `marc_subfield_structure` VALUES ('698', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35620 INSERT INTO `marc_subfield_structure` VALUES ('698', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35621 INSERT INTO `marc_subfield_structure` VALUES ('698', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35622 INSERT INTO `marc_subfield_structure` VALUES ('698', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35623 INSERT INTO `marc_subfield_structure` VALUES ('698', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35624 INSERT INTO `marc_subfield_structure` VALUES ('698', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35625 INSERT INTO `marc_subfield_structure` VALUES ('699', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 6, '', '', '', 0, -6, 'SER', '', '');
35626 INSERT INTO `marc_subfield_structure` VALUES ('699', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35627 INSERT INTO `marc_subfield_structure` VALUES ('699', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35628 INSERT INTO `marc_subfield_structure` VALUES ('699', '6', 'Linkage', 'Linkage', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35629 INSERT INTO `marc_subfield_structure` VALUES ('699', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35630 INSERT INTO `marc_subfield_structure` VALUES ('699', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 6, '', '', '', 0, -5, 'SER', '', '');
35631 INSERT INTO `marc_subfield_structure` VALUES ('699', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35632 INSERT INTO `marc_subfield_structure` VALUES ('699', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35633 INSERT INTO `marc_subfield_structure` VALUES ('699', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35634 INSERT INTO `marc_subfield_structure` VALUES ('699', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35635 INSERT INTO `marc_subfield_structure` VALUES ('699', 'h', 'Medium', 'Medium', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35636 INSERT INTO `marc_subfield_structure` VALUES ('699', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35637 INSERT INTO `marc_subfield_structure` VALUES ('699', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35638 INSERT INTO `marc_subfield_structure` VALUES ('699', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35639 INSERT INTO `marc_subfield_structure` VALUES ('699', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35640 INSERT INTO `marc_subfield_structure` VALUES ('699', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35641 INSERT INTO `marc_subfield_structure` VALUES ('699', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35642 INSERT INTO `marc_subfield_structure` VALUES ('699', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35643 INSERT INTO `marc_subfield_structure` VALUES ('699', 's', 'Version', 'Version', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35644 INSERT INTO `marc_subfield_structure` VALUES ('699', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35645 INSERT INTO `marc_subfield_structure` VALUES ('699', 'v', 'Form subdivision', 'Form subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35646 INSERT INTO `marc_subfield_structure` VALUES ('699', 'x', 'General subdivision', 'General subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35647 INSERT INTO `marc_subfield_structure` VALUES ('699', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, NULL, 6, NULL, NULL, '', NULL, -6, 'SER', '', '');
35648 INSERT INTO `marc_subfield_structure` VALUES ('700', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35649 INSERT INTO `marc_subfield_structure` VALUES ('700', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35650 INSERT INTO `marc_subfield_structure` VALUES ('700', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35651 INSERT INTO `marc_subfield_structure` VALUES ('700', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35652 INSERT INTO `marc_subfield_structure` VALUES ('700', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35653 INSERT INTO `marc_subfield_structure` VALUES ('700', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SER', '', '');
35654 INSERT INTO `marc_subfield_structure` VALUES ('700', 'a', 'Personal name', 'Personal name', 0, 0, 'additionalauthors.author', 7, '', '', '', NULL, -1, 'SER', '', '');
35655 INSERT INTO `marc_subfield_structure` VALUES ('700', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -1, 'SER', '', '');
35656 INSERT INTO `marc_subfield_structure` VALUES ('700', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -1, 'SER', '', '');
35657 INSERT INTO `marc_subfield_structure` VALUES ('700', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -1, 'SER', '', '');
35658 INSERT INTO `marc_subfield_structure` VALUES ('700', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'SER', '', '');
35659 INSERT INTO `marc_subfield_structure` VALUES ('700', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35660 INSERT INTO `marc_subfield_structure` VALUES ('700', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35661 INSERT INTO `marc_subfield_structure` VALUES ('700', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35662 INSERT INTO `marc_subfield_structure` VALUES ('700', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35663 INSERT INTO `marc_subfield_structure` VALUES ('700', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35664 INSERT INTO `marc_subfield_structure` VALUES ('700', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35665 INSERT INTO `marc_subfield_structure` VALUES ('700', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35666 INSERT INTO `marc_subfield_structure` VALUES ('700', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35667 INSERT INTO `marc_subfield_structure` VALUES ('700', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35668 INSERT INTO `marc_subfield_structure` VALUES ('700', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35669 INSERT INTO `marc_subfield_structure` VALUES ('700', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -1, 'SER', '', '');
35670 INSERT INTO `marc_subfield_structure` VALUES ('700', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35671 INSERT INTO `marc_subfield_structure` VALUES ('700', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35672 INSERT INTO `marc_subfield_structure` VALUES ('700', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35673 INSERT INTO `marc_subfield_structure` VALUES ('700', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35674 INSERT INTO `marc_subfield_structure` VALUES ('700', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35675 INSERT INTO `marc_subfield_structure` VALUES ('705', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35676 INSERT INTO `marc_subfield_structure` VALUES ('705', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35677 INSERT INTO `marc_subfield_structure` VALUES ('705', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35678 INSERT INTO `marc_subfield_structure` VALUES ('705', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35679 INSERT INTO `marc_subfield_structure` VALUES ('705', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35680 INSERT INTO `marc_subfield_structure` VALUES ('705', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35681 INSERT INTO `marc_subfield_structure` VALUES ('705', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35682 INSERT INTO `marc_subfield_structure` VALUES ('705', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35683 INSERT INTO `marc_subfield_structure` VALUES ('705', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35684 INSERT INTO `marc_subfield_structure` VALUES ('705', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35685 INSERT INTO `marc_subfield_structure` VALUES ('705', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35686 INSERT INTO `marc_subfield_structure` VALUES ('705', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35687 INSERT INTO `marc_subfield_structure` VALUES ('705', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35688 INSERT INTO `marc_subfield_structure` VALUES ('705', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35689 INSERT INTO `marc_subfield_structure` VALUES ('705', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35690 INSERT INTO `marc_subfield_structure` VALUES ('705', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35691 INSERT INTO `marc_subfield_structure` VALUES ('705', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35692 INSERT INTO `marc_subfield_structure` VALUES ('710', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35693 INSERT INTO `marc_subfield_structure` VALUES ('710', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35694 INSERT INTO `marc_subfield_structure` VALUES ('710', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35695 INSERT INTO `marc_subfield_structure` VALUES ('710', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35696 INSERT INTO `marc_subfield_structure` VALUES ('710', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35697 INSERT INTO `marc_subfield_structure` VALUES ('710', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SER', '', '');
35698 INSERT INTO `marc_subfield_structure` VALUES ('710', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -1, 'SER', '', '');
35699 INSERT INTO `marc_subfield_structure` VALUES ('710', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -1, 'SER', '', '');
35700 INSERT INTO `marc_subfield_structure` VALUES ('710', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -1, 'SER', '', '');
35701 INSERT INTO `marc_subfield_structure` VALUES ('710', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -1, 'SER', '', '');
35702 INSERT INTO `marc_subfield_structure` VALUES ('710', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -1, 'SER', '', '');
35703 INSERT INTO `marc_subfield_structure` VALUES ('710', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35704 INSERT INTO `marc_subfield_structure` VALUES ('710', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35705 INSERT INTO `marc_subfield_structure` VALUES ('710', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35706 INSERT INTO `marc_subfield_structure` VALUES ('710', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35707 INSERT INTO `marc_subfield_structure` VALUES ('710', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35708 INSERT INTO `marc_subfield_structure` VALUES ('710', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35709 INSERT INTO `marc_subfield_structure` VALUES ('710', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35710 INSERT INTO `marc_subfield_structure` VALUES ('710', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35711 INSERT INTO `marc_subfield_structure` VALUES ('710', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35712 INSERT INTO `marc_subfield_structure` VALUES ('710', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35713 INSERT INTO `marc_subfield_structure` VALUES ('710', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35714 INSERT INTO `marc_subfield_structure` VALUES ('710', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35715 INSERT INTO `marc_subfield_structure` VALUES ('710', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35716 INSERT INTO `marc_subfield_structure` VALUES ('710', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35717 INSERT INTO `marc_subfield_structure` VALUES ('711', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35718 INSERT INTO `marc_subfield_structure` VALUES ('711', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35719 INSERT INTO `marc_subfield_structure` VALUES ('711', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35720 INSERT INTO `marc_subfield_structure` VALUES ('711', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35721 INSERT INTO `marc_subfield_structure` VALUES ('711', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35722 INSERT INTO `marc_subfield_structure` VALUES ('711', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SER', '', '');
35723 INSERT INTO `marc_subfield_structure` VALUES ('711', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'SER', '', '');
35724 INSERT INTO `marc_subfield_structure` VALUES ('711', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35725 INSERT INTO `marc_subfield_structure` VALUES ('711', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'SER', '', '');
35726 INSERT INTO `marc_subfield_structure` VALUES ('711', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'SER', '', '');
35727 INSERT INTO `marc_subfield_structure` VALUES ('711', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'SER', '', '');
35728 INSERT INTO `marc_subfield_structure` VALUES ('711', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35729 INSERT INTO `marc_subfield_structure` VALUES ('711', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35730 INSERT INTO `marc_subfield_structure` VALUES ('711', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35731 INSERT INTO `marc_subfield_structure` VALUES ('711', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35732 INSERT INTO `marc_subfield_structure` VALUES ('711', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35733 INSERT INTO `marc_subfield_structure` VALUES ('711', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35734 INSERT INTO `marc_subfield_structure` VALUES ('711', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35735 INSERT INTO `marc_subfield_structure` VALUES ('711', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35736 INSERT INTO `marc_subfield_structure` VALUES ('711', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35737 INSERT INTO `marc_subfield_structure` VALUES ('711', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35738 INSERT INTO `marc_subfield_structure` VALUES ('711', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35739 INSERT INTO `marc_subfield_structure` VALUES ('711', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35740 INSERT INTO `marc_subfield_structure` VALUES ('715', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'SER', '', '');
35741 INSERT INTO `marc_subfield_structure` VALUES ('715', 'a', 'Corporate name or jurisdiction name', 'Corporate name or jurisdiction name', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35742 INSERT INTO `marc_subfield_structure` VALUES ('715', 'b', 'Subordinate unit', 'Subordinate unit', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35743 INSERT INTO `marc_subfield_structure` VALUES ('715', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35744 INSERT INTO `marc_subfield_structure` VALUES ('715', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35745 INSERT INTO `marc_subfield_structure` VALUES ('715', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35746 INSERT INTO `marc_subfield_structure` VALUES ('715', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35747 INSERT INTO `marc_subfield_structure` VALUES ('715', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35748 INSERT INTO `marc_subfield_structure` VALUES ('715', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35749 INSERT INTO `marc_subfield_structure` VALUES ('715', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35750 INSERT INTO `marc_subfield_structure` VALUES ('715', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35751 INSERT INTO `marc_subfield_structure` VALUES ('715', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35752 INSERT INTO `marc_subfield_structure` VALUES ('715', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35753 INSERT INTO `marc_subfield_structure` VALUES ('715', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35754 INSERT INTO `marc_subfield_structure` VALUES ('715', 'u', 'Nonprinting information', 'Nonprinting information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35755 INSERT INTO `marc_subfield_structure` VALUES ('720', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35756 INSERT INTO `marc_subfield_structure` VALUES ('720', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35757 INSERT INTO `marc_subfield_structure` VALUES ('720', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35758 INSERT INTO `marc_subfield_structure` VALUES ('720', 'a', 'Name', 'Name', 0, 0, '', 7, NULL, NULL, '', NULL, -1, 'SER', '', '');
35759 INSERT INTO `marc_subfield_structure` VALUES ('720', 'e', 'Relator term', 'Relator term', 1, 0, NULL, 7, NULL, NULL, '', NULL, -1, 'SER', '', '');
35760 INSERT INTO `marc_subfield_structure` VALUES ('730', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35761 INSERT INTO `marc_subfield_structure` VALUES ('730', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35762 INSERT INTO `marc_subfield_structure` VALUES ('730', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35763 INSERT INTO `marc_subfield_structure` VALUES ('730', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35764 INSERT INTO `marc_subfield_structure` VALUES ('730', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SER', '', '');
35765 INSERT INTO `marc_subfield_structure` VALUES ('730', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35766 INSERT INTO `marc_subfield_structure` VALUES ('730', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35767 INSERT INTO `marc_subfield_structure` VALUES ('730', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35768 INSERT INTO `marc_subfield_structure` VALUES ('730', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35769 INSERT INTO `marc_subfield_structure` VALUES ('730', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35770 INSERT INTO `marc_subfield_structure` VALUES ('730', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35771 INSERT INTO `marc_subfield_structure` VALUES ('730', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35772 INSERT INTO `marc_subfield_structure` VALUES ('730', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35773 INSERT INTO `marc_subfield_structure` VALUES ('730', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35774 INSERT INTO `marc_subfield_structure` VALUES ('730', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35775 INSERT INTO `marc_subfield_structure` VALUES ('730', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35776 INSERT INTO `marc_subfield_structure` VALUES ('730', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35777 INSERT INTO `marc_subfield_structure` VALUES ('730', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35778 INSERT INTO `marc_subfield_structure` VALUES ('730', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35779 INSERT INTO `marc_subfield_structure` VALUES ('730', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35780 INSERT INTO `marc_subfield_structure` VALUES ('740', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35781 INSERT INTO `marc_subfield_structure` VALUES ('740', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35782 INSERT INTO `marc_subfield_structure` VALUES ('740', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35783 INSERT INTO `marc_subfield_structure` VALUES ('740', 'a', 'Uncontrolled related/analytical title', 'Uncontrolled related/analytical title', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35784 INSERT INTO `marc_subfield_structure` VALUES ('740', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35785 INSERT INTO `marc_subfield_structure` VALUES ('740', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35786 INSERT INTO `marc_subfield_structure` VALUES ('740', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35787 INSERT INTO `marc_subfield_structure` VALUES ('752', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35788 INSERT INTO `marc_subfield_structure` VALUES ('752', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35789 INSERT INTO `marc_subfield_structure` VALUES ('752', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35790 INSERT INTO `marc_subfield_structure` VALUES ('752', 'a', 'Country or larger entity', 'Country or larger entity', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35791 INSERT INTO `marc_subfield_structure` VALUES ('752', 'b', 'First-order political jurisdiction', 'First-order political jurisdiction', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35792 INSERT INTO `marc_subfield_structure` VALUES ('752', 'c', 'Intermediate political jurisdiction', 'Intermediate political jurisdiction', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35793 INSERT INTO `marc_subfield_structure` VALUES ('752', 'd', 'City', 'City', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35794 INSERT INTO `marc_subfield_structure` VALUES ('752', 'f', 'City subsection', 'City subsection', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35795 INSERT INTO `marc_subfield_structure` VALUES ('752', 'g', 'Other nonjurisdictional geographic region and feature', 'Other nonjurisdictional geographic region and feature', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35796 INSERT INTO `marc_subfield_structure` VALUES ('752', 'h', 'Extraterrestrial area', 'Extraterrestrial area', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35797 INSERT INTO `marc_subfield_structure` VALUES ('753', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35798 INSERT INTO `marc_subfield_structure` VALUES ('753', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35799 INSERT INTO `marc_subfield_structure` VALUES ('753', 'a', 'Make and model of machine', 'Make and model of machine', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35800 INSERT INTO `marc_subfield_structure` VALUES ('753', 'b', 'Programming language', 'Programming language', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35801 INSERT INTO `marc_subfield_structure` VALUES ('753', 'c', 'Operating system', 'Operating system', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35802 INSERT INTO `marc_subfield_structure` VALUES ('754', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35803 INSERT INTO `marc_subfield_structure` VALUES ('754', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35804 INSERT INTO `marc_subfield_structure` VALUES ('754', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35805 INSERT INTO `marc_subfield_structure` VALUES ('754', 'a', 'Taxonomic name', 'Taxonomic name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35806 INSERT INTO `marc_subfield_structure` VALUES ('754', 'c', 'Taxonomic category', 'Taxonomic category', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35807 INSERT INTO `marc_subfield_structure` VALUES ('754', 'd', 'Common or alternative name', 'Common or alternative name', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35808 INSERT INTO `marc_subfield_structure` VALUES ('754', 'x', 'Non-public note', 'Non-public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35809 INSERT INTO `marc_subfield_structure` VALUES ('754', 'z', 'Public note', 'Public note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35810 INSERT INTO `marc_subfield_structure` VALUES ('755', '2', 'Source of taxonomic identification', 'Source of taxonomic identification', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35811 INSERT INTO `marc_subfield_structure` VALUES ('755', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35812 INSERT INTO `marc_subfield_structure` VALUES ('755', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35813 INSERT INTO `marc_subfield_structure` VALUES ('755', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35814 INSERT INTO `marc_subfield_structure` VALUES ('755', 'a', 'Access term', 'Access term', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35815 INSERT INTO `marc_subfield_structure` VALUES ('755', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35816 INSERT INTO `marc_subfield_structure` VALUES ('755', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35817 INSERT INTO `marc_subfield_structure` VALUES ('755', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
35818 INSERT INTO `marc_subfield_structure` VALUES ('760', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35819 INSERT INTO `marc_subfield_structure` VALUES ('760', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35820 INSERT INTO `marc_subfield_structure` VALUES ('760', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35821 INSERT INTO `marc_subfield_structure` VALUES ('760', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35822 INSERT INTO `marc_subfield_structure` VALUES ('760', 'b', 'Edition', 'Edition', 0, 0, NULL, -6, NULL, NULL, '', NULL, 0, 'SER', '', '');
35823 INSERT INTO `marc_subfield_structure` VALUES ('760', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35824 INSERT INTO `marc_subfield_structure` VALUES ('760', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35825 INSERT INTO `marc_subfield_structure` VALUES ('760', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35826 INSERT INTO `marc_subfield_structure` VALUES ('760', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35827 INSERT INTO `marc_subfield_structure` VALUES ('760', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35828 INSERT INTO `marc_subfield_structure` VALUES ('760', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35829 INSERT INTO `marc_subfield_structure` VALUES ('760', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35830 INSERT INTO `marc_subfield_structure` VALUES ('760', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35831 INSERT INTO `marc_subfield_structure` VALUES ('760', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35832 INSERT INTO `marc_subfield_structure` VALUES ('760', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35833 INSERT INTO `marc_subfield_structure` VALUES ('760', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35834 INSERT INTO `marc_subfield_structure` VALUES ('760', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35835 INSERT INTO `marc_subfield_structure` VALUES ('760', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35836 INSERT INTO `marc_subfield_structure` VALUES ('760', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35837 INSERT INTO `marc_subfield_structure` VALUES ('762', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35838 INSERT INTO `marc_subfield_structure` VALUES ('762', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35839 INSERT INTO `marc_subfield_structure` VALUES ('762', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35840 INSERT INTO `marc_subfield_structure` VALUES ('762', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35841 INSERT INTO `marc_subfield_structure` VALUES ('762', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35842 INSERT INTO `marc_subfield_structure` VALUES ('762', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35843 INSERT INTO `marc_subfield_structure` VALUES ('762', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35844 INSERT INTO `marc_subfield_structure` VALUES ('762', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35845 INSERT INTO `marc_subfield_structure` VALUES ('762', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35846 INSERT INTO `marc_subfield_structure` VALUES ('762', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35847 INSERT INTO `marc_subfield_structure` VALUES ('762', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35848 INSERT INTO `marc_subfield_structure` VALUES ('762', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35849 INSERT INTO `marc_subfield_structure` VALUES ('762', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35850 INSERT INTO `marc_subfield_structure` VALUES ('762', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35851 INSERT INTO `marc_subfield_structure` VALUES ('762', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35852 INSERT INTO `marc_subfield_structure` VALUES ('762', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35853 INSERT INTO `marc_subfield_structure` VALUES ('762', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35854 INSERT INTO `marc_subfield_structure` VALUES ('762', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35855 INSERT INTO `marc_subfield_structure` VALUES ('762', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35856 INSERT INTO `marc_subfield_structure` VALUES ('765', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35857 INSERT INTO `marc_subfield_structure` VALUES ('765', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35858 INSERT INTO `marc_subfield_structure` VALUES ('765', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35859 INSERT INTO `marc_subfield_structure` VALUES ('765', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35860 INSERT INTO `marc_subfield_structure` VALUES ('765', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35861 INSERT INTO `marc_subfield_structure` VALUES ('765', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35862 INSERT INTO `marc_subfield_structure` VALUES ('765', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35863 INSERT INTO `marc_subfield_structure` VALUES ('765', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35864 INSERT INTO `marc_subfield_structure` VALUES ('765', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35865 INSERT INTO `marc_subfield_structure` VALUES ('765', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35866 INSERT INTO `marc_subfield_structure` VALUES ('765', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35867 INSERT INTO `marc_subfield_structure` VALUES ('765', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35868 INSERT INTO `marc_subfield_structure` VALUES ('765', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35869 INSERT INTO `marc_subfield_structure` VALUES ('765', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35870 INSERT INTO `marc_subfield_structure` VALUES ('765', 'q', 'Parallel title (BK SE)  [OBSOLETE]', 'Parallel title (BK SE)  [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35871 INSERT INTO `marc_subfield_structure` VALUES ('765', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35872 INSERT INTO `marc_subfield_structure` VALUES ('765', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35873 INSERT INTO `marc_subfield_structure` VALUES ('765', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35874 INSERT INTO `marc_subfield_structure` VALUES ('765', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35875 INSERT INTO `marc_subfield_structure` VALUES ('765', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35876 INSERT INTO `marc_subfield_structure` VALUES ('765', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35877 INSERT INTO `marc_subfield_structure` VALUES ('765', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35878 INSERT INTO `marc_subfield_structure` VALUES ('765', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35879 INSERT INTO `marc_subfield_structure` VALUES ('767', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35880 INSERT INTO `marc_subfield_structure` VALUES ('767', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35881 INSERT INTO `marc_subfield_structure` VALUES ('767', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35882 INSERT INTO `marc_subfield_structure` VALUES ('767', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35883 INSERT INTO `marc_subfield_structure` VALUES ('767', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35884 INSERT INTO `marc_subfield_structure` VALUES ('767', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35885 INSERT INTO `marc_subfield_structure` VALUES ('767', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35886 INSERT INTO `marc_subfield_structure` VALUES ('767', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35887 INSERT INTO `marc_subfield_structure` VALUES ('767', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35888 INSERT INTO `marc_subfield_structure` VALUES ('767', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35889 INSERT INTO `marc_subfield_structure` VALUES ('767', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35890 INSERT INTO `marc_subfield_structure` VALUES ('767', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35891 INSERT INTO `marc_subfield_structure` VALUES ('767', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35892 INSERT INTO `marc_subfield_structure` VALUES ('767', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35893 INSERT INTO `marc_subfield_structure` VALUES ('767', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35894 INSERT INTO `marc_subfield_structure` VALUES ('767', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35895 INSERT INTO `marc_subfield_structure` VALUES ('767', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35896 INSERT INTO `marc_subfield_structure` VALUES ('767', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35897 INSERT INTO `marc_subfield_structure` VALUES ('767', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35898 INSERT INTO `marc_subfield_structure` VALUES ('767', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35899 INSERT INTO `marc_subfield_structure` VALUES ('767', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35900 INSERT INTO `marc_subfield_structure` VALUES ('767', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35901 INSERT INTO `marc_subfield_structure` VALUES ('767', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35902 INSERT INTO `marc_subfield_structure` VALUES ('770', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35903 INSERT INTO `marc_subfield_structure` VALUES ('770', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35904 INSERT INTO `marc_subfield_structure` VALUES ('770', '8', 'Field link and sequence number', 'Field link and sequence number ', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35905 INSERT INTO `marc_subfield_structure` VALUES ('770', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35906 INSERT INTO `marc_subfield_structure` VALUES ('770', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35907 INSERT INTO `marc_subfield_structure` VALUES ('770', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35908 INSERT INTO `marc_subfield_structure` VALUES ('770', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35909 INSERT INTO `marc_subfield_structure` VALUES ('770', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35910 INSERT INTO `marc_subfield_structure` VALUES ('770', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35911 INSERT INTO `marc_subfield_structure` VALUES ('770', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35912 INSERT INTO `marc_subfield_structure` VALUES ('770', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35913 INSERT INTO `marc_subfield_structure` VALUES ('770', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35914 INSERT INTO `marc_subfield_structure` VALUES ('770', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35915 INSERT INTO `marc_subfield_structure` VALUES ('770', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35916 INSERT INTO `marc_subfield_structure` VALUES ('770', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35917 INSERT INTO `marc_subfield_structure` VALUES ('770', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35918 INSERT INTO `marc_subfield_structure` VALUES ('770', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35919 INSERT INTO `marc_subfield_structure` VALUES ('770', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35920 INSERT INTO `marc_subfield_structure` VALUES ('770', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35921 INSERT INTO `marc_subfield_structure` VALUES ('770', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35922 INSERT INTO `marc_subfield_structure` VALUES ('770', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35923 INSERT INTO `marc_subfield_structure` VALUES ('770', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35924 INSERT INTO `marc_subfield_structure` VALUES ('770', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35925 INSERT INTO `marc_subfield_structure` VALUES ('772', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35926 INSERT INTO `marc_subfield_structure` VALUES ('772', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35927 INSERT INTO `marc_subfield_structure` VALUES ('772', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35928 INSERT INTO `marc_subfield_structure` VALUES ('772', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35929 INSERT INTO `marc_subfield_structure` VALUES ('772', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35930 INSERT INTO `marc_subfield_structure` VALUES ('772', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35931 INSERT INTO `marc_subfield_structure` VALUES ('772', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35932 INSERT INTO `marc_subfield_structure` VALUES ('772', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35933 INSERT INTO `marc_subfield_structure` VALUES ('772', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35934 INSERT INTO `marc_subfield_structure` VALUES ('772', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35935 INSERT INTO `marc_subfield_structure` VALUES ('772', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35936 INSERT INTO `marc_subfield_structure` VALUES ('772', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35937 INSERT INTO `marc_subfield_structure` VALUES ('772', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35938 INSERT INTO `marc_subfield_structure` VALUES ('772', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35939 INSERT INTO `marc_subfield_structure` VALUES ('772', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35940 INSERT INTO `marc_subfield_structure` VALUES ('772', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35941 INSERT INTO `marc_subfield_structure` VALUES ('772', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35942 INSERT INTO `marc_subfield_structure` VALUES ('772', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35943 INSERT INTO `marc_subfield_structure` VALUES ('772', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35944 INSERT INTO `marc_subfield_structure` VALUES ('772', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35945 INSERT INTO `marc_subfield_structure` VALUES ('772', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35946 INSERT INTO `marc_subfield_structure` VALUES ('772', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35947 INSERT INTO `marc_subfield_structure` VALUES ('772', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35948 INSERT INTO `marc_subfield_structure` VALUES ('773', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35949 INSERT INTO `marc_subfield_structure` VALUES ('773', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35950 INSERT INTO `marc_subfield_structure` VALUES ('773', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35951 INSERT INTO `marc_subfield_structure` VALUES ('773', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35952 INSERT INTO `marc_subfield_structure` VALUES ('773', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35953 INSERT INTO `marc_subfield_structure` VALUES ('773', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35954 INSERT INTO `marc_subfield_structure` VALUES ('773', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35955 INSERT INTO `marc_subfield_structure` VALUES ('773', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35956 INSERT INTO `marc_subfield_structure` VALUES ('773', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35957 INSERT INTO `marc_subfield_structure` VALUES ('773', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35958 INSERT INTO `marc_subfield_structure` VALUES ('773', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35959 INSERT INTO `marc_subfield_structure` VALUES ('773', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35960 INSERT INTO `marc_subfield_structure` VALUES ('773', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35961 INSERT INTO `marc_subfield_structure` VALUES ('773', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35962 INSERT INTO `marc_subfield_structure` VALUES ('773', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35963 INSERT INTO `marc_subfield_structure` VALUES ('773', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35964 INSERT INTO `marc_subfield_structure` VALUES ('773', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35965 INSERT INTO `marc_subfield_structure` VALUES ('773', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35966 INSERT INTO `marc_subfield_structure` VALUES ('773', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35967 INSERT INTO `marc_subfield_structure` VALUES ('773', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35968 INSERT INTO `marc_subfield_structure` VALUES ('773', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35969 INSERT INTO `marc_subfield_structure` VALUES ('773', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35970 INSERT INTO `marc_subfield_structure` VALUES ('773', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35971 INSERT INTO `marc_subfield_structure` VALUES ('774', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35972 INSERT INTO `marc_subfield_structure` VALUES ('774', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35973 INSERT INTO `marc_subfield_structure` VALUES ('774', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35974 INSERT INTO `marc_subfield_structure` VALUES ('774', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35975 INSERT INTO `marc_subfield_structure` VALUES ('774', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35976 INSERT INTO `marc_subfield_structure` VALUES ('774', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35977 INSERT INTO `marc_subfield_structure` VALUES ('774', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35978 INSERT INTO `marc_subfield_structure` VALUES ('774', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35979 INSERT INTO `marc_subfield_structure` VALUES ('774', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35980 INSERT INTO `marc_subfield_structure` VALUES ('774', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35981 INSERT INTO `marc_subfield_structure` VALUES ('774', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35982 INSERT INTO `marc_subfield_structure` VALUES ('774', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35983 INSERT INTO `marc_subfield_structure` VALUES ('774', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35984 INSERT INTO `marc_subfield_structure` VALUES ('774', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35985 INSERT INTO `marc_subfield_structure` VALUES ('774', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35986 INSERT INTO `marc_subfield_structure` VALUES ('774', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35987 INSERT INTO `marc_subfield_structure` VALUES ('774', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35988 INSERT INTO `marc_subfield_structure` VALUES ('774', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35989 INSERT INTO `marc_subfield_structure` VALUES ('774', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35990 INSERT INTO `marc_subfield_structure` VALUES ('774', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35991 INSERT INTO `marc_subfield_structure` VALUES ('774', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35992 INSERT INTO `marc_subfield_structure` VALUES ('774', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35993 INSERT INTO `marc_subfield_structure` VALUES ('775', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35994 INSERT INTO `marc_subfield_structure` VALUES ('775', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35995 INSERT INTO `marc_subfield_structure` VALUES ('775', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35996 INSERT INTO `marc_subfield_structure` VALUES ('775', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35997 INSERT INTO `marc_subfield_structure` VALUES ('775', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35998 INSERT INTO `marc_subfield_structure` VALUES ('775', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
35999 INSERT INTO `marc_subfield_structure` VALUES ('775', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36000 INSERT INTO `marc_subfield_structure` VALUES ('775', 'e', 'Language code', 'Language code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36001 INSERT INTO `marc_subfield_structure` VALUES ('775', 'f', 'Country code', 'Country code', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36002 INSERT INTO `marc_subfield_structure` VALUES ('775', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36003 INSERT INTO `marc_subfield_structure` VALUES ('775', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36004 INSERT INTO `marc_subfield_structure` VALUES ('775', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36005 INSERT INTO `marc_subfield_structure` VALUES ('775', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36006 INSERT INTO `marc_subfield_structure` VALUES ('775', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36007 INSERT INTO `marc_subfield_structure` VALUES ('775', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36008 INSERT INTO `marc_subfield_structure` VALUES ('775', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36009 INSERT INTO `marc_subfield_structure` VALUES ('775', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36010 INSERT INTO `marc_subfield_structure` VALUES ('775', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36011 INSERT INTO `marc_subfield_structure` VALUES ('775', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36012 INSERT INTO `marc_subfield_structure` VALUES ('775', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36013 INSERT INTO `marc_subfield_structure` VALUES ('775', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36014 INSERT INTO `marc_subfield_structure` VALUES ('775', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36015 INSERT INTO `marc_subfield_structure` VALUES ('775', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36016 INSERT INTO `marc_subfield_structure` VALUES ('775', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36017 INSERT INTO `marc_subfield_structure` VALUES ('775', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36018 INSERT INTO `marc_subfield_structure` VALUES ('776', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36019 INSERT INTO `marc_subfield_structure` VALUES ('776', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36020 INSERT INTO `marc_subfield_structure` VALUES ('776', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36021 INSERT INTO `marc_subfield_structure` VALUES ('776', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36022 INSERT INTO `marc_subfield_structure` VALUES ('776', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36023 INSERT INTO `marc_subfield_structure` VALUES ('776', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36024 INSERT INTO `marc_subfield_structure` VALUES ('776', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36025 INSERT INTO `marc_subfield_structure` VALUES ('776', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36026 INSERT INTO `marc_subfield_structure` VALUES ('776', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36027 INSERT INTO `marc_subfield_structure` VALUES ('776', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36028 INSERT INTO `marc_subfield_structure` VALUES ('776', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36029 INSERT INTO `marc_subfield_structure` VALUES ('776', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36030 INSERT INTO `marc_subfield_structure` VALUES ('776', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36031 INSERT INTO `marc_subfield_structure` VALUES ('776', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36032 INSERT INTO `marc_subfield_structure` VALUES ('776', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36033 INSERT INTO `marc_subfield_structure` VALUES ('776', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36034 INSERT INTO `marc_subfield_structure` VALUES ('776', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36035 INSERT INTO `marc_subfield_structure` VALUES ('776', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36036 INSERT INTO `marc_subfield_structure` VALUES ('776', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36037 INSERT INTO `marc_subfield_structure` VALUES ('776', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36038 INSERT INTO `marc_subfield_structure` VALUES ('776', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36039 INSERT INTO `marc_subfield_structure` VALUES ('776', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36040 INSERT INTO `marc_subfield_structure` VALUES ('776', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36041 INSERT INTO `marc_subfield_structure` VALUES ('777', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36042 INSERT INTO `marc_subfield_structure` VALUES ('777', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36043 INSERT INTO `marc_subfield_structure` VALUES ('777', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36044 INSERT INTO `marc_subfield_structure` VALUES ('777', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36045 INSERT INTO `marc_subfield_structure` VALUES ('777', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36046 INSERT INTO `marc_subfield_structure` VALUES ('777', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36047 INSERT INTO `marc_subfield_structure` VALUES ('777', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36048 INSERT INTO `marc_subfield_structure` VALUES ('777', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36049 INSERT INTO `marc_subfield_structure` VALUES ('777', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36050 INSERT INTO `marc_subfield_structure` VALUES ('777', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36051 INSERT INTO `marc_subfield_structure` VALUES ('777', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36052 INSERT INTO `marc_subfield_structure` VALUES ('777', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36053 INSERT INTO `marc_subfield_structure` VALUES ('777', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36054 INSERT INTO `marc_subfield_structure` VALUES ('777', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36055 INSERT INTO `marc_subfield_structure` VALUES ('777', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36056 INSERT INTO `marc_subfield_structure` VALUES ('777', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36057 INSERT INTO `marc_subfield_structure` VALUES ('777', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36058 INSERT INTO `marc_subfield_structure` VALUES ('777', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36059 INSERT INTO `marc_subfield_structure` VALUES ('777', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36060 INSERT INTO `marc_subfield_structure` VALUES ('777', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36061 INSERT INTO `marc_subfield_structure` VALUES ('780', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36062 INSERT INTO `marc_subfield_structure` VALUES ('780', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36063 INSERT INTO `marc_subfield_structure` VALUES ('780', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36064 INSERT INTO `marc_subfield_structure` VALUES ('780', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36065 INSERT INTO `marc_subfield_structure` VALUES ('780', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36066 INSERT INTO `marc_subfield_structure` VALUES ('780', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36067 INSERT INTO `marc_subfield_structure` VALUES ('780', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36068 INSERT INTO `marc_subfield_structure` VALUES ('780', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36069 INSERT INTO `marc_subfield_structure` VALUES ('780', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36070 INSERT INTO `marc_subfield_structure` VALUES ('780', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36071 INSERT INTO `marc_subfield_structure` VALUES ('780', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36072 INSERT INTO `marc_subfield_structure` VALUES ('780', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36073 INSERT INTO `marc_subfield_structure` VALUES ('780', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36074 INSERT INTO `marc_subfield_structure` VALUES ('780', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36075 INSERT INTO `marc_subfield_structure` VALUES ('780', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36076 INSERT INTO `marc_subfield_structure` VALUES ('780', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36077 INSERT INTO `marc_subfield_structure` VALUES ('780', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36078 INSERT INTO `marc_subfield_structure` VALUES ('780', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36079 INSERT INTO `marc_subfield_structure` VALUES ('780', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36080 INSERT INTO `marc_subfield_structure` VALUES ('780', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36081 INSERT INTO `marc_subfield_structure` VALUES ('780', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36082 INSERT INTO `marc_subfield_structure` VALUES ('780', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36083 INSERT INTO `marc_subfield_structure` VALUES ('780', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36084 INSERT INTO `marc_subfield_structure` VALUES ('785', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36085 INSERT INTO `marc_subfield_structure` VALUES ('785', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36086 INSERT INTO `marc_subfield_structure` VALUES ('785', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36087 INSERT INTO `marc_subfield_structure` VALUES ('785', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36088 INSERT INTO `marc_subfield_structure` VALUES ('785', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36089 INSERT INTO `marc_subfield_structure` VALUES ('785', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36090 INSERT INTO `marc_subfield_structure` VALUES ('785', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36091 INSERT INTO `marc_subfield_structure` VALUES ('785', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36092 INSERT INTO `marc_subfield_structure` VALUES ('785', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36093 INSERT INTO `marc_subfield_structure` VALUES ('785', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36094 INSERT INTO `marc_subfield_structure` VALUES ('785', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36095 INSERT INTO `marc_subfield_structure` VALUES ('785', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36096 INSERT INTO `marc_subfield_structure` VALUES ('785', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36097 INSERT INTO `marc_subfield_structure` VALUES ('785', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36098 INSERT INTO `marc_subfield_structure` VALUES ('785', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36099 INSERT INTO `marc_subfield_structure` VALUES ('785', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36100 INSERT INTO `marc_subfield_structure` VALUES ('785', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36101 INSERT INTO `marc_subfield_structure` VALUES ('785', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36102 INSERT INTO `marc_subfield_structure` VALUES ('785', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36103 INSERT INTO `marc_subfield_structure` VALUES ('785', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36104 INSERT INTO `marc_subfield_structure` VALUES ('785', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36105 INSERT INTO `marc_subfield_structure` VALUES ('785', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36106 INSERT INTO `marc_subfield_structure` VALUES ('785', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36107 INSERT INTO `marc_subfield_structure` VALUES ('786', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36108 INSERT INTO `marc_subfield_structure` VALUES ('786', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36109 INSERT INTO `marc_subfield_structure` VALUES ('786', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36110 INSERT INTO `marc_subfield_structure` VALUES ('786', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36111 INSERT INTO `marc_subfield_structure` VALUES ('786', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36112 INSERT INTO `marc_subfield_structure` VALUES ('786', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36113 INSERT INTO `marc_subfield_structure` VALUES ('786', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36114 INSERT INTO `marc_subfield_structure` VALUES ('786', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36115 INSERT INTO `marc_subfield_structure` VALUES ('786', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36116 INSERT INTO `marc_subfield_structure` VALUES ('786', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36117 INSERT INTO `marc_subfield_structure` VALUES ('786', 'j', 'Period of content', 'Period of content', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36118 INSERT INTO `marc_subfield_structure` VALUES ('786', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36119 INSERT INTO `marc_subfield_structure` VALUES ('786', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36120 INSERT INTO `marc_subfield_structure` VALUES ('786', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36121 INSERT INTO `marc_subfield_structure` VALUES ('786', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36122 INSERT INTO `marc_subfield_structure` VALUES ('786', 'p', 'Abbreviated title', 'Abbreviated title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36123 INSERT INTO `marc_subfield_structure` VALUES ('786', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36124 INSERT INTO `marc_subfield_structure` VALUES ('786', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36125 INSERT INTO `marc_subfield_structure` VALUES ('786', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36126 INSERT INTO `marc_subfield_structure` VALUES ('786', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36127 INSERT INTO `marc_subfield_structure` VALUES ('786', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36128 INSERT INTO `marc_subfield_structure` VALUES ('786', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36129 INSERT INTO `marc_subfield_structure` VALUES ('786', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36130 INSERT INTO `marc_subfield_structure` VALUES ('786', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36131 INSERT INTO `marc_subfield_structure` VALUES ('787', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36132 INSERT INTO `marc_subfield_structure` VALUES ('787', '7', 'Control subfield', 'Control subfield', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36133 INSERT INTO `marc_subfield_structure` VALUES ('787', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36134 INSERT INTO `marc_subfield_structure` VALUES ('787', 'a', 'Main entry heading', 'Main entry heading', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36135 INSERT INTO `marc_subfield_structure` VALUES ('787', 'b', 'Edition', 'Edition', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36136 INSERT INTO `marc_subfield_structure` VALUES ('787', 'c', 'Qualifying information', 'Qualifying information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36137 INSERT INTO `marc_subfield_structure` VALUES ('787', 'd', 'Place, publisher, and date of publication', 'Place, publisher, and date of publication', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36138 INSERT INTO `marc_subfield_structure` VALUES ('787', 'g', 'Relationship information', 'Relationship information', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36139 INSERT INTO `marc_subfield_structure` VALUES ('787', 'h', 'Physical description', 'Physical description', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36140 INSERT INTO `marc_subfield_structure` VALUES ('787', 'i', 'Display text', 'Display text', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36141 INSERT INTO `marc_subfield_structure` VALUES ('787', 'k', 'Series data for related item', 'Series data for related item', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36142 INSERT INTO `marc_subfield_structure` VALUES ('787', 'm', 'Material-specific details', 'Material-specific details', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36143 INSERT INTO `marc_subfield_structure` VALUES ('787', 'n', 'Note', 'Note', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36144 INSERT INTO `marc_subfield_structure` VALUES ('787', 'o', 'Other item identifier', 'Other item identifier', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36145 INSERT INTO `marc_subfield_structure` VALUES ('787', 'q', 'Parallel title (BK SE) [OBSOLETE]', 'Parallel title (BK SE) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36146 INSERT INTO `marc_subfield_structure` VALUES ('787', 'r', 'Report number', 'Report number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36147 INSERT INTO `marc_subfield_structure` VALUES ('787', 's', 'Uniform title', 'Uniform title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36148 INSERT INTO `marc_subfield_structure` VALUES ('787', 't', 'Title', 'Title', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36149 INSERT INTO `marc_subfield_structure` VALUES ('787', 'u', 'Standard Technical Report Number', 'Standard Technical Report Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36150 INSERT INTO `marc_subfield_structure` VALUES ('787', 'w', 'Record control number', 'Record control number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36151 INSERT INTO `marc_subfield_structure` VALUES ('787', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36152 INSERT INTO `marc_subfield_structure` VALUES ('787', 'y', 'CODEN designation', 'CODEN designation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36153 INSERT INTO `marc_subfield_structure` VALUES ('787', 'z', 'International Standard Book Number', 'International Standard Book Number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36154 INSERT INTO `marc_subfield_structure` VALUES ('789', '%', '%', '%', 0, 0, '', 7, '', '', '', 0, -6, 'SER', '', '');
36155 INSERT INTO `marc_subfield_structure` VALUES ('789', '2', '2', '2', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36156 INSERT INTO `marc_subfield_structure` VALUES ('789', '3', '3', '3', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36157 INSERT INTO `marc_subfield_structure` VALUES ('789', '4', '4', '4', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36158 INSERT INTO `marc_subfield_structure` VALUES ('789', '5', '5', '5', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36159 INSERT INTO `marc_subfield_structure` VALUES ('789', '6', '6', '6', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36160 INSERT INTO `marc_subfield_structure` VALUES ('789', '7', '7', '7', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36161 INSERT INTO `marc_subfield_structure` VALUES ('789', '8', '8', '8', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36162 INSERT INTO `marc_subfield_structure` VALUES ('789', '9', '9', '9', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36163 INSERT INTO `marc_subfield_structure` VALUES ('789', 'a', 'a', 'a', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36164 INSERT INTO `marc_subfield_structure` VALUES ('789', 'b', 'b', 'b', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36165 INSERT INTO `marc_subfield_structure` VALUES ('789', 'c', 'c', 'c', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36166 INSERT INTO `marc_subfield_structure` VALUES ('789', 'd', 'd', 'd', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36167 INSERT INTO `marc_subfield_structure` VALUES ('789', 'e', 'e', 'e', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36168 INSERT INTO `marc_subfield_structure` VALUES ('789', 'f', 'f', 'f', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36169 INSERT INTO `marc_subfield_structure` VALUES ('789', 'g', 'g', 'g', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36170 INSERT INTO `marc_subfield_structure` VALUES ('789', 'h', 'h', 'h', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36171 INSERT INTO `marc_subfield_structure` VALUES ('789', 'i', 'i', 'i', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36172 INSERT INTO `marc_subfield_structure` VALUES ('789', 'j', 'j', 'j', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36173 INSERT INTO `marc_subfield_structure` VALUES ('789', 'k', 'k', 'k', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36174 INSERT INTO `marc_subfield_structure` VALUES ('789', 'l', 'l', 'l', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36175 INSERT INTO `marc_subfield_structure` VALUES ('789', 'm', 'm', 'm', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36176 INSERT INTO `marc_subfield_structure` VALUES ('789', 'n', 'n', 'n', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36177 INSERT INTO `marc_subfield_structure` VALUES ('789', 'o', 'o', 'o', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36178 INSERT INTO `marc_subfield_structure` VALUES ('789', 'p', 'p', 'p', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36179 INSERT INTO `marc_subfield_structure` VALUES ('789', 'q', 'q', 'q', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36180 INSERT INTO `marc_subfield_structure` VALUES ('789', 'r', 'r', 'r', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36181 INSERT INTO `marc_subfield_structure` VALUES ('789', 's', 's', 's', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36182 INSERT INTO `marc_subfield_structure` VALUES ('789', 't', 't', 't', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36183 INSERT INTO `marc_subfield_structure` VALUES ('789', 'u', 'u', 'u', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36184 INSERT INTO `marc_subfield_structure` VALUES ('789', 'v', 'v', 'v', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36185 INSERT INTO `marc_subfield_structure` VALUES ('789', 'w', 'w', 'w', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36186 INSERT INTO `marc_subfield_structure` VALUES ('789', 'x', 'x', 'x', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36187 INSERT INTO `marc_subfield_structure` VALUES ('789', 'y', 'y', 'y', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36188 INSERT INTO `marc_subfield_structure` VALUES ('789', 'z', 'z', 'z', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36189 INSERT INTO `marc_subfield_structure` VALUES ('796', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'SER', '', '');
36190 INSERT INTO `marc_subfield_structure` VALUES ('796', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36191 INSERT INTO `marc_subfield_structure` VALUES ('796', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36192 INSERT INTO `marc_subfield_structure` VALUES ('796', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36193 INSERT INTO `marc_subfield_structure` VALUES ('796', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36194 INSERT INTO `marc_subfield_structure` VALUES ('796', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36195 INSERT INTO `marc_subfield_structure` VALUES ('796', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SER', '', '');
36196 INSERT INTO `marc_subfield_structure` VALUES ('796', 'a', 'Personal name', 'Personal name', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36197 INSERT INTO `marc_subfield_structure` VALUES ('796', 'b', 'Numeration', 'Numeration', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36198 INSERT INTO `marc_subfield_structure` VALUES ('796', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36199 INSERT INTO `marc_subfield_structure` VALUES ('796', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36200 INSERT INTO `marc_subfield_structure` VALUES ('796', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36201 INSERT INTO `marc_subfield_structure` VALUES ('796', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36202 INSERT INTO `marc_subfield_structure` VALUES ('796', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36203 INSERT INTO `marc_subfield_structure` VALUES ('796', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36204 INSERT INTO `marc_subfield_structure` VALUES ('796', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36205 INSERT INTO `marc_subfield_structure` VALUES ('796', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36206 INSERT INTO `marc_subfield_structure` VALUES ('796', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36207 INSERT INTO `marc_subfield_structure` VALUES ('796', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36208 INSERT INTO `marc_subfield_structure` VALUES ('796', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36209 INSERT INTO `marc_subfield_structure` VALUES ('796', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36210 INSERT INTO `marc_subfield_structure` VALUES ('796', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36211 INSERT INTO `marc_subfield_structure` VALUES ('796', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36212 INSERT INTO `marc_subfield_structure` VALUES ('796', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36213 INSERT INTO `marc_subfield_structure` VALUES ('796', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36214 INSERT INTO `marc_subfield_structure` VALUES ('796', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36215 INSERT INTO `marc_subfield_structure` VALUES ('796', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36216 INSERT INTO `marc_subfield_structure` VALUES ('796', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36217 INSERT INTO `marc_subfield_structure` VALUES ('797', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'SER', '', '');
36218 INSERT INTO `marc_subfield_structure` VALUES ('797', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36219 INSERT INTO `marc_subfield_structure` VALUES ('797', '4', 'Relator code', 'Relator code', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36220 INSERT INTO `marc_subfield_structure` VALUES ('797', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36221 INSERT INTO `marc_subfield_structure` VALUES ('797', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36222 INSERT INTO `marc_subfield_structure` VALUES ('797', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36223 INSERT INTO `marc_subfield_structure` VALUES ('797', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SER', '', '');
36224 INSERT INTO `marc_subfield_structure` VALUES ('797', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36225 INSERT INTO `marc_subfield_structure` VALUES ('797', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36226 INSERT INTO `marc_subfield_structure` VALUES ('797', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36227 INSERT INTO `marc_subfield_structure` VALUES ('797', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36228 INSERT INTO `marc_subfield_structure` VALUES ('797', 'e', 'Relator term', 'Relator term', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36229 INSERT INTO `marc_subfield_structure` VALUES ('797', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36230 INSERT INTO `marc_subfield_structure` VALUES ('797', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36231 INSERT INTO `marc_subfield_structure` VALUES ('797', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36232 INSERT INTO `marc_subfield_structure` VALUES ('797', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36233 INSERT INTO `marc_subfield_structure` VALUES ('797', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36234 INSERT INTO `marc_subfield_structure` VALUES ('797', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36235 INSERT INTO `marc_subfield_structure` VALUES ('797', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36236 INSERT INTO `marc_subfield_structure` VALUES ('797', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36237 INSERT INTO `marc_subfield_structure` VALUES ('797', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36238 INSERT INTO `marc_subfield_structure` VALUES ('797', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36239 INSERT INTO `marc_subfield_structure` VALUES ('797', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36240 INSERT INTO `marc_subfield_structure` VALUES ('797', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36241 INSERT INTO `marc_subfield_structure` VALUES ('797', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36242 INSERT INTO `marc_subfield_structure` VALUES ('797', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36243 INSERT INTO `marc_subfield_structure` VALUES ('798', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SER', '', '');
36244 INSERT INTO `marc_subfield_structure` VALUES ('798', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36245 INSERT INTO `marc_subfield_structure` VALUES ('798', '4', 'Relator code', 'Relator code', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36246 INSERT INTO `marc_subfield_structure` VALUES ('798', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36247 INSERT INTO `marc_subfield_structure` VALUES ('798', '6', 'Linkage', 'Linkage', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36248 INSERT INTO `marc_subfield_structure` VALUES ('798', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36249 INSERT INTO `marc_subfield_structure` VALUES ('798', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SER', '', '');
36250 INSERT INTO `marc_subfield_structure` VALUES ('798', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36251 INSERT INTO `marc_subfield_structure` VALUES ('798', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36252 INSERT INTO `marc_subfield_structure` VALUES ('798', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36253 INSERT INTO `marc_subfield_structure` VALUES ('798', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36254 INSERT INTO `marc_subfield_structure` VALUES ('798', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36255 INSERT INTO `marc_subfield_structure` VALUES ('798', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36256 INSERT INTO `marc_subfield_structure` VALUES ('798', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36257 INSERT INTO `marc_subfield_structure` VALUES ('798', 'h', 'Medium', 'Medium', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36258 INSERT INTO `marc_subfield_structure` VALUES ('798', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36259 INSERT INTO `marc_subfield_structure` VALUES ('798', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36260 INSERT INTO `marc_subfield_structure` VALUES ('798', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36261 INSERT INTO `marc_subfield_structure` VALUES ('798', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36262 INSERT INTO `marc_subfield_structure` VALUES ('798', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36263 INSERT INTO `marc_subfield_structure` VALUES ('798', 's', 'Version', 'Version', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36264 INSERT INTO `marc_subfield_structure` VALUES ('798', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36265 INSERT INTO `marc_subfield_structure` VALUES ('798', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36266 INSERT INTO `marc_subfield_structure` VALUES ('798', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, NULL, 7, NULL, NULL, '', NULL, -6, 'SER', '', '');
36267 INSERT INTO `marc_subfield_structure` VALUES ('799', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 7, '', '', '', 0, -6, 'SER', '', '');
36268 INSERT INTO `marc_subfield_structure` VALUES ('799', '3', 'Materials specified', 'Materials specified', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36269 INSERT INTO `marc_subfield_structure` VALUES ('799', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36270 INSERT INTO `marc_subfield_structure` VALUES ('799', '6', 'Linkage', 'Linkage', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36271 INSERT INTO `marc_subfield_structure` VALUES ('799', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36272 INSERT INTO `marc_subfield_structure` VALUES ('799', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 7, '', '', '', 0, -5, 'SER', '', '');
36273 INSERT INTO `marc_subfield_structure` VALUES ('799', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36274 INSERT INTO `marc_subfield_structure` VALUES ('799', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36275 INSERT INTO `marc_subfield_structure` VALUES ('799', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36276 INSERT INTO `marc_subfield_structure` VALUES ('799', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36277 INSERT INTO `marc_subfield_structure` VALUES ('799', 'h', 'Medium', 'Medium', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36278 INSERT INTO `marc_subfield_structure` VALUES ('799', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36279 INSERT INTO `marc_subfield_structure` VALUES ('799', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36280 INSERT INTO `marc_subfield_structure` VALUES ('799', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36281 INSERT INTO `marc_subfield_structure` VALUES ('799', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36282 INSERT INTO `marc_subfield_structure` VALUES ('799', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36283 INSERT INTO `marc_subfield_structure` VALUES ('799', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36284 INSERT INTO `marc_subfield_structure` VALUES ('799', 'r', 'Key for music', 'Key for music', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36285 INSERT INTO `marc_subfield_structure` VALUES ('799', 's', 'Version', 'Version', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36286 INSERT INTO `marc_subfield_structure` VALUES ('799', 't', 'Title of a work', 'Title of a work', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36287 INSERT INTO `marc_subfield_structure` VALUES ('799', 'x', 'International Standard Serial Number', 'International Standard Serial Number', 0, 0, '', 7, '', '', '', NULL, -6, 'SER', '', '');
36288 INSERT INTO `marc_subfield_structure` VALUES ('800', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36289 INSERT INTO `marc_subfield_structure` VALUES ('800', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36290 INSERT INTO `marc_subfield_structure` VALUES ('800', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36291 INSERT INTO `marc_subfield_structure` VALUES ('800', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'SER', '', '');
36292 INSERT INTO `marc_subfield_structure` VALUES ('800', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36293 INSERT INTO `marc_subfield_structure` VALUES ('800', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36294 INSERT INTO `marc_subfield_structure` VALUES ('800', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36295 INSERT INTO `marc_subfield_structure` VALUES ('800', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36296 INSERT INTO `marc_subfield_structure` VALUES ('800', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36297 INSERT INTO `marc_subfield_structure` VALUES ('800', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36298 INSERT INTO `marc_subfield_structure` VALUES ('800', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36299 INSERT INTO `marc_subfield_structure` VALUES ('800', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36300 INSERT INTO `marc_subfield_structure` VALUES ('800', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36301 INSERT INTO `marc_subfield_structure` VALUES ('800', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36302 INSERT INTO `marc_subfield_structure` VALUES ('800', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36303 INSERT INTO `marc_subfield_structure` VALUES ('800', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36304 INSERT INTO `marc_subfield_structure` VALUES ('800', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36305 INSERT INTO `marc_subfield_structure` VALUES ('800', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36306 INSERT INTO `marc_subfield_structure` VALUES ('800', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36307 INSERT INTO `marc_subfield_structure` VALUES ('800', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36308 INSERT INTO `marc_subfield_structure` VALUES ('800', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36309 INSERT INTO `marc_subfield_structure` VALUES ('800', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36310 INSERT INTO `marc_subfield_structure` VALUES ('800', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36311 INSERT INTO `marc_subfield_structure` VALUES ('800', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36312 INSERT INTO `marc_subfield_structure` VALUES ('800', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36313 INSERT INTO `marc_subfield_structure` VALUES ('810', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36314 INSERT INTO `marc_subfield_structure` VALUES ('810', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36315 INSERT INTO `marc_subfield_structure` VALUES ('810', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36316 INSERT INTO `marc_subfield_structure` VALUES ('810', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'SER', '', '');
36317 INSERT INTO `marc_subfield_structure` VALUES ('810', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36318 INSERT INTO `marc_subfield_structure` VALUES ('810', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36319 INSERT INTO `marc_subfield_structure` VALUES ('810', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36320 INSERT INTO `marc_subfield_structure` VALUES ('810', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36321 INSERT INTO `marc_subfield_structure` VALUES ('810', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36322 INSERT INTO `marc_subfield_structure` VALUES ('810', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36323 INSERT INTO `marc_subfield_structure` VALUES ('810', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36324 INSERT INTO `marc_subfield_structure` VALUES ('810', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36325 INSERT INTO `marc_subfield_structure` VALUES ('810', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36326 INSERT INTO `marc_subfield_structure` VALUES ('810', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36327 INSERT INTO `marc_subfield_structure` VALUES ('810', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36328 INSERT INTO `marc_subfield_structure` VALUES ('810', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36329 INSERT INTO `marc_subfield_structure` VALUES ('810', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36330 INSERT INTO `marc_subfield_structure` VALUES ('810', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36331 INSERT INTO `marc_subfield_structure` VALUES ('810', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36332 INSERT INTO `marc_subfield_structure` VALUES ('810', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36333 INSERT INTO `marc_subfield_structure` VALUES ('810', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36334 INSERT INTO `marc_subfield_structure` VALUES ('810', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36335 INSERT INTO `marc_subfield_structure` VALUES ('810', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36336 INSERT INTO `marc_subfield_structure` VALUES ('811', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36337 INSERT INTO `marc_subfield_structure` VALUES ('811', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36338 INSERT INTO `marc_subfield_structure` VALUES ('811', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36339 INSERT INTO `marc_subfield_structure` VALUES ('811', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'SER', '', '');
36340 INSERT INTO `marc_subfield_structure` VALUES ('811', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36341 INSERT INTO `marc_subfield_structure` VALUES ('811', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36342 INSERT INTO `marc_subfield_structure` VALUES ('811', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36343 INSERT INTO `marc_subfield_structure` VALUES ('811', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36344 INSERT INTO `marc_subfield_structure` VALUES ('811', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36345 INSERT INTO `marc_subfield_structure` VALUES ('811', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36346 INSERT INTO `marc_subfield_structure` VALUES ('811', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36347 INSERT INTO `marc_subfield_structure` VALUES ('811', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36348 INSERT INTO `marc_subfield_structure` VALUES ('811', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36349 INSERT INTO `marc_subfield_structure` VALUES ('811', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36350 INSERT INTO `marc_subfield_structure` VALUES ('811', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36351 INSERT INTO `marc_subfield_structure` VALUES ('811', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36352 INSERT INTO `marc_subfield_structure` VALUES ('811', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36353 INSERT INTO `marc_subfield_structure` VALUES ('811', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36354 INSERT INTO `marc_subfield_structure` VALUES ('811', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36355 INSERT INTO `marc_subfield_structure` VALUES ('811', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36356 INSERT INTO `marc_subfield_structure` VALUES ('811', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36357 INSERT INTO `marc_subfield_structure` VALUES ('830', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36358 INSERT INTO `marc_subfield_structure` VALUES ('830', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36359 INSERT INTO `marc_subfield_structure` VALUES ('830', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'SER', '', '');
36360 INSERT INTO `marc_subfield_structure` VALUES ('830', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36361 INSERT INTO `marc_subfield_structure` VALUES ('830', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36362 INSERT INTO `marc_subfield_structure` VALUES ('830', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36363 INSERT INTO `marc_subfield_structure` VALUES ('830', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36364 INSERT INTO `marc_subfield_structure` VALUES ('830', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36365 INSERT INTO `marc_subfield_structure` VALUES ('830', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36366 INSERT INTO `marc_subfield_structure` VALUES ('830', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36367 INSERT INTO `marc_subfield_structure` VALUES ('830', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36368 INSERT INTO `marc_subfield_structure` VALUES ('830', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36369 INSERT INTO `marc_subfield_structure` VALUES ('830', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36370 INSERT INTO `marc_subfield_structure` VALUES ('830', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36371 INSERT INTO `marc_subfield_structure` VALUES ('830', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36372 INSERT INTO `marc_subfield_structure` VALUES ('830', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36373 INSERT INTO `marc_subfield_structure` VALUES ('830', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36374 INSERT INTO `marc_subfield_structure` VALUES ('830', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36375 INSERT INTO `marc_subfield_structure` VALUES ('840', 'a', 'Title', 'Title', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36376 INSERT INTO `marc_subfield_structure` VALUES ('840', 'h', 'Medium', 'Medium', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36377 INSERT INTO `marc_subfield_structure` VALUES ('840', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36378 INSERT INTO `marc_subfield_structure` VALUES ('841', 'a', 'Type of record', 'Type of record', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36379 INSERT INTO `marc_subfield_structure` VALUES ('841', 'b', 'Fixed-length data elements', 'Fixed-length data elements', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36380 INSERT INTO `marc_subfield_structure` VALUES ('841', 'e', 'Encoding level', 'Encoding level', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36381 INSERT INTO `marc_subfield_structure` VALUES ('842', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36382 INSERT INTO `marc_subfield_structure` VALUES ('842', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36383 INSERT INTO `marc_subfield_structure` VALUES ('842', 'a', 'Textual physical form designator', 'Textual physical form designator', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36384 INSERT INTO `marc_subfield_structure` VALUES ('843', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36385 INSERT INTO `marc_subfield_structure` VALUES ('843', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36386 INSERT INTO `marc_subfield_structure` VALUES ('843', '7', 'Fixed-length data elements of reproduction', 'Fixed-length data elements of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36387 INSERT INTO `marc_subfield_structure` VALUES ('843', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36388 INSERT INTO `marc_subfield_structure` VALUES ('843', 'a', 'Type of reproduction', 'Type of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36389 INSERT INTO `marc_subfield_structure` VALUES ('843', 'b', 'Place of reproduction', 'Place of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36390 INSERT INTO `marc_subfield_structure` VALUES ('843', 'c', 'Agency responsible for reproduction', 'Agency responsible for reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36391 INSERT INTO `marc_subfield_structure` VALUES ('843', 'd', 'Date of reproduction', 'Date of reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36392 INSERT INTO `marc_subfield_structure` VALUES ('843', 'e', 'Physical description of reproduction', 'Physical description of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36393 INSERT INTO `marc_subfield_structure` VALUES ('843', 'f', 'Series statement of reproduction', 'Series statement of reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36394 INSERT INTO `marc_subfield_structure` VALUES ('843', 'm', 'Dates of publication and/or sequential designation of issues reproduced', 'Dates of publication and/or sequential designation of issues reproduced', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36395 INSERT INTO `marc_subfield_structure` VALUES ('843', 'n', 'Note about reproduction', 'Note about reproduction', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36396 INSERT INTO `marc_subfield_structure` VALUES ('844', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36397 INSERT INTO `marc_subfield_structure` VALUES ('844', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36398 INSERT INTO `marc_subfield_structure` VALUES ('844', 'a', 'Name of unit', 'Name of unit', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36399 INSERT INTO `marc_subfield_structure` VALUES ('845', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36400 INSERT INTO `marc_subfield_structure` VALUES ('845', '5', 'Institution to which field applies', 'Institution to which field applies', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36401 INSERT INTO `marc_subfield_structure` VALUES ('845', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36402 INSERT INTO `marc_subfield_structure` VALUES ('845', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36403 INSERT INTO `marc_subfield_structure` VALUES ('845', 'a', 'Terms governing use and reproduction', 'Terms governing use and reproduction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36404 INSERT INTO `marc_subfield_structure` VALUES ('845', 'b', 'Jurisdiction', 'Jurisdiction', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36405 INSERT INTO `marc_subfield_structure` VALUES ('845', 'c', 'Authorization', 'Authorization', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36406 INSERT INTO `marc_subfield_structure` VALUES ('845', 'd', 'Authorized users', 'Authorized users', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36407 INSERT INTO `marc_subfield_structure` VALUES ('850', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36408 INSERT INTO `marc_subfield_structure` VALUES ('850', 'a', 'Holding institution', 'Holding institution', 1, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36409 INSERT INTO `marc_subfield_structure` VALUES ('850', 'b', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 'Holdings (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36410 INSERT INTO `marc_subfield_structure` VALUES ('850', 'd', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 'Inclusive dates (NR) (MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36411 INSERT INTO `marc_subfield_structure` VALUES ('850', 'e', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 'Retention statement (NR) (CF MU VM SE) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36412 INSERT INTO `marc_subfield_structure` VALUES ('851', '3', 'Materials specified', 'Materials specified', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36413 INSERT INTO `marc_subfield_structure` VALUES ('851', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36414 INSERT INTO `marc_subfield_structure` VALUES ('851', 'a', 'Name (custodian or owner)', 'Name (custodian or owner)', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36415 INSERT INTO `marc_subfield_structure` VALUES ('851', 'b', 'Institutional division', 'Institutional division', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36416 INSERT INTO `marc_subfield_structure` VALUES ('851', 'c', 'Street address', 'Street address', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36417 INSERT INTO `marc_subfield_structure` VALUES ('851', 'd', 'Country', 'Country', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36418 INSERT INTO `marc_subfield_structure` VALUES ('851', 'e', 'Location of units', 'Location of units', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36419 INSERT INTO `marc_subfield_structure` VALUES ('851', 'f', 'Item number', 'Item number', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36420 INSERT INTO `marc_subfield_structure` VALUES ('851', 'g', 'Repository location code', 'Repository location code', 0, 0, NULL, 8, NULL, NULL, '', NULL, 5, 'SER', '', '');
36421 INSERT INTO `marc_subfield_structure` VALUES ('852', '2', 'Source of classification or shelving scheme', 'Source of classification or shelving scheme', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36422 INSERT INTO `marc_subfield_structure` VALUES ('852', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36423 INSERT INTO `marc_subfield_structure` VALUES ('852', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36424 INSERT INTO `marc_subfield_structure` VALUES ('852', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36425 INSERT INTO `marc_subfield_structure` VALUES ('852', 'a', 'Location', 'Location', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36426 INSERT INTO `marc_subfield_structure` VALUES ('852', 'b', 'Sublocation or collection', 'Sublocation or collection', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36427 INSERT INTO `marc_subfield_structure` VALUES ('852', 'c', 'Shelving location', 'Shelving location', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36428 INSERT INTO `marc_subfield_structure` VALUES ('852', 'e', 'Address', 'Address', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36429 INSERT INTO `marc_subfield_structure` VALUES ('852', 'f', 'Coded location qualifier', 'Coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36430 INSERT INTO `marc_subfield_structure` VALUES ('852', 'g', 'Non-coded location qualifier', 'Non-coded location qualifier', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36431 INSERT INTO `marc_subfield_structure` VALUES ('852', 'h', 'Classification part', 'Classification part', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36432 INSERT INTO `marc_subfield_structure` VALUES ('852', 'i', 'Item part', 'Item part', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36433 INSERT INTO `marc_subfield_structure` VALUES ('852', 'j', 'Shelving control number', 'Shelving control number', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36434 INSERT INTO `marc_subfield_structure` VALUES ('852', 'k', 'Call number prefix', 'Call number prefix', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36435 INSERT INTO `marc_subfield_structure` VALUES ('852', 'l', 'Shelving form of title', 'Shelving form of title', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36436 INSERT INTO `marc_subfield_structure` VALUES ('852', 'm', 'Call number suffix', 'Call number suffix', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36437 INSERT INTO `marc_subfield_structure` VALUES ('852', 'n', 'Country code', 'Country code', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36438 INSERT INTO `marc_subfield_structure` VALUES ('852', 'p', 'Piece designation', 'Piece designation', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36439 INSERT INTO `marc_subfield_structure` VALUES ('852', 'q', 'Piece physical condition', 'Piece physical condition', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36440 INSERT INTO `marc_subfield_structure` VALUES ('852', 's', 'Copyright article-fee code', 'Copyright article-fee code', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36441 INSERT INTO `marc_subfield_structure` VALUES ('852', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36442 INSERT INTO `marc_subfield_structure` VALUES ('852', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36443 INSERT INTO `marc_subfield_structure` VALUES ('852', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36444 INSERT INTO `marc_subfield_structure` VALUES ('853', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36445 INSERT INTO `marc_subfield_structure` VALUES ('853', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36446 INSERT INTO `marc_subfield_structure` VALUES ('853', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36447 INSERT INTO `marc_subfield_structure` VALUES ('853', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36448 INSERT INTO `marc_subfield_structure` VALUES ('853', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36449 INSERT INTO `marc_subfield_structure` VALUES ('853', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36450 INSERT INTO `marc_subfield_structure` VALUES ('853', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36451 INSERT INTO `marc_subfield_structure` VALUES ('853', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36452 INSERT INTO `marc_subfield_structure` VALUES ('853', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36453 INSERT INTO `marc_subfield_structure` VALUES ('853', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36454 INSERT INTO `marc_subfield_structure` VALUES ('853', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36455 INSERT INTO `marc_subfield_structure` VALUES ('853', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36456 INSERT INTO `marc_subfield_structure` VALUES ('853', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36457 INSERT INTO `marc_subfield_structure` VALUES ('853', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36458 INSERT INTO `marc_subfield_structure` VALUES ('853', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36459 INSERT INTO `marc_subfield_structure` VALUES ('853', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36460 INSERT INTO `marc_subfield_structure` VALUES ('853', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36461 INSERT INTO `marc_subfield_structure` VALUES ('853', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36462 INSERT INTO `marc_subfield_structure` VALUES ('853', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36463 INSERT INTO `marc_subfield_structure` VALUES ('853', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36464 INSERT INTO `marc_subfield_structure` VALUES ('853', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36465 INSERT INTO `marc_subfield_structure` VALUES ('853', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36466 INSERT INTO `marc_subfield_structure` VALUES ('853', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36467 INSERT INTO `marc_subfield_structure` VALUES ('853', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36468 INSERT INTO `marc_subfield_structure` VALUES ('853', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36469 INSERT INTO `marc_subfield_structure` VALUES ('854', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36470 INSERT INTO `marc_subfield_structure` VALUES ('854', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36471 INSERT INTO `marc_subfield_structure` VALUES ('854', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36472 INSERT INTO `marc_subfield_structure` VALUES ('854', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36473 INSERT INTO `marc_subfield_structure` VALUES ('854', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36474 INSERT INTO `marc_subfield_structure` VALUES ('854', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36475 INSERT INTO `marc_subfield_structure` VALUES ('854', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36476 INSERT INTO `marc_subfield_structure` VALUES ('854', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36477 INSERT INTO `marc_subfield_structure` VALUES ('854', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36478 INSERT INTO `marc_subfield_structure` VALUES ('854', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36479 INSERT INTO `marc_subfield_structure` VALUES ('854', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36480 INSERT INTO `marc_subfield_structure` VALUES ('854', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36481 INSERT INTO `marc_subfield_structure` VALUES ('854', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36482 INSERT INTO `marc_subfield_structure` VALUES ('854', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36483 INSERT INTO `marc_subfield_structure` VALUES ('854', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36484 INSERT INTO `marc_subfield_structure` VALUES ('854', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36485 INSERT INTO `marc_subfield_structure` VALUES ('854', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36486 INSERT INTO `marc_subfield_structure` VALUES ('854', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36487 INSERT INTO `marc_subfield_structure` VALUES ('854', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36488 INSERT INTO `marc_subfield_structure` VALUES ('854', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36489 INSERT INTO `marc_subfield_structure` VALUES ('854', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36490 INSERT INTO `marc_subfield_structure` VALUES ('854', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36491 INSERT INTO `marc_subfield_structure` VALUES ('854', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36492 INSERT INTO `marc_subfield_structure` VALUES ('854', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36493 INSERT INTO `marc_subfield_structure` VALUES ('854', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36494 INSERT INTO `marc_subfield_structure` VALUES ('855', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36495 INSERT INTO `marc_subfield_structure` VALUES ('855', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36496 INSERT INTO `marc_subfield_structure` VALUES ('855', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36497 INSERT INTO `marc_subfield_structure` VALUES ('855', 'a', 'First level of enumeration', 'First level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36498 INSERT INTO `marc_subfield_structure` VALUES ('855', 'b', 'Second level of enumeration', 'Second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36499 INSERT INTO `marc_subfield_structure` VALUES ('855', 'c', 'Third level of enumeration', 'Third level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36500 INSERT INTO `marc_subfield_structure` VALUES ('855', 'd', 'Fourth level of enumeration', 'Fourth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36501 INSERT INTO `marc_subfield_structure` VALUES ('855', 'e', 'Fifth level of enumeration', 'Fifth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36502 INSERT INTO `marc_subfield_structure` VALUES ('855', 'f', 'Sixth level of enumeration', 'Sixth level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36503 INSERT INTO `marc_subfield_structure` VALUES ('855', 'g', 'Alternative numbering scheme, first level of enumeration', 'Alternative numbering scheme, first level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36504 INSERT INTO `marc_subfield_structure` VALUES ('855', 'h', 'Alternative numbering scheme, second level of enumeration', 'Alternative numbering scheme, second level of enumeration', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36505 INSERT INTO `marc_subfield_structure` VALUES ('855', 'i', 'First level of chronology', 'First level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36506 INSERT INTO `marc_subfield_structure` VALUES ('855', 'j', 'Second level of chronology', 'Second level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36507 INSERT INTO `marc_subfield_structure` VALUES ('855', 'k', 'Third level of chronology', 'Third level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36508 INSERT INTO `marc_subfield_structure` VALUES ('855', 'l', 'Fourth level of chronology', 'Fourth level of chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36509 INSERT INTO `marc_subfield_structure` VALUES ('855', 'm', 'Alternative numbering scheme, chronology', 'Alternative numbering scheme, chronology', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36510 INSERT INTO `marc_subfield_structure` VALUES ('855', 'n', 'Pattern note', 'Pattern note', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36511 INSERT INTO `marc_subfield_structure` VALUES ('855', 'p', 'Number of pieces per issuance', 'Number of pieces per issuance', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36512 INSERT INTO `marc_subfield_structure` VALUES ('855', 't', 'Copy', 'Copy', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36513 INSERT INTO `marc_subfield_structure` VALUES ('855', 'u', 'Bibliographic units per next higher level', 'Bibliographic units per next higher level', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36514 INSERT INTO `marc_subfield_structure` VALUES ('855', 'v', 'Numbering continuity', 'Numbering continuity', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36515 INSERT INTO `marc_subfield_structure` VALUES ('855', 'w', 'Frequency', 'Frequency', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36516 INSERT INTO `marc_subfield_structure` VALUES ('855', 'x', 'Calendar change', 'Calendar change', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36517 INSERT INTO `marc_subfield_structure` VALUES ('855', 'y', 'Regularity pattern', 'Regularity pattern', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36518 INSERT INTO `marc_subfield_structure` VALUES ('855', 'z', 'Numbering scheme', 'Numbering scheme', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36519 INSERT INTO `marc_subfield_structure` VALUES ('856', '2', 'Access method', 'Access method', 0, 0, '', 8, '', '', '', 0, -6, 'SER', '', '');
36520 INSERT INTO `marc_subfield_structure` VALUES ('856', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', 0, -6, 'SER', '', '');
36521 INSERT INTO `marc_subfield_structure` VALUES ('856', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', 0, -6, 'SER', '', '');
36522 INSERT INTO `marc_subfield_structure` VALUES ('856', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', 0, -6, 'SER', '', '');
36523 INSERT INTO `marc_subfield_structure` VALUES ('856', 'a', 'Host name', 'Host name', 1, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36524 INSERT INTO `marc_subfield_structure` VALUES ('856', 'b', 'Access number', 'Access number', 1, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36525 INSERT INTO `marc_subfield_structure` VALUES ('856', 'c', 'Compression information', 'Compression information', 1, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36526 INSERT INTO `marc_subfield_structure` VALUES ('856', 'd', 'Path', 'Path', 1, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36527 INSERT INTO `marc_subfield_structure` VALUES ('856', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36528 INSERT INTO `marc_subfield_structure` VALUES ('856', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36529 INSERT INTO `marc_subfield_structure` VALUES ('856', 'i', 'Instruction', 'Instruction', 1, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36530 INSERT INTO `marc_subfield_structure` VALUES ('856', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36531 INSERT INTO `marc_subfield_structure` VALUES ('856', 'k', 'Password', 'Password', 0, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36532 INSERT INTO `marc_subfield_structure` VALUES ('856', 'l', 'Logon', 'Logon', 0, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36533 INSERT INTO `marc_subfield_structure` VALUES ('856', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36534 INSERT INTO `marc_subfield_structure` VALUES ('856', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36535 INSERT INTO `marc_subfield_structure` VALUES ('856', 'o', 'Operating system', 'Operating system', 0, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36536 INSERT INTO `marc_subfield_structure` VALUES ('856', 'p', 'Port', 'Port', 0, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36537 INSERT INTO `marc_subfield_structure` VALUES ('856', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36538 INSERT INTO `marc_subfield_structure` VALUES ('856', 'r', 'Settings', 'Settings', 0, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36539 INSERT INTO `marc_subfield_structure` VALUES ('856', 's', 'File size', 'File size', 1, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36540 INSERT INTO `marc_subfield_structure` VALUES ('856', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36541 INSERT INTO `marc_subfield_structure` VALUES ('856', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, 'biblioitems.url', 8, '', '', '', 1, -1, 'SER', '', '');
36542 INSERT INTO `marc_subfield_structure` VALUES ('856', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36543 INSERT INTO `marc_subfield_structure` VALUES ('856', 'w', 'Record control number', 'Record control number', 1, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36544 INSERT INTO `marc_subfield_structure` VALUES ('856', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 1, 'SER', '', '');
36545 INSERT INTO `marc_subfield_structure` VALUES ('856', 'y', 'Link text', 'Link text', 1, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36546 INSERT INTO `marc_subfield_structure` VALUES ('856', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, -1, 'SER', '', '');
36547 INSERT INTO `marc_subfield_structure` VALUES ('859', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'SER', '', '');
36548 INSERT INTO `marc_subfield_structure` VALUES ('859', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'SER', '', '');
36549 INSERT INTO `marc_subfield_structure` VALUES ('859', 'd', 'TDC (RLIN)', 'TDC (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'SER', '', '');
36550 INSERT INTO `marc_subfield_structure` VALUES ('859', 'l', 'LIB (RLIN)', 'LIB (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'SER', '', '');
36551 INSERT INTO `marc_subfield_structure` VALUES ('859', 'p', 'PRI (RLIN)', 'PRI (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'SER', '', '');
36552 INSERT INTO `marc_subfield_structure` VALUES ('859', 'r', 'REG (RLIN)', 'REG (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'SER', '', '');
36553 INSERT INTO `marc_subfield_structure` VALUES ('859', 'v', 'VER (RLIN)', 'VER (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'SER', '', '');
36554 INSERT INTO `marc_subfield_structure` VALUES ('859', 'x', 'LDEL (RLIN)', 'LDEL (RLIN)', 0, 0, '', 8, '', '', '', 0, 5, 'SER', '', '');
36555 INSERT INTO `marc_subfield_structure` VALUES ('866', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36556 INSERT INTO `marc_subfield_structure` VALUES ('866', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36557 INSERT INTO `marc_subfield_structure` VALUES ('866', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'SER', '', '');
36558 INSERT INTO `marc_subfield_structure` VALUES ('866', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'SER', '', '');
36559 INSERT INTO `marc_subfield_structure` VALUES ('866', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'SER', '', '');
36560 INSERT INTO `marc_subfield_structure` VALUES ('867', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36561 INSERT INTO `marc_subfield_structure` VALUES ('867', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36562 INSERT INTO `marc_subfield_structure` VALUES ('867', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'SER', '', '');
36563 INSERT INTO `marc_subfield_structure` VALUES ('867', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'SER', '', '');
36564 INSERT INTO `marc_subfield_structure` VALUES ('867', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'SER', '', '');
36565 INSERT INTO `marc_subfield_structure` VALUES ('868', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36566 INSERT INTO `marc_subfield_structure` VALUES ('868', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36567 INSERT INTO `marc_subfield_structure` VALUES ('868', 'a', 'Textual string', 'Textual string', 0, 0, '', 8, '', '', '', 0, 5, 'SER', '', '');
36568 INSERT INTO `marc_subfield_structure` VALUES ('868', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', 0, 5, 'SER', '', '');
36569 INSERT INTO `marc_subfield_structure` VALUES ('868', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', 0, 5, 'SER', '', '');
36570 INSERT INTO `marc_subfield_structure` VALUES ('870', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36571 INSERT INTO `marc_subfield_structure` VALUES ('870', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36572 INSERT INTO `marc_subfield_structure` VALUES ('870', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36573 INSERT INTO `marc_subfield_structure` VALUES ('870', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36574 INSERT INTO `marc_subfield_structure` VALUES ('870', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36575 INSERT INTO `marc_subfield_structure` VALUES ('870', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36576 INSERT INTO `marc_subfield_structure` VALUES ('870', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36577 INSERT INTO `marc_subfield_structure` VALUES ('870', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36578 INSERT INTO `marc_subfield_structure` VALUES ('870', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36579 INSERT INTO `marc_subfield_structure` VALUES ('870', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36580 INSERT INTO `marc_subfield_structure` VALUES ('870', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36581 INSERT INTO `marc_subfield_structure` VALUES ('870', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36582 INSERT INTO `marc_subfield_structure` VALUES ('870', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36583 INSERT INTO `marc_subfield_structure` VALUES ('870', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36584 INSERT INTO `marc_subfield_structure` VALUES ('870', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36585 INSERT INTO `marc_subfield_structure` VALUES ('870', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36586 INSERT INTO `marc_subfield_structure` VALUES ('870', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36587 INSERT INTO `marc_subfield_structure` VALUES ('871', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36588 INSERT INTO `marc_subfield_structure` VALUES ('871', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36589 INSERT INTO `marc_subfield_structure` VALUES ('871', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36590 INSERT INTO `marc_subfield_structure` VALUES ('871', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36591 INSERT INTO `marc_subfield_structure` VALUES ('871', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36592 INSERT INTO `marc_subfield_structure` VALUES ('871', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36593 INSERT INTO `marc_subfield_structure` VALUES ('871', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36594 INSERT INTO `marc_subfield_structure` VALUES ('871', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36595 INSERT INTO `marc_subfield_structure` VALUES ('871', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36596 INSERT INTO `marc_subfield_structure` VALUES ('871', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36597 INSERT INTO `marc_subfield_structure` VALUES ('871', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36598 INSERT INTO `marc_subfield_structure` VALUES ('871', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36599 INSERT INTO `marc_subfield_structure` VALUES ('871', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36600 INSERT INTO `marc_subfield_structure` VALUES ('871', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36601 INSERT INTO `marc_subfield_structure` VALUES ('871', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36602 INSERT INTO `marc_subfield_structure` VALUES ('871', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36603 INSERT INTO `marc_subfield_structure` VALUES ('872', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36604 INSERT INTO `marc_subfield_structure` VALUES ('872', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36605 INSERT INTO `marc_subfield_structure` VALUES ('872', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36606 INSERT INTO `marc_subfield_structure` VALUES ('872', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36607 INSERT INTO `marc_subfield_structure` VALUES ('872', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36608 INSERT INTO `marc_subfield_structure` VALUES ('872', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36609 INSERT INTO `marc_subfield_structure` VALUES ('872', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36610 INSERT INTO `marc_subfield_structure` VALUES ('872', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36611 INSERT INTO `marc_subfield_structure` VALUES ('872', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36612 INSERT INTO `marc_subfield_structure` VALUES ('872', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36613 INSERT INTO `marc_subfield_structure` VALUES ('872', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36614 INSERT INTO `marc_subfield_structure` VALUES ('872', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36615 INSERT INTO `marc_subfield_structure` VALUES ('872', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36616 INSERT INTO `marc_subfield_structure` VALUES ('872', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36617 INSERT INTO `marc_subfield_structure` VALUES ('872', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36618 INSERT INTO `marc_subfield_structure` VALUES ('872', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36619 INSERT INTO `marc_subfield_structure` VALUES ('872', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36620 INSERT INTO `marc_subfield_structure` VALUES ('873', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36621 INSERT INTO `marc_subfield_structure` VALUES ('873', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36622 INSERT INTO `marc_subfield_structure` VALUES ('873', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36623 INSERT INTO `marc_subfield_structure` VALUES ('873', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36624 INSERT INTO `marc_subfield_structure` VALUES ('873', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36625 INSERT INTO `marc_subfield_structure` VALUES ('873', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36626 INSERT INTO `marc_subfield_structure` VALUES ('873', 'j', 'Tag and sequence number', 'Tag and sequence number', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36627 INSERT INTO `marc_subfield_structure` VALUES ('873', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36628 INSERT INTO `marc_subfield_structure` VALUES ('873', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36629 INSERT INTO `marc_subfield_structure` VALUES ('873', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36630 INSERT INTO `marc_subfield_structure` VALUES ('873', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36631 INSERT INTO `marc_subfield_structure` VALUES ('873', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36632 INSERT INTO `marc_subfield_structure` VALUES ('873', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36633 INSERT INTO `marc_subfield_structure` VALUES ('873', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36634 INSERT INTO `marc_subfield_structure` VALUES ('873', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36635 INSERT INTO `marc_subfield_structure` VALUES ('873', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36636 INSERT INTO `marc_subfield_structure` VALUES ('876', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36637 INSERT INTO `marc_subfield_structure` VALUES ('876', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36638 INSERT INTO `marc_subfield_structure` VALUES ('876', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36639 INSERT INTO `marc_subfield_structure` VALUES ('876', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36640 INSERT INTO `marc_subfield_structure` VALUES ('876', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36641 INSERT INTO `marc_subfield_structure` VALUES ('876', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36642 INSERT INTO `marc_subfield_structure` VALUES ('876', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36643 INSERT INTO `marc_subfield_structure` VALUES ('876', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36644 INSERT INTO `marc_subfield_structure` VALUES ('876', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36645 INSERT INTO `marc_subfield_structure` VALUES ('876', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36646 INSERT INTO `marc_subfield_structure` VALUES ('876', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36647 INSERT INTO `marc_subfield_structure` VALUES ('876', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36648 INSERT INTO `marc_subfield_structure` VALUES ('876', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36649 INSERT INTO `marc_subfield_structure` VALUES ('876', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36650 INSERT INTO `marc_subfield_structure` VALUES ('876', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36651 INSERT INTO `marc_subfield_structure` VALUES ('876', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36652 INSERT INTO `marc_subfield_structure` VALUES ('877', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36653 INSERT INTO `marc_subfield_structure` VALUES ('877', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36654 INSERT INTO `marc_subfield_structure` VALUES ('877', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36655 INSERT INTO `marc_subfield_structure` VALUES ('877', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36656 INSERT INTO `marc_subfield_structure` VALUES ('877', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36657 INSERT INTO `marc_subfield_structure` VALUES ('877', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36658 INSERT INTO `marc_subfield_structure` VALUES ('877', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36659 INSERT INTO `marc_subfield_structure` VALUES ('877', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36660 INSERT INTO `marc_subfield_structure` VALUES ('877', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36661 INSERT INTO `marc_subfield_structure` VALUES ('877', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36662 INSERT INTO `marc_subfield_structure` VALUES ('877', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36663 INSERT INTO `marc_subfield_structure` VALUES ('877', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36664 INSERT INTO `marc_subfield_structure` VALUES ('877', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36665 INSERT INTO `marc_subfield_structure` VALUES ('877', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36666 INSERT INTO `marc_subfield_structure` VALUES ('877', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36667 INSERT INTO `marc_subfield_structure` VALUES ('877', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36668 INSERT INTO `marc_subfield_structure` VALUES ('878', '3', 'Materials specified', 'Materials specified', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36669 INSERT INTO `marc_subfield_structure` VALUES ('878', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36670 INSERT INTO `marc_subfield_structure` VALUES ('878', '8', 'Sequence number', 'Sequence number', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36671 INSERT INTO `marc_subfield_structure` VALUES ('878', 'a', 'Internal item number', 'Internal item number', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36672 INSERT INTO `marc_subfield_structure` VALUES ('878', 'b', 'Invalid or canceled internal item number', 'Invalid or canceled internal item number', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36673 INSERT INTO `marc_subfield_structure` VALUES ('878', 'c', 'Cost', 'Cost', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36674 INSERT INTO `marc_subfield_structure` VALUES ('878', 'd', 'Date acquired', 'Date acquired', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36675 INSERT INTO `marc_subfield_structure` VALUES ('878', 'e', 'Source of acquisition', 'Source of acquisition', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36676 INSERT INTO `marc_subfield_structure` VALUES ('878', 'h', 'Use restrictions', 'Use restrictions', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36677 INSERT INTO `marc_subfield_structure` VALUES ('878', 'j', 'Item status', 'Item status', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36678 INSERT INTO `marc_subfield_structure` VALUES ('878', 'l', 'Temporary location', 'Temporary location', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36679 INSERT INTO `marc_subfield_structure` VALUES ('878', 'p', 'Piece designation', 'Piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36680 INSERT INTO `marc_subfield_structure` VALUES ('878', 'r', 'Invalid or canceled piece designation', 'Invalid or canceled piece designation', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36681 INSERT INTO `marc_subfield_structure` VALUES ('878', 't', 'Copy number', 'Copy number', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36682 INSERT INTO `marc_subfield_structure` VALUES ('878', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36683 INSERT INTO `marc_subfield_structure` VALUES ('878', 'z', 'Public note', 'Public note', 1, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36684 INSERT INTO `marc_subfield_structure` VALUES ('880', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36685 INSERT INTO `marc_subfield_structure` VALUES ('880', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36686 INSERT INTO `marc_subfield_structure` VALUES ('880', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36687 INSERT INTO `marc_subfield_structure` VALUES ('880', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36688 INSERT INTO `marc_subfield_structure` VALUES ('880', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36689 INSERT INTO `marc_subfield_structure` VALUES ('880', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36690 INSERT INTO `marc_subfield_structure` VALUES ('880', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36691 INSERT INTO `marc_subfield_structure` VALUES ('880', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36692 INSERT INTO `marc_subfield_structure` VALUES ('880', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36693 INSERT INTO `marc_subfield_structure` VALUES ('880', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36694 INSERT INTO `marc_subfield_structure` VALUES ('880', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36695 INSERT INTO `marc_subfield_structure` VALUES ('880', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36696 INSERT INTO `marc_subfield_structure` VALUES ('880', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36697 INSERT INTO `marc_subfield_structure` VALUES ('880', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36698 INSERT INTO `marc_subfield_structure` VALUES ('880', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36699 INSERT INTO `marc_subfield_structure` VALUES ('880', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36700 INSERT INTO `marc_subfield_structure` VALUES ('880', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36701 INSERT INTO `marc_subfield_structure` VALUES ('880', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36702 INSERT INTO `marc_subfield_structure` VALUES ('880', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36703 INSERT INTO `marc_subfield_structure` VALUES ('880', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36704 INSERT INTO `marc_subfield_structure` VALUES ('880', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36705 INSERT INTO `marc_subfield_structure` VALUES ('880', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36706 INSERT INTO `marc_subfield_structure` VALUES ('880', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36707 INSERT INTO `marc_subfield_structure` VALUES ('880', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36708 INSERT INTO `marc_subfield_structure` VALUES ('880', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36709 INSERT INTO `marc_subfield_structure` VALUES ('880', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36710 INSERT INTO `marc_subfield_structure` VALUES ('880', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36711 INSERT INTO `marc_subfield_structure` VALUES ('880', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36712 INSERT INTO `marc_subfield_structure` VALUES ('880', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36713 INSERT INTO `marc_subfield_structure` VALUES ('880', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36714 INSERT INTO `marc_subfield_structure` VALUES ('880', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36715 INSERT INTO `marc_subfield_structure` VALUES ('880', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36716 INSERT INTO `marc_subfield_structure` VALUES ('880', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36717 INSERT INTO `marc_subfield_structure` VALUES ('880', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36718 INSERT INTO `marc_subfield_structure` VALUES ('886', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36719 INSERT INTO `marc_subfield_structure` VALUES ('886', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36720 INSERT INTO `marc_subfield_structure` VALUES ('886', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36721 INSERT INTO `marc_subfield_structure` VALUES ('886', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36722 INSERT INTO `marc_subfield_structure` VALUES ('886', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36723 INSERT INTO `marc_subfield_structure` VALUES ('886', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36724 INSERT INTO `marc_subfield_structure` VALUES ('886', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36725 INSERT INTO `marc_subfield_structure` VALUES ('886', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36726 INSERT INTO `marc_subfield_structure` VALUES ('886', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36727 INSERT INTO `marc_subfield_structure` VALUES ('886', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36728 INSERT INTO `marc_subfield_structure` VALUES ('886', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36729 INSERT INTO `marc_subfield_structure` VALUES ('886', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36730 INSERT INTO `marc_subfield_structure` VALUES ('886', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36731 INSERT INTO `marc_subfield_structure` VALUES ('886', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36732 INSERT INTO `marc_subfield_structure` VALUES ('886', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36733 INSERT INTO `marc_subfield_structure` VALUES ('886', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36734 INSERT INTO `marc_subfield_structure` VALUES ('886', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36735 INSERT INTO `marc_subfield_structure` VALUES ('886', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36736 INSERT INTO `marc_subfield_structure` VALUES ('886', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36737 INSERT INTO `marc_subfield_structure` VALUES ('886', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36738 INSERT INTO `marc_subfield_structure` VALUES ('886', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36739 INSERT INTO `marc_subfield_structure` VALUES ('886', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36740 INSERT INTO `marc_subfield_structure` VALUES ('886', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36741 INSERT INTO `marc_subfield_structure` VALUES ('886', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36742 INSERT INTO `marc_subfield_structure` VALUES ('886', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36743 INSERT INTO `marc_subfield_structure` VALUES ('886', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36744 INSERT INTO `marc_subfield_structure` VALUES ('886', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36745 INSERT INTO `marc_subfield_structure` VALUES ('886', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36746 INSERT INTO `marc_subfield_structure` VALUES ('886', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36747 INSERT INTO `marc_subfield_structure` VALUES ('886', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36748 INSERT INTO `marc_subfield_structure` VALUES ('886', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36749 INSERT INTO `marc_subfield_structure` VALUES ('886', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36750 INSERT INTO `marc_subfield_structure` VALUES ('886', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36751 INSERT INTO `marc_subfield_structure` VALUES ('886', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36752 INSERT INTO `marc_subfield_structure` VALUES ('886', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36753 INSERT INTO `marc_subfield_structure` VALUES ('886', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36754 INSERT INTO `marc_subfield_structure` VALUES ('887', '2', 'Source of data', 'Source of data', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36755 INSERT INTO `marc_subfield_structure` VALUES ('887', 'a', 'Content of non-MARC field', 'Content of non-MARC field', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36756 INSERT INTO `marc_subfield_structure` VALUES ('896', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'SER', '', '');
36757 INSERT INTO `marc_subfield_structure` VALUES ('896', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36758 INSERT INTO `marc_subfield_structure` VALUES ('896', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36759 INSERT INTO `marc_subfield_structure` VALUES ('896', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36760 INSERT INTO `marc_subfield_structure` VALUES ('896', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'SER', '', '');
36761 INSERT INTO `marc_subfield_structure` VALUES ('896', 'a', 'Personal name', 'Personal name', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36762 INSERT INTO `marc_subfield_structure` VALUES ('896', 'b', 'Numeration', 'Numeration', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36763 INSERT INTO `marc_subfield_structure` VALUES ('896', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36764 INSERT INTO `marc_subfield_structure` VALUES ('896', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36765 INSERT INTO `marc_subfield_structure` VALUES ('896', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36766 INSERT INTO `marc_subfield_structure` VALUES ('896', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36767 INSERT INTO `marc_subfield_structure` VALUES ('896', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36768 INSERT INTO `marc_subfield_structure` VALUES ('896', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36769 INSERT INTO `marc_subfield_structure` VALUES ('896', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36770 INSERT INTO `marc_subfield_structure` VALUES ('896', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36771 INSERT INTO `marc_subfield_structure` VALUES ('896', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36772 INSERT INTO `marc_subfield_structure` VALUES ('896', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36773 INSERT INTO `marc_subfield_structure` VALUES ('896', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36774 INSERT INTO `marc_subfield_structure` VALUES ('896', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36775 INSERT INTO `marc_subfield_structure` VALUES ('896', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36776 INSERT INTO `marc_subfield_structure` VALUES ('896', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36777 INSERT INTO `marc_subfield_structure` VALUES ('896', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36778 INSERT INTO `marc_subfield_structure` VALUES ('896', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36779 INSERT INTO `marc_subfield_structure` VALUES ('896', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36780 INSERT INTO `marc_subfield_structure` VALUES ('896', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36781 INSERT INTO `marc_subfield_structure` VALUES ('896', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36782 INSERT INTO `marc_subfield_structure` VALUES ('897', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'SER', '', '');
36783 INSERT INTO `marc_subfield_structure` VALUES ('897', '4', 'Relator code', 'Relator code', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36784 INSERT INTO `marc_subfield_structure` VALUES ('897', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36785 INSERT INTO `marc_subfield_structure` VALUES ('897', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36786 INSERT INTO `marc_subfield_structure` VALUES ('897', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'SER', '', '');
36787 INSERT INTO `marc_subfield_structure` VALUES ('897', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36788 INSERT INTO `marc_subfield_structure` VALUES ('897', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36789 INSERT INTO `marc_subfield_structure` VALUES ('897', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36790 INSERT INTO `marc_subfield_structure` VALUES ('897', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36791 INSERT INTO `marc_subfield_structure` VALUES ('897', 'e', 'Relator term', 'Relator term', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36792 INSERT INTO `marc_subfield_structure` VALUES ('897', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36793 INSERT INTO `marc_subfield_structure` VALUES ('897', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36794 INSERT INTO `marc_subfield_structure` VALUES ('897', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36795 INSERT INTO `marc_subfield_structure` VALUES ('897', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36796 INSERT INTO `marc_subfield_structure` VALUES ('897', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36797 INSERT INTO `marc_subfield_structure` VALUES ('897', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36798 INSERT INTO `marc_subfield_structure` VALUES ('897', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36799 INSERT INTO `marc_subfield_structure` VALUES ('897', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36800 INSERT INTO `marc_subfield_structure` VALUES ('897', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36801 INSERT INTO `marc_subfield_structure` VALUES ('897', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36802 INSERT INTO `marc_subfield_structure` VALUES ('897', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36803 INSERT INTO `marc_subfield_structure` VALUES ('897', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36804 INSERT INTO `marc_subfield_structure` VALUES ('897', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36805 INSERT INTO `marc_subfield_structure` VALUES ('897', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36806 INSERT INTO `marc_subfield_structure` VALUES ('898', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'SER', '', '');
36807 INSERT INTO `marc_subfield_structure` VALUES ('898', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36808 INSERT INTO `marc_subfield_structure` VALUES ('898', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36809 INSERT INTO `marc_subfield_structure` VALUES ('898', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36810 INSERT INTO `marc_subfield_structure` VALUES ('898', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'SER', '', '');
36811 INSERT INTO `marc_subfield_structure` VALUES ('898', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36812 INSERT INTO `marc_subfield_structure` VALUES ('898', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36813 INSERT INTO `marc_subfield_structure` VALUES ('898', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36814 INSERT INTO `marc_subfield_structure` VALUES ('898', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36815 INSERT INTO `marc_subfield_structure` VALUES ('898', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36816 INSERT INTO `marc_subfield_structure` VALUES ('898', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36817 INSERT INTO `marc_subfield_structure` VALUES ('898', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36818 INSERT INTO `marc_subfield_structure` VALUES ('898', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36819 INSERT INTO `marc_subfield_structure` VALUES ('898', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36820 INSERT INTO `marc_subfield_structure` VALUES ('898', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36821 INSERT INTO `marc_subfield_structure` VALUES ('898', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36822 INSERT INTO `marc_subfield_structure` VALUES ('898', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36823 INSERT INTO `marc_subfield_structure` VALUES ('898', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36824 INSERT INTO `marc_subfield_structure` VALUES ('898', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36825 INSERT INTO `marc_subfield_structure` VALUES ('898', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36826 INSERT INTO `marc_subfield_structure` VALUES ('898', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36827 INSERT INTO `marc_subfield_structure` VALUES ('898', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
36828 INSERT INTO `marc_subfield_structure` VALUES ('899', '%', '% (RLIN)', '% (RLIN)', 0, 0, '', 8, '', '', '', 0, -6, 'SER', '', '');
36829 INSERT INTO `marc_subfield_structure` VALUES ('899', '6', 'Linkage', 'Linkage', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36830 INSERT INTO `marc_subfield_structure` VALUES ('899', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36831 INSERT INTO `marc_subfield_structure` VALUES ('899', '9', '9 (RLIN)', '9 (RLIN)', 0, 0, '', 8, '', '', '', 0, -5, 'SER', '', '');
36832 INSERT INTO `marc_subfield_structure` VALUES ('899', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36833 INSERT INTO `marc_subfield_structure` VALUES ('899', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36834 INSERT INTO `marc_subfield_structure` VALUES ('899', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36835 INSERT INTO `marc_subfield_structure` VALUES ('899', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36836 INSERT INTO `marc_subfield_structure` VALUES ('899', 'h', 'Medium', 'Medium', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36837 INSERT INTO `marc_subfield_structure` VALUES ('899', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36838 INSERT INTO `marc_subfield_structure` VALUES ('899', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36839 INSERT INTO `marc_subfield_structure` VALUES ('899', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36840 INSERT INTO `marc_subfield_structure` VALUES ('899', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36841 INSERT INTO `marc_subfield_structure` VALUES ('899', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36842 INSERT INTO `marc_subfield_structure` VALUES ('899', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36843 INSERT INTO `marc_subfield_structure` VALUES ('899', 'r', 'Key for music', 'Key for music', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36844 INSERT INTO `marc_subfield_structure` VALUES ('899', 's', 'Version', 'Version', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36845 INSERT INTO `marc_subfield_structure` VALUES ('899', 't', 'Title of a work', 'Title of a work', 0, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36846 INSERT INTO `marc_subfield_structure` VALUES ('899', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 8, '', '', '', NULL, 5, 'SER', '', '');
36847 INSERT INTO `marc_subfield_structure` VALUES ('89e', '0', '0', '0', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36848 INSERT INTO `marc_subfield_structure` VALUES ('89e', '1', '1', '1', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36849 INSERT INTO `marc_subfield_structure` VALUES ('89e', '2', '2', '2', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36850 INSERT INTO `marc_subfield_structure` VALUES ('89e', '3', '3', '3', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36851 INSERT INTO `marc_subfield_structure` VALUES ('89e', '4', '4', '4', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36852 INSERT INTO `marc_subfield_structure` VALUES ('89e', '5', '5', '5', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36853 INSERT INTO `marc_subfield_structure` VALUES ('89e', '6', '6', '6', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36854 INSERT INTO `marc_subfield_structure` VALUES ('89e', '7', '7', '7', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36855 INSERT INTO `marc_subfield_structure` VALUES ('89e', '8', '8', '8', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36856 INSERT INTO `marc_subfield_structure` VALUES ('89e', '9', '9', '9', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36857 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'a', 'a', 'a', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36858 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'b', 'b', 'b', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36859 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'c', 'c', 'c', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36860 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'd', 'd', 'd', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36861 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'e', 'e', 'e', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36862 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'f', 'f', 'f', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36863 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'g', 'g', 'g', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36864 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'h', 'h', 'h', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36865 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'i', 'i', 'i', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36866 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'j', 'j', 'j', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36867 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'k', 'k', 'k', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36868 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'l', 'l', 'l', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36869 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'm', 'm', 'm', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36870 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'n', 'n', 'n', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36871 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'o', 'o', 'o', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36872 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'p', 'p', 'p', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36873 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'q', 'q', 'q', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36874 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'r', 'r', 'r', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36875 INSERT INTO `marc_subfield_structure` VALUES ('89e', 's', 's', 's', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36876 INSERT INTO `marc_subfield_structure` VALUES ('89e', 't', 't', 't', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36877 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'u', 'u', 'u', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36878 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'v', 'v', 'v', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36879 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'w', 'w', 'w', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36880 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'x', 'x', 'x', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36881 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'y', 'y', 'y', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36882 INSERT INTO `marc_subfield_structure` VALUES ('89e', 'z', 'z', 'z', 1, 0, '', 8, '', '', '', NULL, -6, 'SER', '', '');
36883 INSERT INTO `marc_subfield_structure` VALUES ('900', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
36884 INSERT INTO `marc_subfield_structure` VALUES ('900', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
36885 INSERT INTO `marc_subfield_structure` VALUES ('900', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
36886 INSERT INTO `marc_subfield_structure` VALUES ('900', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
36887 INSERT INTO `marc_subfield_structure` VALUES ('900', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
36888 INSERT INTO `marc_subfield_structure` VALUES ('900', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
36889 INSERT INTO `marc_subfield_structure` VALUES ('900', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
36890 INSERT INTO `marc_subfield_structure` VALUES ('900', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
36891 INSERT INTO `marc_subfield_structure` VALUES ('900', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
36892 INSERT INTO `marc_subfield_structure` VALUES ('900', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
36893 INSERT INTO `marc_subfield_structure` VALUES ('900', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
36894 INSERT INTO `marc_subfield_structure` VALUES ('900', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
36895 INSERT INTO `marc_subfield_structure` VALUES ('900', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
36896 INSERT INTO `marc_subfield_structure` VALUES ('900', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
36897 INSERT INTO `marc_subfield_structure` VALUES ('900', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
36898 INSERT INTO `marc_subfield_structure` VALUES ('900', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
36899 INSERT INTO `marc_subfield_structure` VALUES ('900', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
36900 INSERT INTO `marc_subfield_structure` VALUES ('900', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
36901 INSERT INTO `marc_subfield_structure` VALUES ('901', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36902 INSERT INTO `marc_subfield_structure` VALUES ('901', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36903 INSERT INTO `marc_subfield_structure` VALUES ('901', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36904 INSERT INTO `marc_subfield_structure` VALUES ('901', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36905 INSERT INTO `marc_subfield_structure` VALUES ('901', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36906 INSERT INTO `marc_subfield_structure` VALUES ('901', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36907 INSERT INTO `marc_subfield_structure` VALUES ('901', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36908 INSERT INTO `marc_subfield_structure` VALUES ('901', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36909 INSERT INTO `marc_subfield_structure` VALUES ('901', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36910 INSERT INTO `marc_subfield_structure` VALUES ('901', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36911 INSERT INTO `marc_subfield_structure` VALUES ('901', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36912 INSERT INTO `marc_subfield_structure` VALUES ('901', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36913 INSERT INTO `marc_subfield_structure` VALUES ('901', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36914 INSERT INTO `marc_subfield_structure` VALUES ('901', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36915 INSERT INTO `marc_subfield_structure` VALUES ('901', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36916 INSERT INTO `marc_subfield_structure` VALUES ('901', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36917 INSERT INTO `marc_subfield_structure` VALUES ('901', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36918 INSERT INTO `marc_subfield_structure` VALUES ('901', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36919 INSERT INTO `marc_subfield_structure` VALUES ('901', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36920 INSERT INTO `marc_subfield_structure` VALUES ('901', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36921 INSERT INTO `marc_subfield_structure` VALUES ('901', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36922 INSERT INTO `marc_subfield_structure` VALUES ('901', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36923 INSERT INTO `marc_subfield_structure` VALUES ('901', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36924 INSERT INTO `marc_subfield_structure` VALUES ('901', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36925 INSERT INTO `marc_subfield_structure` VALUES ('901', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36926 INSERT INTO `marc_subfield_structure` VALUES ('901', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36927 INSERT INTO `marc_subfield_structure` VALUES ('901', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36928 INSERT INTO `marc_subfield_structure` VALUES ('901', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36929 INSERT INTO `marc_subfield_structure` VALUES ('901', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36930 INSERT INTO `marc_subfield_structure` VALUES ('901', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36931 INSERT INTO `marc_subfield_structure` VALUES ('901', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36932 INSERT INTO `marc_subfield_structure` VALUES ('901', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36933 INSERT INTO `marc_subfield_structure` VALUES ('901', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36934 INSERT INTO `marc_subfield_structure` VALUES ('901', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36935 INSERT INTO `marc_subfield_structure` VALUES ('901', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36936 INSERT INTO `marc_subfield_structure` VALUES ('901', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36937 INSERT INTO `marc_subfield_structure` VALUES ('902', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36938 INSERT INTO `marc_subfield_structure` VALUES ('902', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36939 INSERT INTO `marc_subfield_structure` VALUES ('902', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36940 INSERT INTO `marc_subfield_structure` VALUES ('902', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36941 INSERT INTO `marc_subfield_structure` VALUES ('902', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36942 INSERT INTO `marc_subfield_structure` VALUES ('902', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36943 INSERT INTO `marc_subfield_structure` VALUES ('902', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36944 INSERT INTO `marc_subfield_structure` VALUES ('902', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36945 INSERT INTO `marc_subfield_structure` VALUES ('902', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36946 INSERT INTO `marc_subfield_structure` VALUES ('902', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36947 INSERT INTO `marc_subfield_structure` VALUES ('902', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36948 INSERT INTO `marc_subfield_structure` VALUES ('902', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36949 INSERT INTO `marc_subfield_structure` VALUES ('902', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36950 INSERT INTO `marc_subfield_structure` VALUES ('902', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36951 INSERT INTO `marc_subfield_structure` VALUES ('902', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36952 INSERT INTO `marc_subfield_structure` VALUES ('902', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36953 INSERT INTO `marc_subfield_structure` VALUES ('902', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36954 INSERT INTO `marc_subfield_structure` VALUES ('902', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36955 INSERT INTO `marc_subfield_structure` VALUES ('902', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36956 INSERT INTO `marc_subfield_structure` VALUES ('902', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36957 INSERT INTO `marc_subfield_structure` VALUES ('902', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36958 INSERT INTO `marc_subfield_structure` VALUES ('902', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36959 INSERT INTO `marc_subfield_structure` VALUES ('902', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36960 INSERT INTO `marc_subfield_structure` VALUES ('902', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36961 INSERT INTO `marc_subfield_structure` VALUES ('902', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36962 INSERT INTO `marc_subfield_structure` VALUES ('902', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36963 INSERT INTO `marc_subfield_structure` VALUES ('902', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36964 INSERT INTO `marc_subfield_structure` VALUES ('902', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36965 INSERT INTO `marc_subfield_structure` VALUES ('902', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36966 INSERT INTO `marc_subfield_structure` VALUES ('902', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36967 INSERT INTO `marc_subfield_structure` VALUES ('902', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36968 INSERT INTO `marc_subfield_structure` VALUES ('902', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36969 INSERT INTO `marc_subfield_structure` VALUES ('902', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36970 INSERT INTO `marc_subfield_structure` VALUES ('902', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36971 INSERT INTO `marc_subfield_structure` VALUES ('902', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36972 INSERT INTO `marc_subfield_structure` VALUES ('902', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36973 INSERT INTO `marc_subfield_structure` VALUES ('903', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36974 INSERT INTO `marc_subfield_structure` VALUES ('903', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36975 INSERT INTO `marc_subfield_structure` VALUES ('903', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36976 INSERT INTO `marc_subfield_structure` VALUES ('903', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36977 INSERT INTO `marc_subfield_structure` VALUES ('903', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36978 INSERT INTO `marc_subfield_structure` VALUES ('903', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36979 INSERT INTO `marc_subfield_structure` VALUES ('903', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36980 INSERT INTO `marc_subfield_structure` VALUES ('903', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36981 INSERT INTO `marc_subfield_structure` VALUES ('903', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36982 INSERT INTO `marc_subfield_structure` VALUES ('903', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36983 INSERT INTO `marc_subfield_structure` VALUES ('903', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36984 INSERT INTO `marc_subfield_structure` VALUES ('903', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36985 INSERT INTO `marc_subfield_structure` VALUES ('903', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36986 INSERT INTO `marc_subfield_structure` VALUES ('903', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36987 INSERT INTO `marc_subfield_structure` VALUES ('903', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36988 INSERT INTO `marc_subfield_structure` VALUES ('903', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36989 INSERT INTO `marc_subfield_structure` VALUES ('903', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36990 INSERT INTO `marc_subfield_structure` VALUES ('903', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36991 INSERT INTO `marc_subfield_structure` VALUES ('903', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36992 INSERT INTO `marc_subfield_structure` VALUES ('903', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36993 INSERT INTO `marc_subfield_structure` VALUES ('903', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36994 INSERT INTO `marc_subfield_structure` VALUES ('903', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36995 INSERT INTO `marc_subfield_structure` VALUES ('903', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36996 INSERT INTO `marc_subfield_structure` VALUES ('903', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36997 INSERT INTO `marc_subfield_structure` VALUES ('903', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36998 INSERT INTO `marc_subfield_structure` VALUES ('903', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
36999 INSERT INTO `marc_subfield_structure` VALUES ('903', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37000 INSERT INTO `marc_subfield_structure` VALUES ('903', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37001 INSERT INTO `marc_subfield_structure` VALUES ('903', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37002 INSERT INTO `marc_subfield_structure` VALUES ('903', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37003 INSERT INTO `marc_subfield_structure` VALUES ('903', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37004 INSERT INTO `marc_subfield_structure` VALUES ('903', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37005 INSERT INTO `marc_subfield_structure` VALUES ('903', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37006 INSERT INTO `marc_subfield_structure` VALUES ('903', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37007 INSERT INTO `marc_subfield_structure` VALUES ('903', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37008 INSERT INTO `marc_subfield_structure` VALUES ('903', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37009 INSERT INTO `marc_subfield_structure` VALUES ('904', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37010 INSERT INTO `marc_subfield_structure` VALUES ('904', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37011 INSERT INTO `marc_subfield_structure` VALUES ('904', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37012 INSERT INTO `marc_subfield_structure` VALUES ('904', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37013 INSERT INTO `marc_subfield_structure` VALUES ('904', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37014 INSERT INTO `marc_subfield_structure` VALUES ('904', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37015 INSERT INTO `marc_subfield_structure` VALUES ('904', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37016 INSERT INTO `marc_subfield_structure` VALUES ('904', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37017 INSERT INTO `marc_subfield_structure` VALUES ('904', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37018 INSERT INTO `marc_subfield_structure` VALUES ('904', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37019 INSERT INTO `marc_subfield_structure` VALUES ('904', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37020 INSERT INTO `marc_subfield_structure` VALUES ('904', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37021 INSERT INTO `marc_subfield_structure` VALUES ('904', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37022 INSERT INTO `marc_subfield_structure` VALUES ('904', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37023 INSERT INTO `marc_subfield_structure` VALUES ('904', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37024 INSERT INTO `marc_subfield_structure` VALUES ('904', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37025 INSERT INTO `marc_subfield_structure` VALUES ('904', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37026 INSERT INTO `marc_subfield_structure` VALUES ('904', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37027 INSERT INTO `marc_subfield_structure` VALUES ('904', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37028 INSERT INTO `marc_subfield_structure` VALUES ('904', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37029 INSERT INTO `marc_subfield_structure` VALUES ('904', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37030 INSERT INTO `marc_subfield_structure` VALUES ('904', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37031 INSERT INTO `marc_subfield_structure` VALUES ('904', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37032 INSERT INTO `marc_subfield_structure` VALUES ('904', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37033 INSERT INTO `marc_subfield_structure` VALUES ('904', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37034 INSERT INTO `marc_subfield_structure` VALUES ('904', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37035 INSERT INTO `marc_subfield_structure` VALUES ('904', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37036 INSERT INTO `marc_subfield_structure` VALUES ('904', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37037 INSERT INTO `marc_subfield_structure` VALUES ('904', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37038 INSERT INTO `marc_subfield_structure` VALUES ('904', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37039 INSERT INTO `marc_subfield_structure` VALUES ('904', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37040 INSERT INTO `marc_subfield_structure` VALUES ('904', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37041 INSERT INTO `marc_subfield_structure` VALUES ('904', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37042 INSERT INTO `marc_subfield_structure` VALUES ('904', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37043 INSERT INTO `marc_subfield_structure` VALUES ('904', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37044 INSERT INTO `marc_subfield_structure` VALUES ('904', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37045 INSERT INTO `marc_subfield_structure` VALUES ('905', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37046 INSERT INTO `marc_subfield_structure` VALUES ('905', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37047 INSERT INTO `marc_subfield_structure` VALUES ('905', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37048 INSERT INTO `marc_subfield_structure` VALUES ('905', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37049 INSERT INTO `marc_subfield_structure` VALUES ('905', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37050 INSERT INTO `marc_subfield_structure` VALUES ('905', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37051 INSERT INTO `marc_subfield_structure` VALUES ('905', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37052 INSERT INTO `marc_subfield_structure` VALUES ('905', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37053 INSERT INTO `marc_subfield_structure` VALUES ('905', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37054 INSERT INTO `marc_subfield_structure` VALUES ('905', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37055 INSERT INTO `marc_subfield_structure` VALUES ('905', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37056 INSERT INTO `marc_subfield_structure` VALUES ('905', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37057 INSERT INTO `marc_subfield_structure` VALUES ('905', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37058 INSERT INTO `marc_subfield_structure` VALUES ('905', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37059 INSERT INTO `marc_subfield_structure` VALUES ('905', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37060 INSERT INTO `marc_subfield_structure` VALUES ('905', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37061 INSERT INTO `marc_subfield_structure` VALUES ('905', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37062 INSERT INTO `marc_subfield_structure` VALUES ('905', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37063 INSERT INTO `marc_subfield_structure` VALUES ('905', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37064 INSERT INTO `marc_subfield_structure` VALUES ('905', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37065 INSERT INTO `marc_subfield_structure` VALUES ('905', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37066 INSERT INTO `marc_subfield_structure` VALUES ('905', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37067 INSERT INTO `marc_subfield_structure` VALUES ('905', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37068 INSERT INTO `marc_subfield_structure` VALUES ('905', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37069 INSERT INTO `marc_subfield_structure` VALUES ('905', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37070 INSERT INTO `marc_subfield_structure` VALUES ('905', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37071 INSERT INTO `marc_subfield_structure` VALUES ('905', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37072 INSERT INTO `marc_subfield_structure` VALUES ('905', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37073 INSERT INTO `marc_subfield_structure` VALUES ('905', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37074 INSERT INTO `marc_subfield_structure` VALUES ('905', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37075 INSERT INTO `marc_subfield_structure` VALUES ('905', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37076 INSERT INTO `marc_subfield_structure` VALUES ('905', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37077 INSERT INTO `marc_subfield_structure` VALUES ('905', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37078 INSERT INTO `marc_subfield_structure` VALUES ('905', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37079 INSERT INTO `marc_subfield_structure` VALUES ('905', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37080 INSERT INTO `marc_subfield_structure` VALUES ('905', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37081 INSERT INTO `marc_subfield_structure` VALUES ('906', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37082 INSERT INTO `marc_subfield_structure` VALUES ('906', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37083 INSERT INTO `marc_subfield_structure` VALUES ('906', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37084 INSERT INTO `marc_subfield_structure` VALUES ('906', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37085 INSERT INTO `marc_subfield_structure` VALUES ('906', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37086 INSERT INTO `marc_subfield_structure` VALUES ('906', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37087 INSERT INTO `marc_subfield_structure` VALUES ('906', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37088 INSERT INTO `marc_subfield_structure` VALUES ('906', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37089 INSERT INTO `marc_subfield_structure` VALUES ('906', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37090 INSERT INTO `marc_subfield_structure` VALUES ('906', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37091 INSERT INTO `marc_subfield_structure` VALUES ('906', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37092 INSERT INTO `marc_subfield_structure` VALUES ('906', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37093 INSERT INTO `marc_subfield_structure` VALUES ('906', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37094 INSERT INTO `marc_subfield_structure` VALUES ('906', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37095 INSERT INTO `marc_subfield_structure` VALUES ('906', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37096 INSERT INTO `marc_subfield_structure` VALUES ('906', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37097 INSERT INTO `marc_subfield_structure` VALUES ('906', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37098 INSERT INTO `marc_subfield_structure` VALUES ('906', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37099 INSERT INTO `marc_subfield_structure` VALUES ('906', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37100 INSERT INTO `marc_subfield_structure` VALUES ('906', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37101 INSERT INTO `marc_subfield_structure` VALUES ('906', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37102 INSERT INTO `marc_subfield_structure` VALUES ('906', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37103 INSERT INTO `marc_subfield_structure` VALUES ('906', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37104 INSERT INTO `marc_subfield_structure` VALUES ('906', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37105 INSERT INTO `marc_subfield_structure` VALUES ('906', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37106 INSERT INTO `marc_subfield_structure` VALUES ('906', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37107 INSERT INTO `marc_subfield_structure` VALUES ('906', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37108 INSERT INTO `marc_subfield_structure` VALUES ('906', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37109 INSERT INTO `marc_subfield_structure` VALUES ('906', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37110 INSERT INTO `marc_subfield_structure` VALUES ('906', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37111 INSERT INTO `marc_subfield_structure` VALUES ('906', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37112 INSERT INTO `marc_subfield_structure` VALUES ('906', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37113 INSERT INTO `marc_subfield_structure` VALUES ('906', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37114 INSERT INTO `marc_subfield_structure` VALUES ('906', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37115 INSERT INTO `marc_subfield_structure` VALUES ('906', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37116 INSERT INTO `marc_subfield_structure` VALUES ('906', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37117 INSERT INTO `marc_subfield_structure` VALUES ('907', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37118 INSERT INTO `marc_subfield_structure` VALUES ('907', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37119 INSERT INTO `marc_subfield_structure` VALUES ('907', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37120 INSERT INTO `marc_subfield_structure` VALUES ('907', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37121 INSERT INTO `marc_subfield_structure` VALUES ('907', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37122 INSERT INTO `marc_subfield_structure` VALUES ('907', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37123 INSERT INTO `marc_subfield_structure` VALUES ('907', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37124 INSERT INTO `marc_subfield_structure` VALUES ('907', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37125 INSERT INTO `marc_subfield_structure` VALUES ('907', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37126 INSERT INTO `marc_subfield_structure` VALUES ('907', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37127 INSERT INTO `marc_subfield_structure` VALUES ('907', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37128 INSERT INTO `marc_subfield_structure` VALUES ('907', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37129 INSERT INTO `marc_subfield_structure` VALUES ('907', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37130 INSERT INTO `marc_subfield_structure` VALUES ('907', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37131 INSERT INTO `marc_subfield_structure` VALUES ('907', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37132 INSERT INTO `marc_subfield_structure` VALUES ('907', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37133 INSERT INTO `marc_subfield_structure` VALUES ('907', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37134 INSERT INTO `marc_subfield_structure` VALUES ('907', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37135 INSERT INTO `marc_subfield_structure` VALUES ('907', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37136 INSERT INTO `marc_subfield_structure` VALUES ('907', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37137 INSERT INTO `marc_subfield_structure` VALUES ('907', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37138 INSERT INTO `marc_subfield_structure` VALUES ('907', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37139 INSERT INTO `marc_subfield_structure` VALUES ('907', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37140 INSERT INTO `marc_subfield_structure` VALUES ('907', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37141 INSERT INTO `marc_subfield_structure` VALUES ('907', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37142 INSERT INTO `marc_subfield_structure` VALUES ('907', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37143 INSERT INTO `marc_subfield_structure` VALUES ('907', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37144 INSERT INTO `marc_subfield_structure` VALUES ('907', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37145 INSERT INTO `marc_subfield_structure` VALUES ('907', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37146 INSERT INTO `marc_subfield_structure` VALUES ('907', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37147 INSERT INTO `marc_subfield_structure` VALUES ('907', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37148 INSERT INTO `marc_subfield_structure` VALUES ('907', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37149 INSERT INTO `marc_subfield_structure` VALUES ('907', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37150 INSERT INTO `marc_subfield_structure` VALUES ('907', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37151 INSERT INTO `marc_subfield_structure` VALUES ('907', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37152 INSERT INTO `marc_subfield_structure` VALUES ('907', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37153 INSERT INTO `marc_subfield_structure` VALUES ('908', 'a', 'Put command parameter', 'Put command parameter', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37154 INSERT INTO `marc_subfield_structure` VALUES ('910', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37155 INSERT INTO `marc_subfield_structure` VALUES ('910', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37156 INSERT INTO `marc_subfield_structure` VALUES ('910', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37157 INSERT INTO `marc_subfield_structure` VALUES ('910', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37158 INSERT INTO `marc_subfield_structure` VALUES ('910', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37159 INSERT INTO `marc_subfield_structure` VALUES ('910', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37160 INSERT INTO `marc_subfield_structure` VALUES ('910', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37161 INSERT INTO `marc_subfield_structure` VALUES ('910', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37162 INSERT INTO `marc_subfield_structure` VALUES ('910', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37163 INSERT INTO `marc_subfield_structure` VALUES ('910', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37164 INSERT INTO `marc_subfield_structure` VALUES ('910', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37165 INSERT INTO `marc_subfield_structure` VALUES ('910', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37166 INSERT INTO `marc_subfield_structure` VALUES ('910', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37167 INSERT INTO `marc_subfield_structure` VALUES ('910', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37168 INSERT INTO `marc_subfield_structure` VALUES ('910', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37169 INSERT INTO `marc_subfield_structure` VALUES ('910', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37170 INSERT INTO `marc_subfield_structure` VALUES ('91o', 'a', 'User-option data', 'User-option data', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37171 INSERT INTO `marc_subfield_structure` VALUES ('91r', 'a', 'RLG standards note', 'RLG standards note', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37172 INSERT INTO `marc_subfield_structure` VALUES ('911', '4', 'Relator code', 'Relator code', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37173 INSERT INTO `marc_subfield_structure` VALUES ('911', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37174 INSERT INTO `marc_subfield_structure` VALUES ('911', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37175 INSERT INTO `marc_subfield_structure` VALUES ('911', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37176 INSERT INTO `marc_subfield_structure` VALUES ('911', 'b', 'Number [OBSOLETE]', 'Number [OBSOLETE]', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37177 INSERT INTO `marc_subfield_structure` VALUES ('911', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37178 INSERT INTO `marc_subfield_structure` VALUES ('911', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37179 INSERT INTO `marc_subfield_structure` VALUES ('911', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37180 INSERT INTO `marc_subfield_structure` VALUES ('911', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37181 INSERT INTO `marc_subfield_structure` VALUES ('911', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37182 INSERT INTO `marc_subfield_structure` VALUES ('911', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37183 INSERT INTO `marc_subfield_structure` VALUES ('911', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37184 INSERT INTO `marc_subfield_structure` VALUES ('911', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37185 INSERT INTO `marc_subfield_structure` VALUES ('911', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37186 INSERT INTO `marc_subfield_structure` VALUES ('911', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37187 INSERT INTO `marc_subfield_structure` VALUES ('911', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37188 INSERT INTO `marc_subfield_structure` VALUES ('911', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37189 INSERT INTO `marc_subfield_structure` VALUES ('930', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37190 INSERT INTO `marc_subfield_structure` VALUES ('930', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37191 INSERT INTO `marc_subfield_structure` VALUES ('930', 'a', 'Uniform title', 'Uniform title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37192 INSERT INTO `marc_subfield_structure` VALUES ('930', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37193 INSERT INTO `marc_subfield_structure` VALUES ('930', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37194 INSERT INTO `marc_subfield_structure` VALUES ('930', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37195 INSERT INTO `marc_subfield_structure` VALUES ('930', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37196 INSERT INTO `marc_subfield_structure` VALUES ('930', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37197 INSERT INTO `marc_subfield_structure` VALUES ('930', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37198 INSERT INTO `marc_subfield_structure` VALUES ('930', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37199 INSERT INTO `marc_subfield_structure` VALUES ('930', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37200 INSERT INTO `marc_subfield_structure` VALUES ('930', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37201 INSERT INTO `marc_subfield_structure` VALUES ('930', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37202 INSERT INTO `marc_subfield_structure` VALUES ('930', 'r', 'Key for music', 'Key for music', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37203 INSERT INTO `marc_subfield_structure` VALUES ('930', 's', 'Version', 'Version', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37204 INSERT INTO `marc_subfield_structure` VALUES ('930', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37205 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'a', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SER', '', '');
37206 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'b', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SER', '', '');
37207 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'c', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SER', '', '');
37208 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'd', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SER', '', '');
37209 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'e', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SER', '', '');
37210 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'f', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SER', '', '');
37211 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'g', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SER', '', '');
37212 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'h', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SER', '', '');
37213 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'i', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SER', '', '');
37214 INSERT INTO `marc_subfield_structure` VALUES ('93r', 'k', 'SHS', 'SHS', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SER', '', '');
37215 INSERT INTO `marc_subfield_structure` VALUES ('936', 'a', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 'OCLC control number(s) of parallel record(s) (OCLC); Piece used for cataloging, PUC (RLIN)', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37216 INSERT INTO `marc_subfield_structure` VALUES ('940', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37217 INSERT INTO `marc_subfield_structure` VALUES ('940', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37218 INSERT INTO `marc_subfield_structure` VALUES ('940', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', 1, -6, 'SER', '', '');
37219 INSERT INTO `marc_subfield_structure` VALUES ('940', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37220 INSERT INTO `marc_subfield_structure` VALUES ('940', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37221 INSERT INTO `marc_subfield_structure` VALUES ('940', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37222 INSERT INTO `marc_subfield_structure` VALUES ('940', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37223 INSERT INTO `marc_subfield_structure` VALUES ('940', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37224 INSERT INTO `marc_subfield_structure` VALUES ('940', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37225 INSERT INTO `marc_subfield_structure` VALUES ('940', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37226 INSERT INTO `marc_subfield_structure` VALUES ('940', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37227 INSERT INTO `marc_subfield_structure` VALUES ('940', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37228 INSERT INTO `marc_subfield_structure` VALUES ('940', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37229 INSERT INTO `marc_subfield_structure` VALUES ('940', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37230 INSERT INTO `marc_subfield_structure` VALUES ('940', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37231 INSERT INTO `marc_subfield_structure` VALUES ('941', 'a', 'Romanized title', 'Romanized title', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37232 INSERT INTO `marc_subfield_structure` VALUES ('941', 'h', 'Medium', 'Medium', 0, 0, NULL, 9, NULL, NULL, '', NULL, -6, 'SER', '', '');
37233 INSERT INTO `marc_subfield_structure` VALUES ('943', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37234 INSERT INTO `marc_subfield_structure` VALUES ('943', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37235 INSERT INTO `marc_subfield_structure` VALUES ('943', 'a', 'Uniform title', 'Unifor title', 0, 0, '', 9, '', '', '', 1, 5, 'SER', '', '130');
37236 INSERT INTO `marc_subfield_structure` VALUES ('943', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37237 INSERT INTO `marc_subfield_structure` VALUES ('943', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37238 INSERT INTO `marc_subfield_structure` VALUES ('943', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37239 INSERT INTO `marc_subfield_structure` VALUES ('943', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37240 INSERT INTO `marc_subfield_structure` VALUES ('943', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37241 INSERT INTO `marc_subfield_structure` VALUES ('943', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37242 INSERT INTO `marc_subfield_structure` VALUES ('943', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37243 INSERT INTO `marc_subfield_structure` VALUES ('943', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37244 INSERT INTO `marc_subfield_structure` VALUES ('943', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37245 INSERT INTO `marc_subfield_structure` VALUES ('943', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37246 INSERT INTO `marc_subfield_structure` VALUES ('943', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37247 INSERT INTO `marc_subfield_structure` VALUES ('943', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37248 INSERT INTO `marc_subfield_structure` VALUES ('945', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37249 INSERT INTO `marc_subfield_structure` VALUES ('945', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37250 INSERT INTO `marc_subfield_structure` VALUES ('945', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37251 INSERT INTO `marc_subfield_structure` VALUES ('945', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37252 INSERT INTO `marc_subfield_structure` VALUES ('945', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37253 INSERT INTO `marc_subfield_structure` VALUES ('945', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37254 INSERT INTO `marc_subfield_structure` VALUES ('945', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37255 INSERT INTO `marc_subfield_structure` VALUES ('945', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37256 INSERT INTO `marc_subfield_structure` VALUES ('945', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37257 INSERT INTO `marc_subfield_structure` VALUES ('945', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37258 INSERT INTO `marc_subfield_structure` VALUES ('945', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37259 INSERT INTO `marc_subfield_structure` VALUES ('945', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37260 INSERT INTO `marc_subfield_structure` VALUES ('945', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37261 INSERT INTO `marc_subfield_structure` VALUES ('945', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37262 INSERT INTO `marc_subfield_structure` VALUES ('945', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37263 INSERT INTO `marc_subfield_structure` VALUES ('945', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37264 INSERT INTO `marc_subfield_structure` VALUES ('945', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37265 INSERT INTO `marc_subfield_structure` VALUES ('945', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37266 INSERT INTO `marc_subfield_structure` VALUES ('945', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37267 INSERT INTO `marc_subfield_structure` VALUES ('945', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37268 INSERT INTO `marc_subfield_structure` VALUES ('945', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37269 INSERT INTO `marc_subfield_structure` VALUES ('945', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37270 INSERT INTO `marc_subfield_structure` VALUES ('945', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37271 INSERT INTO `marc_subfield_structure` VALUES ('945', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37272 INSERT INTO `marc_subfield_structure` VALUES ('945', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37273 INSERT INTO `marc_subfield_structure` VALUES ('945', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37274 INSERT INTO `marc_subfield_structure` VALUES ('945', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37275 INSERT INTO `marc_subfield_structure` VALUES ('945', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37276 INSERT INTO `marc_subfield_structure` VALUES ('945', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37277 INSERT INTO `marc_subfield_structure` VALUES ('945', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37278 INSERT INTO `marc_subfield_structure` VALUES ('945', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37279 INSERT INTO `marc_subfield_structure` VALUES ('945', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37280 INSERT INTO `marc_subfield_structure` VALUES ('945', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37281 INSERT INTO `marc_subfield_structure` VALUES ('945', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37282 INSERT INTO `marc_subfield_structure` VALUES ('945', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37283 INSERT INTO `marc_subfield_structure` VALUES ('945', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37284 INSERT INTO `marc_subfield_structure` VALUES ('94c', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37285 INSERT INTO `marc_subfield_structure` VALUES ('94c', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37286 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'a', 'Title', 'Title', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37287 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'b', 'Remainder of title', 'Remainder of title', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37288 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'c', 'Statement of responsibility, etc', 'Statement of responsibility, etc', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37289 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'd', 'Designation of section/part/series (SE) [OBSOLETE]', 'Designation of section section/part/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37290 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'e', 'Name of part/section/series (SE) [OBSOLETE]', 'Name of part/section/series (SE) [OBSOLETE]', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37291 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'f', 'Inclusive dates', 'Inclusive dates', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37292 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'g', 'Bulk dates', 'Bulk dates', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37293 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37294 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'k', 'Form', 'Form', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37295 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37296 INSERT INTO `marc_subfield_structure` VALUES ('94c', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37297 INSERT INTO `marc_subfield_structure` VALUES ('94c', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37298 INSERT INTO `marc_subfield_structure` VALUES ('946', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37299 INSERT INTO `marc_subfield_structure` VALUES ('946', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37300 INSERT INTO `marc_subfield_structure` VALUES ('946', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37301 INSERT INTO `marc_subfield_structure` VALUES ('946', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37302 INSERT INTO `marc_subfield_structure` VALUES ('946', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37303 INSERT INTO `marc_subfield_structure` VALUES ('946', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37304 INSERT INTO `marc_subfield_structure` VALUES ('946', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37305 INSERT INTO `marc_subfield_structure` VALUES ('946', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37306 INSERT INTO `marc_subfield_structure` VALUES ('946', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37307 INSERT INTO `marc_subfield_structure` VALUES ('946', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37308 INSERT INTO `marc_subfield_structure` VALUES ('946', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37309 INSERT INTO `marc_subfield_structure` VALUES ('946', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37310 INSERT INTO `marc_subfield_structure` VALUES ('946', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37311 INSERT INTO `marc_subfield_structure` VALUES ('946', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37312 INSERT INTO `marc_subfield_structure` VALUES ('946', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37313 INSERT INTO `marc_subfield_structure` VALUES ('946', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37314 INSERT INTO `marc_subfield_structure` VALUES ('946', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37315 INSERT INTO `marc_subfield_structure` VALUES ('946', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37316 INSERT INTO `marc_subfield_structure` VALUES ('946', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37317 INSERT INTO `marc_subfield_structure` VALUES ('946', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37318 INSERT INTO `marc_subfield_structure` VALUES ('946', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37319 INSERT INTO `marc_subfield_structure` VALUES ('946', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37320 INSERT INTO `marc_subfield_structure` VALUES ('946', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37321 INSERT INTO `marc_subfield_structure` VALUES ('946', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37322 INSERT INTO `marc_subfield_structure` VALUES ('946', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37323 INSERT INTO `marc_subfield_structure` VALUES ('946', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37324 INSERT INTO `marc_subfield_structure` VALUES ('946', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37325 INSERT INTO `marc_subfield_structure` VALUES ('946', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37326 INSERT INTO `marc_subfield_structure` VALUES ('946', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37327 INSERT INTO `marc_subfield_structure` VALUES ('946', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37328 INSERT INTO `marc_subfield_structure` VALUES ('946', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37329 INSERT INTO `marc_subfield_structure` VALUES ('946', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37330 INSERT INTO `marc_subfield_structure` VALUES ('946', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37331 INSERT INTO `marc_subfield_structure` VALUES ('946', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37332 INSERT INTO `marc_subfield_structure` VALUES ('946', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37333 INSERT INTO `marc_subfield_structure` VALUES ('946', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37334 INSERT INTO `marc_subfield_structure` VALUES ('947', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37335 INSERT INTO `marc_subfield_structure` VALUES ('947', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37336 INSERT INTO `marc_subfield_structure` VALUES ('947', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37337 INSERT INTO `marc_subfield_structure` VALUES ('947', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37338 INSERT INTO `marc_subfield_structure` VALUES ('947', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37339 INSERT INTO `marc_subfield_structure` VALUES ('947', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37340 INSERT INTO `marc_subfield_structure` VALUES ('947', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37341 INSERT INTO `marc_subfield_structure` VALUES ('947', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37342 INSERT INTO `marc_subfield_structure` VALUES ('947', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37343 INSERT INTO `marc_subfield_structure` VALUES ('947', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37344 INSERT INTO `marc_subfield_structure` VALUES ('947', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37345 INSERT INTO `marc_subfield_structure` VALUES ('947', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37346 INSERT INTO `marc_subfield_structure` VALUES ('947', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37347 INSERT INTO `marc_subfield_structure` VALUES ('947', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37348 INSERT INTO `marc_subfield_structure` VALUES ('947', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37349 INSERT INTO `marc_subfield_structure` VALUES ('947', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37350 INSERT INTO `marc_subfield_structure` VALUES ('947', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37351 INSERT INTO `marc_subfield_structure` VALUES ('947', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37352 INSERT INTO `marc_subfield_structure` VALUES ('947', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37353 INSERT INTO `marc_subfield_structure` VALUES ('947', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37354 INSERT INTO `marc_subfield_structure` VALUES ('947', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37355 INSERT INTO `marc_subfield_structure` VALUES ('947', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37356 INSERT INTO `marc_subfield_structure` VALUES ('947', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37357 INSERT INTO `marc_subfield_structure` VALUES ('947', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37358 INSERT INTO `marc_subfield_structure` VALUES ('947', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37359 INSERT INTO `marc_subfield_structure` VALUES ('947', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37360 INSERT INTO `marc_subfield_structure` VALUES ('947', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37361 INSERT INTO `marc_subfield_structure` VALUES ('947', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37362 INSERT INTO `marc_subfield_structure` VALUES ('947', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37363 INSERT INTO `marc_subfield_structure` VALUES ('947', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37364 INSERT INTO `marc_subfield_structure` VALUES ('947', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37365 INSERT INTO `marc_subfield_structure` VALUES ('947', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37366 INSERT INTO `marc_subfield_structure` VALUES ('947', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37367 INSERT INTO `marc_subfield_structure` VALUES ('947', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37368 INSERT INTO `marc_subfield_structure` VALUES ('947', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37369 INSERT INTO `marc_subfield_structure` VALUES ('947', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37370 INSERT INTO `marc_subfield_structure` VALUES ('948', '0', '0 (OCLC)', '0 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37371 INSERT INTO `marc_subfield_structure` VALUES ('948', '1', '1 (OCLC)', '1 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37372 INSERT INTO `marc_subfield_structure` VALUES ('948', '2', '2 (OCLC)', '2 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37373 INSERT INTO `marc_subfield_structure` VALUES ('948', '3', '3 (OCLC)', '3 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37374 INSERT INTO `marc_subfield_structure` VALUES ('948', '4', '4 (OCLC)', '4 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37375 INSERT INTO `marc_subfield_structure` VALUES ('948', '5', '5 (OCLC)', '5 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37376 INSERT INTO `marc_subfield_structure` VALUES ('948', '6', '6 (OCLC)', '6 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37377 INSERT INTO `marc_subfield_structure` VALUES ('948', '7', '7 (OCLC)', '7 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37378 INSERT INTO `marc_subfield_structure` VALUES ('948', '8', '8 (OCLC)', '8 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37379 INSERT INTO `marc_subfield_structure` VALUES ('948', '9', '9 (OCLC)', '9 (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37380 INSERT INTO `marc_subfield_structure` VALUES ('948', 'a', 'Series part designator, SPT (RLIN)', 'Series part designator, SPT (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37381 INSERT INTO `marc_subfield_structure` VALUES ('948', 'b', 'b (OCLC)', 'b (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37382 INSERT INTO `marc_subfield_structure` VALUES ('948', 'c', 'c (OCLC)', 'c (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37383 INSERT INTO `marc_subfield_structure` VALUES ('948', 'd', 'd (OCLC)', 'd (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37384 INSERT INTO `marc_subfield_structure` VALUES ('948', 'e', 'e (OCLC)', 'e (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37385 INSERT INTO `marc_subfield_structure` VALUES ('948', 'f', 'f (OCLC)', 'f (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37386 INSERT INTO `marc_subfield_structure` VALUES ('948', 'g', 'g (OCLC)', 'g (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37387 INSERT INTO `marc_subfield_structure` VALUES ('948', 'h', 'h (OCLC)', 'h (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37388 INSERT INTO `marc_subfield_structure` VALUES ('948', 'i', 'i (OCLC)', 'i (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37389 INSERT INTO `marc_subfield_structure` VALUES ('948', 'j', 'j (OCLC)', 'j (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37390 INSERT INTO `marc_subfield_structure` VALUES ('948', 'k', 'k (OCLC)', 'k (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37391 INSERT INTO `marc_subfield_structure` VALUES ('948', 'l', 'l (OCLC)', 'l (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37392 INSERT INTO `marc_subfield_structure` VALUES ('948', 'm', 'm (OCLC)', 'm (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37393 INSERT INTO `marc_subfield_structure` VALUES ('948', 'n', 'n (OCLC)', 'n (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37394 INSERT INTO `marc_subfield_structure` VALUES ('948', 'o', 'o (OCLC)', 'o (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37395 INSERT INTO `marc_subfield_structure` VALUES ('948', 'p', 'p (OCLC)', 'p (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37396 INSERT INTO `marc_subfield_structure` VALUES ('948', 'q', 'q (OCLC)', 'q (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37397 INSERT INTO `marc_subfield_structure` VALUES ('948', 'r', 'r (OCLC)', 'r (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37398 INSERT INTO `marc_subfield_structure` VALUES ('948', 's', 's (OCLC)', 's (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37399 INSERT INTO `marc_subfield_structure` VALUES ('948', 't', 't (OCLC)', 't (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37400 INSERT INTO `marc_subfield_structure` VALUES ('948', 'u', 'u (OCLC)', 'u (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37401 INSERT INTO `marc_subfield_structure` VALUES ('948', 'v', 'v (OCLC)', 'v (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37402 INSERT INTO `marc_subfield_structure` VALUES ('948', 'w', 'w (OCLC)', 'w (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37403 INSERT INTO `marc_subfield_structure` VALUES ('948', 'x', 'x (OCLC)', 'x (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37404 INSERT INTO `marc_subfield_structure` VALUES ('948', 'y', 'y (OCLC)', 'y (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37405 INSERT INTO `marc_subfield_structure` VALUES ('948', 'z', 'z (OCLC)', 'z (OCLC)', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37406 INSERT INTO `marc_subfield_structure` VALUES ('949', '0', '0', '0', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37407 INSERT INTO `marc_subfield_structure` VALUES ('949', '1', '1', '1', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37408 INSERT INTO `marc_subfield_structure` VALUES ('949', '2', '2', '2', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37409 INSERT INTO `marc_subfield_structure` VALUES ('949', '3', '3', '3', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37410 INSERT INTO `marc_subfield_structure` VALUES ('949', '4', '4', '4', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37411 INSERT INTO `marc_subfield_structure` VALUES ('949', '5', '5', '5', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37412 INSERT INTO `marc_subfield_structure` VALUES ('949', '6', '6', '6', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37413 INSERT INTO `marc_subfield_structure` VALUES ('949', '7', '7', '7', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37414 INSERT INTO `marc_subfield_structure` VALUES ('949', '8', '8', '8', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37415 INSERT INTO `marc_subfield_structure` VALUES ('949', '9', '9', '9', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37416 INSERT INTO `marc_subfield_structure` VALUES ('949', 'a', 'a', 'a', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37417 INSERT INTO `marc_subfield_structure` VALUES ('949', 'b', 'b', 'b', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37418 INSERT INTO `marc_subfield_structure` VALUES ('949', 'c', 'c', 'c', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37419 INSERT INTO `marc_subfield_structure` VALUES ('949', 'd', 'd', 'd', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37420 INSERT INTO `marc_subfield_structure` VALUES ('949', 'e', 'e', 'e', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37421 INSERT INTO `marc_subfield_structure` VALUES ('949', 'f', 'f', 'f', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37422 INSERT INTO `marc_subfield_structure` VALUES ('949', 'g', 'g', 'g', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37423 INSERT INTO `marc_subfield_structure` VALUES ('949', 'h', 'h', 'h', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37424 INSERT INTO `marc_subfield_structure` VALUES ('949', 'i', 'i', 'i', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37425 INSERT INTO `marc_subfield_structure` VALUES ('949', 'j', 'j', 'j', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37426 INSERT INTO `marc_subfield_structure` VALUES ('949', 'k', 'k', 'k', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37427 INSERT INTO `marc_subfield_structure` VALUES ('949', 'l', 'l', 'l', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37428 INSERT INTO `marc_subfield_structure` VALUES ('949', 'm', 'm', 'm', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37429 INSERT INTO `marc_subfield_structure` VALUES ('949', 'n', 'n', 'n', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37430 INSERT INTO `marc_subfield_structure` VALUES ('949', 'o', 'o', 'o', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37431 INSERT INTO `marc_subfield_structure` VALUES ('949', 'p', 'p', 'p', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37432 INSERT INTO `marc_subfield_structure` VALUES ('949', 'q', 'q', 'q', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37433 INSERT INTO `marc_subfield_structure` VALUES ('949', 'r', 'r', 'r', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37434 INSERT INTO `marc_subfield_structure` VALUES ('949', 's', 's', 's', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37435 INSERT INTO `marc_subfield_structure` VALUES ('949', 't', 't', 't', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37436 INSERT INTO `marc_subfield_structure` VALUES ('949', 'u', 'u', 'u', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37437 INSERT INTO `marc_subfield_structure` VALUES ('949', 'v', 'v', 'v', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37438 INSERT INTO `marc_subfield_structure` VALUES ('949', 'w', 'w', 'w', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37439 INSERT INTO `marc_subfield_structure` VALUES ('949', 'x', 'x', 'x', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37440 INSERT INTO `marc_subfield_structure` VALUES ('949', 'y', 'y', 'y', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37441 INSERT INTO `marc_subfield_structure` VALUES ('949', 'z', 'z', 'z', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37442 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'a', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37443 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'b', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37444 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'c', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37445 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'd', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37446 INSERT INTO `marc_subfield_structure` VALUES ('94a', 'e', 'ATN', 'ATN', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37447 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'a', 'ATC', 'ATC', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37448 INSERT INTO `marc_subfield_structure` VALUES ('94b', 'b', 'SNR', 'SNR', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37449 INSERT INTO `marc_subfield_structure` VALUES ('950', 'a', 'Classification number, LCAL (RLIN)', 'Classification number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37450 INSERT INTO `marc_subfield_structure` VALUES ('950', 'b', 'Book number/undivided call number, LCAL (RLIN)', 'Book number/undivided call number, LCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37451 INSERT INTO `marc_subfield_structure` VALUES ('950', 'd', 'Additional free-text stamp above the call number, LCAL (RLIN)', 'Additional free-text stamp above the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37452 INSERT INTO `marc_subfield_structure` VALUES ('950', 'e', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 'Additional free-text or profiled stamp below the call number, LCAL (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37453 INSERT INTO `marc_subfield_structure` VALUES ('950', 'f', 'Location-level footnote, LFNT (RLIN)', 'Location-level footnote, LFNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37454 INSERT INTO `marc_subfield_structure` VALUES ('950', 'h', 'Location-level output transaction history, LHST (RLIN)', 'Location-level output transaction history, LHST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37455 INSERT INTO `marc_subfield_structure` VALUES ('950', 'i', 'Location-level extra card request, LEXT (RLIN)', 'Location-level extra card request, LEXT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37456 INSERT INTO `marc_subfield_structure` VALUES ('950', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37457 INSERT INTO `marc_subfield_structure` VALUES ('950', 'n', 'Location-level additional note, LANT (RLIN)', 'Location-level additional note, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37458 INSERT INTO `marc_subfield_structure` VALUES ('950', 'p', 'Location-level pathfinder, LPTH (RLIN)', 'Location-level pathfinder, LPTH (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37459 INSERT INTO `marc_subfield_structure` VALUES ('950', 't', 'Location-level field suppression, LFSP (RLIN)', 'Location-level field suppression, LFSP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37460 INSERT INTO `marc_subfield_structure` VALUES ('950', 'u', 'Non-printing notes, LANT (RLIN)', 'Non-printing notes, LANT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37461 INSERT INTO `marc_subfield_structure` VALUES ('950', 'v', 'Volumes, LVOL (RLIN)', 'Volumes, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37462 INSERT INTO `marc_subfield_structure` VALUES ('950', 'w', 'Subscription status code, LANT (RLIN)', 'Subscription status code, LANT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37463 INSERT INTO `marc_subfield_structure` VALUES ('950', 'y', 'Date, LVOL (RLIN)', 'Date, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37464 INSERT INTO `marc_subfield_structure` VALUES ('950', 'z', 'Retention, LVOL (RLIN)', 'Retention, LVOL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37465 INSERT INTO `marc_subfield_structure` VALUES ('951', '2', 'Source of heading or term', 'Source of heading or term', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
37466 INSERT INTO `marc_subfield_structure` VALUES ('951', '3', 'Materials specified', 'Materials specified', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
37467 INSERT INTO `marc_subfield_structure` VALUES ('951', '6', 'Linkage', 'Linkage', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
37468 INSERT INTO `marc_subfield_structure` VALUES ('951', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
37469 INSERT INTO `marc_subfield_structure` VALUES ('951', 'a', 'Geographic name', 'Geographic name', 0, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
37470 INSERT INTO `marc_subfield_structure` VALUES ('951', 'b', 'Geographic name following place entry element [OBSOLETE]', 'Geographic name following place entry element [OBSOLETE]', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
37471 INSERT INTO `marc_subfield_structure` VALUES ('951', 'v', 'Form subdivision', 'Form subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
37472 INSERT INTO `marc_subfield_structure` VALUES ('951', 'x', 'General subdivision', 'General subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
37473 INSERT INTO `marc_subfield_structure` VALUES ('951', 'y', 'Chronological subdivision', 'Chronological subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
37474 INSERT INTO `marc_subfield_structure` VALUES ('951', 'z', 'Geographic subdivision', 'Geographic subdivision', 1, 0, '', 6, '', '', '', NULL, -6, 'SER', '', '');
37475 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'a', 'Record ID (RLIN)', 'Record ID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37476 INSERT INTO `marc_subfield_structure` VALUES ('95c', 'b', 'Institution name (RLIN)', 'Institution name (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37477 INSERT INTO `marc_subfield_structure` VALUES ('95r', '6', 'Linkage', 'Linkage', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SER', '', '');
37478 INSERT INTO `marc_subfield_structure` VALUES ('95r', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SER', '', '');
37479 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'a', 'Country', 'Country', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SER', '', '');
37480 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'b', 'State, province, territory', 'State, province, territory', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SER', '', '');
37481 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'c', 'County, region, islands area', 'County, region, islands area', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SER', '', '');
37482 INSERT INTO `marc_subfield_structure` VALUES ('95r', 'd', 'City', 'City', 0, 0, NULL, 9, NULL, NULL, '', NULL, 5, 'SER', '', '');
37483 INSERT INTO `marc_subfield_structure` VALUES ('955', 'a', 'Classification number, CCAL (RLIN)', 'Classification number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37484 INSERT INTO `marc_subfield_structure` VALUES ('955', 'b', 'Book number/undivided call number, CCAL (RLIN)', 'Book number/undivided call number, CCAL (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37485 INSERT INTO `marc_subfield_structure` VALUES ('955', 'c', 'Copy information and material description, CCAL + MDES (RLIN)', 'Copy information and material description, CCAL + MDES (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37486 INSERT INTO `marc_subfield_structure` VALUES ('955', 'h', 'Copy status--for earlier dates, CST (RLIN)', 'Copy status--for earlier dates, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37487 INSERT INTO `marc_subfield_structure` VALUES ('955', 'i', 'Copy status, CST (RLIN)', 'Copy status, CST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37488 INSERT INTO `marc_subfield_structure` VALUES ('955', 'l', 'Permanent shelving location, LOC (RLIN)', 'Permanent shelving location, LOC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37489 INSERT INTO `marc_subfield_structure` VALUES ('955', 'q', 'Aquisitions control number, HNT (RLIN)', 'Aquisitions control number, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37490 INSERT INTO `marc_subfield_structure` VALUES ('955', 'r', 'Circulation control number, HNT (RLIN)', 'Circulation control number, HNT (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37491 INSERT INTO `marc_subfield_structure` VALUES ('955', 's', 'Shelflist note, HNT (RLIN)', 'Shelflist note, HNT (RLIN)', 1, 0, '', 9, '', '', '', 1, 5, 'SER', '', '');
37492 INSERT INTO `marc_subfield_structure` VALUES ('955', 'u', 'Non-printing notes, HNT (RLIN)', 'Non-printing notes, HNT (RLIN)', 1, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37493 INSERT INTO `marc_subfield_structure` VALUES ('956', '2', 'Access method', 'Access method', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37494 INSERT INTO `marc_subfield_structure` VALUES ('956', '3', 'Materials specified', 'Materials specified', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37495 INSERT INTO `marc_subfield_structure` VALUES ('956', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37496 INSERT INTO `marc_subfield_structure` VALUES ('956', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37497 INSERT INTO `marc_subfield_structure` VALUES ('956', 'a', 'Host name', 'Host name', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37498 INSERT INTO `marc_subfield_structure` VALUES ('956', 'b', 'Access number', 'Access number', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37499 INSERT INTO `marc_subfield_structure` VALUES ('956', 'c', 'Compression information', 'Compression information', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37500 INSERT INTO `marc_subfield_structure` VALUES ('956', 'd', 'Path', 'Path', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37501 INSERT INTO `marc_subfield_structure` VALUES ('956', 'f', 'Electronic name', 'Electronic name', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37502 INSERT INTO `marc_subfield_structure` VALUES ('956', 'h', 'Processor of request', 'Processor of request', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37503 INSERT INTO `marc_subfield_structure` VALUES ('956', 'i', 'Instruction', 'Instruction', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37504 INSERT INTO `marc_subfield_structure` VALUES ('956', 'j', 'Bits per second', 'Bits per second', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37505 INSERT INTO `marc_subfield_structure` VALUES ('956', 'k', 'Password', 'Password', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37506 INSERT INTO `marc_subfield_structure` VALUES ('956', 'l', 'Logon', 'Logon', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37507 INSERT INTO `marc_subfield_structure` VALUES ('956', 'm', 'Contact for access assistance', 'Contact for access assistance', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37508 INSERT INTO `marc_subfield_structure` VALUES ('956', 'n', 'Name of location of host in subfield', 'Name of location of host in subfield', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37509 INSERT INTO `marc_subfield_structure` VALUES ('956', 'o', 'Operating system', 'Operating system', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37510 INSERT INTO `marc_subfield_structure` VALUES ('956', 'p', 'Port', 'Port', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37511 INSERT INTO `marc_subfield_structure` VALUES ('956', 'q', 'Electronic format type', 'Electronic format type', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37512 INSERT INTO `marc_subfield_structure` VALUES ('956', 'r', 'Settings', 'Settings', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37513 INSERT INTO `marc_subfield_structure` VALUES ('956', 's', 'File size', 'File size', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37514 INSERT INTO `marc_subfield_structure` VALUES ('956', 't', 'Terminal emulation', 'Terminal emulation', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37515 INSERT INTO `marc_subfield_structure` VALUES ('956', 'u', 'Uniform Resource Identifier', 'Uniform Resource Identifier', 1, 0, '', 9, '', '', '', 1, -6, 'SER', '', '');
37516 INSERT INTO `marc_subfield_structure` VALUES ('956', 'v', 'Hours access method available', 'Hours access method available', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37517 INSERT INTO `marc_subfield_structure` VALUES ('956', 'w', 'Record control number', 'Record control number', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37518 INSERT INTO `marc_subfield_structure` VALUES ('956', 'x', 'Nonpublic note', 'Nonpublic note', 1, 0, '', 9, '', '', '', 0, 6, 'SER', '', '');
37519 INSERT INTO `marc_subfield_structure` VALUES ('956', 'y', 'Link text', 'Link text', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37520 INSERT INTO `marc_subfield_structure` VALUES ('956', 'z', 'Public note', 'Public note', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37521 INSERT INTO `marc_subfield_structure` VALUES ('960', '3', 'Materials specified, MATL', 'Materials specified, MATL', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37522 INSERT INTO `marc_subfield_structure` VALUES ('960', 'a', 'Physical location, PLOC (RLIN)', 'Physical location, PLOC (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37523 INSERT INTO `marc_subfield_structure` VALUES ('967', 'a', 'GNR (RLIN)', 'GNR (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37524 INSERT INTO `marc_subfield_structure` VALUES ('967', 'c', 'PSI (RLIN)', 'PSI (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37525 INSERT INTO `marc_subfield_structure` VALUES ('980', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37526 INSERT INTO `marc_subfield_structure` VALUES ('980', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37527 INSERT INTO `marc_subfield_structure` VALUES ('980', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37528 INSERT INTO `marc_subfield_structure` VALUES ('980', 'a', 'Personal name', 'Personal name', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37529 INSERT INTO `marc_subfield_structure` VALUES ('980', 'b', 'Numeration', 'Numeration', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37530 INSERT INTO `marc_subfield_structure` VALUES ('980', 'c', 'Titles and other words associated with a name', 'Titles and other words associated with a name', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37531 INSERT INTO `marc_subfield_structure` VALUES ('980', 'd', 'Dates associated with a name', 'Dates associated with a name', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37532 INSERT INTO `marc_subfield_structure` VALUES ('980', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37533 INSERT INTO `marc_subfield_structure` VALUES ('980', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37534 INSERT INTO `marc_subfield_structure` VALUES ('980', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37535 INSERT INTO `marc_subfield_structure` VALUES ('980', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37536 INSERT INTO `marc_subfield_structure` VALUES ('980', 'j', 'Attribution qualifier', 'Attribution qualifier', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37537 INSERT INTO `marc_subfield_structure` VALUES ('980', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37538 INSERT INTO `marc_subfield_structure` VALUES ('980', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37539 INSERT INTO `marc_subfield_structure` VALUES ('980', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37540 INSERT INTO `marc_subfield_structure` VALUES ('980', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37541 INSERT INTO `marc_subfield_structure` VALUES ('980', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37542 INSERT INTO `marc_subfield_structure` VALUES ('980', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37543 INSERT INTO `marc_subfield_structure` VALUES ('980', 'q', 'Fuller form of name', 'Fuller form of name', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37544 INSERT INTO `marc_subfield_structure` VALUES ('980', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37545 INSERT INTO `marc_subfield_structure` VALUES ('980', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37546 INSERT INTO `marc_subfield_structure` VALUES ('980', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37547 INSERT INTO `marc_subfield_structure` VALUES ('980', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37548 INSERT INTO `marc_subfield_structure` VALUES ('980', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37549 INSERT INTO `marc_subfield_structure` VALUES ('981', '4', 'Relator code', 'Relator code', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37550 INSERT INTO `marc_subfield_structure` VALUES ('981', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37551 INSERT INTO `marc_subfield_structure` VALUES ('981', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37552 INSERT INTO `marc_subfield_structure` VALUES ('981', 'a', 'Corporate name or jurisdiction name as entry element', 'Corporate name or jurisdiction name as entry element', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37553 INSERT INTO `marc_subfield_structure` VALUES ('981', 'b', 'Subordinate unit', 'Subordinate unit', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37554 INSERT INTO `marc_subfield_structure` VALUES ('981', 'c', 'Location of meeting', 'Location of meeting', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37555 INSERT INTO `marc_subfield_structure` VALUES ('981', 'd', 'Date of meeting or treaty signing', 'Date of meeting or treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37556 INSERT INTO `marc_subfield_structure` VALUES ('981', 'e', 'Relator term', 'Relator term', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37557 INSERT INTO `marc_subfield_structure` VALUES ('981', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37558 INSERT INTO `marc_subfield_structure` VALUES ('981', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37559 INSERT INTO `marc_subfield_structure` VALUES ('981', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37560 INSERT INTO `marc_subfield_structure` VALUES ('981', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37561 INSERT INTO `marc_subfield_structure` VALUES ('981', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37562 INSERT INTO `marc_subfield_structure` VALUES ('981', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37563 INSERT INTO `marc_subfield_structure` VALUES ('981', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37564 INSERT INTO `marc_subfield_structure` VALUES ('981', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37565 INSERT INTO `marc_subfield_structure` VALUES ('981', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37566 INSERT INTO `marc_subfield_structure` VALUES ('981', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37567 INSERT INTO `marc_subfield_structure` VALUES ('981', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37568 INSERT INTO `marc_subfield_structure` VALUES ('981', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37569 INSERT INTO `marc_subfield_structure` VALUES ('981', 'u', 'Affiliation', 'Affiliation', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37570 INSERT INTO `marc_subfield_structure` VALUES ('981', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37571 INSERT INTO `marc_subfield_structure` VALUES ('982', '4', 'Relator code', 'Relator code', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37572 INSERT INTO `marc_subfield_structure` VALUES ('982', '6', 'Linkage', 'Linkage', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37573 INSERT INTO `marc_subfield_structure` VALUES ('982', '8', 'Field link and sequence number ', 'Field link and sequence number ', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37574 INSERT INTO `marc_subfield_structure` VALUES ('982', 'a', 'Meeting name or jurisdiction name as entry element', 'Meeting name or jurisdiction name as entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37575 INSERT INTO `marc_subfield_structure` VALUES ('982', 'b', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 'Number (BK CF MP MU SE VM MX) [OBSOLETE]', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37576 INSERT INTO `marc_subfield_structure` VALUES ('982', 'c', 'Location of meeting', 'Location of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37577 INSERT INTO `marc_subfield_structure` VALUES ('982', 'd', 'Date of meeting', 'Date of meeting', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37578 INSERT INTO `marc_subfield_structure` VALUES ('982', 'e', 'Subordinate unit', 'Subordinate unit', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37579 INSERT INTO `marc_subfield_structure` VALUES ('982', 'f', 'Date of a work', 'Date of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37580 INSERT INTO `marc_subfield_structure` VALUES ('982', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37581 INSERT INTO `marc_subfield_structure` VALUES ('982', 'h', 'Medium', 'Medium', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37582 INSERT INTO `marc_subfield_structure` VALUES ('982', 'k', 'Form subheading', 'Form subheading', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37583 INSERT INTO `marc_subfield_structure` VALUES ('982', 'l', 'Language of a work', 'Language of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37584 INSERT INTO `marc_subfield_structure` VALUES ('982', 'n', 'Number of part/section/meeting', 'Number of part/section/meeting', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37585 INSERT INTO `marc_subfield_structure` VALUES ('982', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37586 INSERT INTO `marc_subfield_structure` VALUES ('982', 'q', 'Name of meeting following jurisdiction name entry element', 'Name of meeting following jurisdiction name entry element', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37587 INSERT INTO `marc_subfield_structure` VALUES ('982', 's', 'Version', 'Version', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37588 INSERT INTO `marc_subfield_structure` VALUES ('982', 't', 'Title of a work', 'Title of a work', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37589 INSERT INTO `marc_subfield_structure` VALUES ('982', 'u', 'Affiliation', 'Affiliation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37590 INSERT INTO `marc_subfield_structure` VALUES ('982', 'v', 'Volume/sequential designation', 'Volume/sequential designation', 0, 0, NULL, 8, NULL, NULL, '', NULL, -6, 'SER', '', '');
37591 INSERT INTO `marc_subfield_structure` VALUES ('983', '6', 'Linkage', 'Linkage', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37592 INSERT INTO `marc_subfield_structure` VALUES ('983', '8', 'Field link and sequence number', 'Field link and sequence number', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37593 INSERT INTO `marc_subfield_structure` VALUES ('983', 'a', 'Uniform title', 'Uniform title', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37594 INSERT INTO `marc_subfield_structure` VALUES ('983', 'd', 'Date of treaty signing', 'Date of treaty signing', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37595 INSERT INTO `marc_subfield_structure` VALUES ('983', 'f', 'Date of a work', 'Date of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37596 INSERT INTO `marc_subfield_structure` VALUES ('983', 'g', 'Miscellaneous information', 'Miscellaneous information', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37597 INSERT INTO `marc_subfield_structure` VALUES ('983', 'h', 'Medium', 'Medium', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37598 INSERT INTO `marc_subfield_structure` VALUES ('983', 'k', 'Form subheading', 'Form subheading', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37599 INSERT INTO `marc_subfield_structure` VALUES ('983', 'l', 'Language of a work', 'Language of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37600 INSERT INTO `marc_subfield_structure` VALUES ('983', 'm', 'Medium of performance for music', 'Medium of performance for music', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37601 INSERT INTO `marc_subfield_structure` VALUES ('983', 'n', 'Number of part/section of a work', 'Number of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37602 INSERT INTO `marc_subfield_structure` VALUES ('983', 'o', 'Arranged statement for music', 'Arranged statement for music', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37603 INSERT INTO `marc_subfield_structure` VALUES ('983', 'p', 'Name of part/section of a work', 'Name of part/section of a work', 1, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37604 INSERT INTO `marc_subfield_structure` VALUES ('983', 'r', 'Key for music', 'Key for music', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37605 INSERT INTO `marc_subfield_structure` VALUES ('983', 's', 'Version', 'Version', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37606 INSERT INTO `marc_subfield_structure` VALUES ('983', 't', 'Title of a work', 'Title of a work', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37607 INSERT INTO `marc_subfield_structure` VALUES ('983', 'v', 'Volume number/sequential designation', 'Volume number/sequential designation', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37608 INSERT INTO `marc_subfield_structure` VALUES ('984', 'a', 'Holding library identification number', 'Holding library identification number', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37609 INSERT INTO `marc_subfield_structure` VALUES ('984', 'b', 'Physical description codes', 'Physical description codes', 1, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37610 INSERT INTO `marc_subfield_structure` VALUES ('984', 'c', 'Call number', 'Call number', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37611 INSERT INTO `marc_subfield_structure` VALUES ('984', 'd', 'Volume or other numbering', 'Volume or other numbering', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37612 INSERT INTO `marc_subfield_structure` VALUES ('984', 'e', 'Dates', 'Dates', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37613 INSERT INTO `marc_subfield_structure` VALUES ('984', 'f', 'Completeness note', 'Completeness note', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37614 INSERT INTO `marc_subfield_structure` VALUES ('984', 'g', 'Referral note', 'Referral note', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37615 INSERT INTO `marc_subfield_structure` VALUES ('984', 'h', 'Retention note', 'Retention note', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37616 INSERT INTO `marc_subfield_structure` VALUES ('987', 'a', 'Romanization/conversion identifier', 'Romanization/conversion identifier', 0, 0, '', 9, '', '', '', NULL, -6, 'SER', '', '');
37617 INSERT INTO `marc_subfield_structure` VALUES ('987', 'b', 'Agency that converted, created or reviewed', 'Agency that converted, created or reviewed', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37618 INSERT INTO `marc_subfield_structure` VALUES ('987', 'c', 'Date of conversion or review', 'Date of conversion or review', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37619 INSERT INTO `marc_subfield_structure` VALUES ('987', 'd', 'Status code', 'Status code ', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37620 INSERT INTO `marc_subfield_structure` VALUES ('987', 'e', 'Version of conversion program used', 'Version of conversion program used', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37621 INSERT INTO `marc_subfield_structure` VALUES ('987', 'f', 'Note', 'Note', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37622 INSERT INTO `marc_subfield_structure` VALUES ('990', 'a', 'Link information for 9XX fields', 'Link information for 9XX fields', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37623 INSERT INTO `marc_subfield_structure` VALUES ('990', 'b', 'Link information for field corresponding to 9XX field', 'Link information for field corresponding to 9XX field', 1, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37624 INSERT INTO `marc_subfield_structure` VALUES ('995', 'a', 'Origine du document, texte libre', 'Origine du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37625 INSERT INTO `marc_subfield_structure` VALUES ('995', 'b', 'Origine du document, donn&eacute;e cod&eacute;e', '', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37626 INSERT INTO `marc_subfield_structure` VALUES ('995', 'c', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37627 INSERT INTO `marc_subfield_structure` VALUES ('995', 'd', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37628 INSERT INTO `marc_subfield_structure` VALUES ('995', 'e', 'Genre d&eacute;taill&eacute;', 'Genre d&eacute;taill&eacute;', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37629 INSERT INTO `marc_subfield_structure` VALUES ('995', 'f', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 'Code &agrave; barres, suite alphanum&eacute;rique int&eacute;grale', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37630 INSERT INTO `marc_subfield_structure` VALUES ('995', 'g', 'Code &agrave; barres, pr&eacute;fixe', 'Code &agrave; barres, pr&eacute;fixe', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37631 INSERT INTO `marc_subfield_structure` VALUES ('995', 'h', 'Code &agrave; barres, incr&eacute;mentation', 'Code &agrave; barres, incr&eacute;mentation', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37632 INSERT INTO `marc_subfield_structure` VALUES ('995', 'i', 'Code &agrave; barres, suffixe', 'Code &agrave; barres, suffixe', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37633 INSERT INTO `marc_subfield_structure` VALUES ('995', 'j', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', '&Eacute;tablissement pr&ecirc;teur ou d&eacute;posant, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37634 INSERT INTO `marc_subfield_structure` VALUES ('995', 'k', 'Cote', 'Cote', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37635 INSERT INTO `marc_subfield_structure` VALUES ('995', 'l', 'Volumaison', 'Volumaison', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37636 INSERT INTO `marc_subfield_structure` VALUES ('995', 'm', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 'Date de pr&ecirc;t ou de d&eacute;p&ocirc;t', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37637 INSERT INTO `marc_subfield_structure` VALUES ('995', 'n', 'Date de restitution pr&eacute;vue', 'Date de restitution pr&eacute;vue', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37638 INSERT INTO `marc_subfield_structure` VALUES ('995', 'o', 'Cat&eacute;gorie de circulation', 'Cat&eacute;gorie de circulation', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37639 INSERT INTO `marc_subfield_structure` VALUES ('995', 'p', 'P&eacute;riodique', 'P&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37640 INSERT INTO `marc_subfield_structure` VALUES ('995', 'q', 'Public vis&eacute; (selon l\'&acirc;ge)', 'Public vis&eacute; (selon l\'&acirc;ge)', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37641 INSERT INTO `marc_subfield_structure` VALUES ('995', 'r', 'Type de document et support mat&eacute;riel', 'Type de document et support mat&eacute;riel', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37642 INSERT INTO `marc_subfield_structure` VALUES ('995', 's', 'Él&eacute;ment de tri', 'Él&eacute;ment de tri', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37643 INSERT INTO `marc_subfield_structure` VALUES ('995', 't', 'Genre', 'Genre', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37644 INSERT INTO `marc_subfield_structure` VALUES ('995', 'u', 'Note sur l\'exemplaire', 'Note sur l\'exemplaire', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37645 INSERT INTO `marc_subfield_structure` VALUES ('995', 'v', 'Note sur le num&eacute;ro de p&eacute;riodique', 'Note sur le num&eacute;ro de p&eacute;riodique', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37646 INSERT INTO `marc_subfield_structure` VALUES ('995', 'w', 'Établissement cible du document, texte libre', 'Établissement cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37647 INSERT INTO `marc_subfield_structure` VALUES ('995', 'x', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', '&Eacute;tablissement cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37648 INSERT INTO `marc_subfield_structure` VALUES ('995', 'y', 'Ensemble cible du document , texte libre', 'Ensemble cible du document, texte libre', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37649 INSERT INTO `marc_subfield_structure` VALUES ('995', 'z', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 'Ensemble cible du document, donn&eacute;e cod&eacute;e', 0, 0, '', 9, '', '', '', NULL, 5, 'SER', '', '');
37650 INSERT INTO `marc_subfield_structure` VALUES ('998', 'b', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37651 INSERT INTO `marc_subfield_structure` VALUES ('998', 'c', 'Cataloger\'s initials, CIN (RLIN)', 'Cataloger\'s initials, CIN (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37652 INSERT INTO `marc_subfield_structure` VALUES ('998', 'd', 'First date, FD (RLIN)', 'First Date, FD (RLIN)', 0, 0, '', 9, '', '', '', 0, -6, 'SER', '', '');
37653 INSERT INTO `marc_subfield_structure` VALUES ('998', 'i', 'RINS (RLIN)', 'RINS (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37654 INSERT INTO `marc_subfield_structure` VALUES ('998', 'l', 'LI (RLIN)', 'LI (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37655 INSERT INTO `marc_subfield_structure` VALUES ('998', 'n', 'NUC (RLIN)', 'NUC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37656 INSERT INTO `marc_subfield_structure` VALUES ('998', 'p', 'PROC (RLIN)', 'PROC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37657 INSERT INTO `marc_subfield_structure` VALUES ('998', 's', 'CC (RLIN)', 'CC (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37658 INSERT INTO `marc_subfield_structure` VALUES ('998', 't', 'RTYP (RLIN)', 'RTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37659 INSERT INTO `marc_subfield_structure` VALUES ('998', 'w', 'PLINK (RLIN)', 'PLINK (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37660 INSERT INTO `marc_subfield_structure` VALUES ('999', 'a', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 'Classification number (OCLC) (R) ; Classification number, CALL (RLIN) (NR)', 1, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
37661 INSERT INTO `marc_subfield_structure` VALUES ('999', 'b', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 'Local cutter number (OCLC) ; Book number/undivided call number, CALL (RLIN)', 0, 0, '', 0, '', '', '', 0, -6, 'SER', '', '');
37662 INSERT INTO `marc_subfield_structure` VALUES ('999', 'e', 'Feature heading (OCLC)', 'Feature heading (OCLC)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
37663 INSERT INTO `marc_subfield_structure` VALUES ('999', 'f', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 'Filing suffix (OCLC); Footnote, FNT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
37664 INSERT INTO `marc_subfield_structure` VALUES ('999', 'h', 'Output transaction history, HST (RLIN)', 'Output transaction history, HST (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
37665 INSERT INTO `marc_subfield_structure` VALUES ('999', 'i', 'Output transaction instruction, INS (RLIN)', 'Output transaction instruction, INS (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
37666 INSERT INTO `marc_subfield_structure` VALUES ('999', 'l', 'Extra card control statement, EXT (RLIN)', 'Extra card control statement, EXT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
37667 INSERT INTO `marc_subfield_structure` VALUES ('999', 'n', 'Additional local notes, ANT (RLIN)', 'Additional local notes, ANT (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
37668 INSERT INTO `marc_subfield_structure` VALUES ('999', 'p', 'Pathfinder code, PTH (RLIN)', 'Pathfinder code, PTH (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
37669 INSERT INTO `marc_subfield_structure` VALUES ('999', 't', 'Field suppresion, FSP (RLIN)', 'Field suppresion, FSP (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
37670 INSERT INTO `marc_subfield_structure` VALUES ('999', 'v', 'Volumes, VOL (RLIN)', 'Volumes, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
37671 INSERT INTO `marc_subfield_structure` VALUES ('999', 'y', 'Date, VOL (RLIN)', 'Date, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
37672 INSERT INTO `marc_subfield_structure` VALUES ('999', 'z', 'Retention, VOL (RLIN)', 'Retention, VOL (RLIN)', 0, 0, '', 0, '', '', '', 0, 5, 'SER', '', '');
37673 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'a', 'Operator\'s initials, OID (RLIN)', 'Operator\'s initials, OID (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37674 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'd', 'UAD (RLIN)', 'UAD (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37675 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'f', 'FPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37676 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'h', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37677 INSERT INTO `marc_subfield_structure` VALUES ('u01', 'i', 'CPST (RLIN)', 'FPST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37678 INSERT INTO `marc_subfield_structure` VALUES ('u01', 's', 'UST (RLIN)', 'UST (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37679 INSERT INTO `marc_subfield_structure` VALUES ('u01', 't', 'UTYP (RLIN)', 'UTYP (RLIN)', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37680 INSERT INTO `marc_subfield_structure` VALUES ('u02', '2', 'Source of number or code', 'Source of number or code', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37681 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'a', 'Standard number or code', 'Standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37682 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'b', 'Additional codes following the standard number', 'Additional codes following the standard number', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37683 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'c', 'Terms of availability', 'Terms of availability', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37684 INSERT INTO `marc_subfield_structure` VALUES ('u02', 'z', 'Canceled/invalid standard number or code', 'Canceled/invalid standard number or code', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37685 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'n', 'LSI', 'LSI', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37686 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'o', 'SID', 'SID', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37687 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'p', 'DP', 'DP', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37688 INSERT INTO `marc_subfield_structure` VALUES ('u08', 'r', 'RUSH', 'RUSH', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37689 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'a', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37690 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'b', 'SID', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37691 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'c', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37692 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'd', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37693 INSERT INTO `marc_subfield_structure` VALUES ('u10', 'e', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37694 INSERT INTO `marc_subfield_structure` VALUES ('u10', 's', 'REQ', 'REQ', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37695 INSERT INTO `marc_subfield_structure` VALUES ('u11', 'a', 'Department report request, DRR (DRRH for earlier occurrences)', 'DRR (DRRH for earlier occurrences)', 1, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37696 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'a', 'SUPN', 'SUPN', 1, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37697 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'b', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37698 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'c', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37699 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'd', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37700 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'e', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37701 INSERT INTO `marc_subfield_structure` VALUES ('u20', 'x', 'SUPN', 'SUPN', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37702 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'a', 'SHIP', 'SHIP', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37703 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'b', 'BILL', 'BILL', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37704 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'c', 'DAC', 'DAC', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37705 INSERT INTO `marc_subfield_structure` VALUES ('u21', 'n', 'LSAC', 'LSAC', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37706 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'a', 'SICO', 'SICO', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37707 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'b', 'SICO', 'SICO', 1, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37708 INSERT INTO `marc_subfield_structure` VALUES ('u22', 'c', 'SCAT', 'SCAT', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37709 INSERT INTO `marc_subfield_structure` VALUES ('u25', 'a', 'Supplier report(s), SRPT', 'Supplier report(s), SRPT', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37710 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'a', 'NCC [OBSOLETE]', 'NCC [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37711 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'i', 'ICI', 'ICI', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37712 INSERT INTO `marc_subfield_structure` VALUES ('u30', 'm', 'MCI', 'MCI', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37713 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'a', 'NCC', 'NCC', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37714 INSERT INTO `marc_subfield_structure` VALUES ('u31', 'b', 'NCS', 'NCS', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37715 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'a', 'ICL', 'ICL', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37716 INSERT INTO `marc_subfield_structure` VALUES ('u33', 'd', 'ICAD', 'ICAD', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37717 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'a', 'EPCL', 'EPCL', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37718 INSERT INTO `marc_subfield_structure` VALUES ('u34', 'r', 'ERI', 'ERI', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37719 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'd', 'EPDT [OBSOLETE]', 'EPDT [OBSOLETE]', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37720 INSERT INTO `marc_subfield_structure` VALUES ('u40', 'f', 'EFRQ', 'EFRQ', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37721 INSERT INTO `marc_subfield_structure` VALUES ('u40', 's', 'EPST', 'EPST', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37722 INSERT INTO `marc_subfield_structure` VALUES ('u40', 't', 'ETYP', 'ETYP', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37723 INSERT INTO `marc_subfield_structure` VALUES ('u50', 'a', 'Acquisitions notes, AQNT', 'Acquisitions notes, AQNT', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37724 INSERT INTO `marc_subfield_structure` VALUES ('u51', 'a', 'Selection notes, SLNT', 'Selection notes, SLNT', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37725 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'a', 'INT', 'INT', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37726 INSERT INTO `marc_subfield_structure` VALUES ('u52', 'b', 'INT', 'NT', 1, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37727 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'a', 'CLNT', 'CLNT', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37728 INSERT INTO `marc_subfield_structure` VALUES ('u53', 'b', 'CLNT', 'CLNT', 1, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37729 INSERT INTO `marc_subfield_structure` VALUES ('u54', 'a', 'Notes to serials department, SRNT', 'Notes to serials department, SRNT', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37730 INSERT INTO `marc_subfield_structure` VALUES ('u55', 'a', 'Cataloging notes, CTNT', 'Cataloging notes, CTNT', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37731 INSERT INTO `marc_subfield_structure` VALUES ('u5f', 'a', 'Accounting notes, ACNT', 'Accounting notes, ACNT', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37732 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'a', 'QTY', 'QTY', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37733 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'b', 'MAT', 'MAT', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37734 INSERT INTO `marc_subfield_structure` VALUES ('u70', 'l', 'MLOC', 'MLOC', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37735 INSERT INTO `marc_subfield_structure` VALUES ('u71', 'a', 'Fund account, FUND', 'Fund account, FUND', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37736 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'a', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37737 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'c', 'CIRC', 'CIRC', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37738 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'h', 'IPST', 'IPST', 1, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37739 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'i', 'ITEM', 'ITEM', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37740 INSERT INTO `marc_subfield_structure` VALUES ('u75', 'l', 'SLOC', 'SLOC', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37741 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'a', 'LPRI', 'LPRI', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37742 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'b', 'CURR', 'CURR', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37743 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'k', 'CVRT [OBSOLETE]', 'CVRT [OBSOLETE]', 1, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37744 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'p', 'LPD', 'LPD', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37745 INSERT INTO `marc_subfield_structure` VALUES ('u7f', 'r', 'EDRT', 'EDRT', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37746 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'h', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37747 INSERT INTO `marc_subfield_structure` VALUES ('u90', 'i', 'TAPE', 'TAPE', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37748 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'a', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37749 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'b', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37750 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'c', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37751 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'd', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37752 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'e', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37753 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'f', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37754 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'g', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37755 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'h', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37756 INSERT INTO `marc_subfield_structure` VALUES ('ufi', 'n', 'FI', 'FI', 0, 0, '', 9, '', '', '', 0, 5, 'SER', '', '');
37757
37758