-
Notifications
You must be signed in to change notification settings - Fork 0
/
W20_tei.xml
1225 lines (1225 loc) · 88.7 KB
/
W20_tei.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"?>
<?oxygen type="xml" RNGSchema="tei_walters_ms.rng"?>
<TEI xmlns:xi="http://www.w3.org/2001/XInclude" xmlns="http://www.tei-c.org/ns/1.0" xml:id="n543.018968" version="5.0"><teiHeader type="text" xml:id="n543.018969"><fileDesc xml:id="n543.018970"><titleStmt xml:id="n543.018971"><title type="common" xml:id="n543.018972">Walters Ms. W.20, Juvenal's Satires</title>
<title type="work" xml:id="n543.018973" n="item 1042">Gloss attributed to William of Conches</title>
<title type="work" xml:id="n543.018974" n="item 1041">Satires</title>
<title type="work-vernacular" xml:lang="lat" xml:id="n543.018975" n="item 1041">Satirae</title>
<title type="work" xml:id="n543.018976" n="item 1040">Juvenal's Satires and the Gloss of William of Conches</title>
<title type="work-vernacular" xml:lang="lat" xml:id="n543.018977" n="item 1040">Satirae</title>
<author xml:id="author_729"><name type="as-written" xml:id="n543.018978">Iuuenalis</name>
<name type="supplied" xml:id="n543.018979">Juvenal</name>
<name type="known-as" xml:id="n543.018980">Iuvenalis, Decimus Iunius</name>
<name type="known-as" xml:id="n543.018981">Iuvenalis, Decimus Junius</name>
</author>
<author xml:id="author_730"><name type="authority" xml:id="n543.018982">William, of Conches</name>
<name type="supplied" xml:id="n543.018983">William of Conches</name>
</author>
<respStmt xml:id="n543.018984"><resp xml:id="n543.018985">Principal cataloger</resp>
<name xml:id="n543.018986">Randall, Lilian M.C.</name>
</respStmt>
<respStmt xml:id="n543.018987"><resp xml:id="n543.018988">Cataloger</resp>
<name xml:id="n543.018989">Dennis, Nathan S</name>
</respStmt>
<respStmt xml:id="n543.018990"><resp xml:id="n543.018991">Editor</resp>
<name xml:id="n543.018992">Herbert, Lynley</name>
</respStmt>
<respStmt xml:id="n543.018993"><resp xml:id="n543.018994">Copy editor</resp>
<name xml:id="n543.018995">Dibble, Charles</name>
</respStmt>
<respStmt xml:id="n543.018996"><resp xml:id="n543.018997">Contributor</resp>
<name xml:id="n543.018998">Emery, Doug</name>
</respStmt>
<respStmt xml:id="n543.018999"><resp xml:id="n543.019000">Contributor</resp>
<name xml:id="n543.019001">Noel, William</name>
</respStmt>
<respStmt xml:id="n543.019002"><resp xml:id="n543.019003">Contributor</resp>
<name xml:id="n543.019004">Schuele, Allyson</name>
</respStmt>
<respStmt xml:id="n543.019005"><resp xml:id="n543.019006">Contributor</resp>
<name xml:id="n543.019007">Tabritha, Ariel</name>
</respStmt>
<respStmt xml:id="n543.019008"><resp xml:id="n543.019009">Contributor</resp>
<name xml:id="n543.019010">Toth, Michael B.</name>
</respStmt>
<respStmt xml:id="n543.019011"><resp xml:id="n543.019012">Contributor</resp>
<name xml:id="n543.019013">Wiegand, Kimber</name>
</respStmt>
<respStmt xml:id="n543.019014"><resp xml:id="n543.019015">Conservator</resp>
<name xml:id="n543.019016">Owen, Linda</name>
</respStmt>
<respStmt xml:id="n543.019017"><resp xml:id="n543.019018">Conservator</resp>
<name xml:id="n543.019019">Quandt, Abigail</name>
</respStmt>
</titleStmt>
<publicationStmt xml:id="n543.019020"><publisher xml:id="pub-wam">The Walters Art Museum</publisher>
<availability xml:id="n543.019021"><p xml:id="n543.019022">Licensed for use under Creative Commons Attribution-ShareAlike 3.0 Unported Access Rights, http://creativecommons.org/licenses/by-sa/3.0/legalcode. It is requested that copies of any published articles based on the information in this data set be sent to the curator of manuscripts, The Walters Art Museum, 600 North Charles Street, Baltimore MD 21201.</p>
</availability>
</publicationStmt>
<notesStmt xml:id="n543.019023"><note type="abstract" xml:id="n543.019024">This twelfth-century copy of Juvenal's Satires includes an early gloss on Books I and II, attributed to William of Conches, which was added early in the life of the manuscript. Additional early glosses on the text by different hands appear throughout.</note>
</notesStmt>
<sourceDesc xml:id="n543.019025"><msDesc xml:id="n543.019026"><msIdentifier xml:id="n543.019027"><settlement xml:id="n543.019028">Baltimore</settlement>
<repository xml:id="n543.019029">The Walters Art Museum</repository>
<idno xml:id="n543.019030">W.20</idno>
</msIdentifier>
<msContents xml:id="n543.019031"><textLang xml:id="n543.019032" mainLang="lat">The primary language in this manuscript is Latin.</textLang>
<msItem xml:id="n543.019033" n="item 1040"><locus from="1r" to="55v" xml:id="n543.019034">1r - 55v</locus>
<title type="work" xml:id="n543.019035">Juvenal's Satires and the Gloss of William of Conches</title>
<title type="work-vernacular" xml:lang="lat" xml:id="n543.019036">Satirae</title>
<author sameAs="#author_730" xml:id="n543.019037"/>
<author sameAs="#author_729" xml:id="n543.019038"/>
<msItem xml:id="n543.019039" n="item 1042"><locus from="1r" to="5v" xml:id="n543.019040">1r - 5v</locus>
<title type="work" xml:id="n543.019041">Gloss attributed to William of Conches</title>
<incipit xml:lang="lat" xml:id="n543.019042">Semper ego etcetera. In ista prima satyra agit iuuenalis duo; in principio reprehendit poetas inutiliter scribentes; deinde ostendit quare plus hoc genus carminis scribat quam aliud.</incipit>
<author sameAs="#author_730" xml:id="n543.019043"/>
</msItem>
<msItem xml:id="n543.019044" n="item 1041"><locus from="1r" to="55v" xml:id="n543.019045">1r - 55v</locus>
<title type="work" xml:id="n543.019046">Satires</title>
<title type="work-vernacular" xml:lang="lat" xml:id="n543.019047">Satirae</title>
<incipit xml:lang="lat" xml:id="n543.019048">Semper ego auditor tantum nunquamne reponam
Vexatus toties rauci theseide codri.</incipit>
<author sameAs="#author_729" xml:id="n543.019049"/>
</msItem>
</msItem>
</msContents>
<physDesc xml:id="n543.019050"><objectDesc form="book" xml:id="n543.019051"><supportDesc xml:id="n543.019052" material="parchment"><support xml:id="n543.019053"><p xml:id="n543.019054">Medium to thick goatskin showing significant handling, including smudges and soiling at the lower edges of folios, ink-blot stains, and the last lines of text on many folios appear faded from rubbing; all folios are of a faded yellow to gray color; fore-edges and lower margins have been trimmed on many folios, sometimes extensively (see fols. 7, 9, 11, 37, and 54); trimming appears to have been started on fol. 55 but halted and later mended by the Walters Art Museum's conservation laboratory; prickings visible on fore-edges of folios; occasional holes in parchment or evidence of flaws in the goatskin; edges of folios show traces of red pigment</p>
</support>
<extent xml:id="n543.019055">Foliation: iii+55+iii<dimensions type="leaves" xml:id="n543.019056"><height unit="cm" xml:id="n543.019057">23.0</height>
<width unit="cm" xml:id="n543.019058">14.5</width>
</dimensions>
<dimensions type="written" xml:id="n543.019059" n="item 1040"><height unit="cm" xml:id="n543.019060">22.0</height>
<width unit="cm" xml:id="n543.019061">13.5</width>
</dimensions>
</extent>
<collation xml:id="n543.019062"><p xml:id="n543.019063"><formula xml:id="n543.019064">Quires 1-6: 8 (fols. 1-48 ); Quire 7: 8, lacking third folio (fols. 49-55)</formula>
<catchwords xml:id="n543.019065">Catchwords appear in the lower-right corners of the last versos of each quire, written in text-hand with brown ink; quires are numbered in roman numerals at the bottom center of the last verso of each quire</catchwords>
</p>
</collation>
</supportDesc>
<layoutDesc xml:id="n543.019066"><layout ruledLines="35" xml:id="n543.019067" columns="1 3" n="item 1040"/>
</layoutDesc>
</objectDesc>
<handDesc xml:id="n543.019068"><handNote xml:id="n543.019069" n="item 1040">Transitional Carolingian miniscule; rustic capitals and uncials used at the beginning of lines of poetry</handNote>
</handDesc>
<decoDesc xml:id="n543.019070"><decoNote xml:id="n543.019071" n="item 1040">Incipit "S" on fol. 1r rendered in blue ink and red outline with floral motif; first letters of major text divisions marked in red ink with decorative, calligraphic forms; text in brown ink</decoNote>
<decoNote xml:id="n543.019072" n="fol. 1r"><title xml:id="n543.019073">Foliate initial "S"</title>
<note type="decoration-form" xml:id="n543.019074">Decorated initial "S," 6 lines</note>
</decoNote>
</decoDesc>
<bindingDesc xml:id="n543.019075"><binding contemporary="false" xml:id="n543.019076"><p xml:id="n543.019077">Rebound in France in ca. 1600 with parchment over pasteboard; spine includes four ribs; "Iuve- / nalis" written in brown ink in the uppermost compartment of the spine</p>
</binding>
</bindingDesc>
</physDesc>
<history xml:id="n543.019078"><origin notAfter="1199" xml:id="n543.019079" notBefore="1175"><origDate xml:id="n543.019080">Last quarter of the 12th century CE</origDate>
<origPlace xml:id="n543.019081">Northern France</origPlace>
</origin>
<provenance xml:id="n543.019082">Produced in the last quarter of the twelfth century, probably in northeastern France</provenance>
<provenance xml:id="n543.019083">Perhaps owned by Saint-Pierre at Beauvais in the thirteenth century, based on the inscription "Officialis curie parisensis capitulo Sancti Petri" in the upper-left corner of fol. 55v; first three words of the same inscription (abbreviated) appear in the upper-right and bottom-left of fol. 55r and date to the fourteenth century, indicating continued ownership; inscription in same hand in upper-right corner of fol. 15r reads "Omnibus presentes litteras inspecturis uel audituris. Officialis curie parisensi Salutem in domino"; and at the top center of fol. 55v is the inscription "Officiali ambianensis episcopo salutem," written in a hand resembling that on fol. 15r</provenance>
<provenance xml:id="n543.019084">Owned by Antoine Loisel (1539-1596), based on the signature on fol. 55v, written vertically at the center of the page</provenance>
<provenance xml:id="n543.019085">Owned by the Le Peletier de Rosanbo (or Rosambo) family in the eighteenth or early-nineteenth century, based on the first bookplate on the front pastedown</provenance>
<provenance xml:id="n543.019086">Owned by the Duchess of Berry in the early-nineteenth century, based on the second bookplate on the front pastedown, which reads "Bibliothèque de Rosny," referring to the Château de Rosny at Seine-et-Oise</provenance>
<provenance xml:id="n543.019087">Sold at Paris auction (lot no. 2419) by the Duchess of Berry on February 20, 1837, for 210 francs to Marie-Henry-Adolphe Bossange (1797-1862)</provenance>
<provenance xml:id="n543.019088">Acquired by Jean-Baptiste-Joseph Barrois of Lille between 1837 and 1849; the collection number 129 is written on a green leather label at the base of the spine, over which 192 was later written</provenance>
<provenance xml:id="n543.019089">Sold by Jean-Baptiste-Joseph Barrois of Lille at Paris auction in 1849 to the Earl of Ashburnham</provenance>
<provenance xml:id="n543.019090">Sold by the Earl of Ashburnham at Sotheby's auction in London (lot no. 317) on June 12, 1901, to Bernard Quaritch Ltd., a London bookseller</provenance>
<provenance xml:id="n543.019091">Purchased by Henry Walters from Bernard Quaritch Ltd. between 1902 and 1931</provenance>
<acquisition xml:id="n543.019092">Walters Art Museum, 1931, by Henry Walters' bequest</acquisition>
</history>
</msDesc>
<listBibl xml:id="n543.019093"><head xml:id="n543.019094">Relevant Works</head>
<bibl xml:id="n543.019095">De Ricci, S. and W.J. Wilson. Census of Medieval and Renaissance Manuscripts in the United States and Canada. Vol. 1. New York: H.W. Wilson Company, 1935, p. 833, cat. no. 448.</bibl>
<bibl xml:id="n543.019096">Klibansky, Raymond. "Report on the Progress of the 'Corpus Platonicum Medii Aevi.'" Warburg Institute Annual Report (1946-1947): 12.</bibl>
<bibl xml:id="n543.019097">Klibansky, Raymond. "Annual Report, 1947-1948." Proceedings of the British Academy 34 (1948): 9.</bibl>
<bibl xml:id="n543.019098">Gregory, Tullio. "Anima mundi. La filosofia di Guglielmo di Conches e la scuola di Chartres." Pubblicazioni dell'Istituto di filosofia dell'Università di Roma 3. Florence: G. C. Sansoni, 1955, p. 27.</bibl>
<bibl xml:id="n543.019099">Jeauneau, Edouard. "L'usage de la notion d'integumentum à travers les gloses de Guillaume de Conches." In Catalogus translationum et commentariorum: Mediaeval and Renaissance Latin Translations and Commentaries. Vol. 1. Eds. F. Edward Cranz and Paul Oskar Kristeller. Washington, D.C.: Catholic University of America Press, 1960, pp. 192-193.</bibl>
<bibl xml:id="n543.019100">Faye, C. U., and W. H. Bond. Supplement to the Census of Medieval and Renaissance Manuscripts in the United States and Canada. New York: Bibliographical Society of America, 1962, p. 196, cat. no. 448.</bibl>
<bibl xml:id="n543.019101">Miner, D., V. I. Carlson, and P. W. Filby, eds. 2,000 Years of Calligraphy: A Three-Part Exhibition Organized by the Baltimore Museum of Art, the Peabody Institute Library, and the Walters Art Gallery, June 6-July 18, 1965. Baltimore: Walters Art Gallery, 1965, cat. no. 20.</bibl>
<bibl xml:id="n543.019102">Friedman, John B. "Pandarus' Cushion and 'pluma Sardanpalli." The Journal of English and Germanic Philology 75/1-2 (1976): 41-55; p. 45 (n. 13).</bibl>
<bibl xml:id="n543.019103">Early Manuscripts and Illuminated Leaves. Laurence Witten Rare Books 12. Southport: Laurence Witten Rare Books, 1980, cat. no. 25.</bibl>
<bibl xml:id="n543.019104">Marti, B. M. Review of Bradford Wilson, ed., Guillaume de Conches: Glosae in Iuvenalem. Cahiers de Civilisation Médiévale 27, no. 1-2 (1984): 184-187.</bibl>
<bibl xml:id="n543.019105">Randall, Lilian M. C. Medieval and Renaissance Manuscripts in the Walters Art Gallery. Vol. 1. Baltimore: Johns Hopkins University Press, 1989, pp. 20-22, cat. no. 8.</bibl>
<bibl xml:id="n543.019106">Hunt, Tony. Teaching and Learning Latin in Thirteenth-Century England. Vol. 1, Texts. Cambridge: D. S. Brewer, 1991, p. 62.</bibl>
<bibl xml:id="n543.019107">Kristeller, Paul O. Iter Italicum. Vol. 5. London: Brill, 1990; p. 213.</bibl>
<bibl xml:id="n543.019108">Minnis, Alastair J. and David Wallace. Medieval Literary Theory and Criticism c.1100 - c.1375: The Commentary-Tradition, Revised Edition. New York: Clarendon Press, 1991; p. 135.</bibl>
<bibl xml:id="n543.019109">Minnis, Alastair, J. Magister Amoris: The Roman de la Rose and Vernacular Hermeneutics. New York: Oxford University Press, 2001; p. 98.</bibl>
<bibl xml:id="n543.019110">Caluzzo, Irene. "Glosses et commentaires Médiévaux sur les commentarii en somium scipionus." In Lectures médiévales de Macrobe: les glosae colonienses super Macrobium. Edited by Irene Caluzzo, 49-72. Paris: Librairie Philosophique VRIN, 2002; p. 57.</bibl>
<bibl xml:id="n543.019111">Santorelli, Biagio. "Trent'anni di studi giovenaliani (1977-2007): I parte." Bollettino di studi latini 38 (2008): 119-194; p. 127.</bibl>
<bibl xml:id="n543.019112">Jeauneau, Edouard. Rethinking the School of Chartres. Toronto: University of Toronto Press, 2009; p. 112 (n. 135).</bibl>
<bibl xml:id="n543.019113">Munk Olsen, Birger. L'étude des auteurs classiques latins aux XIe et XIIe siècles: Tome 4 - 1re partie, La réception de la littérature classique, travaux philologiques. Paris: Centre national de la recherche scientifique, 2009; p. 49.</bibl>
</listBibl>
</sourceDesc>
</fileDesc>
<encodingDesc xml:id="n543.019114"><classDecl xml:id="n543.019115"><taxonomy xml:id="keywords"><category xml:id="keyword_3"><catDesc xml:id="n543.019116">Art</catDesc>
</category>
<category xml:id="keyword_26"><catDesc xml:id="n543.019117">Medicine</catDesc>
</category>
<category xml:id="keyword_29"><catDesc xml:id="n543.019118">Museum</catDesc>
</category>
<category xml:id="keyword_34"><catDesc xml:id="n543.019119">Poetry</catDesc>
</category>
<category xml:id="keyword_39"><catDesc xml:id="n543.019120">Script</catDesc>
</category>
<category xml:id="keyword_54"><catDesc xml:id="n543.019121">Muhammad, the Prophet</catDesc>
</category>
<category xml:id="keyword_83"><catDesc xml:id="n543.019122">Kashmiri</catDesc>
</category>
<category xml:id="keyword_84"><catDesc xml:id="n543.019123">Horses</catDesc>
</category>
<category xml:id="keyword_45"><catDesc xml:id="n543.019124">Walters Art Museum</catDesc>
</category>
<category xml:id="keyword_139"><catDesc xml:id="n543.019125">Document</catDesc>
</category>
<category xml:id="keyword_62"><catDesc xml:id="n543.019126">Astrology</catDesc>
</category>
<category xml:id="keyword_87"><catDesc xml:id="n543.019127">Devotion</catDesc>
</category>
<category xml:id="keyword_15"><catDesc xml:id="n543.019128">History</catDesc>
</category>
<category xml:id="keyword_88"><catDesc xml:id="n543.019129">Legal</catDesc>
</category>
<category xml:id="keyword_89"><catDesc xml:id="n543.019130">Literature -- Poetry</catDesc>
</category>
<category xml:id="keyword_90"><catDesc xml:id="n543.019131">Literature -- Prose</catDesc>
</category>
<category xml:id="keyword_91"><catDesc xml:id="n543.019132">Liturgy</catDesc>
</category>
<category xml:id="keyword_92"><catDesc xml:id="n543.019133">Philosophy</catDesc>
</category>
<category xml:id="keyword_38"><catDesc xml:id="n543.019134">Science</catDesc>
</category>
<category xml:id="keyword_93"><catDesc xml:id="n543.019135">Science -- Medicine</catDesc>
</category>
<category xml:id="keyword_40"><catDesc xml:id="n543.019136">Scripture</catDesc>
</category>
<category xml:id="keyword_55"><catDesc xml:id="n543.019137">Sufism</catDesc>
</category>
<category xml:id="keyword_94"><catDesc xml:id="n543.019138">Theology</catDesc>
</category>
<category xml:id="keyword_53"><catDesc xml:id="n543.019139">Mineralogy</catDesc>
</category>
<category xml:id="keyword_60"><catDesc xml:id="n543.019140">Logic</catDesc>
</category>
<category xml:id="keyword_50"><catDesc xml:id="n543.019141">Geography</catDesc>
</category>
<category xml:id="keyword_64"><catDesc xml:id="n543.019142">Geomancy</catDesc>
</category>
<category xml:id="keyword_10"><catDesc xml:id="n543.019143">Cosmology</catDesc>
</category>
<category xml:id="keyword_49"><catDesc xml:id="n543.019144">Cartography</catDesc>
</category>
<category xml:id="keyword_63"><catDesc xml:id="n543.019145">Fortune-telling</catDesc>
</category>
<category xml:id="keyword_23"><catDesc xml:id="n543.019146">Koran</catDesc>
</category>
<category xml:id="keyword_36"><catDesc xml:id="n543.019147">Qur`an</catDesc>
</category>
<category xml:id="keyword_77"><catDesc xml:id="n543.019148">Firman</catDesc>
</category>
<category xml:id="keyword_61"><catDesc xml:id="n543.019149">Palimpsest</catDesc>
</category>
<category xml:id="keyword_35"><catDesc xml:id="n543.019150">Prayer</catDesc>
</category>
<category xml:id="keyword_95"><catDesc xml:id="n543.019151">Bible</catDesc>
</category>
<category xml:id="keyword_96"><catDesc xml:id="n543.019152">Gospels</catDesc>
</category>
<category xml:id="keyword_97"><catDesc xml:id="n543.019153">Psalter</catDesc>
</category>
<category xml:id="keyword_98"><catDesc xml:id="n543.019154">Missal</catDesc>
</category>
<category xml:id="keyword_99"><catDesc xml:id="n543.019155">Lectionary</catDesc>
</category>
<category xml:id="keyword_100"><catDesc xml:id="n543.019156">Book of Hours</catDesc>
</category>
<category xml:id="keyword_101"><catDesc xml:id="n543.019157">Antiphonary</catDesc>
</category>
<category xml:id="keyword_104"><catDesc xml:id="n543.019158">Homilary</catDesc>
</category>
<category xml:id="keyword_105"><catDesc xml:id="n543.019159">Processional</catDesc>
</category>
<category xml:id="keyword_106"><catDesc xml:id="n543.019160">Horologion</catDesc>
</category>
<category xml:id="keyword_107"><catDesc xml:id="n543.019161">Breviary</catDesc>
</category>
<category xml:id="keyword_108"><catDesc xml:id="n543.019162">Hymnal</catDesc>
</category>
<category xml:id="keyword_109"><catDesc xml:id="n543.019163">Chronicle</catDesc>
</category>
<category xml:id="keyword_51"><catDesc xml:id="n543.019164">Maghreb</catDesc>
</category>
<category xml:id="keyword_56"><catDesc xml:id="n543.019165">Sub-Saharan (West) Africa</catDesc>
</category>
<category xml:id="keyword_42"><catDesc xml:id="n543.019166">Turkey</catDesc>
</category>
<category xml:id="keyword_81"><catDesc xml:id="n543.019167">Afghanistan</catDesc>
</category>
<category xml:id="keyword_57"><catDesc xml:id="n543.019168">Central Asia</catDesc>
</category>
<category xml:id="keyword_11"><catDesc xml:id="n543.019169">Egypt</catDesc>
</category>
<category xml:id="keyword_69"><catDesc xml:id="n543.019170">England</catDesc>
</category>
<category xml:id="keyword_18"><catDesc xml:id="n543.019171">India</catDesc>
</category>
<category xml:id="keyword_20"><catDesc xml:id="n543.019172">Iran</catDesc>
</category>
<category xml:id="keyword_21"><catDesc xml:id="n543.019173">Iraq</catDesc>
</category>
<category xml:id="keyword_80"><catDesc xml:id="n543.019174">Pakistan</catDesc>
</category>
<category xml:id="keyword_111"><catDesc xml:id="n543.019175">Germany</catDesc>
</category>
<category xml:id="keyword_112"><catDesc xml:id="n543.019176">France</catDesc>
</category>
<category xml:id="keyword_113"><catDesc xml:id="n543.019177">Austria</catDesc>
</category>
<category xml:id="keyword_114"><catDesc xml:id="n543.019178">Netherlands</catDesc>
</category>
<category xml:id="keyword_115"><catDesc xml:id="n543.019179">Ethiopia</catDesc>
</category>
<category xml:id="keyword_116"><catDesc xml:id="n543.019180">Armenia</catDesc>
</category>
<category xml:id="keyword_117"><catDesc xml:id="n543.019181">Flanders</catDesc>
</category>
<category xml:id="keyword_118"><catDesc xml:id="n543.019182">Greece</catDesc>
</category>
<category xml:id="keyword_52"><catDesc xml:id="n543.019183">Mamluk</catDesc>
</category>
<category xml:id="keyword_28"><catDesc xml:id="n543.019184">Mughal</catDesc>
</category>
<category xml:id="keyword_31"><catDesc xml:id="n543.019185">Ottoman</catDesc>
</category>
<category xml:id="keyword_68"><catDesc xml:id="n543.019186">Ottonian</catDesc>
</category>
<category xml:id="keyword_78"><catDesc xml:id="n543.019187">Armenian</catDesc>
</category>
<category xml:id="keyword_73"><catDesc xml:id="n543.019188">Byzantine</catDesc>
</category>
<category xml:id="keyword_1"><catDesc xml:id="n543.019189">Abbasid</catDesc>
</category>
<category xml:id="keyword_79"><catDesc xml:id="n543.019190">Qajar</catDesc>
</category>
<category xml:id="keyword_65"><catDesc xml:id="n543.019191">Rajput</catDesc>
</category>
<category xml:id="keyword_7"><catDesc xml:id="n543.019192">Christian</catDesc>
</category>
<category xml:id="keyword_2"><catDesc xml:id="n543.019193">Arabic</catDesc>
</category>
<category xml:id="keyword_74"><catDesc xml:id="n543.019194">Austrian</catDesc>
</category>
<category xml:id="keyword_75"><catDesc xml:id="n543.019195">Dutch</catDesc>
</category>
<category xml:id="keyword_12"><catDesc xml:id="n543.019196">Egyptian</catDesc>
</category>
<category xml:id="keyword_13"><catDesc xml:id="n543.019197">Fatimid</catDesc>
</category>
<category xml:id="keyword_70"><catDesc xml:id="n543.019198">German</catDesc>
</category>
<category xml:id="keyword_19"><catDesc xml:id="n543.019199">Indian</catDesc>
</category>
<category xml:id="keyword_22"><catDesc xml:id="n543.019200">Islamic</catDesc>
</category>
<category xml:id="keyword_33"><catDesc xml:id="n543.019201">Persian</catDesc>
</category>
<category xml:id="keyword_37"><catDesc xml:id="n543.019202">Safavid</catDesc>
</category>
<category xml:id="keyword_41"><catDesc xml:id="n543.019203">Timurid</catDesc>
</category>
<category xml:id="keyword_43"><catDesc xml:id="n543.019204">Turkish</catDesc>
</category>
<category xml:id="keyword_44"><catDesc xml:id="n543.019205">Umayyad</catDesc>
</category>
<category xml:id="keyword_119"><catDesc xml:id="n543.019206">English</catDesc>
</category>
<category xml:id="keyword_120"><catDesc xml:id="n543.019207">French</catDesc>
</category>
<category xml:id="keyword_121"><catDesc xml:id="n543.019208">Flemish</catDesc>
</category>
<category xml:id="keyword_122"><catDesc xml:id="n543.019209">Ethiopian</catDesc>
</category>
<category xml:id="keyword_86"><catDesc xml:id="n543.019210">Carolingian</catDesc>
</category>
<category xml:id="keyword_6"><catDesc xml:id="n543.019211">Calligraphy</catDesc>
</category>
<category xml:id="keyword_9"><catDesc xml:id="n543.019212">Colophon</catDesc>
</category>
<category xml:id="keyword_14"><catDesc xml:id="n543.019213">Headpiece</catDesc>
</category>
<category xml:id="keyword_16"><catDesc xml:id="n543.019214">Illumination</catDesc>
</category>
<category xml:id="keyword_17"><catDesc xml:id="n543.019215">Illustration</catDesc>
</category>
<category xml:id="keyword_25"><catDesc xml:id="n543.019216">Medallion</catDesc>
</category>
<category xml:id="keyword_27"><catDesc xml:id="n543.019217">Miniature</catDesc>
</category>
<category xml:id="keyword_30"><catDesc xml:id="n543.019218">Ornament</catDesc>
</category>
<category xml:id="keyword_32"><catDesc xml:id="n543.019219">Painting</catDesc>
</category>
<category xml:id="keyword_59"><catDesc xml:id="n543.019220">Early Abbasid script</catDesc>
</category>
<category xml:id="keyword_76"><catDesc xml:id="n543.019221">Ragini</catDesc>
</category>
<category xml:id="keyword_71"><catDesc xml:id="n543.019222">Romanesque</catDesc>
</category>
<category xml:id="keyword_72"><catDesc xml:id="n543.019223">Gothic</catDesc>
</category>
<category xml:id="keyword_123"><catDesc xml:id="n543.019224">Watermark</catDesc>
</category>
<category xml:id="keyword_127"><catDesc xml:id="n543.019225">Grotesques</catDesc>
</category>
<category xml:id="keyword_128"><catDesc xml:id="n543.019226">Historiated initial</catDesc>
</category>
<category xml:id="keyword_129"><catDesc xml:id="n543.019227">Inhabited initial</catDesc>
</category>
<category xml:id="keyword_132"><catDesc xml:id="n543.019228">White-vine lettering</catDesc>
</category>
<category xml:id="keyword_134"><catDesc xml:id="n543.019229">Textura</catDesc>
</category>
<category xml:id="keyword_135"><catDesc xml:id="n543.019230">Batarda</catDesc>
</category>
<category xml:id="keyword_136"><catDesc xml:id="n543.019231">Humanistic</catDesc>
</category>
<category xml:id="keyword_137"><catDesc xml:id="n543.019232">Uncial</catDesc>
</category>
<category xml:id="keyword_66"><catDesc xml:id="n543.019233">Accordion book</catDesc>
</category>
<category xml:id="keyword_67"><catDesc xml:id="n543.019234">Album</catDesc>
</category>
<category xml:id="keyword_5"><catDesc xml:id="n543.019235">Book</catDesc>
</category>
<category xml:id="keyword_8"><catDesc xml:id="n543.019236">Codex</catDesc>
</category>
<category xml:id="keyword_24"><catDesc xml:id="n543.019237">Manuscript</catDesc>
</category>
<category xml:id="keyword_138"><catDesc xml:id="n543.019238">Heraldry</catDesc>
</category>
<category xml:id="keyword_103"><catDesc xml:id="n543.019239">Saint's Life</catDesc>
</category>
<category xml:id="keyword_143"><catDesc xml:id="n543.019240">Drawing</catDesc>
</category>
<category xml:id="keyword_140"><catDesc xml:id="n543.019241">Grisaille</catDesc>
</category>
<category xml:id="keyword_126"><catDesc xml:id="n543.019242">Binding</catDesc>
</category>
<category xml:id="keyword_58"><catDesc xml:id="n543.019243">New Abbasid style</catDesc>
</category>
<category xml:id="keyword_158"><catDesc xml:id="n543.019244">Musical notation</catDesc>
</category>
<category xml:id="keyword_159"><catDesc xml:id="n543.019245">Russia</catDesc>
</category>
<category xml:id="keyword_85"><catDesc xml:id="n543.019246">Romania</catDesc>
</category>
<category xml:id="keyword_144"><catDesc xml:id="n543.019247">Charter</catDesc>
</category>
<category xml:id="keyword_160"><catDesc xml:id="n543.019248">Russian</catDesc>
</category>
<category xml:id="keyword_141"><catDesc xml:id="n543.019249">Genealogy</catDesc>
</category>
<category xml:id="keyword_161"><catDesc xml:id="n543.019250">Mass book</catDesc>
</category>
<category xml:id="keyword_102"><catDesc xml:id="n543.019251">Prayer book</catDesc>
</category>
<category xml:id="keyword_162"><catDesc xml:id="n543.019252">Gospel Lectionary</catDesc>
</category>
<category xml:id="keyword_110"><catDesc xml:id="n543.019253">Psalter-Hours</catDesc>
</category>
<category xml:id="keyword_163"><catDesc xml:id="n543.019254">Treatise</catDesc>
</category>
<category xml:id="keyword_164"><catDesc xml:id="n543.019255">Grammar</catDesc>
</category>
<category xml:id="keyword_165"><catDesc xml:id="n543.019256">Gloss</catDesc>
</category>
<category xml:id="keyword_166"><catDesc xml:id="n543.019257">Pontifical</catDesc>
</category>
<category xml:id="keyword_167"><catDesc xml:id="n543.019258">Private devotional text</catDesc>
</category>
<category xml:id="keyword_168"><catDesc xml:id="n543.019259">Gradual</catDesc>
</category>
<category xml:id="keyword_169"><catDesc xml:id="n543.019260">Protective scroll</catDesc>
</category>
<category xml:id="keyword_170"><catDesc xml:id="n543.019261">Scroll</catDesc>
</category>
<category xml:id="keyword_147"><catDesc xml:id="n543.019262">10th century</catDesc>
</category>
<category xml:id="keyword_148"><catDesc xml:id="n543.019263">11th century</catDesc>
</category>
<category xml:id="keyword_149"><catDesc xml:id="n543.019264">12th century</catDesc>
</category>
<category xml:id="keyword_150"><catDesc xml:id="n543.019265">13th century</catDesc>
</category>
<category xml:id="keyword_151"><catDesc xml:id="n543.019266">14th century</catDesc>
</category>
<category xml:id="keyword_152"><catDesc xml:id="n543.019267">15th century</catDesc>
</category>
<category xml:id="keyword_153"><catDesc xml:id="n543.019268">16th century</catDesc>
</category>
<category xml:id="keyword_154"><catDesc xml:id="n543.019269">17th century</catDesc>
</category>
<category xml:id="keyword_155"><catDesc xml:id="n543.019270">18th century</catDesc>
</category>
<category xml:id="keyword_156"><catDesc xml:id="n543.019271">19th century</catDesc>
</category>
<category xml:id="keyword_157"><catDesc xml:id="n543.019272">20th century</catDesc>
</category>
<category xml:id="keyword_145"><catDesc xml:id="n543.019273">8th century</catDesc>
</category>
<category xml:id="keyword_146"><catDesc xml:id="n543.019274">9th century</catDesc>
</category>
<category xml:id="keyword_142"><catDesc xml:id="n543.019275">Block book</catDesc>
</category>
<category xml:id="keyword_130"><catDesc xml:id="n543.019276">Caroline minuscule</catDesc>
</category>
<category xml:id="keyword_48"><catDesc xml:id="n543.019277">Central Arab lands (Near East)</catDesc>
</category>
<category xml:id="keyword_82"><catDesc xml:id="n543.019278">Chart</catDesc>
</category>
<category xml:id="keyword_133"><catDesc xml:id="n543.019279">English secretary hand</catDesc>
</category>
<category xml:id="keyword_47"><catDesc xml:id="n543.019280">Kufic</catDesc>
</category>
<category xml:id="keyword_131"><catDesc xml:id="n543.019281">Gothic book hand</catDesc>
</category>
<category xml:id="keyword_125"><catDesc xml:id="n543.019282">Original binding</catDesc>
</category>
<category xml:id="keyword_124"><catDesc xml:id="n543.019283">Treasure binding</catDesc>
</category>
<category xml:id="keyword_171"><catDesc xml:id="n543.019284">Gospel Book</catDesc>
</category>
<category xml:id="keyword_172"><catDesc xml:id="n543.019285">Spanish</catDesc>
</category>
<category xml:id="keyword_173"><catDesc xml:id="n543.019286">Spain</catDesc>
</category>
<category xml:id="keyword_174"><catDesc xml:id="n543.019287">Italian</catDesc>
</category>
<category xml:id="keyword_175"><catDesc xml:id="n543.019288">Italy</catDesc>
</category>
<category xml:id="keyword_176"><catDesc xml:id="n543.019289">Coptic</catDesc>
</category>
<category xml:id="keyword_177"><catDesc xml:id="n543.019290">Scrapbook</catDesc>
</category>
<category xml:id="keyword_178"><catDesc xml:id="n543.019291">American</catDesc>
</category>
<category xml:id="keyword_179"><catDesc xml:id="n543.019292">United States</catDesc>
</category>
<category xml:id="keyword_180"><catDesc xml:id="n543.019293">Maryland Historical Society</catDesc>
</category>
<category xml:id="keyword_181"><catDesc xml:id="n543.019294">Friendship book</catDesc>
</category>
<category xml:id="keyword_182"><catDesc xml:id="n543.019295">Friendship</catDesc>
</category>
<category xml:id="keyword_183"><catDesc xml:id="n543.019296">Biography</catDesc>
</category>
<category xml:id="keyword_184"><catDesc xml:id="n543.019297">Judaism</catDesc>
</category>
<category xml:id="keyword_185"><catDesc xml:id="n543.019298">Talmud</catDesc>
</category>
</taxonomy>
<taxonomy xml:id="genres"><category xml:id="genre_1"><catDesc xml:id="n543.019299">Liturgical</catDesc>
</category>
<category xml:id="genre_2"><catDesc xml:id="n543.019300">Devotional</catDesc>
</category>
<category xml:id="genre_3"><catDesc xml:id="n543.019301">Scriptural</catDesc>
</category>
<category xml:id="genre_4"><catDesc xml:id="n543.019302">Theological</catDesc>
</category>
<category xml:id="genre_5"><catDesc xml:id="n543.019303">Legal</catDesc>
</category>
<category xml:id="genre_6"><catDesc xml:id="n543.019304">Historical</catDesc>
</category>
<category xml:id="genre_7"><catDesc xml:id="n543.019305">Scientific</catDesc>
</category>
<category xml:id="genre_8"><catDesc xml:id="n543.019306">Scientific -- Medical</catDesc>
</category>
<category xml:id="genre_9"><catDesc xml:id="n543.019307">Literary -- Prose</catDesc>
</category>
<category xml:id="genre_10"><catDesc xml:id="n543.019308">Literary -- Poetry</catDesc>
</category>
<category xml:id="genre_11"><catDesc xml:id="n543.019309">Philosophical</catDesc>
</category>
<category xml:id="genre_12"><catDesc xml:id="n543.019310">Astrological</catDesc>
</category>
<category xml:id="genre_13"><catDesc xml:id="n543.019311">Sufi</catDesc>
</category>
</taxonomy>
</classDecl>
</encodingDesc>
<profileDesc xml:id="n543.019312"><langUsage xml:id="n543.019313"><language xml:id="n543.019314" ident="en">English</language>
</langUsage>
<textClass xml:id="n543.019315"><catRef xml:id="n543.019316" target="#genre_10" scheme="#genres"/>
<catRef xml:id="n543.019317" target="#genre_12" scheme="#genres"/>
<keywords xml:id="n543.019318" scheme="#keywords"><list xml:id="n543.019319"><item xml:id="n543.019320">French</item>
<item xml:id="n543.019321">Book</item>
<item xml:id="n543.019322">Codex</item>
<item xml:id="n543.019323">Gloss</item>
<item xml:id="n543.019324">Humanistic</item>
<item xml:id="n543.019325">Manuscript</item>
<item xml:id="n543.019326">Romanesque</item>
<item xml:id="n543.019327">Walters Art Museum</item>
<item xml:id="n543.019328">France</item>
<item xml:id="n543.019329">12th century</item>
<item xml:id="n543.019330">Literature -- Poetry</item>
<item xml:id="n543.019331">Flemish</item>
<item xml:id="n543.019332">Flanders</item>
</list>
</keywords>
</textClass>
</profileDesc>
</teiHeader>
<facsimile xml:id="n543.019333"><surface xml:id="n543.018313" n="Upper board outside"><graphic url="master/W20_000001_1140.tif" width="9951px" xml:id="n543.018314" height="11978px"/>
<graphic url="300/W20_000001_300.tif" width="2119px" xml:id="n543.018315" height="3138px"/>
<graphic url="sap/W20_000001_sap.jpg" width="1215px" xml:id="n543.018316" height="1800px"/>
<graphic url="thumb/W20_000001_thumb.jpg" width="128px" xml:id="n543.018317" height="190px"/>
</surface>
<surface xml:id="n543.018318" n="Upper board inside"><graphic url="master/W20_000002_600.tif" width="5120px" xml:id="n543.018319" height="6314px"/>
<graphic url="300/W20_000002_300.tif" width="2069px" xml:id="n543.018320" height="3152px"/>
<graphic url="sap/W20_000002_sap.jpg" width="1182px" xml:id="n543.018321" height="1800px"/>
<graphic url="thumb/W20_000002_thumb.jpg" width="125px" xml:id="n543.018322" height="190px"/>
</surface>
<surface xml:id="n543.018323" n="Upper board inside bookplate lifted"><graphic url="master/W20_000131_600.tif" width="5159px" xml:id="n543.018324" height="6478px"/>
<graphic url="300/W20_000131_300.tif" width="2077px" xml:id="n543.018325" height="3226px"/>
<graphic url="sap/W20_000131_sap.jpg" width="1159px" xml:id="n543.018326" height="1800px"/>
<graphic url="thumb/W20_000131_thumb.jpg" width="122px" xml:id="n543.018327" height="190px"/>
</surface>
<surface xml:id="n543.018328" n="Front flyleaf i, r"><graphic url="master/W20_000003_600.tif" width="4964px" xml:id="n543.018329" height="6150px"/>
<graphic url="300/W20_000003_300.tif" width="1982px" xml:id="n543.018330" height="3047px"/>
<graphic url="sap/W20_000003_sap.jpg" width="1171px" xml:id="n543.018331" height="1800px"/>
<graphic url="thumb/W20_000003_thumb.jpg" width="124px" xml:id="n543.018332" height="190px"/>
</surface>
<surface xml:id="n543.018333" n="Front flyleaf i, v"><graphic url="master/W20_000004_600.tif" width="4985px" xml:id="n543.018334" height="6150px"/>
<graphic url="300/W20_000004_300.tif" width="1987px" xml:id="n543.018335" height="3041px"/>
<graphic url="sap/W20_000004_sap.jpg" width="1176px" xml:id="n543.018336" height="1800px"/>
<graphic url="thumb/W20_000004_thumb.jpg" width="124px" xml:id="n543.018337" height="190px"/>
</surface>
<surface xml:id="n543.018338" n="Front flyleaf ii, r"><graphic url="master/W20_000005_600.tif" width="4959px" xml:id="n543.018339" height="6171px"/>
<graphic url="300/W20_000005_300.tif" width="1989px" xml:id="n543.018340" height="3067px"/>
<graphic url="sap/W20_000005_sap.jpg" width="1167px" xml:id="n543.018341" height="1800px"/>
<graphic url="thumb/W20_000005_thumb.jpg" width="123px" xml:id="n543.018342" height="190px"/>
</surface>
<surface xml:id="n543.018343" n="Front flyleaf ii, v"><graphic url="master/W20_000006_600.tif" width="4980px" xml:id="n543.018344" height="6192px"/>
<graphic url="300/W20_000006_300.tif" width="2031px" xml:id="n543.018345" height="3081px"/>
<graphic url="sap/W20_000006_sap.jpg" width="1187px" xml:id="n543.018346" height="1800px"/>
<graphic url="thumb/W20_000006_thumb.jpg" width="125px" xml:id="n543.018347" height="190px"/>
</surface>
<surface xml:id="n543.018348" n="Front flyleaf iii, r"><graphic url="master/W20_000007_600.tif" width="4970px" xml:id="n543.018349" height="6155px"/>
<graphic url="300/W20_000007_300.tif" width="2008px" xml:id="n543.018350" height="3078px"/>
<graphic url="sap/W20_000007_sap.jpg" width="1174px" xml:id="n543.018351" height="1800px"/>
<graphic url="thumb/W20_000007_thumb.jpg" width="124px" xml:id="n543.018352" height="190px"/>
</surface>
<surface xml:id="n543.018353" n="Front flyleaf iii, v"><graphic url="master/W20_000008_600.tif" width="4980px" xml:id="n543.018354" height="6098px"/>
<graphic url="300/W20_000008_300.tif" width="1995px" xml:id="n543.018355" height="3046px"/>
<graphic url="sap/W20_000008_sap.jpg" width="1179px" xml:id="n543.018356" height="1800px"/>
<graphic url="thumb/W20_000008_thumb.jpg" width="124px" xml:id="n543.018357" height="190px"/>
</surface>
<surface xml:id="n543.018358" n="fol. 1r"><graphic url="master/W20_000009_600.tif" width="4927px" xml:id="n543.018359" height="6040px"/>
<graphic url="300/W20_000009_300.tif" width="1911px" xml:id="n543.018360" height="3020px"/>
<graphic url="sap/W20_000009_sap.jpg" width="1139px" xml:id="n543.018361" height="1800px"/>
<graphic url="thumb/W20_000009_thumb.jpg" width="120px" xml:id="n543.018362" height="190px"/>
</surface>
<surface xml:id="n543.018363" n="fol. 1v"><graphic url="master/W20_000010_600.tif" width="4724px" xml:id="n543.018364" height="5994px"/>
<graphic url="300/W20_000010_300.tif" width="1882px" xml:id="n543.018365" height="2987px"/>
<graphic url="sap/W20_000010_sap.jpg" width="1134px" xml:id="n543.018366" height="1800px"/>
<graphic url="thumb/W20_000010_thumb.jpg" width="120px" xml:id="n543.018367" height="190px"/>
</surface>
<surface xml:id="n543.018368" n="fol. 2r"><graphic url="master/W20_000011_600.tif" width="4980px" xml:id="n543.018369" height="6103px"/>
<graphic url="300/W20_000011_300.tif" width="1942px" xml:id="n543.018370" height="3023px"/>
<graphic url="sap/W20_000011_sap.jpg" width="1157px" xml:id="n543.018371" height="1800px"/>
<graphic url="thumb/W20_000011_thumb.jpg" width="122px" xml:id="n543.018372" height="190px"/>
</surface>
<surface xml:id="n543.018373" n="fol. 2v"><graphic url="master/W20_000012_600.tif" width="4980px" xml:id="n543.018374" height="6082px"/>
<graphic url="300/W20_000012_300.tif" width="1992px" xml:id="n543.018375" height="3039px"/>
<graphic url="sap/W20_000012_sap.jpg" width="1180px" xml:id="n543.018376" height="1800px"/>
<graphic url="thumb/W20_000012_thumb.jpg" width="125px" xml:id="n543.018377" height="190px"/>
</surface>
<surface xml:id="n543.018378" n="fol. 3r"><graphic url="master/W20_000013_600.tif" width="4901px" xml:id="n543.018379" height="6083px"/>
<graphic url="300/W20_000013_300.tif" width="1942px" xml:id="n543.018380" height="3036px"/>
<graphic url="sap/W20_000013_sap.jpg" width="1151px" xml:id="n543.018381" height="1800px"/>
<graphic url="thumb/W20_000013_thumb.jpg" width="122px" xml:id="n543.018382" height="190px"/>
</surface>
<surface xml:id="n543.018383" n="fol. 3v"><graphic url="master/W20_000014_600.tif" width="4980px" xml:id="n543.018384" height="6160px"/>
<graphic url="300/W20_000014_300.tif" width="1979px" xml:id="n543.018385" height="3078px"/>
<graphic url="sap/W20_000014_sap.jpg" width="1157px" xml:id="n543.018386" height="1800px"/>
<graphic url="thumb/W20_000014_thumb.jpg" width="122px" xml:id="n543.018387" height="190px"/>
</surface>
<surface xml:id="n543.018388" n="fol. 4r"><graphic url="master/W20_000015_600.tif" width="4828px" xml:id="n543.018389" height="6135px"/>
<graphic url="300/W20_000015_300.tif" width="1856px" xml:id="n543.018390" height="3015px"/>
<graphic url="sap/W20_000015_sap.jpg" width="1108px" xml:id="n543.018391" height="1800px"/>
<graphic url="thumb/W20_000015_thumb.jpg" width="117px" xml:id="n543.018392" height="190px"/>
</surface>
<surface xml:id="n543.018393" n="fol. 4v"><graphic url="master/W20_000016_600.tif" width="4750px" xml:id="n543.018394" height="6192px"/>
<graphic url="300/W20_000016_300.tif" width="1893px" xml:id="n543.018395" height="3062px"/>
<graphic url="sap/W20_000016_sap.jpg" width="1113px" xml:id="n543.018396" height="1800px"/>
<graphic url="thumb/W20_000016_thumb.jpg" width="117px" xml:id="n543.018397" height="190px"/>
</surface>
<surface xml:id="n543.018398" n="fol. 5r"><graphic url="master/W20_000017_600.tif" width="4855px" xml:id="n543.018399" height="6186px"/>
<graphic url="300/W20_000017_300.tif" width="1901px" xml:id="n543.018400" height="3088px"/>
<graphic url="sap/W20_000017_sap.jpg" width="1108px" xml:id="n543.018401" height="1800px"/>
<graphic url="thumb/W20_000017_thumb.jpg" width="117px" xml:id="n543.018402" height="190px"/>
</surface>
<surface xml:id="n543.018403" n="fol. 5v"><graphic url="master/W20_000018_600.tif" width="4750px" xml:id="n543.018404" height="6171px"/>
<graphic url="300/W20_000018_300.tif" width="1893px" xml:id="n543.018405" height="3059px"/>
<graphic url="sap/W20_000018_sap.jpg" width="1114px" xml:id="n543.018406" height="1800px"/>
<graphic url="thumb/W20_000018_thumb.jpg" width="118px" xml:id="n543.018407" height="190px"/>
</surface>
<surface xml:id="n543.018408" n="fol. 6r"><graphic url="master/W20_000019_600.tif" width="4824px" xml:id="n543.018409" height="6202px"/>
<graphic url="300/W20_000019_300.tif" width="1895px" xml:id="n543.018410" height="3073px"/>
<graphic url="sap/W20_000019_sap.jpg" width="1110px" xml:id="n543.018411" height="1800px"/>
<graphic url="thumb/W20_000019_thumb.jpg" width="117px" xml:id="n543.018412" height="190px"/>
</surface>
<surface xml:id="n543.018413" n="fol. 6v"><graphic url="master/W20_000020_600.tif" width="4776px" xml:id="n543.018414" height="6218px"/>
<graphic url="300/W20_000020_300.tif" width="1905px" xml:id="n543.018415" height="3090px"/>
<graphic url="sap/W20_000020_sap.jpg" width="1110px" xml:id="n543.018416" height="1800px"/>
<graphic url="thumb/W20_000020_thumb.jpg" width="117px" xml:id="n543.018417" height="190px"/>
</surface>
<surface xml:id="n543.018418" n="fol. 7r"><graphic url="master/W20_000021_600.tif" width="3661px" xml:id="n543.018419" height="6088px"/>
<graphic url="300/W20_000021_300.tif" width="1186px" xml:id="n543.018420" height="3039px"/>
<graphic url="sap/W20_000021_sap.jpg" width="703px" xml:id="n543.018421" height="1800px"/>
<graphic url="thumb/W20_000021_thumb.jpg" width="74px" xml:id="n543.018422" height="190px"/>
</surface>
<surface xml:id="n543.018423" n="fol. 7v"><graphic url="master/W20_000022_600.tif" width="4573px" xml:id="n543.018424" height="6088px"/>
<graphic url="300/W20_000022_300.tif" width="1225px" xml:id="n543.018425" height="3039px"/>
<graphic url="sap/W20_000022_sap.jpg" width="726px" xml:id="n543.018426" height="1800px"/>
<graphic url="thumb/W20_000022_thumb.jpg" width="77px" xml:id="n543.018427" height="190px"/>
</surface>
<surface xml:id="n543.018428" n="fol. 8r"><graphic url="master/W20_000023_600.tif" width="4719px" xml:id="n543.018429" height="6114px"/>
<graphic url="300/W20_000023_300.tif" width="1825px" xml:id="n543.018430" height="3028px"/>
<graphic url="sap/W20_000023_sap.jpg" width="1085px" xml:id="n543.018431" height="1800px"/>
<graphic url="thumb/W20_000023_thumb.jpg" width="115px" xml:id="n543.018432" height="190px"/>
</surface>
<surface xml:id="n543.018433" n="fol. 8v"><graphic url="master/W20_000024_600.tif" width="4829px" xml:id="n543.018434" height="6171px"/>
<graphic url="300/W20_000024_300.tif" width="1833px" xml:id="n543.018435" height="3067px"/>
<graphic url="sap/W20_000024_sap.jpg" width="1076px" xml:id="n543.018436" height="1800px"/>
<graphic url="thumb/W20_000024_thumb.jpg" width="114px" xml:id="n543.018437" height="190px"/>
</surface>
<surface xml:id="n543.018438" n="fol. 9r"><graphic url="master/W20_000025_600.tif" width="4817px" xml:id="n543.018439" height="6343px"/>
<graphic url="300/W20_000025_300.tif" width="1885px" xml:id="n543.018440" height="3115px"/>
<graphic url="sap/W20_000025_sap.jpg" width="1089px" xml:id="n543.018441" height="1800px"/>
<graphic url="thumb/W20_000025_thumb.jpg" width="115px" xml:id="n543.018442" height="190px"/>
</surface>
<surface xml:id="n543.018443" n="fol. 9v"><graphic url="master/W20_000026_600.tif" width="4880px" xml:id="n543.018444" height="6155px"/>
<graphic url="300/W20_000026_300.tif" width="1900px" xml:id="n543.018445" height="3054px"/>
<graphic url="sap/W20_000026_sap.jpg" width="1120px" xml:id="n543.018446" height="1800px"/>
<graphic url="thumb/W20_000026_thumb.jpg" width="118px" xml:id="n543.018447" height="190px"/>
</surface>
<surface xml:id="n543.018448" n="fol. 10r"><graphic url="master/W20_000027_600.tif" width="4797px" xml:id="n543.018449" height="6088px"/>
<graphic url="300/W20_000027_300.tif" width="1888px" xml:id="n543.018450" height="3015px"/>
<graphic url="sap/W20_000027_sap.jpg" width="1127px" xml:id="n543.018451" height="1800px"/>
<graphic url="thumb/W20_000027_thumb.jpg" width="119px" xml:id="n543.018452" height="190px"/>
</surface>
<surface xml:id="n543.018453" n="fol. 10v"><graphic url="master/W20_000028_600.tif" width="4855px" xml:id="n543.018454" height="6155px"/>
<graphic url="300/W20_000028_300.tif" width="1911px" xml:id="n543.018455" height="3067px"/>
<graphic url="sap/W20_000028_sap.jpg" width="1122px" xml:id="n543.018456" height="1800px"/>
<graphic url="thumb/W20_000028_thumb.jpg" width="118px" xml:id="n543.018457" height="190px"/>
</surface>
<surface xml:id="n543.018458" n="fol. 11r"><graphic url="master/W20_000029_600.tif" width="4897px" xml:id="n543.018459" height="6234px"/>
<graphic url="300/W20_000029_300.tif" width="1911px" xml:id="n543.018460" height="3114px"/>
<graphic url="sap/W20_000029_sap.jpg" width="1104px" xml:id="n543.018461" height="1800px"/>
<graphic url="thumb/W20_000029_thumb.jpg" width="117px" xml:id="n543.018462" height="190px"/>
</surface>
<surface xml:id="n543.018463" n="fol. 11v"><graphic url="master/W20_000030_600.tif" width="4834px" xml:id="n543.018464" height="6218px"/>
<graphic url="300/W20_000030_300.tif" width="1921px" xml:id="n543.018465" height="3090px"/>
<graphic url="sap/W20_000030_sap.jpg" width="1119px" xml:id="n543.018466" height="1800px"/>
<graphic url="thumb/W20_000030_thumb.jpg" width="118px" xml:id="n543.018467" height="190px"/>
</surface>
<surface xml:id="n543.018468" n="fol. 12r"><graphic url="master/W20_000031_600.tif" width="4917px" xml:id="n543.018469" height="6187px"/>
<graphic url="300/W20_000031_300.tif" width="1919px" xml:id="n543.018470" height="3086px"/>
<graphic url="sap/W20_000031_sap.jpg" width="1119px" xml:id="n543.018471" height="1800px"/>
<graphic url="thumb/W20_000031_thumb.jpg" width="118px" xml:id="n543.018472" height="190px"/>
</surface>
<surface xml:id="n543.018473" n="fol. 12v"><graphic url="master/W20_000032_600.tif" width="4839px" xml:id="n543.018474" height="6182px"/>
<graphic url="300/W20_000032_300.tif" width="1919px" xml:id="n543.018475" height="3057px"/>
<graphic url="sap/W20_000032_sap.jpg" width="1130px" xml:id="n543.018476" height="1800px"/>
<graphic url="thumb/W20_000032_thumb.jpg" width="119px" xml:id="n543.018477" height="190px"/>
</surface>
<surface xml:id="n543.018478" n="fol. 13r"><graphic url="master/W20_000033_600.tif" width="4880px" xml:id="n543.018479" height="6218px"/>
<graphic url="300/W20_000033_300.tif" width="1937px" xml:id="n543.018480" height="3099px"/>
<graphic url="sap/W20_000033_sap.jpg" width="1125px" xml:id="n543.018481" height="1800px"/>
<graphic url="thumb/W20_000033_thumb.jpg" width="119px" xml:id="n543.018482" height="190px"/>
</surface>
<surface xml:id="n543.018483" n="fol. 13v"><graphic url="master/W20_000034_600.tif" width="4834px" xml:id="n543.018484" height="6139px"/>
<graphic url="300/W20_000034_300.tif" width="1937px" xml:id="n543.018485" height="3057px"/>
<graphic url="sap/W20_000034_sap.jpg" width="1141px" xml:id="n543.018486" height="1800px"/>
<graphic url="thumb/W20_000034_thumb.jpg" width="120px" xml:id="n543.018487" height="190px"/>
</surface>
<surface xml:id="n543.018488" n="fol. 14r"><graphic url="master/W20_000035_600.tif" width="4875px" xml:id="n543.018489" height="6244px"/>
<graphic url="300/W20_000035_300.tif" width="1929px" xml:id="n543.018490" height="3088px"/>
<graphic url="sap/W20_000035_sap.jpg" width="1124px" xml:id="n543.018491" height="1800px"/>
<graphic url="thumb/W20_000035_thumb.jpg" width="119px" xml:id="n543.018492" height="190px"/>
</surface>
<surface xml:id="n543.018493" n="fol. 14v"><graphic url="master/W20_000036_600.tif" width="4834px" xml:id="n543.018494" height="6213px"/>
<graphic url="300/W20_000036_300.tif" width="1935px" xml:id="n543.018495" height="3039px"/>
<graphic url="sap/W20_000036_sap.jpg" width="1146px" xml:id="n543.018496" height="1800px"/>
<graphic url="thumb/W20_000036_thumb.jpg" width="121px" xml:id="n543.018497" height="190px"/>
</surface>
<surface xml:id="n543.018498" n="fol. 15r"><graphic url="master/W20_000037_600.tif" width="4912px" xml:id="n543.018499" height="6166px"/>
<graphic url="300/W20_000037_300.tif" width="1927px" xml:id="n543.018500" height="3083px"/>
<graphic url="sap/W20_000037_sap.jpg" width="1125px" xml:id="n543.018501" height="1800px"/>
<graphic url="thumb/W20_000037_thumb.jpg" width="119px" xml:id="n543.018502" height="190px"/>
</surface>
<surface xml:id="n543.018503" n="fol. 15v"><graphic url="master/W20_000038_600.tif" width="4828px" xml:id="n543.018504" height="6234px"/>
<graphic url="300/W20_000038_300.tif" width="1927px" xml:id="n543.018505" height="3052px"/>
<graphic url="sap/W20_000038_sap.jpg" width="1136px" xml:id="n543.018506" height="1800px"/>
<graphic url="thumb/W20_000038_thumb.jpg" width="120px" xml:id="n543.018507" height="190px"/>
</surface>
<surface xml:id="n543.018508" n="fol. 16r"><graphic url="master/W20_000039_600.tif" width="4896px" xml:id="n543.018509" height="6264px"/>
<graphic url="300/W20_000039_300.tif" width="1932px" xml:id="n543.018510" height="3132px"/>
<graphic url="sap/W20_000039_sap.jpg" width="1110px" xml:id="n543.018511" height="1800px"/>
<graphic url="thumb/W20_000039_thumb.jpg" width="117px" xml:id="n543.018512" height="190px"/>
</surface>
<surface xml:id="n543.018513" n="fol. 16v"><graphic url="master/W20_000040_600.tif" width="4813px" xml:id="n543.018514" height="6134px"/>
<graphic url="300/W20_000040_300.tif" width="1908px" xml:id="n543.018515" height="3067px"/>
<graphic url="sap/W20_000040_sap.jpg" width="1120px" xml:id="n543.018516" height="1800px"/>
<graphic url="thumb/W20_000040_thumb.jpg" width="118px" xml:id="n543.018517" height="190px"/>
</surface>
<surface xml:id="n543.018518" n="fol. 17r"><graphic url="master/W20_000041_600.tif" width="4860px" xml:id="n543.018519" height="6275px"/>
<graphic url="300/W20_000041_300.tif" width="1914px" xml:id="n543.018520" height="3127px"/>
<graphic url="sap/W20_000041_sap.jpg" width="1101px" xml:id="n543.018521" height="1800px"/>
<graphic url="thumb/W20_000041_thumb.jpg" width="116px" xml:id="n543.018522" height="190px"/>
</surface>
<surface xml:id="n543.018523" n="fol. 17v"><graphic url="master/W20_000042_600.tif" width="4834px" xml:id="n543.018524" height="6150px"/>
<graphic url="300/W20_000042_300.tif" width="1922px" xml:id="n543.018525" height="3075px"/>
<graphic url="sap/W20_000042_sap.jpg" width="1125px" xml:id="n543.018526" height="1800px"/>
<graphic url="thumb/W20_000042_thumb.jpg" width="119px" xml:id="n543.018527" height="190px"/>
</surface>
<surface xml:id="n543.018528" n="fol. 18r"><graphic url="master/W20_000043_600.tif" width="4876px" xml:id="n543.018529" height="6270px"/>
<graphic url="300/W20_000043_300.tif" width="1908px" xml:id="n543.018530" height="3124px"/>
<graphic url="sap/W20_000043_sap.jpg" width="1099px" xml:id="n543.018531" height="1800px"/>
<graphic url="thumb/W20_000043_thumb.jpg" width="116px" xml:id="n543.018532" height="190px"/>
</surface>
<surface xml:id="n543.018533" n="fol. 18v"><graphic url="master/W20_000044_600.tif" width="4865px" xml:id="n543.018534" height="6129px"/>
<graphic url="300/W20_000044_300.tif" width="1942px" xml:id="n543.018535" height="3059px"/>
<graphic url="sap/W20_000044_sap.jpg" width="1143px" xml:id="n543.018536" height="1800px"/>
<graphic url="thumb/W20_000044_thumb.jpg" width="121px" xml:id="n543.018537" height="190px"/>
</surface>
<surface xml:id="n543.018538" n="fol. 19r"><graphic url="master/W20_000045_600.tif" width="4907px" xml:id="n543.018539" height="6238px"/>
<graphic url="300/W20_000045_300.tif" width="1911px" xml:id="n543.018540" height="3114px"/>
<graphic url="sap/W20_000045_sap.jpg" width="1105px" xml:id="n543.018541" height="1800px"/>
<graphic url="thumb/W20_000045_thumb.jpg" width="117px" xml:id="n543.018542" height="190px"/>
</surface>
<surface xml:id="n543.018543" n="fol. 19v"><graphic url="master/W20_000046_600.tif" width="4812px" xml:id="n543.018544" height="6119px"/>
<graphic url="300/W20_000046_300.tif" width="1895px" xml:id="n543.018545" height="3039px"/>
<graphic url="sap/W20_000046_sap.jpg" width="1123px" xml:id="n543.018546" height="1800px"/>
<graphic url="thumb/W20_000046_thumb.jpg" width="118px" xml:id="n543.018547" height="190px"/>
</surface>
<surface xml:id="n543.018548" n="fol. 20r"><graphic url="master/W20_000047_600.tif" width="4729px" xml:id="n543.018549" height="6228px"/>
<graphic url="300/W20_000047_300.tif" width="1849px" xml:id="n543.018550" height="3109px"/>
<graphic url="sap/W20_000047_sap.jpg" width="1070px" xml:id="n543.018551" height="1800px"/>
<graphic url="thumb/W20_000047_thumb.jpg" width="113px" xml:id="n543.018552" height="190px"/>
</surface>
<surface xml:id="n543.018553" n="fol. 20v"><graphic url="master/W20_000048_600.tif" width="4813px" xml:id="n543.018554" height="6103px"/>
<graphic url="300/W20_000048_300.tif" width="1875px" xml:id="n543.018555" height="3049px"/>
<graphic url="sap/W20_000048_sap.jpg" width="1107px" xml:id="n543.018556" height="1800px"/>
<graphic url="thumb/W20_000048_thumb.jpg" width="117px" xml:id="n543.018557" height="190px"/>
</surface>
<surface xml:id="n543.018558" n="fol. 21r"><graphic url="master/W20_000049_600.tif" width="4740px" xml:id="n543.018559" height="6118px"/>
<graphic url="300/W20_000049_300.tif" width="1849px" xml:id="n543.018560" height="3054px"/>
<graphic url="sap/W20_000049_sap.jpg" width="1089px" xml:id="n543.018561" height="1800px"/>
<graphic url="thumb/W20_000049_thumb.jpg" width="115px" xml:id="n543.018562" height="190px"/>
</surface>
<surface xml:id="n543.018563" n="fol. 21v"><graphic url="master/W20_000050_600.tif" width="4807px" xml:id="n543.018564" height="6223px"/>
<graphic url="300/W20_000050_300.tif" width="1903px" xml:id="n543.018565" height="3094px"/>
<graphic url="sap/W20_000050_sap.jpg" width="1107px" xml:id="n543.018566" height="1800px"/>
<graphic url="thumb/W20_000050_thumb.jpg" width="117px" xml:id="n543.018567" height="190px"/>
</surface>
<surface xml:id="n543.018568" n="fol. 22r"><graphic url="master/W20_000051_600.tif" width="4688px" xml:id="n543.018569" height="6166px"/>
<graphic url="300/W20_000051_300.tif" width="1804px" xml:id="n543.018570" height="3073px"/>
<graphic url="sap/W20_000051_sap.jpg" width="1057px" xml:id="n543.018571" height="1800px"/>
<graphic url="thumb/W20_000051_thumb.jpg" width="112px" xml:id="n543.018572" height="190px"/>
</surface>
<surface xml:id="n543.018573" n="fol. 22v"><graphic url="master/W20_000052_600.tif" width="4782px" xml:id="n543.018574" height="6129px"/>
<graphic url="300/W20_000052_300.tif" width="1864px" xml:id="n543.018575" height="3052px"/>
<graphic url="sap/W20_000052_sap.jpg" width="1100px" xml:id="n543.018576" height="1800px"/>
<graphic url="thumb/W20_000052_thumb.jpg" width="116px" xml:id="n543.018577" height="190px"/>
</surface>
<surface xml:id="n543.018578" n="fol. 23r"><graphic url="master/W20_000053_600.tif" width="4672px" xml:id="n543.018579" height="6139px"/>
<graphic url="300/W20_000053_300.tif" width="1820px" xml:id="n543.018580" height="3070px"/>
<graphic url="sap/W20_000053_sap.jpg" width="1067px" xml:id="n543.018581" height="1800px"/>
<graphic url="thumb/W20_000053_thumb.jpg" width="113px" xml:id="n543.018582" height="190px"/>
</surface>
<surface xml:id="n543.018583" n="fol. 23v"><graphic url="master/W20_000054_600.tif" width="4656px" xml:id="n543.018584" height="6134px"/>
<graphic url="300/W20_000054_300.tif" width="1804px" xml:id="n543.018585" height="3062px"/>
<graphic url="sap/W20_000054_sap.jpg" width="1060px" xml:id="n543.018586" height="1800px"/>
<graphic url="thumb/W20_000054_thumb.jpg" width="112px" xml:id="n543.018587" height="190px"/>
</surface>
<surface xml:id="n543.018588" n="fol. 24r"><graphic url="master/W20_000055_600.tif" width="4672px" xml:id="n543.018589" height="6082px"/>
<graphic url="300/W20_000055_300.tif" width="1799px" xml:id="n543.018590" height="3036px"/>
<graphic url="sap/W20_000055_sap.jpg" width="1066px" xml:id="n543.018591" height="1800px"/>
<graphic url="thumb/W20_000055_thumb.jpg" width="113px" xml:id="n543.018592" height="190px"/>
</surface>
<surface xml:id="n543.018593" n="fol. 24v"><graphic url="master/W20_000056_600.tif" width="4693px" xml:id="n543.018594" height="6166px"/>
<graphic url="300/W20_000056_300.tif" width="1843px" xml:id="n543.018595" height="3083px"/>
<graphic url="sap/W20_000056_sap.jpg" width="1076px" xml:id="n543.018596" height="1800px"/>
<graphic url="thumb/W20_000056_thumb.jpg" width="114px" xml:id="n543.018597" height="190px"/>
</surface>
<surface xml:id="n543.018598" n="fol. 25r"><graphic url="master/W20_000057_600.tif" width="4687px" xml:id="n543.018599" height="6176px"/>
<graphic url="300/W20_000057_300.tif" width="1843px" xml:id="n543.018600" height="3086px"/>
<graphic url="sap/W20_000057_sap.jpg" width="1075px" xml:id="n543.018601" height="1800px"/>
<graphic url="thumb/W20_000057_thumb.jpg" width="113px" xml:id="n543.018602" height="190px"/>
</surface>
<surface xml:id="n543.018603" n="fol. 25v"><graphic url="master/W20_000058_600.tif" width="4823px" xml:id="n543.018604" height="6203px"/>
<graphic url="300/W20_000058_300.tif" width="1914px" xml:id="n543.018605" height="3102px"/>
<graphic url="sap/W20_000058_sap.jpg" width="1111px" xml:id="n543.018606" height="1800px"/>
<graphic url="thumb/W20_000058_thumb.jpg" width="117px" xml:id="n543.018607" height="190px"/>
</surface>
<surface xml:id="n543.018608" n="fol. 26r"><graphic url="master/W20_000059_600.tif" width="4755px" xml:id="n543.018609" height="6207px"/>
<graphic url="300/W20_000059_300.tif" width="1890px" xml:id="n543.018610" height="3099px"/>
<graphic url="sap/W20_000059_sap.jpg" width="1098px" xml:id="n543.018611" height="1800px"/>
<graphic url="thumb/W20_000059_thumb.jpg" width="116px" xml:id="n543.018612" height="190px"/>
</surface>
<surface xml:id="n543.018613" n="fol. 26v"><graphic url="master/W20_000060_600.tif" width="4792px" xml:id="n543.018614" height="6056px"/>
<graphic url="300/W20_000060_300.tif" width="1882px" xml:id="n543.018615" height="3023px"/>
<graphic url="sap/W20_000060_sap.jpg" width="1121px" xml:id="n543.018616" height="1800px"/>
<graphic url="thumb/W20_000060_thumb.jpg" width="118px" xml:id="n543.018617" height="190px"/>
</surface>
<surface xml:id="n543.018618" n="fol. 27r"><graphic url="master/W20_000061_600.tif" width="4657px" xml:id="n543.018619" height="6155px"/>
<graphic url="300/W20_000061_300.tif" width="1857px" xml:id="n543.018620" height="3062px"/>
<graphic url="sap/W20_000061_sap.jpg" width="1091px" xml:id="n543.018621" height="1800px"/>
<graphic url="thumb/W20_000061_thumb.jpg" width="115px" xml:id="n543.018622" height="190px"/>
</surface>
<surface xml:id="n543.018623" n="fol. 27v"><graphic url="master/W20_000062_600.tif" width="4724px" xml:id="n543.018624" height="6066px"/>
<graphic url="300/W20_000062_300.tif" width="1888px" xml:id="n543.018625" height="3033px"/>
<graphic url="sap/W20_000062_sap.jpg" width="1120px" xml:id="n543.018626" height="1800px"/>
<graphic url="thumb/W20_000062_thumb.jpg" width="118px" xml:id="n543.018627" height="190px"/>
</surface>
<surface xml:id="n543.018628" n="fol. 28r"><graphic url="master/W20_000063_600.tif" width="4703px" xml:id="n543.018629" height="6155px"/>
<graphic url="300/W20_000063_300.tif" width="1859px" xml:id="n543.018630" height="3070px"/>
<graphic url="sap/W20_000063_sap.jpg" width="1090px" xml:id="n543.018631" height="1800px"/>
<graphic url="thumb/W20_000063_thumb.jpg" width="115px" xml:id="n543.018632" height="190px"/>
</surface>
<surface xml:id="n543.018633" n="fol. 28v"><graphic url="master/W20_000064_600.tif" width="4870px" xml:id="n543.018634" height="6155px"/>
<graphic url="300/W20_000064_300.tif" width="1947px" xml:id="n543.018635" height="3077px"/>
<graphic url="sap/W20_000064_sap.jpg" width="1139px" xml:id="n543.018636" height="1800px"/>
<graphic url="thumb/W20_000064_thumb.jpg" width="120px" xml:id="n543.018637" height="190px"/>
</surface>
<surface xml:id="n543.018638" n="fol. 29r"><graphic url="master/W20_000065_600.tif" width="4713px" xml:id="n543.018639" height="6197px"/>
<graphic url="300/W20_000065_300.tif" width="1872px" xml:id="n543.018640" height="3075px"/>
<graphic url="sap/W20_000065_sap.jpg" width="1096px" xml:id="n543.018641" height="1800px"/>
<graphic url="thumb/W20_000065_thumb.jpg" width="116px" xml:id="n543.018642" height="190px"/>
</surface>
<surface xml:id="n543.018643" n="fol. 29v"><graphic url="master/W20_000066_600.tif" width="4912px" xml:id="n543.018644" height="6124px"/>
<graphic url="300/W20_000066_300.tif" width="1943px" xml:id="n543.018645" height="3062px"/>
<graphic url="sap/W20_000066_sap.jpg" width="1142px" xml:id="n543.018646" height="1800px"/>
<graphic url="thumb/W20_000066_thumb.jpg" width="121px" xml:id="n543.018647" height="190px"/>
</surface>
<surface xml:id="n543.018648" n="fol. 30r"><graphic url="master/W20_000067_600.tif" width="4719px" xml:id="n543.018649" height="6187px"/>
<graphic url="300/W20_000067_300.tif" width="1864px" xml:id="n543.018650" height="3094px"/>
<graphic url="sap/W20_000067_sap.jpg" width="1085px" xml:id="n543.018651" height="1800px"/>
<graphic url="thumb/W20_000067_thumb.jpg" width="114px" xml:id="n543.018652" height="190px"/>
</surface>
<surface xml:id="n543.018653" n="fol. 30v"><graphic url="master/W20_000068_600.tif" width="4823px" xml:id="n543.018654" height="6223px"/>
<graphic url="300/W20_000068_300.tif" width="1921px" xml:id="n543.018655" height="3083px"/>
<graphic url="sap/W20_000068_sap.jpg" width="1122px" xml:id="n543.018656" height="1800px"/>
<graphic url="thumb/W20_000068_thumb.jpg" width="118px" xml:id="n543.018657" height="190px"/>
</surface>
<surface xml:id="n543.018658" n="fol. 31r"><graphic url="master/W20_000069_600.tif" width="4776px" xml:id="n543.018659" height="6239px"/>
<graphic url="300/W20_000069_300.tif" width="1898px" xml:id="n543.018660" height="3109px"/>
<graphic url="sap/W20_000069_sap.jpg" width="1099px" xml:id="n543.018661" height="1800px"/>
<graphic url="thumb/W20_000069_thumb.jpg" width="116px" xml:id="n543.018662" height="190px"/>
</surface>
<surface xml:id="n543.018663" n="fol. 31v"><graphic url="master/W20_000070_600.tif" width="4813px" xml:id="n543.018664" height="6119px"/>
<graphic url="300/W20_000070_300.tif" width="1898px" xml:id="n543.018665" height="3060px"/>
<graphic url="sap/W20_000070_sap.jpg" width="1117px" xml:id="n543.018666" height="1800px"/>
<graphic url="thumb/W20_000070_thumb.jpg" width="118px" xml:id="n543.018667" height="190px"/>
</surface>
<surface xml:id="n543.018668" n="fol. 32r"><graphic url="master/W20_000071_600.tif" width="4765px" xml:id="n543.018669" height="6124px"/>
<graphic url="300/W20_000071_300.tif" width="1851px" xml:id="n543.018670" height="3057px"/>
<graphic url="sap/W20_000071_sap.jpg" width="1090px" xml:id="n543.018671" height="1800px"/>
<graphic url="thumb/W20_000071_thumb.jpg" width="115px" xml:id="n543.018672" height="190px"/>
</surface>
<surface xml:id="n543.018673" n="fol. 32v"><graphic url="master/W20_000072_600.tif" width="4829px" xml:id="n543.018674" height="6280px"/>
<graphic url="300/W20_000072_300.tif" width="1911px" xml:id="n543.018675" height="3086px"/>
<graphic url="sap/W20_000072_sap.jpg" width="1115px" xml:id="n543.018676" height="1800px"/>
<graphic url="thumb/W20_000072_thumb.jpg" width="118px" xml:id="n543.018677" height="190px"/>
</surface>
<surface xml:id="n543.018678" n="fol. 33r"><graphic url="master/W20_000073_600.tif" width="4802px" xml:id="n543.018679" height="6197px"/>
<graphic url="300/W20_000073_300.tif" width="1914px" xml:id="n543.018680" height="3099px"/>
<graphic url="sap/W20_000073_sap.jpg" width="1112px" xml:id="n543.018681" height="1800px"/>
<graphic url="thumb/W20_000073_thumb.jpg" width="117px" xml:id="n543.018682" height="190px"/>
</surface>
<surface xml:id="n543.018683" n="fol. 33v"><graphic url="master/W20_000074_600.tif" width="4849px" xml:id="n543.018684" height="6171px"/>
<graphic url="300/W20_000074_300.tif" width="1924px" xml:id="n543.018685" height="3083px"/>
<graphic url="sap/W20_000074_sap.jpg" width="1123px" xml:id="n543.018686" height="1800px"/>
<graphic url="thumb/W20_000074_thumb.jpg" width="119px" xml:id="n543.018687" height="190px"/>
</surface>
<surface xml:id="n543.018688" n="fol. 34r"><graphic url="master/W20_000075_600.tif" width="4770px" xml:id="n543.018689" height="6182px"/>
<graphic url="300/W20_000075_300.tif" width="1903px" xml:id="n543.018690" height="3088px"/>
<graphic url="sap/W20_000075_sap.jpg" width="1109px" xml:id="n543.018691" height="1800px"/>
<graphic url="thumb/W20_000075_thumb.jpg" width="117px" xml:id="n543.018692" height="190px"/>
</surface>
<surface xml:id="n543.018693" n="fol. 34v"><graphic url="master/W20_000076_600.tif" width="4781px" xml:id="n543.018694" height="6244px"/>
<graphic url="300/W20_000076_300.tif" width="1918px" xml:id="n543.018695" height="3095px"/>
<graphic url="sap/W20_000076_sap.jpg" width="1115px" xml:id="n543.018696" height="1800px"/>
<graphic url="thumb/W20_000076_thumb.jpg" width="118px" xml:id="n543.018697" height="190px"/>
</surface>
<surface xml:id="n543.018698" n="fol. 35r"><graphic url="master/W20_000077_600.tif" width="4807px" xml:id="n543.018699" height="6249px"/>
<graphic url="300/W20_000077_300.tif" width="1911px" xml:id="n543.018700" height="3124px"/>
<graphic url="sap/W20_000077_sap.jpg" width="1101px" xml:id="n543.018701" height="1800px"/>
<graphic url="thumb/W20_000077_thumb.jpg" width="116px" xml:id="n543.018702" height="190px"/>
</surface>
<surface xml:id="n543.018703" n="fol. 35v"><graphic url="master/W20_000078_600.tif" width="4838px" xml:id="n543.018704" height="6218px"/>
<graphic url="300/W20_000078_300.tif" width="1908px" xml:id="n543.018705" height="3062px"/>
<graphic url="sap/W20_000078_sap.jpg" width="1122px" xml:id="n543.018706" height="1800px"/>
<graphic url="thumb/W20_000078_thumb.jpg" width="118px" xml:id="n543.018707" height="190px"/>
</surface>
<surface xml:id="n543.018708" n="fol. 36r"><graphic url="master/W20_000079_600.tif" width="4803px" xml:id="n543.018709" height="6286px"/>
<graphic url="300/W20_000079_300.tif" width="1913px" xml:id="n543.018710" height="3090px"/>
<graphic url="sap/W20_000079_sap.jpg" width="1114px" xml:id="n543.018711" height="1800px"/>
<graphic url="thumb/W20_000079_thumb.jpg" width="118px" xml:id="n543.018712" height="190px"/>
</surface>
<surface xml:id="n543.018713" n="fol. 36v"><graphic url="master/W20_000080_600.tif" width="4818px" xml:id="n543.018714" height="6171px"/>
<graphic url="300/W20_000080_300.tif" width="1903px" xml:id="n543.018715" height="3057px"/>
<graphic url="sap/W20_000080_sap.jpg" width="1121px" xml:id="n543.018716" height="1800px"/>
<graphic url="thumb/W20_000080_thumb.jpg" width="118px" xml:id="n543.018717" height="190px"/>
</surface>
<surface xml:id="n543.018718" n="fol. 37r"><graphic url="master/W20_000081_600.tif" width="4797px" xml:id="n543.018719" height="6337px"/>
<graphic url="300/W20_000081_300.tif" width="1924px" xml:id="n543.018720" height="3146px"/>
<graphic url="sap/W20_000081_sap.jpg" width="1101px" xml:id="n543.018721" height="1800px"/>
<graphic url="thumb/W20_000081_thumb.jpg" width="116px" xml:id="n543.018722" height="190px"/>
</surface>
<surface xml:id="n543.018723" n="fol. 37v"><graphic url="master/W20_000082_600.tif" width="4828px" xml:id="n543.018724" height="6238px"/>
<graphic url="300/W20_000082_300.tif" width="1906px" xml:id="n543.018725" height="3073px"/>
<graphic url="sap/W20_000082_sap.jpg" width="1116px" xml:id="n543.018726" height="1800px"/>
<graphic url="thumb/W20_000082_thumb.jpg" width="118px" xml:id="n543.018727" height="190px"/>
</surface>
<surface xml:id="n543.018728" n="fol. 38r"><graphic url="master/W20_000083_600.tif" width="4776px" xml:id="n543.018729" height="6145px"/>
<graphic url="300/W20_000083_300.tif" width="1898px" xml:id="n543.018730" height="3073px"/>
<graphic url="sap/W20_000083_sap.jpg" width="1112px" xml:id="n543.018731" height="1800px"/>
<graphic url="thumb/W20_000083_thumb.jpg" width="117px" xml:id="n543.018732" height="190px"/>
</surface>
<surface xml:id="n543.018733" n="fol. 38v"><graphic url="master/W20_000084_600.tif" width="4834px" xml:id="n543.018734" height="6191px"/>
<graphic url="300/W20_000084_300.tif" width="1890px" xml:id="n543.018735" height="3093px"/>
<graphic url="sap/W20_000084_sap.jpg" width="1100px" xml:id="n543.018736" height="1800px"/>
<graphic url="thumb/W20_000084_thumb.jpg" width="116px" xml:id="n543.018737" height="190px"/>
</surface>
<surface xml:id="n543.018738" n="fol. 39r"><graphic url="master/W20_000085_600.tif" width="4808px" xml:id="n543.018739" height="6140px"/>
<graphic url="300/W20_000085_300.tif" width="1919px" xml:id="n543.018740" height="3068px"/>
<graphic url="sap/W20_000085_sap.jpg" width="1126px" xml:id="n543.018741" height="1800px"/>
<graphic url="thumb/W20_000085_thumb.jpg" width="119px" xml:id="n543.018742" height="190px"/>
</surface>
<surface xml:id="n543.018743" n="fol. 39v"><graphic url="master/W20_000086_600.tif" width="4849px" xml:id="n543.018744" height="6202px"/>
<graphic url="300/W20_000086_300.tif" width="1918px" xml:id="n543.018745" height="3095px"/>