-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path00000013.xml
2182 lines (2181 loc) · 140 KB
/
00000013.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<METS_Profile xmlns="http://www.loc.gov/METS_Profile/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.loc.gov/METS_Profile/ http://www.loc.gov/standards/mets/profile_docs/mets.profile.v1-2.xsd">
<URI LOCTYPE="URL">http://www.loc.gov/mets/profiles/00000013.xml</URI>
<title>UCB General METS Profile Version 1</title>
<abstract>The UC Berkeley Library uses this profile to govern METS instance documents intended for submission to the California Digital Library as well as METS documents intended for reference use and dissemination to end users through UCB's own digital library repository. The digital content governed by the METS documents conforming to this profile may be of any type or combination of types including, but not limited to: images, tei-based structured text, ocr-based unstructured text, pdf documents, ps documents, quicktime video, and Real audio. Source materials whose METS encoded digital versions would be covered by this profile could include manuscripts (such as letters and diaries), printed materials (such as books, pamphlets, and technical reports), mixed content materials (such as scrapbooks, photoalbums and oral histories that include photographs and/or sound recordings), individual photographs, paintings, sculptures, etc. This profile also covers born-digital materials intended for general reference use. It at once extends, and for UC Berkeley Library purposes, completely supersedes the UCB Paged Text Object Profile and the UCB Imaged Object Profile. However, it is not in all respects backwards compatible with these profiles.</abstract>
<date>2006-08-29T00:00:00</date>
<contact>
<name>Rick Beaubien</name>
<address>88 Herrada Rd., Santa Fe, NM, 87508-8890
</address>
<phone>(505) 466-6630</phone>
<email>[email protected]</email>
</contact>
<related_profile RELATIONSHIP="supersedes" URI="http://www.loc.gov/mets/profiles/00000003.xml">UCB Paged Text Object Profile
</related_profile>
<related_profile RELATIONSHIP="supersedes" URI="http://www.loc.gov/mets/profiles/00000002.xml">UCB Imaged Object Profile
</related_profile>
<extension_schema ID="ext1">
<name>MODS</name>
<URI>http://www.loc.gov/standards/mods/v3/mods-3-1.xsd</URI>
<context>mets/dmdSec/mdWrap/xmlData</context>
<note>While the schema referenced above represents v.3.1 of MODS, all v.3.x MODS schemas are largely backwards compatible with previous incremental releases of version 3. METS documents using any version 3 MODS schema are accommodated by this profile.</note>
</extension_schema>
<extension_schema ID="ext2">
<name>NISOIMG</name>
<URI>http://www.loc.gov/standards/mix/mix.xsd</URI>
<context>mets/amdSec/techMD/mdWrap/xmlData</context>
<note>Used for technical metadata about image content files.This profile supports both the existing version 1 of the schema as well as version 2 as soon as this becomes available.</note>
</extension_schema>
<extension_schema ID="ext3">
<name>textmd</name>
<URI>http://dlib.nyu.edu/METS/textmd.xsd</URI>
<context>mets/amdSec/techMD/mdWrap/xmlData</context>
<note>Used for technical metadata about text content files.</note>
</extension_schema>
<extension_schema ID="ext4">
<name>METSRights</name>
<URI>http://cosimo.stanford.edu/sdr/metsrights.xsd</URI>
<context>mets/amdSec/rightsMD/mdWrap/xmlData</context>
<note>The CopyrightMD schema (see below) is the preferred schema for rights once this schema has been finalized. But the METSRights schema is included to accommodate METS documents prepared before the CopyrightMD schema and associated implementation support is complete.</note>
</extension_schema>
<extension_schema ID="ext5">
<name>CopyrightMD</name>
<URI>http://www.cdlib.org/inside/projects/rights/schema/copyrightMD.xsd</URI>
<context>mets/amdSec/rightsMD/mdWrap/xmlData</context>
<note>This will be the preferred schema for rights metadata in UCB METS documents as soon as it has been finalized.</note>
</extension_schema>
<extension_schema ID="ext6">
<name>PREMIS</name>
<URI>http://www.loc.gov/standards/premis/v1/PREMIS-v1-1.xsd</URI>
<context>This schema may be used in either or both of the following contexts: mets/amdSec/sourceMD/mdWrap/xmlData and/or mets/amdSec/digiprovMD/mdWrap/xmlData</context>
<note>This profile neither requires nor constrains the use of the PREMIS schemas in the METS documents that implement it. It is, however, supported in particular for the PREMIS object schema's ability to the track complex relationships between source and target content files. For example, PREMIS could be used to record the derivation of a Quicktime video from multiple still images files.</note>
</extension_schema>
<description_rules>
<p>All applications of the MODS schema in conforming METS documents should follow the MODS User Guidelines published by Library of Congress' Network Development and MARC Standards Office (.http://www.loc.gov/standards/mods/v3/mods-userguide.html). In addition, all conforming objects destined for the California Digital Library should follow the provisions for descriptive metadata set forth in CDL's Guidelines for Digital Objects: http://www.cdlib.org/inside/diglib/guidelines/</p>
</description_rules>
<controlled_vocabularies>
<vocabulary ID="vc1">
<name>CDL <mets> TYPE attribute values</name>
<maintenance_agency>California Digital Library, Office of the President, University of Califorina</maintenance_agency>
<URI>http://www.cdlib.org/inside/diglib/guidelines/</URI>
<context >
<p>mets/@TYPE</p>
</context>
<description>
<p>This profile specifies no required vocabulary for the TYPE attribute value on the root <mets> element, nor does it require that this attribute appear. However, the California Digital Library maintains a list of values used by its presentation programs to control the default display format for the objects it ingests into the CDL repository. METS documents destined for the California Digital Library, and conforming to this profile, may specify one of these TYPE values to insure desired treatment in the CDL repository.</p>
</description>
</vocabulary>
<vocabulary ID="vc2">
<name>UC Berkeley Library METS <file>/<fileGrp> USE Attribute Values</name>
<maintenance_agency>Library Systems Office, The General Library, University of California, Berkeley</maintenance_agency>
<values>
<value>image/master</value>
<value>image/reference</value>
<value>image/thumbnail</value>
<value>image/dynamic</value>
<value>text/tei</value>
<value>text/tei element</value>
<value>text/ocr</value>
<value>text/reference</value>
<value>application</value>
<value>video/master</value>
<value>video/reference</value>
<value>audio/master</value>
<value>audio/reference</value>
</values>
<context >
<p>mets/fileSec/fileGrp/@USE</p>
<p>mets/fileSec/fileGrp/file/@USE</p>
</context>
<description>
<p>These are the supported values for <file> and <fileGrp> USE attributes in METS documents implementing this profile. They are intended mainly to help presentation programs know how they should treat particular content files. In particular, they should help a presentation program distinguish between content files that are intended for reference use and those that served as masters, but which are not intended for reference purposes. They can also provide a presentation program with information that can help it or the end user decide what is the most appropriate content file for a particular purpose when this information is not apparent from the content file's MIME type. For example, the USE attribute can help identify TEI encoded files and to distinguish these from other structured text files. They allow presentation programs to recognize files with a MIME type of "text/plain" which represent "dirty" OCR. The individual USE attribute values are defined below</p>
<p>"image/master", "image/reference", "image/thumbnail" and "image/dynamic" are appropriate values to describe the intended use of image content files from a presentation program's standpoint. The value "image/master" designates image master files (ultimate or intermediate) not intended for reference use. The appropriate USE values for any image that is intended for reference use, even if it also serves master image for other derivatives, would be "image/reference", "image/thumbnail" or "image/dynamic". The value "image/thumbnail" designates images intended for thumbnail applications; the value "image/dynamic"designates still images such as mrsid and jpeg2000 images which allow for zooming and other dynamic capabilities; and the more general value "image/reference" designates all other types of still image content files which are intended for general reference use</p>
<p>"text/tei" and "text/tei element" are the appropriate values to describe associated structured text files encoded according to TEI rules. "text/tei element" applies when a <file> element represents just an element within an integral TEI content file. In this case, the xlink:href value in the <FLocat> element would use XPointer syntax to qualify the file URL and specify the ID attribute value of the relevant element in the TEI file. "text/tei" applies to all <file> elements that represent integral TEI content files.</p>
<p>"text/ocr" designates versions of the text produced by ocr technologies, but which have not been cleaned, and hence may not be appropriate for some purposes. "text/reference" designates unstructured text, including clean ocr, which is appropriate for reference and presentation purposes.</p>
<p>"application" designates all types of non-video and non-audio content files encoded in a proprietary format requiring special browser plugins or players for presentation to the user. This is the appropriate USE attribute value for "pdf" and "ps" content files .</p>
<p>Audio content files are represented by two USE values: "audio/master" for audio master or archive files not intended for general reference use; and "audio/reference" for audio files suitable for general reference use.</p>
<p>Video content files are also represented by two USE values: "video/master"; for video master or archive files not intended for general reference use; and "video/reference" for video files suitable for general reference use</p>
</description>
</vocabulary>
</controlled_vocabularies>
<structural_requirements>
<metsRootElement>
<requirement ID="metsRoot1">
<p>The root <mets>element must include a LABEL attribute value.</p>
</requirement>
<requirement ID="metsRoot2">
<p>The root <mets> element must include an OBJID attribute value containing a valid ark and uniquely identifying the object represented by the METS document in its owning repository.</p>
</requirement>
<requirement ID="metsRoot3" RELATEDMAT="vc1">
<p>The root <mets> element may, but need not include a TYPE attribute. This profile does not specify a vocabulary for the TYPE attribute. However METS documents conforming to this profile that are destined for CDL should use the CDL <mets> TYPE attribute value vocabulary if they do include a TYPE attribute value at the <mets> level. If they do not include a <mets> TYPE attribute value, then the CDL ingest programs will assign one by default.</p>
</requirement>
</metsRootElement>
<metsHdr>
<requirement ID="metsHdr1">
<p>Conforming METS documents must contain a metsHdr element.</p>
</requirement>
<requirement ID="metsHdr2">
<p>The <metsHdr> element must include the CREATEDATE attribute value. It must also include the LASTMODDATE attribute value if this does not coincide with the CREATEDATE.</p>
</requirement>
<requirement>
<p>The <metsHdr> element must include a child <agent> element identifying the person or institution responsible for creating the METS object.</p>
</requirement>
</metsHdr>
<dmdSec>
<requirement ID="dmdSec1">
<p>Conforming METS documents may, but need not, contain a one or more <dmdSec> elements. Each <dmdSec> may in turn contain a <mdRef> or a <mdWrap></p>
</requirement>
<requirement ID="dmdSec2" RELATEDMAT="ext1">
<p>At least one version of any descriptive metadata appearing in <mdWrap> elements in a compliant document must conform to the MODS schema. Secondary versions of descriptive metadata analogous to a primary MODS version may appear, but must conform to a descriptive metadata schema endorsed by the METS Editorial Board. </p>
</requirement>
</dmdSec>
<amdSec>
<requirement ID="amdSec1">
<p>Conforming METS documents may, but need not, contain an <amdSec> element. This may but need not contain one or more <techMD> elements, <sourceMD> elements, <digiprovMD> elements and/or <rightsMD> elements. METS documents conforming to this profile that are destined for CDL should conform to the GDO requirements with respect to administrative metadata. </p>
</requirement>
<requirement ID="amdSec2">
<p>A conforming METS document will contain no more than one <amdSec> element. All <techMD>, <sourceMD>, <rightsMD> and <digiprovMD> elements must appear in this single <amdSec> element.</p>
</requirement>
<requirement ID="amdSec3" RELATEDMAT="ext2">
<p>If one or more <techMD> elements pertaining to image content files are present, they must contain <xmlData> of NISOIMG type conforming to the MIX schema.</p>
</requirement>
<requirement ID="amdSec4" RELATEDMAT="ext3">
<p>If one or more <techMD> elements pertaining to text content files are present, they must contain <xmlData> conforming to the textmd schema.</p>
</requirement>
<requirement ID="amdSec5">
<p>If one or more <techMD> elements pertaining to application content files are present, they should contain <xmlData> conforming to METS Editorial Board endorsed schemas, once such schemas exist.</p>
</requirement>
<requirement ID="amdSec6" RELATEDMAT="ext4 ext5">
<p>If one or more <rightsMD> elements are present they must contain <xmlData> conforming to the CopyrightMD schema, once this schema has been finalized. Any <rightsMD> elements in objects produced prior to the completion of the CopyrightMD schema must contain <xmlData> conforming to the RightsDeclarationMD (METSRights) schema.</p>
</requirement>
<requirement ID="amdSec7" RELATEDMAT="ext6">
<p>Any <sourceMD> or <digiprovMD> elements must contain <xmlData> conforming to PREMIS or another METS Editorial Board endorsed schema whenever such a schema exists and covers the requisite concepts.</p>
</requirement>
<requirement ID="amdSec8" RELATEDMAT="ext2">
<p>Source metadata pertaining to image content files may be expressed as part of any MIX encoded technical metadata in <techMD> elements rather than in separate <sourceMD> elements. This might occur whenever the available source metadata is minimal and covered by the MIX schema.</p>
</requirement>
<requirement ID="amdSec9" RELATEDMAT="ext6">
<p>Complex relationships between source and content files, such as those between the rotational still images comprising a Quicktime video and the Quicktime video itself may be expressed via the PREMIS Object schema. Complex source relationships such as these should be recorded in a <sourceMD> element.</p>
</requirement>
</amdSec>
<fileSec>
<requirement ID="fileSec1">
<p>The <fileSec> of a conforming METS document must contain a parent <fileGrp> for each file format/use represented by the content files. For example, the <fileSec> of a typical METS document implementing this profile might contain one <fileGrp> representing TIFF master images, one <fileGrp> representing high resolution JPEG reference images , one <fileGrp> representing medium resolution JPEG reference images, one <fileGrp> representing GIF thumbnail images, and one <fileGrp> representing TEI transcriptions. This profile does not support nested <fileGrp> elements.</p>
</requirement>
<requirement ID="fileSec2" RELATEDMAT="vc2">
<p>Each <file> represented in the <fileSec> must have an associated USE attribute. The USE attribute may be expressed directly at the <file> element level. Alternately, however, the USE attribute may be expressed in conjunction with the <fileGrp> that is the immediate parent of a <file> element; in this case it is taken to pertain to all <file> elements in the <fileGrp>. The <file>/<fileGrp> USE attribute values must be drawn from the UC Berkeley Library METS <file>/<fileGrp> USE Attribute Values</p>
</requirement>
<requirement ID="fileSec3">
<p>Each <file> represented in the <fileSec> must have an associated MIMETYPE attribute. This attribute must contain the official MIME type value for the content file represented</p>
</requirement>
<requirement ID="fileSec4">
<p>The <file> elements in a conforming METS document may, but need not contain ADMID, SEQ, SIZE, CREATED, CHECKSUM, CHECKSUMTYPE, OWNERID or GROUPID attribute values.</p>
</requirement>
<requirement ID="fileSec5">
<p>Any <file> element may reference any number of pertinent <techMD>, <sourceMD> and <digiprovMD> metadata elements within the <amdSec> via its AMDID attribute value. It should only reference ID values at the <techMD>, <sourceMD> and/or <digiprovMD> levels of the <amdSec>.</p>
</requirement>
<requirement ID="fileSec6" RELATEDMAT="structMap5">
<p><file> elements should not reference the IDs of <rightsMD> elements in their ADMID attributes. Under this profile it is the responsibility of the <div> elements in the <structMap> to reference the <rightsMD> elements that pertain the content the <div> elements represent. </p>
</requirement>
<requirement ID="fileSec7">
<p>If the <file> element SEQ attribute is used, it should appear in every <file> element and express the ordinal number corresponding to the <file> element's sequence in its immediate <fileGrp>.</p>
</requirement>
<requirement ID="fileSec8">
<p>If the <file> element GROUPID attribute is used, it should appear in every <file> element. The GROUPID of <file> elements that represent different manifestations of the same content should have the same GROUPID value.</p>
</requirement>
<requirement ID="fileSec9" RELATEDMAT="structMap4">
<p>This profile does not support the use of the DMDID attribute in <file> elements. Under this profile it is the responsibility of the <div> elements in the <structMap> to reference the <dmdSec> elements that pertain the content the <div> elements represent. Content file level descriptive metadata is not supported. </p>
</requirement>
<requirement ID="fileSec10">
<p>Each <file> element must contain an <FLocat> element which specifies external location of the content file in its xlink:href attribute.The <FLocat> element must contain an xlink:href attribute, as well as a LOCTYPE attribute indicating the type of href being provided. It may, but need not contain, any of the other attributes defined in xlink:simpleLink as well as a CONTENTIDS attribute. No guidelines are provided, however, for the use of these attributes.</p>
</requirement>
<requirement ID="fileSec11" RELATEDMAT="vc2">
<p>In cases where the content represented by a <mets> document includes just a selected element or elements from an XML encoded structured text file conforming to the TEI schema, then the xlink:href attribute in the <FLocat> element may use XPointer syntax to isolate the relevant section (or element) of the integral TEI document. For example, the <FLocat> element for a TEI file might look like this in the case where "Part1" was the ID value associated with the relevant element of the TEI file represented by the <file> element: <mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/ disabilityrights/text/kawauchi1.xml#Part1" LOCTYPE="URL" />. This handling is an alternative to the more standard practice of using the <area> element in conjunction with an <fptr> element in the <structMap> to isolate a portion of an integral file. This profile does not require this alternative handling; but METS documents conforming to this profile that are destined for the California Digital Library should follow the current GDO guidelines in this matter. Note that when a <file> element references just an element within a TEI file as described here, the file USE attribute must be "text/tei element"
</p>
</requirement>
<requirement ID="fileSec12">
<p>This profile supports the use of one and only one <FLocat> element in conjunction with each <file> element</p>
</requirement>
<requirement ID="fileSec13">
<p>This profile does not support the use of the <FContent>, <stream>, or <transformFile> elements.</p>
</requirement>
<requirement ID="fileSec14">
<p>In the case of Real audio content, only the actual Real audio content files (the .rm files) should be represented in the <fileSec> and referenced via <fptr> and <area> elements in the <structMap>. This profile assumes that any necessary launch file (e.g, an .ram file) will be generated dynamically by the presentation applications.</p>
</requirement>
</fileSec>
<structMap>
<requirement ID="structMap1">
<p>A conforming METS document must contain only one <structMap>. This <structMap> must not be empty.</p>
</requirement>
<requirement ID="structMap2" RELATEDMAT="vc2">
<p>A conforming <structMap> may, but need not, contain a TYPE attribute. This profile does not specify a vocabulary for this attribute nor make any assumptions about its application.</p>
</requirement>
<requirement ID="structMap3">
<p>Each <div> must include a LABEL attribute value and a TYPE attribute value.The LABEL attribute should identify the the division in a manner suitable for presentation to the end user in an associated "table of contents" and that will facilitate user navigation. While there is no controlled vocabulary list dictated for the TYPE attribute, the TYPE attributes for <div> elements representing the physical levels of the structure of the original source material should, whenever possible, contain a common generic designation for the physical level represented. For example, "page", "detail", "recto", "verso", etc.</p>
</requirement>
<requirement ID="structMap4">
<p>A <div> element at any level may point to one or more pertinent <dmdSec> elements via its DMDID attribute value. However, the DMDID attribute should only reference ID values declared at the <dmdSec> element level, and not IDs at lower levels. For example, a <div> DMDID attribute should not reference the ID value of an element within the <xmlData> section of a <dmdSec>.</p>
</requirement>
<requirement ID="structMap5">
<p>A <div> element at any level may use its ADMID attribute to point to a <rightsMD> element that contains the rights metadata pertinent to the content the <div> element represents. In this case, the indicated rights metadata applies to the <div> that references it as well as all of its descendant <div> elements which do not themselves contain an ADMID reference to a different <rightsMD> element.</p>
</requirement>
<requirement ID="structMap6">
<p>A <div> element may, but need not, include ORDER, ORDERLABEL, CONTENTIDS, and/or xlink:label attribute values. This profile dictates no guidelines or rules for the use of these <div> attributes.</p>
</requirement>
<requirement ID="structMap7">
<p>A <div> element at any level may itself contain one or more <div> elements, one or more <fptr> elements, or a single <mptr> element. A <div> element may contain both <div> elements and <fptr> elements; the <mptr> element, however, may not occur in combination with any other elements including another <mptr> element under the parent <div>.</p>
</requirement>
<requirement ID="structMap8">
<p><fptr> elements that reference images representing different manifestions (resolutions) of the same content must appear consecutively under the <div> to which they pertain. Any <fptr> elements referencing <file> elements whose USE is "image/thumbnail" must be arranged together in order of increasing size; and any <fptr> elements referencing <file> elements whose USE is "image/reference" must also also be arranged together in order by size.</p>
</requirement>
<requirement ID="structMap9">
<p>The <mptr> element, if it is used, must contain an xlink:href attribute, as well as a LOCTYPE attribute indicating the type of href being provided. It may, but need not contain, any of the other attributes defined in the xlink:simpleLink attribute group as well as a CONTENTIDS attribute. No guidelines are provided, however, for the use of these attributes.</p>
</requirement>
<requirement ID="structMap10" RELATEDMAT="structMap11">
<p>An <fptr> element must either 1) directly point to a <file> element via its FILEID attribute; or 2) contain an <area> element that points to a <file> element; or 3) contain a <seq> element comprising multiple <area> elements that point to the relevant <file> elements. METS documents implementing this profile must not use the <par> element. Typically the <seq> element would only be used under a <div> element that represented an intellectual (or logical) division, such as a diary entry. In this case, more than one content file, played in sequence, may be required to manifest the logical division.
</p>
</requirement>
<requirement ID="structMap11">
<p>An <fptr> element could directly contain an <area> element if only a portion of an integral file manifested the parent <div>. This profile supports such use of the <area> element in conjunction with structured text, audio and video content only and as follows. 1) Structured text content. If an <fptr> element represents just a portion of an integral structured text file (such as a TEI file), an <area> element under the <fptr> would point to the <file> element representing the integral structured text document (via its FILEID attribute) and would at least indicate the starting point of the relevant section of the content file via the <area> BEGIN attribute. The BEGIN attribute, in this case, would have a BETYPE of "IDREF". The <area> element might also express the end point of the relevant section of the referenced file via its END attribute, but it need not do so. 2) Audio and video content. If an <fptr> element represents just a segment of an integral audio or video content file, then the <area> element under the <fptr> should point to the <file> element representing the integral audio or video file (via its FILEID attribute) and must indicate the starting point and duration of the relevant section of the referenced audio or video file via the <area> BEGIN and EXTENT attributes. The BETYPE and EXTTYPE attributes in these cases must be "TIME" and the BEGIN and EXTENT attributes must contain a simple time value in the format HH:MM:SS. If the relevant extent from the specified BEGIN point is the remainder of the audio or video file, then the EXTENT and EXTTYPE atributes may be omitted.</p>
</requirement>
<requirement ID="structMap12">
<p>An <area> element in documents implementing this profile should not use the SHAPE, COORDS or ADMID attributes. It may, but need not, contain a CONTENTIDS attribute; however this profile provides no guidelines or rules for the use of this attribute</p>
</requirement>
<requirement ID="structMap13">
<p> An <fptr>; element representing a content type other than structured text, audio or video in conforming documents can only reference integral content files. METS documents conforming to this profile must not use the <area> element with its associated BEGIN and END attributes to isolate internal segments of such content files. An <fptr> element could, however , under some circumstances, contain <area> elements, providing these <area> elements reference integral content files. For example, an <fptr> element would contain a <seq> element with multiple child <area> elements if multiple files needed to be"played" in sequence to manifest a division. This might be the case if the <structMap> expressed a logical structure and a <div> in that structure required several files to manifest it. For example, the <div> elements in the <structMap> for a diary might represent diary entries; and some of these entries might span multiple physical pages, and hence require multiple page image content files to manifest them. In this case, the <div> representing the spanned diary entry would contain at least one <fptr>element; this <fptr> element would contain a <seq> element which in turn contained a separate <area> element pointing to each <file> element representing a page the diary entry spans.</p>
</requirement>
<requirement ID="structMap14">
<p>Each <fptr> element that does not contain subsidiary <area> or <seq> elements must point directly to a <file> element in the <fileSec> via its FILEID attributes. Similarly, each <area> element appearing under an <fptr> element or a <seq> element must point to directly to a <file> element via its FILEID attribute.</p>
</requirement>
</structMap>
<structLink>
<requirement ID="structLink1">
<p>A conforming METS document may contain a <structLink> element. This profile, however, establishes no guidelines or expectations for its use.</p>
</requirement>
</structLink>
<behaviorSec>
<requirement ID="behaviorSec1">
<p>A conforming METS document may contain a <behaviorSec> element. This profile, however, establishes no guidelines or expectations for its use.</p>
</requirement>
</behaviorSec>
<multiSection>
<requirement ID="multi1">
<p>Only <file> elements will reference <techMD>, <sourceMD> and/or <digiprovMD> elements. In other words, documents implementing this profile will express technical, source, and digital provenance administrative metadata in conjunction with content files only rather than in conjunction with <div> elements in the <structMap>. <rightsMD> elements, however, may be referenced only from <div> elements in the <structMap>.</p>
</requirement>
<requirement ID="multi2">
<p>Only <div> elements will reference <dmdSec> elements. In other words, documents implementing this profile will express descriptive metadata in conjunction with divisions of the <structMap> and not in conjunction with individual content files (<file> elements).</p>
</requirement>
<requirement>
<p>METS documents implementing this profile that are destined for CDL must also observe the structural requirements set forth in the CDL Guidelines for Digital Objects (http://www.cdlib.org/inside/diglib/guidelines/), which may be more specific or restrictive in some areas than this profile.</p>
</requirement>
</multiSection>
</structural_requirements>
<technical_requirements>
<content_files>
<requirement>
<p>Image, application, video and audio content files referenced from conforming METS documents may be of any type supported by the CDL Guidlines for Digital Objects (http://www.cdlib.org/inside/diglib/guidelines/).</p>
</requirement>
<requirement>
<p>All "tei" files must be encoded according to version 1 of the "TEI Text Encoding in Libraries: Guidelines for Best Encoding Practices" maintained by the Digital Library Federation (http://www.diglib.org/standards/tei.htm). </p>
</requirement>
</content_files>
</technical_requirements>
<tool/>
<Appendix ID="EX1" NUMBER="1" LABEL="Example with image and structured text content">
<mets:mets xmlns:mets="http://www.loc.gov/METS/"
xmlns:mods="http://www.loc.gov/mods/v3"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:rts="http://cosimo.stanford.edu/sdr/metsrights/"
xsi:schemaLocation=
"http://www.loc.gov/METS/
http://www.loc.gov/mets/mets.xsd
http://www.loc.gov/mods/v3
http://www.loc.gov/standards/mods/v3/mods-3-1.xsd
http://cosimo.stanford.edu/sdr/metsrights/
http://cosimo.stanford.edu/sdr/metsrights.xsd "
OBJID="ark:/13030/kt9s2009hz"
LABEL="Dictation from Amelia Hartman Saunders : Sacramento : ms., 1887"
PROFILE="http://www.loc.gov/mets/profiles/00000013.xml">
<mets:metsHdr CREATEDATE="2003-04-10T10:30:00">
<mets:agent ROLE="CREATOR">
<mets:name>Rick Beaubien</mets:name>
</mets:agent>
</mets:metsHdr>
<mets:dmdSec ID="DMD1">
<mets:mdWrap MDTYPE="MODS">
<mets:xmlData>
<mods:mods>
<mods:titleInfo>
<mods:title>Dictation from Amelia Hartman Saunders : ms., Sacramento : 1887</mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart>Saunders, Amelia Hartman</mods:namePart>
<mods:namePart type="date">1851-</mods:namePart>
<mods:role>
<mods:roleTerm authority="lcnaf" type="text">author</mods:roleTerm>
</mods:role>
</mods:name>
<mods:typeOfResource manuscript="yes">text</mods:typeOfResource>
<mods:genre authority="rbgenr">Autobiographies</mods:genre>
<mods:originInfo>
<mods:place>
<mods:placeTerm type="text">Sacramento, California</mods:placeTerm>
</mods:place>
<mods:dateCreated>1887</mods:dateCreated>
<mods:dateCreated encoding="w3cdtf" point="start">1887</mods:dateCreated>
</mods:originInfo>
<mods:language>
<mods:languageTerm authority="iso639-2b" type="code">eng</mods:languageTerm>
</mods:language>
<mods:physicalDescription>
<mods:extent>1 folder</mods:extent>
</mods:physicalDescription>
<mods:abstract>From miscellaneous California dictations, statements and some questionnaires concerning social life, customs, economic conditions, recorded and prepared for H.H. Bancroft primarily between 1887 and 1889.</mods:abstract>
<mods:note type="provenance">Forms part of the Hubert Howe Bancroft Collection</mods:note>
<mods:subject authority="lcsh">
<mods:geographic>California--Biography</mods:geographic>
</mods:subject>
<mods:subject>
<mods:geographic>Sacramento (Calif.)--Social life and customs</mods:geographic>
</mods:subject>
<mods:relatedItem type="host">
<mods:titleInfo>
<mods:title>Hubert Howe Bancroft Collection</mods:title>
</mods:titleInfo>
</mods:relatedItem>
<mods:relatedItem type="host">
<mods:titleInfo type="uniform">
<mods:title>Miscellaneous California dictations</mods:title>
</mods:titleInfo>
</mods:relatedItem>
<mods:identifier type="local">BANC C-D 810:386</mods:identifier>
<mods:location>
<mods:physicalLocation>The Bancroft Library. University of California, Berkeley, CA 94720-6000</mods:physicalLocation>
</mods:location>
<mods:accessCondition displayLabel="Access restrictions:">Non-circulating; may be used only in the Bancroft library</mods:accessCondition>
</mods:mods>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<mets:amdSec>
<mets:rightsMD ID="ADM1">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="METSRights">
<mets:xmlData>
<rts:RightsDeclarationMD RIGHTSCATEGORY="OTHER" OTHERCATEGORYTYPE="UNKNOWN">
<rts:RightsHolder>
<rts:RightsHolderComments>All requests to reproduce, publish, quote from, or otherwise use collection materials must be submitted in writing to the Head of Access Services, The Bancroft Library, University of California, Berkeley 94720-6000. Consent is given on behalf of The Bancroft Library as the owner of the physical items and does not constitute permission from the copyright owner. Such permission must be obtained from the copyright owner. See: http://bancroft.berkeley.edu/reference/permissions.html</rts:RightsHolderComments>
</rts:RightsHolder>
<rts:Context CONTEXTCLASS="GENERAL PUBLIC">
<rts:Constraints>
<rts:ConstraintDescription>Copyright status unknown. Some materials in these collections may be protected by the U.S. Copyright Law (Title 17, U.X.C.). In addition, the reproduction of some materials may be restricted by terms of University of California gift or purchase agreements, donor restrictions, privacy and publicity rights, licensing and trademarks. Transmission or reproduction of materials protected by copyright beyond that allowed by fair use requires the written permission of copyright owners. Works not in the public domain cannot be commercially exploited without permission of the copyright owner. Responsibility for any use rests exclusively with the user.</rts:ConstraintDescription>
</rts:Constraints>
</rts:Context>
</rts:RightsDeclarationMD>
</mets:xmlData>
</mets:mdWrap>
</mets:rightsMD>
</mets:amdSec>
<mets:fileSec>
<mets:fileGrp VERSDATE="1999-06-17T00:00:00" USE="image/master">
<mets:file ID="FID1" MIMETYPE="image/tiff" SEQ="1" CREATED="1999-06-17T00:00:00" GROUPID="GID1">
<mets:FLocat xlink:href="http://sunsite.berkeley.edu/masters/bkm00002773a.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="FID2" MIMETYPE="image/tiff" SEQ="2" CREATED="1999-06-17T00:00:00" GROUPID="GID2">
<mets:FLocat xlink:href="http://sunsite.berkeley.edu/masters/bkm00002774a.tif" LOCTYPE="URL"/>
</mets:file>
</mets:fileGrp>
<mets:fileGrp VERSDATE="1999-06-28T00:00:00" USE="image/thumbnail">
<mets:file ID="FID3" MIMETYPE="image/gif" SEQ="1" CREATED="1999-06-28T00:00:00" GROUPID="GID1">
<mets:FLocat xlink:href="http://sunsite.berkeley.edu/moa2/images/bkm00002773a_a.gif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="FID4" MIMETYPE="image/gif" SEQ="2" CREATED="1999-06-28T00:00:00" GROUPID="GID2">
<mets:FLocat xlink:href="http://sunsite.berkeley.edu/moa2/images/bkm00002774a_a.gif" LOCTYPE="URL"/>
</mets:file>
</mets:fileGrp>
<mets:fileGrp VERSDATE="1999-06-28T00:00:00" USE="image/reference">
<mets:file ID="FID5" MIMETYPE="image/jpeg" SEQ="1" CREATED="1999-06-28T00:00:00" GROUPID="GID1">
<mets:FLocat xlink:href="http://sunsite.berkeley.edu/moa2/images/bkm00002773a_b.jpg" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="FID6" MIMETYPE="image/jpeg" SEQ="2" CREATED="1999-06-28T00:00:00" GROUPID="GID2">
<mets:FLocat xlink:href="http://sunsite.berkeley.edu/moa2/images/bkm00002774a_b.jpg" LOCTYPE="URL"/>
</mets:file>
</mets:fileGrp>
<mets:fileGrp VERSDATE="1999-06-28T00:00:00" USE="image/reference">
<mets:file ID="FID7" MIMETYPE="image/jpeg" SEQ="1" CREATED="1999-06-28T00:00:00" GROUPID="GID1">
<mets:FLocat xlink:href="http://sunsite.berkeley.edu/moa2/images/bkm00002773a_c.jpg" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="FID8" MIMETYPE="image/jpeg" SEQ="2" CREATED="1999-06-28T00:00:00" GROUPID="GID2">
<mets:FLocat xlink:href="http://sunsite.berkeley.edu/moa2/images/bkm00002774a_c.jpg" LOCTYPE="URL"/>
</mets:file>
</mets:fileGrp>
<mets:fileGrp VERSDATE="1999-06-28T00:00:00" USE="text/tei">
<mets:file ID="FID9" MIMETYPE="text/xml" SEQ="1" CREATED="1999-06-28T00:00:00" GROUPID="GID3">
<mets:FLocat xlink:href="http://sunsite.berkeley.edu/moa2/tei/bkm00002772_a.xml" LOCTYPE="URL"/>
</mets:file>
</mets:fileGrp>
</mets:fileSec>
<mets:structMap>
<mets:div ORDER="1" TYPE="text" LABEL="Dictation from Amelia Hartman Saunders : Sacramento : ms., 1887" DMDID="DMD1" ADMID="ADM1">
<mets:fptr FILEID="FID9"/>
<mets:div ORDER="1" TYPE="page" LABEL=" Page [1]">
<mets:fptr FILEID="FID1"/>
<mets:fptr FILEID="FID3"/>
<mets:fptr FILEID="FID5"/>
<mets:fptr FILEID="FID7"/>
</mets:div>
<mets:div ORDER="2" TYPE="page" LABEL=" Page [2]">
<mets:fptr FILEID="FID2"/>
<mets:fptr FILEID="FID4"/>
<mets:fptr FILEID="FID6"/>
<mets:fptr FILEID="FID8"/>
</mets:div>
</mets:div>
</mets:structMap>
</mets:mets>
</Appendix>
<Appendix ID="EX2" NUMBER="2" LABEL="Example with image and unstructured text content">
<mets:mets xmlns:mets="http://www.loc.gov/METS/"
xmlns:mods="http://www.loc.gov/mods/v3"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.loc.gov/METS/
http://www.loc.gov/standards/mets/mets.xsd
http://www.loc.gov/mods/v3
http://www.loc.gov/standards/mods/v3/mods-3-1.xsd"
OBJID="ark:/13030/hb9x0nb59j"
LABEL="Table Of Contents: The International Seminar on the Juche Idea, Pyongyang, September, 1977"
PROFILE="http://www.loc.gov/mets/profiles/00000013.xml">
<mets:metsHdr CREATEDATE="2004-10-27T00:00:00.0" LASTMODDATE="2004-10-27T00:00:00.0">
<mets:agent ROLE="CREATOR">
<mets:name>Michael Conkin</mets:name>
</mets:agent>
</mets:metsHdr>
<mets:dmdSec ID="App2DMD1">
<mets:mdRef xlink:href="http://pathfinder.berkeley.edu/WebZ/Authorize?sessionid=0:bad=html/authofail.html:next=NEXTCMD%22/WebZ/QUERY:next=html/results.html:format=B:numrecs=20:entitytoprecno=1:entitycurrecno=1:tempjds=TRUE:entitycounter=1:entitydbgroup=Glad:entityCurrentPage=SearchRecentAcq:dbname=Glad:entitycountAvail=0:entitycountDisplay=0:entitycountWhere=0:entityCurrentSearchScreen=html/search.html:entityactive=1:indexA=gl%3A:termA=100785675:next=html/Cannedresultsframe.html:bad=error/badsearchframe.htm" LOCTYPE="URL" MDTYPE="MARC" LABEL="Associated Catalog Record"/>
</mets:dmdSec>
<mets:dmdSec ID="App2DMD2">
<mets:mdWrap MDTYPE="MODS" LABEL="The International Seminar on the Juche Idea, Pyongyang, September, 1977">
<mets:xmlData>
<mods:mods>
<mods:titleInfo>
<mods:title>The International Seminar on the Juche Idea, Pyongyang, September, 1977</mods:title>
</mods:titleInfo>
<mods:name type="conference">
<mods:namePart>International Seminar on the Juche Idea(1977 :Pyongyang)</mods:namePart>
<mods:role>
<mods:roleTerm type="text" authority="marcrelator">creator</mods:roleTerm>
</mods:role>
</mods:name>
<mods:typeOfResource>text</mods:typeOfResource>
<mods:originInfo>
<mods:place>
<mods:placeTerm type="code" authority="marccountry">kn</mods:placeTerm>
</mods:place>
<mods:place>
<mods:placeTerm type="text">Pyongyang </mods:placeTerm>
</mods:place>
<mods:publisher>Foreign Languages Publishing House</mods:publisher>
<mods:dateIssued>1977</mods:dateIssued>
<mods:issuance>monographic</mods:issuance>
</mods:originInfo>
<mods:language>
<mods:languageTerm type="code" authority="iso639-2b">eng</mods:languageTerm>
</mods:language>
<mods:physicalDescription>
<mods:form authority="marcform">print</mods:form>
<mods:extent>763 p., [8] leaves of plates :ports. ;21 cm.</mods:extent>
</mods:physicalDescription>
<mods:subject authority="lcsh">
<mods:topic>Socialism</mods:topic>
<mods:geographic>Korea (North)</mods:geographic>
<mods:topic>Congresses</mods:topic>
</mods:subject>
<mods:identifier displayLabel="Local Call Number" type="local">MAIN HX412.I51 1977</mods:identifier>
<mods:identifier displayLabel="Storage Number" type="local">NRLF: B 3 186 061</mods:identifier>
<mods:location>
<mods:physicalLocation>Northern Regional Library Facility. Richmond Field Station - Bldg. 400. 1301 South 46th Street. Richmond, CA 94804-4698</mods:physicalLocation>
<mods:url displayLabel="Table of Contents">http://metsviewer.lib.berkeley.edu/nrlftoc/mets/100785675A-B3186061.xml</mods:url>
</mods:location>
<mods:recordInfo>
<mods:recordContentSource authority="marcorg">CUR</mods:recordContentSource>
<mods:recordCreationDate encoding="marc">891102</mods:recordCreationDate>
<mods:recordChangeDate encoding="iso8601">20041026115501.0</mods:recordChangeDate>
<mods:recordIdentifier>CUBGGLAD100785675B</mods:recordIdentifier>
</mods:recordInfo>
</mods:mods>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<mets:fileSec>
<mets:fileGrp USE="text/ocr">
<mets:file ID="App2FID1" MIMETYPE="text/plain" SEQ="1" GROUPID="1">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/texts/100785675A-B3186061-001-012.txt" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID2" MIMETYPE="text/plain" SEQ="2" GROUPID="2">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/texts/100785675A-B3186061-002-012.txt" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID3" MIMETYPE="text/plain" SEQ="3" GROUPID="3">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/texts/100785675A-B3186061-003-012.txt" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID4" MIMETYPE="text/plain" SEQ="4" GROUPID="4">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/texts/100785675A-B3186061-004-012.txt" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID5" MIMETYPE="text/plain" SEQ="5" GROUPID="5">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/texts/100785675A-B3186061-005-012.txt" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID6" MIMETYPE="text/plain" SEQ="6" GROUPID="6">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/texts/100785675A-B3186061-006-012.txt" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID7" MIMETYPE="text/plain" SEQ="7" GROUPID="7">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/texts/100785675A-B3186061-007-012.txt" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID8" MIMETYPE="text/plain" SEQ="8" GROUPID="8">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/texts/100785675A-B3186061-008-012.txt" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID9" MIMETYPE="text/plain" SEQ="9" GROUPID="9">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/texts/100785675A-B3186061-009-012.txt" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID10" MIMETYPE="text/plain" SEQ="10" GROUPID="10">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/texts/100785675A-B3186061-010-012.txt" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID11" MIMETYPE="text/plain" SEQ="11" GROUPID="11">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/texts/100785675A-B3186061-011-012.txt" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID12" MIMETYPE="text/plain" SEQ="12" GROUPID="12">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/texts/100785675A-B3186061-012-012.txt" LOCTYPE="URL"/>
</mets:file>
</mets:fileGrp>
<mets:fileGrp USE="image/master">
<mets:file ID="App2FID13" MIMETYPE="image/tiff" SEQ="1" GROUPID="1">
<mets:FLocat xlink:href="http://offlineimage/nrlftoc/100785675A-B3186061-001-012.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID14" MIMETYPE="image/tiff" SEQ="2" GROUPID="2">
<mets:FLocat xlink:href="http://offlineimage/nrlftoc/100785675A-B3186061-002-012.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID15" MIMETYPE="image/tiff" SEQ="3" GROUPID="3">
<mets:FLocat xlink:href="http://offlineimage/nrlftoc/100785675A-B3186061-003-012.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID16" MIMETYPE="image/tiff" SEQ="4" GROUPID="4">
<mets:FLocat xlink:href="http://offlineimage/nrlftoc/100785675A-B3186061-004-012.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID17" MIMETYPE="image/tiff" SEQ="5" GROUPID="5">
<mets:FLocat xlink:href="http://offlineimage/nrlftoc/100785675A-B3186061-005-012.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID18" MIMETYPE="image/tiff" SEQ="6" GROUPID="6">
<mets:FLocat xlink:href="http://offlineimage/nrlftoc/100785675A-B3186061-006-012.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID19" MIMETYPE="image/tiff" SEQ="7" GROUPID="7">
<mets:FLocat xlink:href="http://offlineimage/nrlftoc/100785675A-B3186061-007-012.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID20" MIMETYPE="image/tiff" SEQ="8" GROUPID="8">
<mets:FLocat xlink:href="http://offlineimage/nrlftoc/100785675A-B3186061-008-012.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID21" MIMETYPE="image/tiff" SEQ="9" GROUPID="9">
<mets:FLocat xlink:href="http://offlineimage/nrlftoc/100785675A-B3186061-009-012.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID22" MIMETYPE="image/tiff" SEQ="10" GROUPID="10">
<mets:FLocat xlink:href="http://offlineimage/nrlftoc/100785675A-B3186061-010-012.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID23" MIMETYPE="image/tiff" SEQ="11" GROUPID="11">
<mets:FLocat xlink:href="http://offlineimage/nrlftoc/100785675A-B3186061-011-012.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID24" MIMETYPE="image/tiff" SEQ="12" GROUPID="12">
<mets:FLocat xlink:href="http://offlineimage/nrlftoc/100785675A-B3186061-012-012.tif" LOCTYPE="URL"/>
</mets:file>
</mets:fileGrp>
<mets:fileGrp USE="image/reference">
<mets:file ID="App2FID25" MIMETYPE="image/jpeg" SEQ="1" GROUPID="1">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/images/100785675A-B3186061-001-012.jpg" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID26" MIMETYPE="image/jpeg" SEQ="2" GROUPID="2">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/images/100785675A-B3186061-002-012.jpg" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID27" MIMETYPE="image/jpeg" SEQ="3" GROUPID="3">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/images/100785675A-B3186061-003-012.jpg" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID28" MIMETYPE="image/jpeg" SEQ="4" GROUPID="4">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/images/100785675A-B3186061-004-012.jpg" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID29" MIMETYPE="image/jpeg" SEQ="5" GROUPID="5">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/images/100785675A-B3186061-005-012.jpg" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID30" MIMETYPE="image/jpeg" SEQ="6" GROUPID="6">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/images/100785675A-B3186061-006-012.jpg" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID31" MIMETYPE="image/jpeg" SEQ="7" GROUPID="7">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/images/100785675A-B3186061-007-012.jpg" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID32" MIMETYPE="image/jpeg" SEQ="8" GROUPID="8">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/images/100785675A-B3186061-008-012.jpg" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID33" MIMETYPE="image/jpeg" SEQ="9" GROUPID="9">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/images/100785675A-B3186061-009-012.jpg" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID34" MIMETYPE="image/jpeg" SEQ="10" GROUPID="10">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/images/100785675A-B3186061-010-012.jpg" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID35" MIMETYPE="image/jpeg" SEQ="11" GROUPID="11">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/images/100785675A-B3186061-011-012.jpg" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App2FID36" MIMETYPE="image/jpeg" SEQ="12" GROUPID="12">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/nrlftoc/prod/100/images/100785675A-B3186061-012-012.jpg" LOCTYPE="URL"/>
</mets:file>
</mets:fileGrp>
</mets:fileSec>
<mets:structMap>
<mets:div ORDER="1" TYPE="text" LABEL="Table of Contents: The International Seminar on the Juche Idea, Pyongyang, September, 1977" DMDID="App2DMD1 App2DMD2">
<mets:div ORDER="1" TYPE="page" LABEL="[p. 1]">
<mets:fptr FILEID="App2FID1"/>
<mets:fptr FILEID="App2FID13"/>
<mets:fptr FILEID="App2FID25"/>
</mets:div>
<mets:div ORDER="2" TYPE="page" LABEL="[p. 2]">
<mets:fptr FILEID="App2FID2"/>
<mets:fptr FILEID="App2FID14"/>
<mets:fptr FILEID="App2FID26"/>
</mets:div>
<mets:div ORDER="3" TYPE="page" LABEL="[p. 3]">
<mets:fptr FILEID="App2FID3"/>
<mets:fptr FILEID="App2FID15"/>
<mets:fptr FILEID="App2FID27"/>
</mets:div>
<mets:div ORDER="4" TYPE="page" LABEL="[p. 4]">
<mets:fptr FILEID="App2FID4"/>
<mets:fptr FILEID="App2FID16"/>
<mets:fptr FILEID="App2FID28"/>
</mets:div>
<mets:div ORDER="5" TYPE="page" LABEL="[p. 5]">
<mets:fptr FILEID="App2FID5"/>
<mets:fptr FILEID="App2FID17"/>
<mets:fptr FILEID="App2FID29"/>
</mets:div>
<mets:div ORDER="6" TYPE="page" LABEL="[p. 6]">
<mets:fptr FILEID="App2FID6"/>
<mets:fptr FILEID="App2FID18"/>
<mets:fptr FILEID="App2FID30"/>
</mets:div>
<mets:div ORDER="7" TYPE="page" LABEL="[p. 7]">
<mets:fptr FILEID="App2FID7"/>
<mets:fptr FILEID="App2FID19"/>
<mets:fptr FILEID="App2FID31"/>
</mets:div>
<mets:div ORDER="8" TYPE="page" LABEL="[p. 8]">
<mets:fptr FILEID="App2FID8"/>
<mets:fptr FILEID="App2FID20"/>
<mets:fptr FILEID="App2FID32"/>
</mets:div>
<mets:div ORDER="9" TYPE="page" LABEL="[p. 9]">
<mets:fptr FILEID="App2FID9"/>
<mets:fptr FILEID="App2FID21"/>
<mets:fptr FILEID="App2FID33"/>
</mets:div>
<mets:div ORDER="10" TYPE="page" LABEL="[p. 10]">
<mets:fptr FILEID="App2FID10"/>
<mets:fptr FILEID="App2FID22"/>
<mets:fptr FILEID="App2FID34"/>
</mets:div>
<mets:div ORDER="11" TYPE="page" LABEL="[p. 11]">
<mets:fptr FILEID="App2FID11"/>
<mets:fptr FILEID="App2FID23"/>
<mets:fptr FILEID="App2FID35"/>
</mets:div>
<mets:div ORDER="12" TYPE="page" LABEL="[p. 12]">
<mets:fptr FILEID="App2FID12"/>
<mets:fptr FILEID="App2FID24"/>
<mets:fptr FILEID="App2FID36"/>
</mets:div>
</mets:div>
</mets:structMap>
</mets:mets>
</Appendix>
<Appendix ID="EX3" NUMBER="3" LABEL="Example with pdf and image content">
<mets:mets xmlns:mets="http://www.loc.gov/METS/"
xmlns:mods="http://www.loc.gov/mods/v3"
xmlns:rts="http://cosimo.stanford.edu/sdr/metsrights/"
xmlns:mix="http://www.loc.gov/mix/"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://www.loc.gov/METS/
http://www.loc.gov/standards/mets/mets.xsd
http://cosimo.stanford.edu/sdr/metsrights/
http://cosimo.stanford.edu/sdr/metsrights.xsd
http://www.loc.gov/mods/v3
http://www.loc.gov/standards/mods/v3/mods-3-1.xsd
http://www.loc.gov/mix/
http://www.loc.gov/standards/mix/mix.xsd"
OBJID="ark:/13030/hb4v19p1vc"
LABEL="RESST: A VLSI Implementation of a Record-Sorting Stack"
PROFILE="http://www.loc.gov/mets/profiles/00000013.xml">
<mets:metsHdr CREATEDATE="2005-12-02T03:02:15" LASTMODDATE="2005-12-08T08:19:18">
<mets:agent ROLE="CREATOR" TYPE="ORGANIZATION">
<mets:name>Library Systems Office, University of California, Berkeley</mets:name>
</mets:agent>
</mets:metsHdr>
<mets:dmdSec ID="DMR1">
<mets:mdRef xlink:href="http://pathfinder.berkeley.edu/WebZ/Authorize?sessionid=0:bad=html/authofail.html:next=NEXTCMD%22/WebZ/QUERY:next=html/results.html:format=B:numrecs=20:entitytoprecno=1:entitycurrecno=1:tempjds=TRUE:entitycounter=1:entitydbgroup=Glad:entityCurrentPage=SearchRecentAcq:dbname=Glad:entitycountAvail=0:entitycountDisplay=0:entitycountWhere=0:entityCurrentSearchScreen=html/search.html:entityactive=1:indexA=gl%3A:termA=184925631:next=html/Cannedresultsframe.html:bad=error/badsearchframe.htm"
LOCTYPE="URL"
MDTYPE="MARC"
LABEL="Catalog Record"/>
</mets:dmdSec>
<mets:dmdSec ID="DM1">
<mets:mdWrap MDTYPE="MODS" LABEL="RESST: A VLSI Implementation of a Record-Sorting Stack">
<mets:xmlData>
<mods:mods>
<mods:titleInfo>
<mods:title>RESST: A VLSI Implementation of a Record-Sorting Stack</mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart>Thompson, Clark D</mods:namePart>
<mods:role>
<mods:roleTerm type="text" authority="marc">Author</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Carey, Michael J</mods:namePart>
<mods:role>
<mods:roleTerm type="text" authority="marc">Author</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Hansen, Paul Mark</mods:namePart>
<mods:role>
<mods:roleTerm type="text" authority="marc">Author</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="corporate">
<mods:namePart>EECS Department, University of California, Berkeley</mods:namePart>
<mods:role>
<mods:roleTerm type="text" authority="marc">Publisher</mods:roleTerm>
</mods:role>
</mods:name>
<mods:typeOfResource>text</mods:typeOfResource>
<mods:genre authority="aat">technical reports</mods:genre>
<mods:originInfo>
<mods:place>
<mods:placeTerm type="text">University of California at Berkeley, Berkeley, California</mods:placeTerm>
</mods:place>
</mods:originInfo>
<mods:language>
<mods:languageTerm type="code" authority="iso639-2b">eng</mods:languageTerm>
</mods:language>
<mods:physicalDescription>
<mods:extent>28 p</mods:extent>
</mods:physicalDescription>
<mods:abstract>This report discusses a VLSI implementation of a record-sorting stack. Records are represented on the stack as (key, record-pointer) pairs, and the operations supported are PUSH, POP, and CLEAR. When records are POPed, they are returned in smallest-first order. The implementation allows the sorting of n records in O(n) time, and the design is cascadable so that the capacity of a single VLSI chip does not limit the amount of data which may be sorted. This report describes a paper design and evaluation, and thus serves two purposes: It describes one particular VLSI sorting circuit, and it also serves as a case study in VLSI design methodology. The algorithm is described, the overall chip organization and data flow are presented, and detailed circuits, layouts, and timing analyses are given</mods:abstract>
<mods:relatedItem displayLabel="Metacollection" type="host">
<mods:titleInfo>
<mods:title>technical reports</mods:title>
</mods:titleInfo>
<mods:identifier type="local search">hb1k40068r</mods:identifier>
</mods:relatedItem>
<mods:identifier type="local">CSD-82-102</mods:identifier>
<mods:location>
<mods:physicalLocation>Engineering Library, 110 Bechtel, University of California, Berkeley, CA 94720-1796</mods:physicalLocation>
</mods:location>
</mods:mods>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<mets:amdSec>
<mets:rightsMD ID="App3ADM1">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="METSRights">
<mets:xmlData>
<rts:RightsDeclarationMD RIGHTSCATEGORY="COPYRIGHTED">
<rts:RightsHolder>
<rts:RightsHolderName>The author</rts:RightsHolderName>
<rts:RightsHolderContact>
<rts:RightsHolderContactAddress>Computer Science Division, Department of Electrical Engineering & Computer Sciences, University of California, Berkeley</rts:RightsHolderContactAddress>
</rts:RightsHolderContact>
</rts:RightsHolder>
<rts:Context CONTEXTCLASS="GENERAL PUBLIC">
<rts:Constraints>
<rts:ConstraintDescription>Transmission or reproduction of materials protected by copyright beyond that allowed by fair use requires the written permission of the copyright owners. Works not in the public domain cannot be commericially exploited without permission of the copyright owner. Responsibility for any use rests exclusively with the user</rts:ConstraintDescription>
</rts:Constraints>
</rts:Context>
</rts:RightsDeclarationMD>
</mets:xmlData>
</mets:mdWrap>
</mets:rightsMD>
</mets:amdSec>
<mets:fileSec>
<mets:fileGrp USE="application">
<mets:file ID="App3FID1" MIMETYPE="application/pdf" SEQ="1" GROUPID="GID1">
<mets:FLocat xlink:href="http://digitalassets.lib.berkeley.edu/techreports/ucb/text/CSD-82-102.pdf" LOCTYPE="URL"/>
</mets:file>
</mets:fileGrp>
<mets:fileGrp VERSDATE="2005-11-29T13:55:00.0" USE="image/master">
<mets:file ID="App3FID2" MIMETYPE="image/tiff" SEQ="1" CREATED="2005-11-29T13:55:00.0" GROUPID="GID2">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0001.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID3" MIMETYPE="image/tiff" SEQ="2" CREATED="2005-11-29T13:55:00.0" GROUPID="GID3">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0002.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID4" MIMETYPE="image/tiff" SEQ="3" CREATED="2005-11-29T13:55:00.0" GROUPID="GID4">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0003.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID5" MIMETYPE="image/tiff" SEQ="4" CREATED="2005-11-29T13:55:00.0" GROUPID="GID5">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0004.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID6" MIMETYPE="image/tiff" SEQ="5" CREATED="2005-11-29T13:55:00.0" GROUPID="GID6">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0005.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID7" MIMETYPE="image/tiff" SEQ="6" CREATED="2005-11-29T13:55:00.0" GROUPID="GID7">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0006.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID8" MIMETYPE="image/tiff" SEQ="7" CREATED="2005-11-29T13:55:00.0" GROUPID="GID8">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0007.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID9" MIMETYPE="image/tiff" SEQ="8" CREATED="2005-11-29T13:55:00.0" GROUPID="GID9">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0008.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID10" MIMETYPE="image/tiff" SEQ="9" CREATED="2005-11-29T13:55:00.0" GROUPID="GID10">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0009.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID11" MIMETYPE="image/tiff" SEQ="10" CREATED="2005-11-29T13:55:00.0" GROUPID="GID11">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0010.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID12" MIMETYPE="image/tiff" SEQ="11" CREATED="2005-11-29T13:55:00.0" GROUPID="GID12">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0011.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID13" MIMETYPE="image/tiff" SEQ="12" CREATED="2005-11-29T13:55:00.0" GROUPID="GID13">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0012.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID14" MIMETYPE="image/tiff" SEQ="13" CREATED="2005-11-29T13:55:00.0" GROUPID="GID14">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0013.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID15" MIMETYPE="image/tiff" SEQ="14" CREATED="2005-11-29T13:55:00.0" GROUPID="GID15">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0014.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID16" MIMETYPE="image/tiff" SEQ="15" CREATED="2005-11-29T13:55:00.0" GROUPID="GID16">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0015.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID17" MIMETYPE="image/tiff" SEQ="16" CREATED="2005-11-29T13:55:00.0" GROUPID="GID17">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0016.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID18" MIMETYPE="image/tiff" SEQ="17" CREATED="2005-11-29T13:55:00.0" GROUPID="GID18">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0017.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID19" MIMETYPE="image/tiff" SEQ="18" CREATED="2005-11-29T13:55:00.0" GROUPID="GID19">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0018.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID20" MIMETYPE="image/tiff" SEQ="19" CREATED="2005-11-29T13:55:00.0" GROUPID="GID20">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0019.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID21" MIMETYPE="image/tiff" SEQ="20" CREATED="2005-11-29T13:55:00.0" GROUPID="GID21">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0020.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID22" MIMETYPE="image/tiff" SEQ="21" CREATED="2005-11-29T13:55:00.0" GROUPID="GID22">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0021.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID23" MIMETYPE="image/tiff" SEQ="22" CREATED="2005-11-29T13:55:00.0" GROUPID="GID23">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0022.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID24" MIMETYPE="image/tiff" SEQ="23" CREATED="2005-11-29T13:55:00.0" GROUPID="GID24">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0023.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID25" MIMETYPE="image/tiff" SEQ="24" CREATED="2005-11-29T13:55:00.0" GROUPID="GID25">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0024.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID26" MIMETYPE="image/tiff" SEQ="25" CREATED="2005-11-29T13:55:00.0" GROUPID="GID26">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0025.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID27" MIMETYPE="image/tiff" SEQ="26" CREATED="2005-11-29T13:55:00.0" GROUPID="GID27">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0026.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID28" MIMETYPE="image/tiff" SEQ="27" CREATED="2005-11-29T13:55:00.0" GROUPID="GID28">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0027.tif" LOCTYPE="URL"/>
</mets:file>
<mets:file ID="App3FID29" MIMETYPE="image/tiff" SEQ="28" CREATED="2005-11-29T13:55:00.0" GROUPID="GID29">
<mets:FLocat xlink:href="http://offlineimage/techreports/ucb/CSD-82-102_scanned_0028.tif" LOCTYPE="URL"/>
</mets:file>
</mets:fileGrp>
</mets:fileSec>
<mets:structMap>
<mets:div ORDER="1" TYPE="text" LABEL="RESST: A VLSI Implementation of a Record-Sorting Stack" DMDID="DMR1 DM1" ADMID="App3ADM1">
<mets:fptr FILEID="App3FID1"/>
<mets:div ORDER="1" TYPE="page" LABEL="Page 1">
<mets:fptr FILEID="App3FID2"/>
</mets:div>
<mets:div ORDER="2" TYPE="page" LABEL="Page 2">
<mets:fptr FILEID="App3FID3"/>
</mets:div>
<mets:div ORDER="3" TYPE="page" LABEL="Page 3">
<mets:fptr FILEID="App3FID4"/>
</mets:div>
<mets:div ORDER="4" TYPE="page" LABEL="Page 4">
<mets:fptr FILEID="App3FID5"/>
</mets:div>
<mets:div ORDER="5" TYPE="page" LABEL="Page 5">
<mets:fptr FILEID="App3FID6"/>
</mets:div>
<mets:div ORDER="6" TYPE="page" LABEL="Page 6">
<mets:fptr FILEID="App3FID7"/>
</mets:div>
<mets:div ORDER="7" TYPE="page" LABEL="Page 7">
<mets:fptr FILEID="App3FID8"/>
</mets:div>
<mets:div ORDER="8" TYPE="page" LABEL="Page 8">
<mets:fptr FILEID="App3FID9"/>
</mets:div>
<mets:div ORDER="9" TYPE="page" LABEL="Page 9">
<mets:fptr FILEID="App3FID10"/>
</mets:div>
<mets:div ORDER="10" TYPE="page" LABEL="Page 10">
<mets:fptr FILEID="App3FID11"/>
</mets:div>
<mets:div ORDER="11" TYPE="page" LABEL="Page 11">
<mets:fptr FILEID="App3FID12"/>
</mets:div>
<mets:div ORDER="12" TYPE="page" LABEL="Page 12">
<mets:fptr FILEID="App3FID13"/>
</mets:div>
<mets:div ORDER="13" TYPE="page" LABEL="Page 13">
<mets:fptr FILEID="App3FID14"/>
</mets:div>
<mets:div ORDER="14" TYPE="page" LABEL="Page 14">
<mets:fptr FILEID="App3FID15"/>
</mets:div>
<mets:div ORDER="15" TYPE="page" LABEL="Page 15">
<mets:fptr FILEID="App3FID16"/>
</mets:div>
<mets:div ORDER="16" TYPE="page" LABEL="Page 16">
<mets:fptr FILEID="App3FID17"/>
</mets:div>
<mets:div ORDER="17" TYPE="page" LABEL="Page 17">
<mets:fptr FILEID="App3FID18"/>
</mets:div>
<mets:div ORDER="18" TYPE="page" LABEL="Page 18">
<mets:fptr FILEID="App3FID19"/>
</mets:div>
<mets:div ORDER="19" TYPE="page" LABEL="Page 19">
<mets:fptr FILEID="App3FID20"/>
</mets:div>
<mets:div ORDER="20" TYPE="page" LABEL="Page 20">
<mets:fptr FILEID="App3FID21"/>
</mets:div>
<mets:div ORDER="21" TYPE="page" LABEL="Page 21">
<mets:fptr FILEID="App3FID22"/>
</mets:div>
<mets:div ORDER="22" TYPE="page" LABEL="Page 22">
<mets:fptr FILEID="App3FID23"/>
</mets:div>
<mets:div ORDER="23" TYPE="page" LABEL="Page 23">
<mets:fptr FILEID="App3FID24"/>
</mets:div>
<mets:div ORDER="24" TYPE="page" LABEL="Page 24">
<mets:fptr FILEID="App3FID25"/>
</mets:div>
<mets:div ORDER="25" TYPE="page" LABEL="Page 25">
<mets:fptr FILEID="App3FID26"/>
</mets:div>
<mets:div ORDER="26" TYPE="page" LABEL="Page 26">
<mets:fptr FILEID="App3FID27"/>
</mets:div>
<mets:div ORDER="27" TYPE="page" LABEL="Page 27">
<mets:fptr FILEID="App3FID28"/>
</mets:div>
<mets:div ORDER="28" TYPE="page" LABEL="Page 28">
<mets:fptr FILEID="App3FID29"/>
</mets:div>
</mets:div>
</mets:structMap>
</mets:mets>
</Appendix>
<Appendix ID="EX4" NUMBER="4" LABEL="Example with image only content">
<mets:mets xmlns:mets="http://www.loc.gov/METS/"
xmlns:mods="http://www.loc.gov/mods/v3"
xmlns:rts="http://cosimo.stanford.edu/sdr/metsrights/"
xmlns:mix="http://www.loc.gov/mix/"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://www.loc.gov/METS/
http://www.loc.gov/standards/mets/mets.xsd
http://cosimo.stanford.edu/sdr/metsrights/
http://cosimo.stanford.edu/sdr/metsrights.xsd