-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarcxml_statistics.pl
17893 lines (16510 loc) · 935 KB
/
marcxml_statistics.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/perl -w
# first parameter - source of MARC-set (file or folder with hierarchy of files/folders)
# second parameter - marc-format (unimarc or marc21)
# 1.01 17.06.2014 add check for xml-files
# previous versions
# start timer
my $start_time = time();
my $previous_point_time = time();
# --------------------- include modules ----------------------------------------------------------------------------
use strict;
use XML::Simple;
$XML::Simple::PREFERRED_PARSER='XML::Parser';
use Encode;
use utf8; # for utf8-strings in this code
use File::Find;
use Data::Dumper;
use Switch;
use FileHandle;
use POSIX; # &floor()
# --------------------- global constants and variables -------------------------------------------------------------
my $encoding_terminal_output = "utf-8";
#my $encoding_terminal_output="cp866";
#my $encoding_terminal_output="cp1251";
#my $file_system_encoding="cp1251"; # Windows
my $file_system_encoding = "utf-8"; # ~ Linux
#my %control_tags=(('001','0'),('005','0'));
# CONSTANTS (ISO 2709 preffered values)
my $fields_delimeter = "\x1e"; # \x1e - Koha;
my $records_delimeter = "\x1d"; # \x1d - Liber Media, Koha; # - ISIS
my $MARC_subfields_delimeter = "\x1f"; # \x1f - Koha; ^ - ISIS; $ - ...
my $dictionary_tag_length = '3'; # - довжина ідентифікатора (напр. 010, 701). ЗДАЄТЬСЯ, НІДЕ НЕ ФІГУРУЄ У МАРКЕРІ
my $dictionary_fieldlength_length = '4'; # (4 bytes) - довжина запису про довжину поля даних (20+1 байт)
my $dictionary_fieldoffset_length = '5'; # (5 bytes) - довжина запису про початкову позицію (21+1 байт)
my $marker_9_byte_undefined = ' '; # 9 (1 byte) - містить пробіл
my $indicator_length = '2'; # 10 (1 byte) - довжина індикатора
my $subfield_identifier_length = '2'; # 11 (1 byte) - довжина ідентифікатора, Напр. $a чи ^b. В UNIMARC-у завжди 2.
my $descriptive_cataloguing_form = ' '; # 18 (1 byte) - форма каталогізаційного опису
my $marker_19_byte_undefined = ' '; # 19 (1 byte) містить пробіл
my $dictionary_implementationdefined_portion_length = '0'; # 22 (1 byte) - довжина частини, що визначається при застосуванні. В UNIMARC = 0.
my $marker_23_byte_undefined = ' '; # 23 (1 byte) містить пробіл
my $XML_subfields_delimeter = "\x5e"; # '^' recomended not change
my $top_count = 20;
# МАРКЕР запису
# Зміщення Поле Довжина
# (байт) (байт)
# 0 Довжина запису 5
# 5 Статус запису 1
# 6 Резерв 4
# 10 Довжина індикатора 1
# 11 Довжина ідентифікатора 1 $dictionary_tag_length
# 12 Початок даних 5
# 17 Резерв 3
# 20 Довжина запису про довжину поля даних 1 $dictionary_fieldlength_length
# 21 Довжина запису про початкову позицію 1 $dictionary_fieldoffset_length
# 22 Резерв 1
# 23 Резерв 1
my $unimarc_slim_variant = "UNIMARC/XML Slim"; # ~ RUSMARC/XML Slim
#my $unimarc_slim_variant = "RUSMARC/XML Slim"; # = RUSMARC/XML Slim
#my $unimarc_slim_variant = "MARC21/XML Slim";
#my $unimarc_slim_variant = "UNIMARC/XML Slim Italian";
#my $unimarc_slim_variant = "UNIMARC/XML Slim Portugal";
my %marcxml_records_tags; # i.e. $marcxml_records_tags{'xsi:schemaLocation'} = "http://www.loc.gov/MARC21/slim http://www.loc.gov/ standards/marcxml/schema/MARC21slim.xsd"
# $marcxml_records_tags{'xmlns:xsi'} = "http://www.w3.org/2001/XMLSchema-instance"
# $marcxml_records_tags{'xmlns'} = "http://www.loc.gov/MARC21/slim"
my $record_name;
my $collection_name;
my $leader_name;
my $control_name;
my $field_name;
my $subfield_name;
my $embedfield_name;
switch($unimarc_slim_variant)
{case "UNIMARC/XML Slim"
{
# http://www.gpntb.ru/win/inter-events/crimea2003/trud/tom1/sec/Doc74.HTML
# http://www.rba.ru/rusmarc/discuss/xmlslim.html
$marcxml_records_tags{'xsi:schemaLocation'} = "http://www.rba.ru/rusmarc/soft/UNISlim.xsd";
#$marcxml_records_tags{'xmlns:xsi'} = "http://www.w3.org/2001/XMLSchema-instance";
#$marcxml_records_tags{'xmlns'} = "http://www.loc.gov/MARC21/slim";
$marcxml_records_tags{'type'} = "Bibliographic"; # библио
#$marcxml_records_tags{'type'} = "Authority"; #
#$marcxml_records_tags{'type'} = "Holdings"; #
#$marcxml_records_tags{'type'} = "Classification"; #
#$marcxml_records_tags{'type'} = "Community"; #
$marcxml_records_tags{'format'} = "UNIMARC";
#$marcxml_records_tags{'format'} = "MARC21";
#$marcxml_records_tags{'format'} = "RUSMARC";
#$marcxml_records_tags{'format'} = "UKRMARC";
$record_name = "record";
$collection_name = "collection";
$leader_name = "leader";
$control_name = "controlfield";
$field_name = "datafield";
$subfield_name = "subfield";
$embedfield_name = "builtinfield"; # in bult-in - xml-structure as in record with own sub control, field
}
case "RUSMARC/XML Slim"
{
# http://www.rba.ru/rusmarc/soft/rusmarcxml_slim.pdf
# http://archive.ifla.org/IV/ifla71/papers/064e-Skvortsov.pdf
# http://www.rba.ru/rusmarc/discuss/xmlslim.html (???)
$marcxml_records_tags{'xsi:schemaLocation'} = "http://www.rba.ru/rusmarc/soft/rusmarc_slim.xsd";
#$marcxml_records_tags{'xmlns:xsi'} = "http://www.w3.org/2001/XMLSchema-instance";
#$marcxml_records_tags{'xmlns'} = "http://www.loc.gov/MARC21/slim";
$marcxml_records_tags{'type'} = "Bibliographic"; # библио
#$marcxml_records_tags{'type'} = "Authority"; #
#$marcxml_records_tags{'type'} = "Holdings"; #
#$marcxml_records_tags{'type'} = "Classification"; #
#$marcxml_records_tags{'type'} = "Community"; #
$marcxml_records_tags{'format'} = "UNIMARC";
#$marcxml_records_tags{'format'} = "MARC21";
#$marcxml_records_tags{'format'} = "RUSMARC";
#$marcxml_records_tags{'format'} = "UKRMARC";
$record_name = "record";
$collection_name = "collection";
$leader_name = "leader";
$control_name = "control";
$field_name = "field";
$subfield_name = "subfield";
$embedfield_name = "built-in"; # in bult-in - xml-structure as in record with own sub control, field
}
case "MARC21/XML Slim"
{
$marcxml_records_tags{'xsi:schemaLocation'} = "http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd";
$marcxml_records_tags{'xmlns:xsi'} = "http://www.w3.org/2001/XMLSchema-instance";
$marcxml_records_tags{'xmlns'} = "http://www.loc.gov/MARC21/slim";
$record_name = "record";
$collection_name = "collection";
$leader_name = "leader";
$control_name = "controlfield";
$field_name = "datafield";
$subfield_name = "subfield";
}
case "UNIMARC/XML Slim Italian"
{
$marcxml_records_tags{'xsi:schemaLocation'} = "http://www.bncf.firenze.sbn.it/progetti/unimarc/slim/documentation/unimarcslim.xsd";
#$marcxml_records_tags{'xmlns:xsi'} = "http://www.w3.org/2001/XMLSchema-instance";
#$marcxml_records_tags{'xmlns'} = "http://www.loc.gov/MARC21/slim";
$record_name = "rec";
$collection_name = "collection";
$leader_name = "lab";
$control_name = "cf";
$field_name = "df";
$subfield_name = "sf";
$embedfield_name = "s1"; # subfield with embedded tags, indicators and subfields
}
case "UNIMARC/XML Slim Portugal"
{
# http://cyberdoc.univ-lemans.fr/PUB/UNIMARC/lisbon200603.htm
$marcxml_records_tags{'xsi:schemaLocation'} = "http://www.bn.pt/standards/metadata/marcxml/1.0/ http://xml.bn.pt/schemas/Unimarc-1.0.xsd";
$marcxml_records_tags{'xmlns:xsi'} = "http://www.w3.org/2001/XMLSchema-instance";
$marcxml_records_tags{'xmlns'} = "http://www.bn.pt/standards/metadata/marcxml/1.0/";
$record_name = "record";
$collection_name = "collection";
$leader_name = "leader";
$control_name = "controlfield";
$field_name = "datafiel";
$subfield_name = "subfield";
}
# else {}
}
my %UNIMARC = (
'001' => 'RECORD IDENTIFIER (Mandatory, Not repeatable), Indicators: None, Subfield codes: None',
'003' => 'PERSISTENT RECORD IDENTIFIER (Not repeatable), Indicators: None, Subfield codes: None',
'005' => 'VERSION IDENTIFIER (Not repeatable), Indicators: None, Subfield codes: None',
'010' => 'INTERNATIONAL STANDARD BOOK NUMBER (Repeatable), Indicators: blank',
'010^a' => 'Number (ISBN) (Not repeatable)',
'010^b' => 'Qualification (Repeatable)',
'010^d' => 'Terms of Availability and/or Price (Not repeatable)',
'010^z' => 'Erroneous ISBN (Repeatable)',
'010^6' => 'Interfield Linking Data (Not repeatable)',
'011' => 'INTERNATIONAL STANDARD SERIAL NUMBER (Repeatable) Indicator 2: blank',
'011^ind1' => 'Indicator l: Level of Interest Indicator',
'011^a' => ' Number (ISSN) (Not repeatable)',
'011^b' => ' Qualification (Not repeatable)',
'011^d' => ' Terms of Availability and/or Price (Repeatable)',
'011^f' => ' ISSN-L or linking ISSN (Not Repeatable)',
'011^g' => ' Cancelled ISSN-L (Repeatable)',
'011^y' => ' Cancelled ISSN (Repeatable)',
'011^z' => ' Erroneous ISSN or ISSN-L (Repeatable)',
'012' => ' FINGERPRINT IDENTIFIER (Repeatable), Indicators: blank',
'012^a' => ' Fingerprint (Not repeatable)',
'012^2' => ' Fingerprint System Code (Not repeatable)',
'012^5' => ' Institution and copy to which Field Applies (Mandatory if field is present, Not repeatable)',
'013' => ' INTERNATIONAL STANDARD MUSIC NUMBER (Repeatable), Indicators: blank',
'013^a' => ' Number (ISMN) (Not repeatable)',
'013^b' => ' Qualification (Not repeatable)',
'013^d' => ' Terms of Availability and/or Price (Not repeatable)',
'013^z' => ' Erroneous ISMN (Repeatable)',
'014' => ' ARTICLE IDENTIFIER (Repeatable), Indicators: blank',
'014^a' => ' Article Identifier (Not repeatable)',
'014^z' => ' Erroneous Article Identifier (Repeatable)',
'014^2' => ' System Code (Not repeatable)',
'015' => ' INTERNATIONAL STANDARD TECHNICAL REPORT NUMBER, (Repeatable), Indicators: blank',
'015^a' => ' Number (ISRN) (Not repeatable)',
'015^b' => ' Qualification (Not repeatable)',
'015^d' => ' Terms of Availability and/or Price (Not repeatable)',
'015^z' => ' Cancelled/Invalid/Erroneous ISRN (Repeatable)',
'016' => ' INTERNATIONAL STANDARD RECORDING CODE (ISRC) (Repeatable) Indicators: blank',
'016^a' => ' Number (ISRC) (Not repeatable)',
'016^b' => ' Qualification (Not repeatable)',
'016^d' => ' Terms of Availability and/or Price (Not repeatable) [Obsolete]',
'016^z' => ' Erroneous ISRC (Repeatable)',
'017' => ' OTHER STANDARD IDENTIFIER (Repeatable)',
'017^ind1' => 'Indicator 1: Type of standard number or code',
'017^ind2' => 'Indicator 2: Difference indicator',
'017^a' => ' Standard Number (Not repeatable)',
'017^b' => ' Qualification (Not repeatable)',
'017^d' => ' Terms of Availability and/or Price (Not repeatable)',
'017^z' => ' Erroneous Number or Code (Repeatable)',
'017^2' => ' Source of code (Not repeatable)',
'020' => ' NATIONAL BIBLIOGRAPHY NUMBER (Repeatable) Indicators: blank',
'020^a' => ' Country Code (2 characters. Not repeatable)',
'020^b' => ' Number (Not repeatable)',
'020^z' => ' Erroneous number (Repeatable)',
'021' => ' LEGAL DEPOSIT NUMBER (Repeatable) Indicators: blank',
'021^a' => ' Country Code (2 characters. Not repeatable)',
'021^b' => ' Number (Not repeatable)',
'021^z' => ' Erroneous Number (Repeatable)',
'022' => ' GOVERNMENT PUBLICATION NUMBER (Repeatable) Indicators: blank',
'022^a' => ' Country Code (2 characters. Not repeatable)',
'022^b' => ' Number (Not repeatable)',
'022^z' => ' Erroneous Number (Repeatable)',
'035' => ' OTHER SYSTEM CONTROL NUMBERS (Repeatable) Indicators: blank',
'035^a' => ' System Control Number (Not repeatable)',
'035^z' => ' Cancelled or Invalid Control Number (Repeatable)',
'036' => ' MUSIC INCIPIT (Repeatable) Indicators: blank',
'036^a' => ' Number of work (2 characters. Mandatory, Not repeatable)',
'036^b' => ' Number of movement (2 characters. Mandatory, Not repeatable)',
'036^c' => ' Number of incipit (2 characters. Mandatory, Not repeatable)',
'036^d' => ' Voice/instrument (Mandatory if 036$p is present, Not repeatable)',
'036^e' => ' Role (Not repeatable)',
'036^f' => ' Movement caption/heading (Repeatable)',
'036^g' => ' Key or mode (Not repeatable)',
'036^m' => ' Clef (3 characters. Mandatory if 036$p is present, Not repeatable)',
'036^n' => ' Key signature (Not repeatable)',
'036^o' => ' Time signature (Not repeatable)',
'036^p' => ' Musical notation (Not repeatable)',
'036^q' => ' Comments (free text) (Repeatable)',
'036^r' => ' Codified note (1 character. Not repeatable)',
'036^t' => ' Text incipit (Repeatable)',
'036^u' => ' Uniform Resource Identifier (Repeatable)',
'036^z' => ' Language of text (3 characters. Repeatable)',
'036^2' => ' System code for musical notation (2 characters. Mandatory if 036$p’, is present, Not repeatable)',
'040' => ' CODEN (SERIALS) (Repeatable) Indicators: blank',
'040^a' => ' CODEN (Not repeatable)',
'040^z' => ' Erroneous CODEN (Repeatable)',
'071' => ' PUBLISHER’S NUMBER (Repeatable)',
'071^ind1' => 'Indicator l: Type of Publisher’s Number',
'071^ind2' => 'Indicator 2 Note Indicator',
'071^a' => ' Publisher’s Number (Not repeatable)',
'071^b' => ' Source (Not repeatable)',
'071^c' => ' Qualification (Not repeatable)',
'071^d' => ' Terms of availability and/or price (Not repeatable)',
'071^z' => ' Erroneous publisher’s number (Not repeatable)',
'072' => ' UNIVERSAL PRODUCT CODE (UPC) (Repeatable) Indicator 1: blank (not defined)',
'072^ind2' => 'Indicator 2: Difference indicator',
'072^a' => ' Standard Number (Not Repeatable)',
'072^b' => ' Qualification (Not Repeatable)',
'072^c' => ' Additional codes following standard number or code (Not Repeatable).',
'072^d' => 'Terms of Availability and/or Price (Not repeatable)',
'072^z' => ' Erroneous Number or Code (Repeatable)',
'073' => ' INTERNATIONAL ARTICLE NUMBER (EAN) (Repeatable) Indicator 1: blank',
'073^ind2' => 'Indicator 2: Difference indicator',
'073^a' => ' Standard Number (Not repeatable)',
'073^b' => ' Qualification (Not repeatable)',
'073^c' => ' Additional codes following standard number or code (Not repeatable)',
'073^d' => ' Terms of Availability and/or Price (Not repeatable)',
'073^z' => ' Erroneous Number or Code (Repeatable)',
'100' => ' GENERAL PROCESSING DATA (Mandatory, Not repeatable) Indicators: blank',
'100^a' => ' General Processing Data',
'101' => ' LANGUAGE OF THE ITEM (Mandatory if work has language, Not repeatable) Indicator 2: blank',
'101^ind1' => 'Indicator 1: Translation indicator',
'101^a' => ' Language of Text, Soundtrack etc. (3 characters. Repeatable)',
'101^b' => ' Language of Intermediate Text when Item is Not Translated from Original (3 characters. Repeatable)',
'101^c' => ' Language of Original Work (3 characters. Repeatable)',
'101^d' => ' Language of Summary (3 characters. Repeatable)',
'101^e' => ' Language of Contents Page (3 characters. Repeatable)',
'101^f' => ' Language of Title Page if Different from Text (3 characters. Repeatable)',
'101^g' => ' Language of Title Proper if Not First Language of Text, Soundtrack, etc. (3 characters. Not repeatable)',
'101^h' => ' Language of Libretto, etc. (3 characters. Repeatable)',
'101^i' => ' Language of Accompanying Material (Other than Summaries, Abstracts or Librettos) (3 characters. Repeatable)',
'101^j' => ' Language of Subtitles (3 characters. Repeatable)',
'102' => ' COUNTRY OF PUBLICATION OR PRODUCTlON (Not repeatable), Indicators: blank',
'102^a' => ' Country of publication (2 characters. Repeatable)',
'102^b' => ' Locality (non-ISO) (Repeatable)',
'102^c' => ' Locality (ISO) (Repeatable)',
'102^2' => ' Source of non-ISO code (Repeatable)',
'105' => ' CODED DATA FIELD: TEXTUAL MATERIAL, MONOGRAPHIC, (Not repeatable) Indicators: blank',
'105^a' => ' Monograph Coded Data (Not repeatable)',
'106' => ' CODED DATA FIELD: FORM OF ITEM (Not repeatable) Indicators: blank',
'106^a' => ' Form of item: Coded Data: Medium Designator (Not repeatable)',
'110' => ' CODED DATA FIELD: CONTINUING RESOURCES (Not repeatable) Indicators: blank',
'110^a' => ' Continuing resource Coded Data (Not repeatable)',
'111' => ' CODED DATA FIELDS – SERIALS: PHYSICAL ATTRIBUTES, [Obsolete]',
'115' => ' CODED DATA FIELDS: VISUAL PROJECTIONS, VIDEORECORDINGS AND MOTION PICTURES (Repeatable), Indicators: blank',
'115^a' => ' Coded Data - General (Not repeatable)',
'115^b' => ' Motion Picture Coded Data - Archival (Not repeatable)',
'116' => ' CODED DATA FIELD: GRAPHICS (Repeatable) Indicators: blank',
'116^a' => ' Coded Data for Graphics (Not repeatable)',
'117' => ' CODED DATA FIELD: THREE-DIMENSIONAL ARTEFACTS AND REALIA (Repeatable), Indicators: blank',
'117^a' => ' Coded Data for Three-Dimensional Artefacts and Realia (Not repeatable)',
'120' => ' CODED DATA FIELD: CARTOGRAPHIC MATERIALS - GENERAL, (Mandatory for cartographic materials, Not repeatable), Indicators: blank',
'120^a' => ' Cartographic Material Coded Data (General) (Not repeatable)',
'121' => ' CODED DATA FIELD: CARTOGRAPHIC MATERIALS: PHYSICAL ATTRIBUTES (Not repeatable), Indicators: blank',
'121^a' => ' Cartographic Material Coded Data: Physical attributes (General) (Not repeatable)',
'121^b' => ' Aerial Photography and Remote Sensing Coded Data: Physical Attributes (Not repeatable)',
'122' => ' CODED DATA FIELD: TIME PERIOD OF ITEM CONTENT (Repeatable) Indicator 2: blank',
'122^ind1' => 'Indicator 1: Number of Dates Indicator',
'122^a' => ' Time period, 9999 B.C. to present (Repeatable)',
'123' => ' CODED DATA FIELD: CARTOGRAPHIC MATERIALS SCALE AND CO-ORDINATES (Mandatory for cartographic materials, Repeatable) Indicator 2: blank',
'123^ind1' => 'Indicator 1: Type of Scale Code Indicator',
'123^a' => ' Type of Scale (Mandatory, Not repeatable)',
'123^b' => ' Constant Ratio Linear Horizontal Scale (Repeatable)',
'123^c' => ' Constant Ratio Linear Vertical Scale (Repeatable)',
'123^d' => ' Co-ordinates - Westernmost Longitude (8 characters. Not repeatable)',
'123^e' => ' Co-ordinates - Easternmost Longitude (8 characters. Not repeatable)',
'123^f' => ' Co-ordinates - Northernmost Latitude (8 characters. Not repeatable)',
'123^g' => ' Co-ordinates - Southernmost Latitude (8 characters. Not repeatable)',
'123^h' => ' Angular Scale (Repeatable), 4 character number right justified, giving the scale in terms of millimetres to a degree; unused positions contain zeros.',
'123^i' => ' Declination - Northern Limit (8 characters. Not repeatable)',
'123^j' => ' Declination - Southern Limit (8 characters. Not repeatable)',
'123^k' => ' Right ascension - Eastern Limits (6 characters. Not repeatable)',
'123^m' => ' Right ascension - Western Limits (6 characters. Not repeatable)',
'123^n' => ' Equinox (Not repeatable) (4 characters)',
'123^o' => ' Epoch (Not repeatable) (4 characters)',
'123^p' => ' Planet (Mandatory for planets other than Earth, Not repeatable)',
'124' => ' CODED DATA FIELD: CARTOGRAPHIC MATERIALS - SPECIFIC MATERIAL DESIGNATION ANALYSIS (Not repeatable), Indicators: blank',
'124^a' => ' Character of Image (Not repeatable)',
'124^b' => ' Form of Cartographic Item (Repeatable)',
'124^c' => ' Presentation Technique for Photographic or Non-Photographic Image (Repeatable)',
'124^d' => ' Position of Platform for Photographic or Remote Sensing Image (Repeatable)',
'124^e' => ' Category of Satellite for Remote Sensing Image (Repeatable)',
'124^f' => ' Name of Satellite for Remote Sensing Image (Repeatable)',
'124^g' => ' Recording Technique for Remote Sensing Image (Repeatable)',
'125' => ' CODED DATA FIELD: SOUND RECORDINGS AND PRINTED MUSIC (Not repeatable), Indicators: blank',
'125^a' => ' Format of Notated Music (Not repeatable)',
'125^b' => ' Literary Text Indicator (Non-Music Performance) (Not repeatable)',
'125^c' => ' Multiple Musical Format (Not repeatable)',
'126' => ' CODED DATA FIELD: SOUND RECORDINGS - PHYSICAL ATTRIBUTES (Not repeatable), Indicators: blank',
'126^a' => ' Sound Recording Coded Data (General) (Not Repeatable)',
'126^b' => ' Sound Recording Coded Data (Detail) (Not repeatable)',
'127' => ' CODED DATA FIELD: DURATION OF SOUND RECORDINGS AND PRINTED MUSIC (Not repeatable), Indicators: blank',
'127^a' => ' Duration (6 characters. Repeatable)',
'128' => ' CODED DATA FIELD: FORM OF MUSICAL WORK AND KEY OR MODE (Repeatable), Indicators: blank',
'128^a' => 'Form of Musical Work (Repeatable)',
'128^b' => ' [Obsolete] Instruments or Voices for Ensembles (Repeatable)',
'128^c' => ' [Obsolete] Instruments or Voices for Soloists (Repeatable)',
'128^d' => ' Key or mode of Musical Work (Not repeatable)',
'130' => ' CODED DATA FIELD: MICROFORMS - PHYSICAL ATTRIBUTES (Repeatable), Indicators: blank',
'130^a' => ' Microform Coded Data Physical Attributes (Not repeatable)',
'131' => ' CODED DATA FIELD: CARTOGRAPHIC MATERIALS: GEODETIC, GRID AND VERTICAL MEASUREMENT (Not repeatable), Indicators: blank',
'131^a' => ' Spheroid (2 characters. Repeatable)',
'131^b' => ' Horizontal Datum (3 characters. Repeatable)',
'131^c' => ' Grid and Referencing System (2 characters. Repeatable)',
'131^d' => ' Overlapping and Referencing System (2 characters. Repeatable)',
'131^e' => ' Secondary Grid and Referencing System (2 characters. Repeatable)',
'131^f' => ' Vertical Datum (2 characters. Repeatable)',
'131^g' => ' Unit of Measurement of Heighting (2 characters. Repeatable)',
'131^h' => ' Contour Interval (4 characters. Repeatable)',
'131^i' => ' Supplementary Contour Interval (4 characters Repeatable)',
'131^j' => ' Unit of Measurement of Bathymetry (2 characters. Repeatable)',
'131^k' => ' Bathymetric Interval (4 characters Repeatable)',
'131^l' => ' Supplementary Bathymetric Interval (4 characters. Repeatable)',
'135' => ' CODED DATA FIELD: ELECTRONIC RESOURCES (Repeatable), Indicators: blank',
'135^a' => ' Coded Data for Electronic Resources (Not repeatable)',
'140' => ' CODED DATA FIELD: ANTIQUARIAN - GENERAL (Not repeatable), Indicators: blank',
'140^a' => ' Antiquarian Coded Data - General (Not repeatable)',
'141' => ' CODED DATA FIELD: COPY SPECIFIC ATTRIBUTES (Repeatable), Indicators: blank',
'141^a' => ' Coded data - Copy specific attributes (Not repeatable)',
'141^b' => ' Binding specific characteristics (Not repeatable)',
'141^c' => ' Age (Not repeatable)',
'141^d' => ' Binding State of Preservation code – specific (Not repeatable)',
'141^e' => ' Body of the Book Specific Characteristics (Not repeatable)',
'141^f' => ' Body of the Book State of Preservation Code – specific (Not repeatable)',
'141^5' => ' Institution and Copy to Which the Field Applies (Mandatory. Not repeatable)',
'145' => ' CODED DATA FIELD: MEDIUM OF PERFORMANCE (Repeatable)',
'145^ind1' => 'Indicator 1: Arrangement indicator',
'145^ind2' => 'Indicator 2: Alternative medium indicator',
'145^a' => ' Type of performance medium (Not repeatable)',
'145^b' => ' Instrument/voice, conductor, other performer or device (8 characters. Repeatable)',
'145^c' => ' Type of ensemble (8 characters. Repeatable)',
'145^d' => ' Group within larger ensemble (8 characters. Repeatable)',
'145^e' => ' Number of parts (4 characters. Repeatable)',
'145^f' => ' Number of players (4 characters. Repeatable)',
'200' => ' TITLE AND STATEMENT OF RESPONSIBILITY (Mandatory, Not repeatable) Indicator 2: blank',
'200^ind1' => 'Indicator 1: Title Significance Indicator',
'200^a' => ' Title Proper (Mandatory for every record. Repeatable)',
'200^b' => ' General Material Designation (Repeatable)',
'200^c' => ' Title Proper by Another Author (Repeatable)',
'200^d' => ' Parallel Title Proper (Repeatable)',
'200^e' => ' Other Title Information (Repeatable)',
'200^f' => ' First Statement of Responsibility (Repeatable)',
'200^g' => ' Subsequent Statement of Responsibility (Repeatable)',
'200^h' => ' Number of a Part (Repeatable)',
'200^i' => ' Name of a Part (Repeatable)',
'200^v' => ' Volume Designation (Not repeatable)',
'200^z' => ' Language of Parallel Title Proper (3 characters. Repeatable)',
'200^5' => ' Institution and Copy to Which Field Applies (Not repeatable)',
'204' => ' GENERAL MATERIAL DESIGNATION [Obsolete] (Repeatable) Indicators: blank',
'204^a' => ' GMD (Not repeatable)',
'205' => ' EDITION STATEMENT (Repeatable) Indicators: blank',
'205^a' => ' Edition Statement (Not repeatable)',
'205^b' => ' Issue Statement (Repeatable)',
'205^d' => ' Parallel Edition Statement (Repeatable)',
'205^f' => ' Statement of Responsibility Relating to Edition (Repeatable)',
'205^g' => ' Subsequent Statement of Responsibility (Repeatable)',
'206' => ' MATERIAL SPECIFIC AREA: CARTOGRAPHIC MATERIALS - MATHEMATICAL DATA (Mandatory for cartographic items. Repeatable) Indicator 2: blank (not defined)',
'206^ind1' => 'Indicator 1: Formatting Indicator',
'206^a' => ' Mathematical Data Statement (Not repeatable)',
'206^b' => ' Statement of scale (Repeatable)',
'206^c' => ' Statement of projection (Not repeatable)',
'206^d' => ' Statement of coordinates (Not repeatable)',
'206^e' => ' Statement of zone (Not repeatable) Used for celestial charts.',
'206^f' => ' Statement of equinox (Not repeatable)',
'207' => ' MATERIAL SPECIFIC AREA: NUMBERING OF CONTINUING RESOURCES (Not repeatable) Indicator 1: blank',
'207^ind2' => 'Indicator 2: Formatted Numbering Indicator',
'207^a' => ' Numbering: Dates and Volume Designations (Repeatable)',
'207^z' => ' Source of Numbering Information (Repeatable)',
'208' => ' MATERIAL SPECIFIC AREA: PRINTED MUSIC SPECIFIC STATEMENT (Not repeatable) Indicators: blank',
'208^a' => ' Printed Music Specific Statement (Not repeatable)',
'208^d' => ' Parallel Printed Music Specific Statement(s) (Repeatable)',
'210' => ' PUBLICATION, DISTRIBUTION, ETC. (Repeatable)',
'210^ind1' => 'Indicator 1: Sequence of publication data',
'210^ind2' => 'Indicator 2: Type of release',
'210^a' => ' Place of Publication, Distribution, etc. (Repeatable)',
'210^b' => ' Address of Publisher, Distributor, etc. (Repeatable)',
'210^c' => ' Name of Publisher, Distributor, etc. (Repeatable)',
'210^d' => ' Date of Publication, Distribution, etc. (Repeatable)',
'210^e' => ' Place of Manufacture (Repeatable)',
'210^f' => ' Address of Manufacturer (Repeatable)',
'210^g' => ' Name of Manufacturer (Repeatable)',
'210^h' => ' Date of Manufacture (Repeatable)',
'211' => ' PROJECTED PUBLICATION DATE (Not repeatable) Indicators: blank',
'211^a' => ' Date (8 characters. Not repeatable)',
'215' => ' PHYSICAL DESCRIPTION (Repeatable) Indicators: blank',
'215^a' => ' Specific Material Designation and Extent of Item (Repeatable)',
'215^c' => ' Other Physical Details (Not repeatable)',
'215^d' => ' Dimensions (Repeatable)',
'215^e' => ' Accompanying Material (Repeatable)',
'225' => ' SERIES (Repeatable) Indicator 2: blank',
'225^ind1' => 'Indicator 1: Form of Title Indicator',
'225^a' => ' Series Title (Not repeatable)',
'225^d' => ' Parallel Series Title (Repeatable)',
'225^e' => ' Other Title Information (Repeatable)',
'225^f' => ' Statement of Responsibility (Repeatable)',
'225^h' => ' Number of a Part (Repeatable)',
'225^i' => ' Name of a Part (Repeatable)',
'225^v' => ' Volume Designation (Repeatable)',
'225^x' => ' ISSN of Series (Repeatable)',
'225^z' => ' Language of Parallel Title (3 characters. Repeatable)',
'230' => ' MATERIAL SPECIFIC AREA: ELECTRONIC RESOURCE CHARACTERISTICS (Mandatory for electronic resources, Repeatable) Indicators: blank',
'230^a' => ' Designation and extent of file (Not repeatable)',
'300' => ' GENERAL NOTES (Repeatable) Indicators: blank',
'300^a' => ' Text of Note (Not repeatable)',
'301' => ' NOTES PERTAINING TO IDENTIFICATION NUMBERS (Repeatable) Indicators: blank',
'301^a' => ' Text of Note (Not repeatable)',
'302' => ' NOTES PERTAINING TO CODED INFORMATION (Repeatable) Indicators: blank',
'302^a' => ' Text of Note (Not repeatable)',
'303' => ' GENERAL NOTES PERTAINING TO DESCRIPTIVE INFORMATION (Repeatable) Indicators: blank',
'303^a' => ' Text of Note (Not repeatable)',
'304' => 'NOTES PERTAINING TO TITLE AND STATEMENT OF RESPONSIBILITY (Mandatory for electronic resources, otherwise optional. Repeatable) Indicators: blank',
'304^a' => ' Text of Note (Not repeatable)',
'305' => ' NOTES PERTAINING TO EDITION AND BIBLIOGRAPHIC HISTORY (Repeatable) Indicators: blank',
'305^a' => ' Text of Note (Not repeatable)',
'306' => ' NOTES PERTAINING TO PUBLICATION, DISTRIBUTION, ETC. (Repeatable) Indicators: blank',
'306^a' => ' Text of Note (Not repeatable)',
'307' => ' NOTES PERTAINING TO PHYSICAL DESCRIPTION (Repeatable) Indicators: blank',
'307^a' => ' Text of Note (Not repeatable)',
'308' => ' NOTES PERTAINING TO SERIES (Repeatable) Indicators: blank',
'308^a' => ' Text of Note (Not repeatable)',
'310' => ' NOTES PERTAINING TO BINDING AND AVAILABILITY (Repeatable) Indicators: blank',
'310^a' => ' Text of Note (Not repeatable)',
'311' => ' NOTES PERTAINING TO LINKING FIELDS (Repeatable) Indicators: blank',
'311^a' => ' Text of Note (Not repeatable)',
'312' => ' NOTES PERTAINING TO RELATED TITLES (Repeatable) Indicators: blank',
'312^a' => ' Text of Note (Not repeatable)',
'313' => ' NOTES PERTAINING TO SUBJECT ACCESS (Repeatable) Indicators: blank',
'313^a' => ' Text of Note (Not repeatable)',
'314' => ' NOTES PERTAINING TO RESPONSIBILITY (Repeatable) Indicators: blank',
'314^a' => ' Text of Note (Not repeatable)',
'315' => ' NOTES PERTAINING TO MATERIAL (OR TYPE OF PUBLICATION) SPECIFIC INFORMATION (Repeatable) Indicators: blank',
'315^a' => ' Text of Note (Not repeatable)',
'316' => ' NOTE RELATING TO THE COPY IN HAND (Repeatable) Indicators: blank',
'316^a' => ' Text of Note (Repeatable)',
'316^u' => ' Uniform Resource Identifier. (Repeatable)',
'316^5' => ' Institution and Copy to Which Field Applies (Mandatory if field is present. Not repeatable)',
'316^6' => ' Interfield Linking Data (Not repeatable)',
'317' => ' PROVENANCE NOTE (Repeatable) Indicators: blank',
'317^a' => ' Text of Note (Not repeatable)',
'317^u' => ' Uniform Resource Identifier. (Repeatable)',
'317^5' => ' Institution and Copy to Which Field Applies (Mandatory. Not repeatable)',
'317^6' => ' Interfield Linking Data (Not repeatable)',
'318' => ' ACTION NOTE (Repeatable) Indicators: blank',
'318^a' => ' Action (Not repeatable)',
'318^b' => ' Action Identification (Repeatable)',
'318^c' => ' Time of Action (Repeatable)',
'318^d' => ' Action Interval (Repeatable)',
'318^e' => ' Contingency for Action (Repeatable)',
'318^f' => ' Authorisation (Repeatable)',
'318^h' => ' Jurisdiction (Repeatable)',
'318^i' => ' Method of Action. (Repeatable)',
'318^j' => ' Site of Action (Repeatable)',
'318^k' => ' Action Agent (Repeatable)',
'318^l' => ' Status (Repeatable)',
'318^n' => ' Extent (Repeatable)',
'318^o' => ' Type of Unit (Repeatable)',
'318^p' => ' Non-public Note (Repeatable)',
'318^r' => ' Public Note (Repeatable)',
'318^u' => ' Uniform Resource Identifier. (Repeatable)',
'318^5' => ' Institution and Copy to Which Field Applies (Mandatory. Not repeatable)',
'320' => ' INTERNAL BIBLIOGRAPHIES/INDEXES NOTE (Repeatable) Indicators: blank',
'320^a' => ' Text of Note (Not repeatable)',
'320^u' => ' Uniform Resource Identifier (Repeatable)',
'321' => ' EXTERNAL INDEXES/ABSTRACTS/REFERENCES NOTE (Repeatable) Indicator 2: blank',
'321^ind1' => 'Indicator 1: Type of Coverage',
'321^a' => ' Name of source (Not repeatable)',
'321^b' => ' Dates of Coverage (Not repeatable)',
'321^c' => ' Location within source (Not repeatable)',
'321^u' => ' Uniform Resource Identifier (URI) (Not repeatable)',
'321^x' => ' International Standard Number (Not repeatable)',
'321^5' => ' Institution and Copy to Which Field Applies (Not repeatable)',
'321^6' => ' Interfield Linking Data (Not repeatable)',
'322' => ' CREDITS NOTE (PROJECTED AND VIDEO MATERIAL AND SOUND RECORDINGS) (Not repeatable) Indicators: blank',
'322^a' => ' Text of Note (Not repeatable)',
'323' => ' CAST NOTE (PROJECTED AND VIDEO MATERIAL AND SOUND RECORDINGS) (Repeatable) Indicators: blank',
'323^a' => ' Text of Note (Not repeatable)',
'324' => ' ORIGINAL VERSION NOTE (Not repeatable) Indicators: blank',
'324^a' => ' Text of Note (Not repeatable)',
'325' => ' REPRODUCTION NOTE (Repeatable) Indicator 2: blank (not defined)',
'325^ind1' => 'Indicator 1: Original / Reproduction indicator',
'325^a' => ' Text of Note (Not repeatable)',
'326' => ' FREQUENCY STATEMENT NOTE (CONTINUING RESOURCES) (Repeatable) Indicators: blank',
'326^a' => ' Frequency (Not repeatable)',
'326^b' => ' Dates of Frequency (Not repeatable)',
'327' => ' CONTENTS NOTE (Repeatable)',
'327^ind1' => 'Indicator 1: Completeness indicator',
'327^ind2' => 'Indicator 2: Structure indicator',
'327^a' => ' Text of Note (Repeatable)',
'327^b' => ' Title of level 1 subdivision (Repeatable)',
'327^c' => ' Title of level 2 subdivision (Repeatable)',
'327^d' => ' Title of level 3 subdivision (Repeatable)',
'327^e' => ' Title of level 4 subdivision (Repeatable)',
'327^f' => ' Title of level 5 subdivision (Repeatable)',
'327^g' => ' Title of level 6 subdivision (Repeatable)',
'327^h' => ' Title of level 7 subdivision (Repeatable)',
'327^i' => ' Title of level 8 subdivision (Repeatable)',
'327^p' => ' Sequence of pages or first page of a subdivision (Repeatable)',
'327^u' => ' Uniform Resource Identifier (URI) (Repeatable)',
'327^z' => ' Other information concerning a subdivision (Repeatable)',
'328' => ' DISSERTATION (THESIS) NOTE (Repeatable) Indicator 1: blank (not defined)',
'328^ind2' => 'Indicator 2: Structure indicator',
'328^a' => ' Text of Note (Not repeatable)',
'328^b' => ' Dissertation or thesis details and type of degree (Not repeatable)',
'328^c' => ' Discipline of degree (Not repeatable)',
'328^d' => ' Date of degree (Not repeatable)',
'328^e' => ' Body granting the degree (Not repeatable)',
'328^t' => ' Title of other edition of dissertation or thesis (Not repeatable)',
'328^z' => ' Text preceding or following the note (Repeatable)',
'330' => ' SUMMARY OR ABSTRACT (Repeatable) Indicators: blank',
'330^a' => ' Text of Note (Not repeatable)',
'332' => ' PREFERRED CITATION OF DESCRIBED MATERIALS (Repeatable) Indicators: blank',
'332^a' => ' Preferred Citation (Not repeatable)',
'333' => ' USERS/INTENDED AUDIENCE NOTE (Repeatable) Indicators: blank',
'333^a' => ' Text of Note (Not repeatable)',
'334' => ' AWARDS NOTE (Repeatable) Indicators: blank',
'334^a' => ' Text of awards note (Not repeatable)',
'334^b' => ' Name of award (Not repeatable)',
'334^c' => ' Year of award (Not repeatable)',
'334^d ' => 'Country of award (Not repeatable)',
'334^u' => ' Uniform Resource Identifier (URI) (Repeatable)',
'336' => ' TYPE OF ELECTRONIC RESOURCE NOTE (Repeatable) Indicators: blank',
'336^a' => ' Text of Note (Not repeatable)',
'337' => ' SYSTEM REQUIREMENTS NOTE (ELECTRONIC RESOURCES) (Repeatable) Indicators: blank',
'337^a' => ' Text of Note (Not repeatable)',
'337^u' => ' Uniform Resource Identifier (URI) (Repeatable)',
'345' => ' ACQUISITION INFORMATION NOTE (Not repeatable) Indicators: blank',
'345^a' => ' Source for Acquisition/Subscription Address (Repeatable)',
'345^b' => 'Stock Number (Repeatable)',
'345^c' => ' Medium (Repeatable)',
'345^d' => ' Terms of Availability (Repeatable)',
'345^u' => ' Uniform Resource Identifier (URI) (Repeatable)',
'410' => ' Series [Series, supplements, etc]',
'410^ind1' => 'Indicator 1: blank',
'410^ind2' => 'Indicator 2: Note Indicator',
'410^1' => '(one) Linking Data (Repeatable) (for Embedded Fields)',
'410^a' => 'Author (Not Repeatable)',
'410^b' => 'General Material Designation (Not repeatable)',
'410^c' => 'Place of Publication (Repeatable)',
'410^d' => 'Date of Publication (Not repeatable)',
'410^e' => 'Edition Statement (Not repeatable)',
'410^f' => 'First Statement of Responsibility (Repeatable)',
'410^g' => 'Subsequent Statement of Responsibility (Repeatable)',
'410^h' => 'Number of Section or Part (Repeatable)',
'410^i' => 'Name of Section or Part (Repeatable)',
'410^l' => 'Parallel title (Repeatable)',
'410^m' => 'International Standard Music Number (Repeatable)',
'410^n' => 'Name of Publisher, Distributor, etc. (Repeatable)',
'410^o' => 'Other title information. (Repeatable)',
'410^p' => 'Physical description (Not repeatable)',
'410^s' => 'Series statement (Repeatable)',
'410^t' => 'Title (Mandatory, Repeatable)',
'410^u' => 'Uniform Resource Locator (Not repeatable)',
'410^v' => 'Volume Number (Not repeatable)',
'410^x' => 'International Standard Serial Number (Repeatable)',
'410^y' => 'International Standard Book Number (Repeatable)',
'410^z' => 'CODEN (Not repeatable)',
'410^0' => 'Bibliographic Record Identifier (Not repeatable)',
'410^3' => 'Authority Record Number (Repeatable)',
'410^5' => 'Institution and Copy to Which Field Applies (Not repeatable)',
'411' => ' Subseries [Series, supplements, etc]',
'411^ind1' => 'Indicator 1: blank',
'411^ind2' => 'Indicator 2: Note Indicator',
'411^1' => '(one) Linking Data (Repeatable) (for Embedded Fields)',
'411^a' => 'Author (Not Repeatable)',
'411^b' => 'General Material Designation (Not repeatable)',
'411^c' => 'Place of Publication (Repeatable)',
'411^d' => 'Date of Publication (Not repeatable)',
'411^e' => 'Edition Statement (Not repeatable)',
'411^f' => 'First Statement of Responsibility (Repeatable)',
'411^g' => 'Subsequent Statement of Responsibility (Repeatable)',
'411^h' => 'Number of Section or Part (Repeatable)',
'411^i' => 'Name of Section or Part (Repeatable)',
'411^l' => 'Parallel title (Repeatable)',
'411^m' => 'International Standard Music Number (Repeatable)',
'411^n' => 'Name of Publisher, Distributor, etc. (Repeatable)',
'411^o' => 'Other title information. (Repeatable)',
'411^p' => 'Physical description (Not repeatable)',
'411^s' => 'Series statement (Repeatable)',
'411^t' => 'Title (Mandatory, Repeatable)',
'411^u' => 'Uniform Resource Locator (Not repeatable)',
'411^v' => 'Volume Number (Not repeatable)',
'411^x' => 'International Standard Serial Number (Repeatable)',
'411^y' => 'International Standard Book Number (Repeatable)',
'411^z' => 'CODEN (Not repeatable)',
'411^0' => 'Bibliographic Record Identifier (Not repeatable)',
'411^3' => 'Authority Record Number (Repeatable)',
'411^5' => 'Institution and Copy to Which Field Applies (Not repeatable)',
'412' => ' Source of excerpt or offprint [Series, supplements, etc]',
'412^ind1' => 'Indicator 1: blank',
'412^ind2' => 'Indicator 2: Note Indicator',
'412^1' => '(one) Linking Data (Repeatable) (for Embedded Fields)',
'412^a' => 'Author (Not Repeatable)',
'412^b' => 'General Material Designation (Not repeatable)',
'412^c' => 'Place of Publication (Repeatable)',
'412^d' => 'Date of Publication (Not repeatable)',
'412^e' => 'Edition Statement (Not repeatable)',
'412^f' => 'First Statement of Responsibility (Repeatable)',
'412^g' => 'Subsequent Statement of Responsibility (Repeatable)',
'412^h' => 'Number of Section or Part (Repeatable)',
'412^i' => 'Name of Section or Part (Repeatable)',
'412^l' => 'Parallel title (Repeatable)',
'412^m' => 'International Standard Music Number (Repeatable)',
'412^n' => 'Name of Publisher, Distributor, etc. (Repeatable)',
'412^o' => 'Other title information. (Repeatable)',
'412^p' => 'Physical description (Not repeatable)',
'412^s' => 'Series statement (Repeatable)',
'412^t' => 'Title (Mandatory, Repeatable)',
'412^u' => 'Uniform Resource Locator (Not repeatable)',
'412^v' => 'Volume Number (Not repeatable)',
'412^x' => 'International Standard Serial Number (Repeatable)',
'412^y' => 'International Standard Book Number (Repeatable)',
'412^z' => 'CODEN (Not repeatable)',
'412^0' => 'Bibliographic Record Identifier (Not repeatable)',
'412^3' => 'Authority Record Number (Repeatable)',
'412^5' => 'Institution and Copy to Which Field Applies (Not repeatable)',
'413' => ' Excerpt or offprint [Series, supplements, etc]',
'413^ind1' => 'Indicator 1: blank',
'413^ind2' => 'Indicator 2: Note Indicator',
'413^1' => '(one) Linking Data (Repeatable) (for Embedded Fields)',
'413^a' => 'Author (Not Repeatable)',
'413^b' => 'General Material Designation (Not repeatable)',
'413^c' => 'Place of Publication (Repeatable)',
'413^d' => 'Date of Publication (Not repeatable)',
'413^e' => 'Edition Statement (Not repeatable)',
'413^f' => 'First Statement of Responsibility (Repeatable)',
'413^g' => 'Subsequent Statement of Responsibility (Repeatable)',
'413^h' => 'Number of Section or Part (Repeatable)',
'413^i' => 'Name of Section or Part (Repeatable)',
'413^l' => 'Parallel title (Repeatable)',
'413^m' => 'International Standard Music Number (Repeatable)',
'413^n' => 'Name of Publisher, Distributor, etc. (Repeatable)',
'413^o' => 'Other title information. (Repeatable)',
'413^p' => 'Physical description (Not repeatable)',
'413^s' => 'Series statement (Repeatable)',
'413^t' => 'Title (Mandatory, Repeatable)',
'413^u' => 'Uniform Resource Locator (Not repeatable)',
'413^v' => 'Volume Number (Not repeatable)',
'413^x' => 'International Standard Serial Number (Repeatable)',
'413^y' => 'International Standard Book Number (Repeatable)',
'413^z' => 'CODEN (Not repeatable)',
'413^0' => 'Bibliographic Record Identifier (Not repeatable)',
'413^3' => 'Authority Record Number (Repeatable)',
'413^5' => 'Institution and Copy to Which Field Applies (Not repeatable)',
'421' => ' Supplement [Series, supplements, etc]',
'421^ind1' => 'Indicator 1: blank',
'421^ind2' => 'Indicator 2: Note Indicator',
'421^1' => '(one) Linking Data (Repeatable) (for Embedded Fields)',
'421^a' => 'Author (Not Repeatable)',
'421^b' => 'General Material Designation (Not repeatable)',
'421^c' => 'Place of Publication (Repeatable)',
'421^d' => 'Date of Publication (Not repeatable)',
'421^e' => 'Edition Statement (Not repeatable)',
'421^f' => 'First Statement of Responsibility (Repeatable)',
'421^g' => 'Subsequent Statement of Responsibility (Repeatable)',
'421^h' => 'Number of Section or Part (Repeatable)',
'421^i' => 'Name of Section or Part (Repeatable)',
'421^l' => 'Parallel title (Repeatable)',
'421^m' => 'International Standard Music Number (Repeatable)',
'421^n' => 'Name of Publisher, Distributor, etc. (Repeatable)',
'421^o' => 'Other title information. (Repeatable)',
'421^p' => 'Physical description (Not repeatable)',
'421^s' => 'Series statement (Repeatable)',
'421^t' => 'Title (Mandatory, Repeatable)',
'421^u' => 'Uniform Resource Locator (Not repeatable)',
'421^v' => 'Volume Number (Not repeatable)',
'421^x' => 'International Standard Serial Number (Repeatable)',
'421^y' => 'International Standard Book Number (Repeatable)',
'421^z' => 'CODEN (Not repeatable)',
'421^0' => 'Bibliographic Record Identifier (Not repeatable)',
'421^3' => 'Authority Record Number (Repeatable)',
'421^5' => 'Institution and Copy to Which Field Applies (Not repeatable)',
'422' => ' Parent of Supplement [Series, supplements, etc]',
'422^ind1' => 'Indicator 1: blank',
'422^ind2' => 'Indicator 2: Note Indicator',
'422^1' => '(one) Linking Data (Repeatable) (for Embedded Fields)',
'422^a' => 'Author (Not Repeatable)',
'422^b' => 'General Material Designation (Not repeatable)',
'422^c' => 'Place of Publication (Repeatable)',
'422^d' => 'Date of Publication (Not repeatable)',
'422^e' => 'Edition Statement (Not repeatable)',
'422^f' => 'First Statement of Responsibility (Repeatable)',
'422^g' => 'Subsequent Statement of Responsibility (Repeatable)',
'422^h' => 'Number of Section or Part (Repeatable)',
'422^i' => 'Name of Section or Part (Repeatable)',
'422^l' => 'Parallel title (Repeatable)',
'422^m' => 'International Standard Music Number (Repeatable)',
'422^n' => 'Name of Publisher, Distributor, etc. (Repeatable)',
'422^o' => 'Other title information. (Repeatable)',
'422^p' => 'Physical description (Not repeatable)',
'422^s' => 'Series statement (Repeatable)',
'422^t' => 'Title (Mandatory, Repeatable)',
'422^u' => 'Uniform Resource Locator (Not repeatable)',
'422^v' => 'Volume Number (Not repeatable)',
'422^x' => 'International Standard Serial Number (Repeatable)',
'422^y' => 'International Standard Book Number (Repeatable)',
'422^z' => 'CODEN (Not repeatable)',
'422^0' => 'Bibliographic Record Identifier (Not repeatable)',
'422^3' => 'Authority Record Number (Repeatable)',
'422^5' => 'Institution and Copy to Which Field Applies (Not repeatable)',
'423' => ' Issued with [Series, supplements, etc]',
'423^ind1' => 'Indicator 1: blank',
'423^ind2' => 'Indicator 2: Note Indicator',
'423^1' => '(one) Linking Data (Repeatable) (for Embedded Fields)',
'423^a' => 'Author (Not Repeatable)',
'423^b' => 'General Material Designation (Not repeatable)',
'423^c' => 'Place of Publication (Repeatable)',
'423^d' => 'Date of Publication (Not repeatable)',
'423^e' => 'Edition Statement (Not repeatable)',
'423^f' => 'First Statement of Responsibility (Repeatable)',
'423^g' => 'Subsequent Statement of Responsibility (Repeatable)',
'423^h' => 'Number of Section or Part (Repeatable)',
'423^i' => 'Name of Section or Part (Repeatable)',
'423^l' => 'Parallel title (Repeatable)',
'423^m' => 'International Standard Music Number (Repeatable)',
'423^n' => 'Name of Publisher, Distributor, etc. (Repeatable)',
'423^o' => 'Other title information. (Repeatable)',
'423^p' => 'Physical description (Not repeatable)',
'423^s' => 'Series statement (Repeatable)',
'423^t' => 'Title (Mandatory, Repeatable)',
'423^u' => 'Uniform Resource Locator (Not repeatable)',
'423^v' => 'Volume Number (Not repeatable)',
'423^x' => 'International Standard Serial Number (Repeatable)',
'423^y' => 'International Standard Book Number (Repeatable)',
'423^z' => 'CODEN (Not repeatable)',
'423^0' => 'Bibliographic Record Identifier (Not repeatable)',
'423^3' => 'Authority Record Number (Repeatable)',
'423^5' => 'Institution and Copy to Which Field Applies (Not repeatable)',
'424' => ' Is updated by [Series, supplements, etc]',
'424^ind1' => 'Indicator 1: blank',
'424^ind2' => 'Indicator 2: Note Indicator',
'424^1' => '(one) Linking Data (Repeatable) (for Embedded Fields)',
'424^a' => 'Author (Not Repeatable)',
'424^b' => 'General Material Designation (Not repeatable)',
'424^c' => 'Place of Publication (Repeatable)',
'424^d' => 'Date of Publication (Not repeatable)',
'424^e' => 'Edition Statement (Not repeatable)',
'424^f' => 'First Statement of Responsibility (Repeatable)',
'424^g' => 'Subsequent Statement of Responsibility (Repeatable)',
'424^h' => 'Number of Section or Part (Repeatable)',
'424^i' => 'Name of Section or Part (Repeatable)',
'424^l' => 'Parallel title (Repeatable)',
'424^m' => 'International Standard Music Number (Repeatable)',
'424^n' => 'Name of Publisher, Distributor, etc. (Repeatable)',
'424^o' => 'Other title information. (Repeatable)',
'424^p' => 'Physical description (Not repeatable)',
'424^s' => 'Series statement (Repeatable)',
'424^t' => 'Title (Mandatory, Repeatable)',
'424^u' => 'Uniform Resource Locator (Not repeatable)',
'424^v' => 'Volume Number (Not repeatable)',
'424^x' => 'International Standard Serial Number (Repeatable)',
'424^y' => 'International Standard Book Number (Repeatable)',
'424^z' => 'CODEN (Not repeatable)',
'424^0' => 'Bibliographic Record Identifier (Not repeatable)',
'424^3' => 'Authority Record Number (Repeatable)',
'424^5' => 'Institution and Copy to Which Field Applies (Not repeatable)',
'425' => ' Updates [Series, supplements, etc]',
'425^ind1' => 'Indicator 1: blank',
'425^ind2' => 'Indicator 2: Note Indicator',
'425^1' => '(one) Linking Data (Repeatable) (for Embedded Fields)',
'425^a' => 'Author (Not Repeatable)',
'425^b' => 'General Material Designation (Not repeatable)',
'425^c' => 'Place of Publication (Repeatable)',
'425^d' => 'Date of Publication (Not repeatable)',
'425^e' => 'Edition Statement (Not repeatable)',
'425^f' => 'First Statement of Responsibility (Repeatable)',
'425^g' => 'Subsequent Statement of Responsibility (Repeatable)',
'425^h' => 'Number of Section or Part (Repeatable)',
'425^i' => 'Name of Section or Part (Repeatable)',
'425^l' => 'Parallel title (Repeatable)',
'425^m' => 'International Standard Music Number (Repeatable)',
'425^n' => 'Name of Publisher, Distributor, etc. (Repeatable)',
'425^o' => 'Other title information. (Repeatable)',
'425^p' => 'Physical description (Not repeatable)',
'425^s' => 'Series statement (Repeatable)',
'425^t' => 'Title (Mandatory, Repeatable)',
'425^u' => 'Uniform Resource Locator (Not repeatable)',
'425^v' => 'Volume Number (Not repeatable)',
'425^x' => 'International Standard Serial Number (Repeatable)',
'425^y' => 'International Standard Book Number (Repeatable)',
'425^z' => 'CODEN (Not repeatable)',
'425^0' => 'Bibliographic Record Identifier (Not repeatable)',
'425^3' => 'Authority Record Number (Repeatable)',
'425^5' => 'Institution and Copy to Which Field Applies (Not repeatable)',
'430' => ' Continues [Preceding entries]',
'430^ind1' => 'Indicator 1: blank',
'430^ind2' => 'Indicator 2: Note Indicator',
'430^1' => '(one) Linking Data (Repeatable) (for Embedded Fields)',
'430^a' => 'Author (Not Repeatable)',
'430^b' => 'General Material Designation (Not repeatable)',
'430^c' => 'Place of Publication (Repeatable)',
'430^d' => 'Date of Publication (Not repeatable)',
'430^e' => 'Edition Statement (Not repeatable)',
'430^f' => 'First Statement of Responsibility (Repeatable)',
'430^g' => 'Subsequent Statement of Responsibility (Repeatable)',
'430^h' => 'Number of Section or Part (Repeatable)',
'430^i' => 'Name of Section or Part (Repeatable)',
'430^l' => 'Parallel title (Repeatable)',
'430^m' => 'International Standard Music Number (Repeatable)',
'430^n' => 'Name of Publisher, Distributor, etc. (Repeatable)',
'430^o' => 'Other title information. (Repeatable)',
'430^p' => 'Physical description (Not repeatable)',
'430^s' => 'Series statement (Repeatable)',
'430^t' => 'Title (Mandatory, Repeatable)',
'430^u' => 'Uniform Resource Locator (Not repeatable)',
'430^v' => 'Volume Number (Not repeatable)',
'430^x' => 'International Standard Serial Number (Repeatable)',
'430^y' => 'International Standard Book Number (Repeatable)',
'430^z' => 'CODEN (Not repeatable)',
'430^0' => 'Bibliographic Record Identifier (Not repeatable)',
'430^3' => 'Authority Record Number (Repeatable)',
'430^5' => 'Institution and Copy to Which Field Applies (Not repeatable)',
'431' => ' Continues in Part [Preceding entries]',
'431^ind1' => 'Indicator 1: blank',
'431^ind2' => 'Indicator 2: Note Indicator',
'431^1' => '(one) Linking Data (Repeatable) (for Embedded Fields)',
'431^a' => 'Author (Not Repeatable)',
'431^b' => 'General Material Designation (Not repeatable)',
'431^c' => 'Place of Publication (Repeatable)',
'431^d' => 'Date of Publication (Not repeatable)',
'431^e' => 'Edition Statement (Not repeatable)',
'431^f' => 'First Statement of Responsibility (Repeatable)',
'431^g' => 'Subsequent Statement of Responsibility (Repeatable)',
'431^h' => 'Number of Section or Part (Repeatable)',
'431^i' => 'Name of Section or Part (Repeatable)',
'431^l' => 'Parallel title (Repeatable)',
'431^m' => 'International Standard Music Number (Repeatable)',
'431^n' => 'Name of Publisher, Distributor, etc. (Repeatable)',
'431^o' => 'Other title information. (Repeatable)',
'431^p' => 'Physical description (Not repeatable)',
'431^s' => 'Series statement (Repeatable)',
'431^t' => 'Title (Mandatory, Repeatable)',
'431^u' => 'Uniform Resource Locator (Not repeatable)',
'431^v' => 'Volume Number (Not repeatable)',
'431^x' => 'International Standard Serial Number (Repeatable)',
'431^y' => 'International Standard Book Number (Repeatable)',
'431^z' => 'CODEN (Not repeatable)',
'431^0' => 'Bibliographic Record Identifier (Not repeatable)',
'431^3' => 'Authority Record Number (Repeatable)',
'431^5' => 'Institution and Copy to Which Field Applies (Not repeatable)',
'432' => ' Supersedes [Preceding entries]',
'432^ind1' => 'Indicator 1: blank',
'432^ind2' => 'Indicator 2: Note Indicator',
'432^1' => '(one) Linking Data (Repeatable) (for Embedded Fields)',
'432^a' => 'Author (Not Repeatable)',
'432^b' => 'General Material Designation (Not repeatable)',
'432^c' => 'Place of Publication (Repeatable)',
'432^d' => 'Date of Publication (Not repeatable)',
'432^e' => 'Edition Statement (Not repeatable)',
'432^f' => 'First Statement of Responsibility (Repeatable)',
'432^g' => 'Subsequent Statement of Responsibility (Repeatable)',
'432^h' => 'Number of Section or Part (Repeatable)',
'432^i' => 'Name of Section or Part (Repeatable)',
'432^l' => 'Parallel title (Repeatable)',
'432^m' => 'International Standard Music Number (Repeatable)',
'432^n' => 'Name of Publisher, Distributor, etc. (Repeatable)',
'432^o' => 'Other title information. (Repeatable)',
'432^p' => 'Physical description (Not repeatable)',
'432^s' => 'Series statement (Repeatable)',
'432^t' => 'Title (Mandatory, Repeatable)',
'432^u' => 'Uniform Resource Locator (Not repeatable)',
'432^v' => 'Volume Number (Not repeatable)',
'432^x' => 'International Standard Serial Number (Repeatable)',
'432^y' => 'International Standard Book Number (Repeatable)',
'432^z' => 'CODEN (Not repeatable)',
'432^0' => 'Bibliographic Record Identifier (Not repeatable)',
'432^3' => 'Authority Record Number (Repeatable)',
'432^5' => 'Institution and Copy to Which Field Applies (Not repeatable)',
'433' => ' Supersedes in Part [Preceding entries]',
'433^ind1' => 'Indicator 1: blank',
'433^ind2' => 'Indicator 2: Note Indicator',
'433^1' => '(one) Linking Data (Repeatable) (for Embedded Fields)',
'433^a' => 'Author (Not Repeatable)',
'433^b' => 'General Material Designation (Not repeatable)',
'433^c' => 'Place of Publication (Repeatable)',
'433^d' => 'Date of Publication (Not repeatable)',
'433^e' => 'Edition Statement (Not repeatable)',
'433^f' => 'First Statement of Responsibility (Repeatable)',
'433^g' => 'Subsequent Statement of Responsibility (Repeatable)',
'433^h' => 'Number of Section or Part (Repeatable)',
'433^i' => 'Name of Section or Part (Repeatable)',
'433^l' => 'Parallel title (Repeatable)',
'433^m' => 'International Standard Music Number (Repeatable)',
'433^n' => 'Name of Publisher, Distributor, etc. (Repeatable)',
'433^o' => 'Other title information. (Repeatable)',
'433^p' => 'Physical description (Not repeatable)',
'433^s' => 'Series statement (Repeatable)',
'433^t' => 'Title (Mandatory, Repeatable)',
'433^u' => 'Uniform Resource Locator (Not repeatable)',
'433^v' => 'Volume Number (Not repeatable)',
'433^x' => 'International Standard Serial Number (Repeatable)',
'433^y' => 'International Standard Book Number (Repeatable)',
'433^z' => 'CODEN (Not repeatable)',
'433^0' => 'Bibliographic Record Identifier (Not repeatable)',
'433^3' => 'Authority Record Number (Repeatable)',
'433^5' => 'Institution and Copy to Which Field Applies (Not repeatable)',
'434' => ' Absorbed [Preceding entries]',
'434^ind1' => 'Indicator 1: blank',
'434^ind2' => 'Indicator 2: Note Indicator',
'434^1' => '(one) Linking Data (Repeatable) (for Embedded Fields)',
'434^a' => 'Author (Not Repeatable)',
'434^b' => 'General Material Designation (Not repeatable)',
'434^c' => 'Place of Publication (Repeatable)',
'434^d' => 'Date of Publication (Not repeatable)',
'434^e' => 'Edition Statement (Not repeatable)',
'434^f' => 'First Statement of Responsibility (Repeatable)',
'434^g' => 'Subsequent Statement of Responsibility (Repeatable)',
'434^h' => 'Number of Section or Part (Repeatable)',
'434^i' => 'Name of Section or Part (Repeatable)',
'434^l' => 'Parallel title (Repeatable)',
'434^m' => 'International Standard Music Number (Repeatable)',
'434^n' => 'Name of Publisher, Distributor, etc. (Repeatable)',
'434^o' => 'Other title information. (Repeatable)',
'434^p' => 'Physical description (Not repeatable)',
'434^s' => 'Series statement (Repeatable)',
'434^t' => 'Title (Mandatory, Repeatable)',
'434^u' => 'Uniform Resource Locator (Not repeatable)',
'434^v' => 'Volume Number (Not repeatable)',
'434^x' => 'International Standard Serial Number (Repeatable)',
'434^y' => 'International Standard Book Number (Repeatable)',
'434^z' => 'CODEN (Not repeatable)',
'434^0' => 'Bibliographic Record Identifier (Not repeatable)',
'434^3' => 'Authority Record Number (Repeatable)',
'434^5' => 'Institution and Copy to Which Field Applies (Not repeatable)',
'435' => ' Absorbed in Part [Preceding entries]',
'435^ind1' => 'Indicator 1: blank',
'435^ind2' => 'Indicator 2: Note Indicator',
'435^1' => '(one) Linking Data (Repeatable) (for Embedded Fields)',
'435^a' => 'Author (Not Repeatable)',
'435^b' => 'General Material Designation (Not repeatable)',
'435^c' => 'Place of Publication (Repeatable)',
'435^d' => 'Date of Publication (Not repeatable)',
'435^e' => 'Edition Statement (Not repeatable)',
'435^f' => 'First Statement of Responsibility (Repeatable)',
'435^g' => 'Subsequent Statement of Responsibility (Repeatable)',