-
Notifications
You must be signed in to change notification settings - Fork 0
760 lines (580 loc) · 48 KB
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
@prefix cnt: <http://www.w3.org/2011/content#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix dctypes: <http://purl.org/dc/dcmitype/> .
@prefix dm: <http://dm.drew.edu/ns/> .
@prefix exif: <http://www.w3.org/2003/12/exif/ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix oa: <http://www.w3.org/ns/oa#> .
@prefix ore: <http://www.openarchives.org/ore/terms/> .
@prefix perm: <http://vocab.ox.ac.uk/perm#> .
@prefix sc: <http://www.shared-canvas.org/ns/> .
<http://dm.drew.edu/store/users/[email protected]> a foaf:Agent;
dm:lastOpenProject <urn:uuid:4da573c3-4f9c-4ce0-9452-08f07b7abe22>;
perm:hasPermissionOver <urn:uuid:4da573c3-4f9c-4ce0-9452-08f07b7abe22>;
perm:mayAdminister <urn:uuid:4da573c3-4f9c-4ce0-9452-08f07b7abe22>;
perm:mayAugment <urn:uuid:4da573c3-4f9c-4ce0-9452-08f07b7abe22>;
perm:mayCreateChildrenOf <urn:uuid:4da573c3-4f9c-4ce0-9452-08f07b7abe22>;
perm:mayDelete <urn:uuid:4da573c3-4f9c-4ce0-9452-08f07b7abe22>;
perm:mayRead <urn:uuid:4da573c3-4f9c-4ce0-9452-08f07b7abe22>;
perm:mayUpdate <urn:uuid:4da573c3-4f9c-4ce0-9452-08f07b7abe22>;
foaf:mbox <mailto:[email protected]> .
<urn:uuid:095da39a-56b5-47c4-8bd2-2cdeb2d36e92> a oa:Annotation;
oa:hasBody <urn:uuid:94f0ee57-41ca-44b9-a036-ce0806241aa2>;
oa:hasTarget <urn:uuid:92e12b18-c704-41e2-9919-cc86a127498c> .
<urn:uuid:21e75682-4639-4290-b976-8d401d0f2e52> a oa:Annotation;
oa:hasBody <urn:uuid:0d38db4a-62cb-4446-83eb-45ddf0df8df1>;
oa:hasTarget <urn:uuid:631efa34-d2ee-4398-8f6c-74b0c75ea047>;
oa:motivatedBy oa:commenting .
<urn:uuid:238d8b30-60f9-4e65-9eda-a9f15858ff34> a oa:Annotation;
oa:hasBody <urn:uuid:ead8d4db-9ce6-47e1-868e-ae833f228805>;
oa:hasTarget <urn:uuid:631efa34-d2ee-4398-8f6c-74b0c75ea047>,
<urn:uuid:ffefe20d-e530-49a1-9f5c-3f6e2188dc15>;
oa:motivatedBy oa:commenting .
<urn:uuid:24e74405-978e-4f91-99c9-dfd3606bd1e7> a oa:Annotation;
oa:hasBody <urn:uuid:01345432-b86c-4a2a-ac43-a435071803b5>;
oa:hasTarget <urn:uuid:866fcc2a-da84-4901-8f97-f844bcf042d7>;
oa:motivatedBy oa:commenting .
<urn:uuid:2c0e02ef-c417-4b4c-8a27-f7264545e6f5> a oa:Annotation;
oa:hasBody <urn:uuid:071c3df0-e754-42c7-97a2-2af9e449b59a>;
oa:hasTarget <urn:uuid:6267dcae-69d1-46e7-b949-c3c690ccecc2> .
<urn:uuid:2d28d9db-3d1b-4025-a967-cb9869e57d8f> a oa:Annotation;
oa:hasBody <urn:uuid:8bf3382e-6fca-463e-b472-dcc1905e42a4>;
oa:hasTarget <urn:uuid:0d0a5437-d27d-4d02-981e-48a7e47a6cc3>;
oa:motivatedBy oa:commenting .
<urn:uuid:30276041-f777-4bb4-8df7-2ce1e0e5874e> a oa:Annotation;
oa:hasBody <urn:uuid:0d0a5437-d27d-4d02-981e-48a7e47a6cc3>;
oa:hasTarget <urn:uuid:0d0a5437-d27d-4d02-981e-48a7e47a6cc3>,
<urn:uuid:e517c1ea-4142-4eda-9cfb-1a5485353e05> .
<urn:uuid:34d435cd-1b6f-4a2a-8849-575dcb4259d4> a oa:Annotation;
oa:hasBody <http://ada.drew.edu/annotation_store/media/user_images/113419.jpg>;
oa:hasTarget <urn:uuid:ffefe20d-e530-49a1-9f5c-3f6e2188dc15> .
<urn:uuid:34e9a65d-da10-4d57-862f-699c9a64f69c> a oa:Annotation;
oa:hasBody <urn:uuid:1a3dc95b-dc4a-4865-b8a8-872514180636>;
oa:hasTarget <urn:uuid:09262b72-633d-4ec8-bb36-22df62964f24> .
<urn:uuid:36f68f20-9de0-4d8a-add5-bc1b65c6318c> a oa:Annotation;
oa:hasBody <urn:uuid:bc6be6e9-c8fe-42ac-8a3c-2d78b674fa01>;
oa:hasTarget <urn:uuid:4d502f6a-1b0c-464d-93ea-0f239a9660e3>;
oa:motivatedBy oa:commenting .
<urn:uuid:3dadb86b-70c2-423e-91d7-a60d23a56151> a oa:Annotation;
oa:hasBody <urn:uuid:e517c1ea-4142-4eda-9cfb-1a5485353e05>;
oa:hasTarget <urn:uuid:4eafc6f0-1f6e-49a1-9a7b-ffcf0853fdcb>,
<urn:uuid:ead8d4db-9ce6-47e1-868e-ae833f228805>,
<urn:uuid:ffefe20d-e530-49a1-9f5c-3f6e2188dc15>;
oa:motivatedBy oa:commenting .
<urn:uuid:40637b1e-31c8-485a-b719-4623a06aad98> a dctypes:Text;
dc:title "New Annotation on BNF f. fr. 22545 fol. 1 r.";
cnt:chars "<br/>" .
<urn:uuid:4bfa94f1-c442-4b83-9237-3021452665ae> a oa:Annotation;
oa:hasBody <urn:uuid:7a890d7d-16a8-4cc2-8028-071f8256f234>;
oa:hasTarget <urn:uuid:14c5a711-716c-4fed-a847-44cb924cb14f> .
<urn:uuid:4d7485bf-a013-4d3a-902d-75004dc9e947> a oa:Annotation;
oa:hasBody <urn:uuid:4eafc6f0-1f6e-49a1-9a7b-ffcf0853fdcb>;
oa:hasTarget <urn:uuid:4eafc6f0-1f6e-49a1-9a7b-ffcf0853fdcb> .
<urn:uuid:4eeab47d-8be0-4994-991b-415e45c58e5b> a oa:Annotation;
oa:hasBody <urn:uuid:5ce1ce04-3d8b-4922-8d3c-6eadd8fdd594>;
oa:hasTarget <urn:uuid:ffefe20d-e530-49a1-9f5c-3f6e2188dc15>;
oa:motivatedBy oa:commenting .
<urn:uuid:569881d0-87dd-4738-bcb5-c8a0caaa63f5> a oa:Annotation;
oa:hasBody <urn:uuid:4eafc6f0-1f6e-49a1-9a7b-ffcf0853fdcb>;
oa:hasTarget <urn:uuid:4eafc6f0-1f6e-49a1-9a7b-ffcf0853fdcb>,
<urn:uuid:e517c1ea-4142-4eda-9cfb-1a5485353e05> .
<urn:uuid:56af6b20-806e-4a5a-a108-e1f22a3d7250> a oa:Annotation;
oa:hasBody <urn:uuid:4da0b4c8-c33d-4672-9bc9-748a168ae124>;
oa:hasTarget <urn:uuid:07f0c2b3-0b2f-40b6-a899-291c862b57d4>;
oa:motivatedBy oa:commenting .
<urn:uuid:56cf2563-9bed-4283-9fbc-a3d813662bb0> a oa:Annotation;
oa:hasBody <urn:uuid:222be6bf-32f5-4aa7-8550-0fd2db96fe9b>;
oa:hasTarget <urn:uuid:bf18e837-37a2-4460-a169-c8df335879d6>;
oa:motivatedBy oa:commenting .
<urn:uuid:59456a2f-9751-4eef-b0c9-c431b0d63f3f> a oa:Annotation;
oa:hasBody <http://ada.drew.edu/annotation_store/media/user_images/113426.jpg>;
oa:hasTarget <urn:uuid:631efa34-d2ee-4398-8f6c-74b0c75ea047> .
<urn:uuid:5a8ce83c-cc67-4ee5-8e78-8c78e7f8bf63> a oa:Annotation;
oa:hasBody <urn:uuid:2c97cdf2-9549-4658-924c-dd840b970ecd>;
oa:hasTarget <urn:uuid:09262b72-633d-4ec8-bb36-22df62964f24> .
<urn:uuid:5d1dca84-f2e9-4159-882f-52e22e020b3c> a oa:Annotation;
oa:hasBody <urn:uuid:48cc543c-4e98-4571-b208-e6fe1cf3d9b1>;
oa:hasTarget <urn:uuid:866fcc2a-da84-4901-8f97-f844bcf042d7>;
oa:motivatedBy oa:commenting .
<urn:uuid:627f8237-b956-4256-a7c1-d10ab33468cc> a oa:Annotation;
oa:hasBody <urn:uuid:a591a7ae-3d94-409b-8a0f-02464ca52e2a>;
oa:hasTarget <urn:uuid:a591a7ae-3d94-409b-8a0f-02464ca52e2a> .
<urn:uuid:668ea97b-2e9b-44f2-a760-40bf478400ae> a oa:Annotation;
oa:hasBody <urn:uuid:94f0ee57-41ca-44b9-a036-ce0806241aa2>;
oa:hasTarget <urn:uuid:a591a7ae-3d94-409b-8a0f-02464ca52e2a> .
<urn:uuid:728b1f1c-e215-4967-a800-32faa08b6ef6> a oa:Annotation;
oa:hasBody <urn:uuid:a46678b6-d282-4e46-870c-f147d59520d6>;
oa:hasTarget <urn:uuid:a46678b6-d282-4e46-870c-f147d59520d6>,
<urn:uuid:e5487602-dada-44c6-9f1f-004dd8c0c541>;
oa:motivatedBy oa:commenting .
<urn:uuid:7f985562-2b18-4118-849c-84ddec2c2ed8> a dctypes:Text;
dc:title "New Annotation on BNF f. fr. 9221 fol. 1 r.";
cnt:chars "<br/>" .
<urn:uuid:863e3dac-6b78-4647-9058-ee838bbf12ca> a oa:Annotation;
oa:hasBody <urn:uuid:d4a51d0a-6679-4536-a933-44fb27f4c472>;
oa:hasTarget <urn:uuid:6ee425e3-46df-4f52-babc-25a461013242>;
oa:motivatedBy oa:commenting .
<urn:uuid:8c3b945f-8f40-4dc5-a413-639f11552b81> a oa:Annotation;
oa:hasBody <urn:uuid:27941fdb-2e25-4537-a4f8-e758410a5f46>;
oa:hasTarget <urn:uuid:a591a7ae-3d94-409b-8a0f-02464ca52e2a> .
<urn:uuid:93e4aa8c-da84-4b84-a457-93d6d6af5f6e> a oa:Annotation;
oa:hasBody <urn:uuid:3ee9a5e7-362d-422d-9982-ee503262b90a>;
oa:hasTarget <urn:uuid:3ee9a5e7-362d-422d-9982-ee503262b90a> .
<urn:uuid:95b2857e-5469-449a-85c9-0831bea17b0f> a oa:Annotation;
oa:hasBody <urn:uuid:c09ffcf7-3ea5-45a8-a03d-20809e73e3b7>;
oa:hasTarget <urn:uuid:6267dcae-69d1-46e7-b949-c3c690ccecc2> .
<urn:uuid:9e348a85-e5e8-4f69-9cae-a8ce9175f122> a oa:Annotation;
oa:hasBody <urn:uuid:1221eb3c-752a-4fac-85ad-8a207af10123>;
oa:hasTarget <urn:uuid:714f18f9-267a-4d7d-9ddc-bd2e1d4e0a24>;
oa:motivatedBy oa:commenting .
<urn:uuid:9f1793e0-e239-497e-8af7-ea48a18a23a0> a oa:Annotation;
oa:hasBody <urn:uuid:dbb4c4e6-f713-467a-a914-8caf2a68eaee>;
oa:hasTarget <urn:uuid:0d0a5437-d27d-4d02-981e-48a7e47a6cc3>;
oa:motivatedBy oa:commenting .
<urn:uuid:9f52ccf5-1f87-4234-a1e1-9a88777e6b81> a oa:Annotation;
oa:hasBody <urn:uuid:ff1e1b39-224c-4752-b92c-1e721622e3f0>;
oa:hasTarget <urn:uuid:bc6c8d58-51ed-4222-aaed-f241a7b1285f>;
oa:motivatedBy oa:commenting .
<urn:uuid:a0f7d53d-c298-4eb8-b5e6-b74a9966433c> a oa:Annotation;
oa:hasBody <urn:uuid:94bf6004-967c-4172-ac8a-61d9fc5cc779>;
oa:hasTarget <urn:uuid:09db9c68-3433-426f-9a43-94a2013815e1> .
<urn:uuid:a3422726-1c98-4ae8-b0c3-755473212eb7> a oa:Annotation;
oa:hasBody <urn:uuid:b3766d65-b60c-4073-af24-4028e6c0d515>;
oa:hasTarget <urn:uuid:631efa34-d2ee-4398-8f6c-74b0c75ea047>,
<urn:uuid:ffefe20d-e530-49a1-9f5c-3f6e2188dc15> .
<urn:uuid:a3c87682-7fac-439b-b616-5e617217f453> a oa:Annotation;
oa:hasBody <urn:uuid:3a1c8794-75ad-4b99-ac21-34d294f4a6c4>;
oa:hasTarget <urn:uuid:4eafc6f0-1f6e-49a1-9a7b-ffcf0853fdcb>;
oa:motivatedBy oa:commenting .
<urn:uuid:a550d45f-b741-445c-8235-8b39a7b9c47b> a oa:Annotation;
oa:hasBody <urn:uuid:5e39931b-fc6c-4c15-9e94-41a528363841>;
oa:hasTarget <urn:uuid:ecf632fd-d936-4909-8452-11a18de6741f>;
oa:motivatedBy oa:commenting .
<urn:uuid:a61e069b-898c-4821-ab65-df84d0469b45> a oa:Annotation;
oa:hasBody <urn:uuid:94bf6004-967c-4172-ac8a-61d9fc5cc779>;
oa:hasTarget <urn:uuid:38433947-24c5-4587-bcc5-c232057a3482> .
<urn:uuid:a778c668-cfa9-4f8b-8b90-be2ad856aab3> a oa:Annotation;
oa:hasBody <urn:uuid:9e5ac38c-13db-4ed8-8d4d-3b05d018d3ab>;
oa:hasTarget <urn:uuid:a591a7ae-3d94-409b-8a0f-02464ca52e2a>;
oa:motivatedBy oa:commenting .
<urn:uuid:a94efa3a-73da-464d-9247-45678f6cd927> a oa:Annotation;
oa:hasBody <urn:uuid:3ee9a5e7-362d-422d-9982-ee503262b90a>;
oa:hasTarget <urn:uuid:2bbe1503-0593-4f2d-94b3-06819d521472>,
<urn:uuid:866fcc2a-da84-4901-8f97-f844bcf042d7>,
<urn:uuid:9ac1ef20-29b4-44f4-86bc-a50f8ccc755e>,
<urn:uuid:bf18e837-37a2-4460-a169-c8df335879d6>,
<urn:uuid:db273326-81c2-4b11-b275-c8a62c751ea3> .
<urn:uuid:aac50ccf-2dde-48d6-bc94-b60465e7305e> a oa:Annotation;
oa:hasBody <http://ada.drew.edu/annotation_store/media/user_images/113433.jpg>;
oa:hasTarget <urn:uuid:745a74e2-bd58-4782-807f-3413ebbbe480> .
<urn:uuid:ad62a00b-3419-4d6e-9d02-310ced86bf1e> a oa:Annotation;
oa:hasBody <urn:uuid:d2f50760-bfc7-4917-b1eb-fac9391ab818>;
oa:hasTarget <urn:uuid:866fcc2a-da84-4901-8f97-f844bcf042d7>;
oa:motivatedBy oa:commenting .
<urn:uuid:b2c8e319-253b-4edc-a183-8347785abc9d> a oa:Annotation;
oa:hasBody <urn:uuid:07f0c2b3-0b2f-40b6-a899-291c862b57d4>;
oa:hasTarget <urn:uuid:745a74e2-bd58-4782-807f-3413ebbbe480> .
<urn:uuid:b34de9a6-b5c0-4014-8c85-b8b619fa9849> a oa:Annotation;
oa:hasBody <urn:uuid:714f18f9-267a-4d7d-9ddc-bd2e1d4e0a24>;
oa:hasTarget <urn:uuid:4eafc6f0-1f6e-49a1-9a7b-ffcf0853fdcb> .
<urn:uuid:b8017c94-b56d-40b8-9300-6acd756543d8> a oa:Annotation;
oa:hasBody <urn:uuid:21fdde6f-888e-4bb5-8584-3ee5e86c3aeb>;
oa:hasTarget <urn:uuid:27941fdb-2e25-4537-a4f8-e758410a5f46>;
oa:motivatedBy oa:commenting .
<urn:uuid:bf475710-27ee-4379-9be7-05bd7a00feac> a oa:Annotation;
oa:hasBody <urn:uuid:88d909c4-816a-4235-8e97-233d9328ffaf>;
oa:hasTarget <urn:uuid:7c82ef33-fb61-49aa-b829-2dace2d209eb>;
oa:motivatedBy oa:commenting .
<urn:uuid:c5cc286c-152c-4359-9ed0-03369ea20e58> a oa:Annotation;
oa:hasBody <urn:uuid:3ece5112-315a-4341-938b-e3f2f432aa41>;
oa:hasTarget <urn:uuid:642ad150-3a27-4f19-977e-294d74011852> .
<urn:uuid:cc54c661-6847-432b-a6ab-230c89394ecf> a oa:Annotation;
oa:hasBody <urn:uuid:3ed3a7de-10f9-4e0a-ac77-061947e3a34b>;
oa:hasTarget <urn:uuid:6c959e2c-68ca-43e4-afb2-1d2ed12fb3db>;
oa:motivatedBy oa:commenting .
<urn:uuid:cff4852e-04d0-4a9a-b8e8-8215ef958f7a> a oa:Annotation;
oa:hasBody <urn:uuid:bb3c2de0-14e1-4fd7-bb9d-ba8982e98036>;
oa:hasTarget <urn:uuid:a9419b21-c883-43f7-885c-3b37ab3fad38> .
<urn:uuid:d1e4aa29-d99c-4db1-8178-13cb7abcfaa0> a oa:Annotation;
oa:hasBody <urn:uuid:5305c329-d2c9-4931-92da-6c9ca445ce5c>;
oa:hasTarget <urn:uuid:3a1c8794-75ad-4b99-ac21-34d294f4a6c4> .
<urn:uuid:d6cd5d74-1b67-4cee-b3f6-81a53263cddd> a oa:Annotation;
oa:hasBody <urn:uuid:b9352fff-ab38-4750-8d59-78893a737abd>;
oa:hasTarget <urn:uuid:745a74e2-bd58-4782-807f-3413ebbbe480>;
oa:motivatedBy oa:commenting .
<urn:uuid:db4237d6-1e5a-4584-aac1-1928ca9f77d5> a oa:Annotation;
oa:hasBody <urn:uuid:3f8fe8cf-bc44-4811-bce0-9c7ecd285571>;
oa:hasTarget <urn:uuid:14c5a711-716c-4fed-a847-44cb924cb14f> .
<urn:uuid:e477ca7e-5d1c-4c99-88b8-bd5621a56d3d> a oa:Annotation;
oa:hasBody <urn:uuid:a3e7526f-a500-44bd-82e0-b1b4ddcf62d4>;
oa:hasTarget <urn:uuid:09262b72-633d-4ec8-bb36-22df62964f24> .
<urn:uuid:e495d63f-2f0a-4a21-ad3e-e492223e1451> a oa:Annotation;
oa:hasBody <urn:uuid:0d0a5437-d27d-4d02-981e-48a7e47a6cc3>;
oa:hasTarget <urn:uuid:714f18f9-267a-4d7d-9ddc-bd2e1d4e0a24> .
<urn:uuid:ef118e93-914d-4f85-b493-daa204bfe15a> a oa:Annotation;
oa:hasBody <urn:uuid:d6951f1c-73e3-4a00-842b-0208c0f582b3>;
oa:hasTarget <urn:uuid:a9c552de-cb89-404d-81f1-0f60c4ada38a> .
<urn:uuid:fbc8ce7f-b410-4a45-9c27-5e470110e126> a oa:Annotation;
oa:hasBody <urn:uuid:ecf632fd-d936-4909-8452-11a18de6741f>;
oa:hasTarget <urn:uuid:745a74e2-bd58-4782-807f-3413ebbbe480> .
<urn:uuid:fe2511dc-d1d8-45e9-a261-8e7c2fefff91> a oa:Annotation;
oa:hasBody <urn:uuid:e30c8ee7-2435-49a6-98e2-4e66bed30763>;
oa:hasTarget <urn:uuid:62158cb5-4540-4484-8e95-b09b5cda15e0> .
<urn:uuid:fec0e434-7dca-49b2-8912-64f3db0160f1> a oa:Annotation;
oa:hasBody <urn:uuid:02bc06f4-b03b-4997-91f9-19b08b0eb88d>;
oa:hasTarget <urn:uuid:3ee9a5e7-362d-422d-9982-ee503262b90a>,
<urn:uuid:a46678b6-d282-4e46-870c-f147d59520d6>;
oa:motivatedBy oa:commenting .
<http://ada.drew.edu/annotation_store/media/user_images/113419.jpg> a dctypes:Image;
dc:title "BNF f. fr. 22545 fol. 1 r.";
exif:height 3921;
exif:width 3000 .
<http://ada.drew.edu/annotation_store/media/user_images/113426.jpg> a dctypes:Image;
dc:title "BNF f. fr. 22545 fol. 1 v.";
exif:height 4012;
exif:width 3000 .
<http://ada.drew.edu/annotation_store/media/user_images/113433.jpg> a dctypes:Image;
dc:title "BNF f. fr. 9221 fol. 1 r.";
exif:height 3902;
exif:width 3000 .
<urn:uuid:01345432-b86c-4a2a-ac43-a435071803b5> a dctypes:Text;
dc:title "New Annotation on BNF f. fr. 9221 fol. 1 r.";
cnt:chars "<br/>" .
<urn:uuid:071c3df0-e754-42c7-97a2-2af9e449b59a> a oa:SpecificResource;
oa:hasSelector <urn:uuid:3961f666-8d82-481a-b32b-794bfc69cb68>;
oa:hasSource <urn:uuid:5e39931b-fc6c-4c15-9e94-41a528363841> .
<urn:uuid:09db9c68-3433-426f-9a43-94a2013815e1> a oa:SpecificResource;
oa:hasSelector <urn:uuid:48895b6e-3c6d-4692-a95a-ae02602eeb5a>;
oa:hasSource <urn:uuid:45770ea1-e8aa-4c43-a8f7-111d1887b9b0> .
<urn:uuid:1221eb3c-752a-4fac-85ad-8a207af10123> a dctypes:Text;
dc:title "New Annotation on BNF f. fr. 22545 fol. 1 r.";
cnt:chars "<br/>" .
<urn:uuid:1a3dc95b-dc4a-4865-b8a8-872514180636> a oa:SpecificResource;
oa:hasSelector <urn:uuid:75ab4cb6-1e83-465f-8c6c-49f0569b1e36>;
oa:hasSource <urn:uuid:b3766d65-b60c-4073-af24-4028e6c0d515> .
<urn:uuid:1ea39f5c-b8dd-4ce9-994f-4fd44d2c9485> a oa:TextQuoteSelector;
oa:exact "MS.A fol. Dr" .
<urn:uuid:21fdde6f-888e-4bb5-8584-3ee5e86c3aeb> a dctypes:Text;
dc:title "New Annotation on BNF f. fr. 9221 fol. 1 r.";
cnt:chars "<p>Rubrication: </p><div><br/></div><div>Line 1: Com(men)t amo(ur)s a oy Nat(ur)e vie(n)t a guill(aum)e de</div><div><br/></div><div>Line 2: machaut. Et lui [li?] amaine .iii. de les e(n)fa(n)s.</div><div><br/></div><div>Line 3: Cest as(avoir). doulx pe(n)ser. plaisa(n)ce & espa(ran)ce po(ur) lui [li?]</div><div><br/></div><div>Line 4: do(n)ner matere a faire ce q(ue) Nat(ur)e lui [li?] a echigie [ecargie?].</div><div><br/></div><div>English Translation from Palmer:</div><div><br/></div><div>[How Love, hearing Nature, comes to Guillaume de Machaut leading three of her (his?) children, and these are Sweet Thought, Pleasure, and Hope, in order to provide him the material to carry out what Nature has charged him with.]</div>" .
<urn:uuid:222be6bf-32f5-4aa7-8550-0fd2db96fe9b> a dctypes:Text;
dc:title "New Annotation on BNF f. fr. 9221 fol. 1 r.";
cnt:chars "<p>Image of the poet.</p><div><br/></div>" .
<urn:uuid:2bbe1503-0593-4f2d-94b3-06819d521472> a oa:SpecificResource;
oa:hasSelector <urn:uuid:c2fc2ac9-d39e-4d94-8870-127b9d2ec228>;
oa:hasSource <urn:uuid:631efa34-d2ee-4398-8f6c-74b0c75ea047> .
<urn:uuid:2c97cdf2-9549-4658-924c-dd840b970ecd> a oa:SpecificResource;
oa:hasSelector <urn:uuid:bb1e50cf-a40a-49ae-b18d-519a0918d136>;
oa:hasSource <urn:uuid:5ce1ce04-3d8b-4922-8d3c-6eadd8fdd594> .
<urn:uuid:35afee39-68be-489e-8455-e399cb43ad85> a cnt:ContentAsText,
oa:SvgSelector;
cnt:chars "<circle fill='rgba(15, 108, 214, 0.6)' stroke='rgba(3, 75, 158, 0.7)' stroke-width='2' cx='1681.18333599' cy='1486.73006063' r='7' />" .
<urn:uuid:366d3a05-708b-4fb5-b7a9-be8ba49b203f> a oa:TextQuoteSelector;
oa:exact "Machaut's" .
<urn:uuid:3961f666-8d82-481a-b32b-794bfc69cb68> a oa:TextQuoteSelector;
oa:exact "Earp" .
<urn:uuid:3ece5112-315a-4341-938b-e3f2f432aa41> a oa:SpecificResource;
oa:hasSelector <urn:uuid:642f5f07-c609-4d52-aac8-27afdf3dc91e>;
oa:hasSource <urn:uuid:e517c1ea-4142-4eda-9cfb-1a5485353e05> .
<urn:uuid:3ed3a7de-10f9-4e0a-ac77-061947e3a34b> a dctypes:Text;
dc:title "New Annotation on BNF f. fr. 9221 fol. 1 r.";
cnt:chars "<p>Rubrication:</p><div><br/></div><div>Line 1: Comment nature voulant orendroit plus q(ue) onq(ue)s mais [mes?] reveler et faire exaucier les b(ie)ns et honneurs qui so(n)t en amo(ur)s</div><div><br/></div><div>Line 2: vient a guillaume de machaut . Et liu [li?] ordene et encharge a faire sur ce nouveaux dis amoureux. Et liu [li?] baille po(ur) liu [li?] </div><div><br/></div><div>Line 3: (con)seillier & adviser [aidier] a ce faire iii [trois] de ses enffa(n)s. cest as(avoir) sens. retoriq(ue). musique. Et lui [li] dist [dit] par ceste maniere.</div><div><br/></div><div>English translation from Palmer:</div><div><br/></div><div>[How Nature, wishing more than ever before to make known and exalted the goods and honors pertaining to Love, comes to Guillaume de Machaut, ordering and charging him herein to compose new poems about love, entrusting to him, for counsel and aid in this enterprise, three of her children, to be specific Meaning, Rhetoric, and Music. And she speaks to him thus:]</div>" .
<urn:uuid:3f8fe8cf-bc44-4811-bce0-9c7ecd285571> a oa:SpecificResource;
oa:hasSelector <urn:uuid:5ec108a0-665a-4f81-b256-70cf3ec4ea41>;
oa:hasSource <urn:uuid:ff1e1b39-224c-4752-b92c-1e721622e3f0> .
<urn:uuid:40efbf03-e677-48c2-aa07-ef6205170396> a oa:TextQuoteSelector;
oa:exact "MS. A fol. Er" .
<urn:uuid:47eb75bb-c525-4597-9234-891fcda76dee> a oa:TextQuoteSelector;
oa:exact "MS E 83r" .
<urn:uuid:48895b6e-3c6d-4692-a95a-ae02602eeb5a> a oa:TextQuoteSelector;
oa:exact "Machaut" .
<urn:uuid:48cc543c-4e98-4571-b208-e6fe1cf3d9b1> a dctypes:Text;
dc:title "New Annotation on BNF f. fr. 9221 fol. 1 r.";
cnt:chars "<p>The symmetrical mirror images of the two Machauts reflects (hah) the symmetry of the allegory at work in the Prologue. This conditions the reader to see the correspondence between Nature and her three children and Love and his three children. The figure of Love is probably the most easily recognizable, although he appears later in the text than Nature. But even a person unfamiliar with the narrative will begin reading aware that the God of Love makes an appearance and perhaps already collate this narrative with texts such as the Romance of the Rose.</p><div><br/></div>" .
<urn:uuid:4cd2ebc6-714c-4aee-89d6-1febf7b807be> a cnt:ContentAsText,
oa:SvgSelector;
cnt:chars "<polygon fill='rgba(15, 108, 214, 0.6)' stroke='rgba(3, 75, 158, 0.7)' stroke-width='2' points='1332,913 1554,913 1554,1259 1332,1259 1332,913' />" .
<urn:uuid:4d502f6a-1b0c-464d-93ea-0f239a9660e3> a oa:SpecificResource;
oa:hasSelector <urn:uuid:62295ca0-3bc7-4eeb-ab78-267892f4c3ba>;
oa:hasSource <urn:uuid:5ce1ce04-3d8b-4922-8d3c-6eadd8fdd594> .
<urn:uuid:4da0b4c8-c33d-4672-9bc9-748a168ae124> a dctypes:Text;
dc:title "Comparison of MS E and F";
cnt:chars "<br/>" .
<urn:uuid:515e273c-724d-4437-8831-9da798ba32db> a oa:TextQuoteSelector;
oa:exact "MS E 83r" .
<urn:uuid:5d548202-a8f5-4933-a98e-0902596fbc76> a cnt:ContentAsText,
oa:SvgSelector;
cnt:chars "<polygon fill='rgba(15, 108, 214, 0.6)' stroke='rgba(3, 75, 158, 0.7)' stroke-width='2' points='1032,2031 1639,2031 1639,2202 1032,2202 1032,2031' />" .
<urn:uuid:5ec108a0-665a-4f81-b256-70cf3ec4ea41> a oa:TextQuoteSelector;
oa:exact "Avril" .
<urn:uuid:62158cb5-4540-4484-8e95-b09b5cda15e0> a oa:SpecificResource;
oa:hasSelector <urn:uuid:69caeb5e-bc9e-4f3f-8041-d9625a1edda2>;
oa:hasSource <urn:uuid:45770ea1-e8aa-4c43-a8f7-111d1887b9b0> .
<urn:uuid:62295ca0-3bc7-4eeb-ab78-267892f4c3ba> a oa:TextQuoteSelector;
oa:exact """MS.
Pm fol. 1r""" .
<urn:uuid:642ad150-3a27-4f19-977e-294d74011852> a oa:SpecificResource;
oa:hasSelector <urn:uuid:8ce76257-c10f-42e9-88c4-451da06cbffc>;
oa:hasSource <urn:uuid:45770ea1-e8aa-4c43-a8f7-111d1887b9b0> .
<urn:uuid:642f5f07-c609-4d52-aac8-27afdf3dc91e> a oa:TextQuoteSelector;
oa:exact "Seanger" .
<urn:uuid:67eeeb26-3ce9-4948-8ee0-c29615d4869d> a oa:TextQuoteSelector;
oa:exact "Avril" .
<urn:uuid:690577e1-f580-494f-9251-ee3bfb0eeb8e> a oa:TextQuoteSelector;
oa:exact "Prologue." .
<urn:uuid:69caeb5e-bc9e-4f3f-8041-d9625a1edda2> a oa:TextQuoteSelector;
oa:exact "Wilkens" .
<urn:uuid:6c959e2c-68ca-43e4-afb2-1d2ed12fb3db> a oa:SpecificResource;
oa:hasSelector <urn:uuid:adf96237-7867-4ee9-9f08-0091cd6999c2>;
oa:hasSource <urn:uuid:745a74e2-bd58-4782-807f-3413ebbbe480> .
<urn:uuid:6cb6eda5-8736-4b98-b505-c5c9979eccf7> a oa:TextQuoteSelector;
oa:exact "MS. E fol. 1r" .
<urn:uuid:6ee425e3-46df-4f52-babc-25a461013242> a oa:SpecificResource;
oa:hasSelector <urn:uuid:40efbf03-e677-48c2-aa07-ef6205170396>;
oa:hasSource <urn:uuid:5ce1ce04-3d8b-4922-8d3c-6eadd8fdd594> .
<urn:uuid:75ab4cb6-1e83-465f-8c6c-49f0569b1e36> a oa:TextQuoteSelector;
oa:exact "Earp" .
<urn:uuid:7a890d7d-16a8-4cc2-8028-071f8256f234> a oa:SpecificResource;
oa:hasSelector <urn:uuid:67eeeb26-3ce9-4948-8ee0-c29615d4869d>;
oa:hasSource <urn:uuid:5e39931b-fc6c-4c15-9e94-41a528363841> .
<urn:uuid:7ffb42bb-30ab-4bb2-8ca0-3518b452ab01> a cnt:ContentAsText,
oa:SvgSelector;
cnt:chars "<polygon fill='rgba(15, 108, 214, 0.6)' stroke='rgba(3, 75, 158, 0.7)' stroke-width='2' points='1028,920 1277,920 1277,1243 1028,1243 1028,920' />" .
<urn:uuid:88d909c4-816a-4235-8e97-233d9328ffaf> a dctypes:Text;
dc:title "Comparison of MS Pm and F (Comment Guillaume)";
cnt:chars "<br/>" .
<urn:uuid:8bf3382e-6fca-463e-b472-dcc1905e42a4> a dctypes:Text;
dc:title "New Annotation on BNF f. fr. 22545 fol. 1 v.";
cnt:chars "<br/>" .
<urn:uuid:8c12b1b1-a85d-4b2c-ab76-903b59ea39f3> a oa:TextQuoteSelector;
oa:exact "Earp" .
<urn:uuid:8ce76257-c10f-42e9-88c4-451da06cbffc> a oa:TextQuoteSelector;
oa:exact "Saenger" .
<urn:uuid:9574317e-1e2c-4a4a-a809-eb0616170d78> a cnt:ContentAsText,
oa:SvgSelector;
cnt:chars "<polygon fill='rgba(15, 108, 214, 0.6)' stroke='rgba(3, 75, 158, 0.7)' stroke-width='2' points='1555,786 2088,786 2088,1276 1555,1276 1555,786' />" .
<urn:uuid:9ac1ef20-29b4-44f4-86bc-a50f8ccc755e> a oa:SpecificResource;
oa:hasSelector <urn:uuid:f29b3444-4a36-496e-b4b8-60ea958a5b50>;
oa:hasSource <urn:uuid:631efa34-d2ee-4398-8f6c-74b0c75ea047> .
<urn:uuid:9e5ac38c-13db-4ed8-8d4d-3b05d018d3ab> a dctypes:Text;
dc:title "New Annotation on BNF f. fr. 9221 fol. 1 r.";
cnt:chars "<p>From left:</p><div><br/></div><div>Love, winged as in depictions of Cupid or of angels and wearing a crown. His wings extend over the figure of Machaut (kneeling) and over his three children, uniting the figures into one grouping.</div><div><br/></div><div>His three children, presumable from left to right, Sweet Thought, Pleasure, and Hope.</div><div><br/></div><div>The architectural space in the right image differs from the left, where Nature appears to Machaut. Here the room has a different ceiling pattern and square rather than arched windows. These windows also appear to have shutters. The shutters on the far-left window appear to be opened. Perhaps the different window format prevented what seems to have occurred in the left image, where the grayish hue used to shade in the windows seems to have obscured the large crown worn by one of the figures (Sense?).</div>" .
<urn:uuid:a02a4ec5-af89-4823-8abe-840cfc6fd84e> a cnt:ContentAsText,
oa:SvgSelector;
cnt:chars "<polygon fill='rgba(15, 108, 214, 0.6)' stroke='rgba(3, 75, 158, 0.7)' stroke-width='2' points='555,819 1008,819 1008,1249 555,1249 555,819' />" .
<urn:uuid:a3e7526f-a500-44bd-82e0-b1b4ddcf62d4> a oa:SpecificResource;
oa:hasSelector <urn:uuid:e40e642f-edc9-49bb-9c70-3a67c84cce68>;
oa:hasSource <urn:uuid:0d38db4a-62cb-4446-83eb-45ddf0df8df1> .
<urn:uuid:a44075f6-1f3a-4ccc-a1a5-b34174eeeb5a> a oa:TextQuoteSelector;
oa:exact "McGrady" .
<urn:uuid:a6ab18bd-e061-4d00-972c-0ae1b469223f> a oa:TextQuoteSelector;
oa:exact "Earp" .
<urn:uuid:a9419b21-c883-43f7-885c-3b37ab3fad38> a oa:SpecificResource;
oa:hasSelector <urn:uuid:bf3c0e06-f74f-4165-b8cb-18309f2bc485>;
oa:hasSource <urn:uuid:45770ea1-e8aa-4c43-a8f7-111d1887b9b0> .
<urn:uuid:a9c552de-cb89-404d-81f1-0f60c4ada38a> a oa:SpecificResource;
oa:hasSelector <urn:uuid:515e273c-724d-4437-8831-9da798ba32db>;
oa:hasSource <urn:uuid:02bc06f4-b03b-4997-91f9-19b08b0eb88d> .
<urn:uuid:ac5584b2-90a0-4536-86ff-6d7a1b651e18> a cnt:ContentAsText,
oa:SvgSelector;
cnt:chars "<polygon fill='rgba(15, 108, 214, 0.6)' stroke='rgba(3, 75, 158, 0.7)' stroke-width='2' points='1222,2881 1469,2881 1469,3262 1222,3262 1222,2881' />" .
<urn:uuid:adf96237-7867-4ee9-9f08-0091cd6999c2> a cnt:ContentAsText,
oa:SvgSelector;
cnt:chars "<polygon fill='rgba(15, 108, 214, 0.6)' stroke='rgba(3, 75, 158, 0.7)' stroke-width='2' points='413,1261 2203,1261 2203,1419 413,1419 413,1261' />" .
<urn:uuid:afd70504-920b-4b78-b369-f71cda9d5702> a cnt:ContentAsText,
oa:SvgSelector;
cnt:chars "<polygon fill='rgba(15, 108, 214, 0.6)' stroke='rgba(3, 75, 158, 0.7)' stroke-width='2' points='740,1332 1586,1332 1586,2123 740,2123 740,1332' />" .
<urn:uuid:b1606700-b846-4019-85be-a78a5ba6388a> a cnt:ContentAsText,
oa:SvgSelector;
cnt:chars "<polygon fill='rgba(15, 108, 214, 0.6)' stroke='rgba(3, 75, 158, 0.7)' stroke-width='2' points='1174,608 1465,608 1465,1070 1174,1070 1174,608' />" .
<urn:uuid:b9352fff-ab38-4750-8d59-78893a737abd> a dctypes:Text;
dc:title "MS E";
cnt:chars "<p>MS E (c. 1390)</p><div>Created after Machaut's death, owned by Jean, Duc de Berry</div><div><br/></div>" .
<urn:uuid:ba59ebb8-682d-4dee-b9f5-8a8622b5bf47> a oa:TextQuoteSelector;
oa:exact "Wilkens" .
<urn:uuid:bb1e50cf-a40a-49ae-b18d-519a0918d136> a oa:TextQuoteSelector;
oa:exact "Earp, 145-147." .
<urn:uuid:bb3c2de0-14e1-4fd7-bb9d-ba8982e98036> a oa:SpecificResource;
oa:hasSelector <urn:uuid:a44075f6-1f3a-4ccc-a1a5-b34174eeeb5a>;
oa:hasSource <urn:uuid:02bc06f4-b03b-4997-91f9-19b08b0eb88d> .
<urn:uuid:bc6be6e9-c8fe-42ac-8a3c-2d78b674fa01> a dctypes:Text;
dc:title "Comparison of MS Pm and F (Comment Nature)";
cnt:chars "<br/>" .
<urn:uuid:bc6c8d58-51ed-4222-aaed-f241a7b1285f> a oa:SpecificResource;
oa:hasSelector <urn:uuid:35afee39-68be-489e-8455-e399cb43ad85>;
oa:hasSource <urn:uuid:ffefe20d-e530-49a1-9f5c-3f6e2188dc15> .
<urn:uuid:bf3c0e06-f74f-4165-b8cb-18309f2bc485> a oa:TextQuoteSelector;
oa:exact "McGrady" .
<urn:uuid:c09ffcf7-3ea5-45a8-a03d-20809e73e3b7> a oa:SpecificResource;
oa:hasSelector <urn:uuid:a6ab18bd-e061-4d00-972c-0ae1b469223f>;
oa:hasSource <urn:uuid:02bc06f4-b03b-4997-91f9-19b08b0eb88d> .
<urn:uuid:c2fc2ac9-d39e-4d94-8870-127b9d2ec228> a cnt:ContentAsText,
oa:SvgSelector;
cnt:chars "<polygon fill='rgba(15, 108, 214, 0.6)' stroke='rgba(3, 75, 158, 0.7)' stroke-width='2' points='785,1059 951,677 1132,1047 1118,1057 785,1059' />" .
<urn:uuid:d2f50760-bfc7-4917-b1eb-fac9391ab818> a dctypes:Text;
dc:title "New Annotation on BNF f. fr. 9221 fol. 1 r.";
cnt:chars "<p>Image of the poet before Nature.</p><div><br/></div>" .
<urn:uuid:d4a51d0a-6679-4536-a933-44fb27f4c472> a dctypes:Text;
dc:title "Comparison of MS A and F";
cnt:chars "<br/>" .
<urn:uuid:d5b4964b-52e0-4eaa-a7c8-557e534ab3bb> a oa:TextQuoteSelector;
oa:exact "Avril" .
<urn:uuid:d6951f1c-73e3-4a00-842b-0208c0f582b3> a oa:SpecificResource;
oa:hasSelector <urn:uuid:47eb75bb-c525-4597-9234-891fcda76dee>;
oa:hasSource <urn:uuid:02bc06f4-b03b-4997-91f9-19b08b0eb88d> .
<urn:uuid:db273326-81c2-4b11-b275-c8a62c751ea3> a oa:SpecificResource;
oa:hasSelector <urn:uuid:ac5584b2-90a0-4536-86ff-6d7a1b651e18>;
oa:hasSource <urn:uuid:631efa34-d2ee-4398-8f6c-74b0c75ea047> .
<urn:uuid:dbb4c4e6-f713-467a-a914-8caf2a68eaee> a dctypes:Text;
dc:title "New Annotation on BNF f. fr. 22545 fol. 1 v.";
cnt:chars "<br/>" .
<urn:uuid:de678479-d31f-43bc-986c-f4058fd26ada> a cnt:ContentAsText,
oa:SvgSelector;
cnt:chars "<polygon fill='rgba(15, 108, 214, 0.6)' stroke='rgba(3, 75, 158, 0.7)' stroke-width='2' points='676,2751 1212,2751 1212,3297 676,3297 676,2751' />" .
<urn:uuid:e30c8ee7-2435-49a6-98e2-4e66bed30763> a oa:SpecificResource;
oa:hasSelector <urn:uuid:ba59ebb8-682d-4dee-b9f5-8a8622b5bf47>;
oa:hasSource <urn:uuid:02bc06f4-b03b-4997-91f9-19b08b0eb88d> .
<urn:uuid:e40e642f-edc9-49bb-9c70-3a67c84cce68> a oa:TextQuoteSelector;
oa:exact "Earp, 145-147" .
<urn:uuid:e5487602-dada-44c6-9f1f-004dd8c0c541> a oa:SpecificResource;
oa:hasSelector <urn:uuid:1ea39f5c-b8dd-4ce9-994f-4fd44d2c9485>;
oa:hasSource <urn:uuid:0d38db4a-62cb-4446-83eb-45ddf0df8df1> .
<urn:uuid:e5f29191-12d3-4d68-bf17-13241aa28850> a cnt:ContentAsText,
oa:SvgSelector;
cnt:chars "<polygon fill='rgba(15, 108, 214, 0.6)' stroke='rgba(3, 75, 158, 0.7)' stroke-width='2' points='1761,2071 1737,1618 2124,1592 2136,2079 2134,2079 1761,2071' />" .
<urn:uuid:f29b3444-4a36-496e-b4b8-60ea958a5b50> a cnt:ContentAsText,
oa:SvgSelector;
cnt:chars "<polygon fill='rgba(15, 108, 214, 0.6)' stroke='rgba(3, 75, 158, 0.7)' stroke-width='2' points='1898,2485 2180,2485 2180,2853 1898,2853 1898,2485' />" .
<urn:uuid:f3da9380-4083-4712-899c-c22efc441ad1> a oa:TextQuoteSelector;
oa:exact "Earp" .
<urn:uuid:f83ba2af-48f9-4e4c-8a01-9adf01f6d120> a oa:TextQuoteSelector;
oa:exact "MS. E fol. 1r" .
<urn:uuid:07f0c2b3-0b2f-40b6-a899-291c862b57d4> a oa:SpecificResource;
oa:hasSelector <urn:uuid:6cb6eda5-8736-4b98-b505-c5c9979eccf7>;
oa:hasSource <urn:uuid:5ce1ce04-3d8b-4922-8d3c-6eadd8fdd594> .
<urn:uuid:14c5a711-716c-4fed-a847-44cb924cb14f> a oa:SpecificResource;
oa:hasSelector <urn:uuid:d5b4964b-52e0-4eaa-a7c8-557e534ab3bb>;
oa:hasSource <urn:uuid:45770ea1-e8aa-4c43-a8f7-111d1887b9b0> .
<urn:uuid:27941fdb-2e25-4537-a4f8-e758410a5f46> a oa:SpecificResource;
oa:hasSelector <urn:uuid:5d548202-a8f5-4933-a98e-0902596fbc76>;
oa:hasSource <urn:uuid:745a74e2-bd58-4782-807f-3413ebbbe480> .
<urn:uuid:3a1c8794-75ad-4b99-ac21-34d294f4a6c4> a dctypes:Text;
dc:title "New Annotation on BNF f. fr. 9221 fol. 1 r.";
cnt:chars "<p>Third figure from the left (Sens) wears a large crown that has been partly obfuscated by the dark shade used to color the windows. Perhaps this was a mistake by an over-enthusiastic painter after the gold leaf had already been applied, OR perhaps giving one of Nature's children a larger crown than either her sisters or Nature herself seemed out of keeping with the allegorical hierarchy. Covering the crown may have been intentional, but this would then seem like a waste of gold leaf, but in a very expensive manuscript such as E, it may have been less of a loss.</p><div><br/></div><div>None of these figures seem immediately recognizable apart from the text. Nature wears a sort of matronly hat. Meaning and Rhetoric appear as two young aristocratic women. Music does hold a sort of tambourine. </div>" .
<urn:uuid:6267dcae-69d1-46e7-b949-c3c690ccecc2> a oa:SpecificResource;
oa:hasSelector <urn:uuid:f3da9380-4083-4712-899c-c22efc441ad1>;
oa:hasSource <urn:uuid:45770ea1-e8aa-4c43-a8f7-111d1887b9b0> .
<urn:uuid:94bf6004-967c-4172-ac8a-61d9fc5cc779> a oa:SpecificResource;
oa:hasSelector <urn:uuid:366d3a05-708b-4fb5-b7a9-be8ba49b203f>,
<urn:uuid:690577e1-f580-494f-9251-ee3bfb0eeb8e>;
oa:hasSource <urn:uuid:ead8d4db-9ce6-47e1-868e-ae833f228805> .
<urn:uuid:94f0ee57-41ca-44b9-a036-ce0806241aa2> a oa:SpecificResource;
oa:hasSelector <urn:uuid:de678479-d31f-43bc-986c-f4058fd26ada>;
oa:hasSource <urn:uuid:631efa34-d2ee-4398-8f6c-74b0c75ea047> .
<urn:uuid:bf18e837-37a2-4460-a169-c8df335879d6> a oa:SpecificResource;
oa:hasSelector <urn:uuid:4cd2ebc6-714c-4aee-89d6-1febf7b807be>;
oa:hasSource <urn:uuid:745a74e2-bd58-4782-807f-3413ebbbe480> .
<urn:uuid:ecf632fd-d936-4909-8452-11a18de6741f> a oa:SpecificResource;
oa:hasSelector <urn:uuid:f83ba2af-48f9-4e4c-8a01-9adf01f6d120>;
oa:hasSource <urn:uuid:0d38db4a-62cb-4446-83eb-45ddf0df8df1> .
<urn:uuid:ff1e1b39-224c-4752-b92c-1e721622e3f0> a dctypes:Text;
dc:title "MS F - Background Armoires";
cnt:chars "<p>On pg 129, <span about=\"urn:uuid:5ec108a0-665a-4f81-b256-70cf3ec4ea41\" class=\"atb-editor-textannotation\" property=\"http://www.w3.org/ns/oa#exact\">Avril</span> describes that the armoires in the background of the miniature illustrates that the book's commissioner/owner was of lesser mobility. </p>" .
<urn:uuid:09262b72-633d-4ec8-bb36-22df62964f24> a oa:SpecificResource;
oa:hasSelector <urn:uuid:8c12b1b1-a85d-4b2c-ab76-903b59ea39f3>;
oa:hasSource <urn:uuid:45770ea1-e8aa-4c43-a8f7-111d1887b9b0> .
<urn:uuid:5e39931b-fc6c-4c15-9e94-41a528363841> a dctypes:Text;
dc:title "Comparison of MS E and F";
cnt:chars "<p>There is a distinct similarity between the content of these two miniatures with the poet represented kneeling before the allegorical figures. There are distinct stylistic differences which illustrate the different hands who are responsable for the work see <span about=\"urn:uuid:3961f666-8d82-481a-b32b-794bfc69cb68\" class=\"atb-editor-textannotation\" property=\"http://www.w3.org/ns/oa#exact\">Earp</span> and <span about=\"urn:uuid:67eeeb26-3ce9-4948-8ee0-c29615d4869d\" class=\"atb-editor-textannotation\" property=\"http://www.w3.org/ns/oa#exact\">Avril</span> for more information. </p><div><br/></div><div>Another major difference is that the images in MS F have been divided into five discrete scenes while those in MS F are represented as two halves of one large image at the top of the page. This seems to have been a decision highly informed by codicological characteristics since hace discrete scenes within the three columns of text would require miniature to either interpret the text or sacrifice size and readability. </div>" .
<urn:uuid:714f18f9-267a-4d7d-9ddc-bd2e1d4e0a24> a oa:SpecificResource;
oa:hasSelector <urn:uuid:afd70504-920b-4b78-b369-f71cda9d5702>;
oa:hasSource <urn:uuid:ffefe20d-e530-49a1-9f5c-3f6e2188dc15> .
<urn:uuid:a46678b6-d282-4e46-870c-f147d59520d6> a dctypes:Text;
dc:title "Comparison of MS A and F (Comment Guillaume)";
cnt:chars "<p>These miniatures are very different with MS A representing the scenes in settings associated with the poet, namely the study and the garden. While in MS F the scene takes place against a decorative background. </p><div><br/></div><div>The representation of the poet is also very different between the the two miniatures. See annotation on 'emphasis on kneeling poet in MS F.'</div>" .
<urn:uuid:b3766d65-b60c-4073-af24-4028e6c0d515> a dctypes:Text;
dc:title "Notes on MS F";
cnt:chars """<p>See Lawrence <span about="urn:uuid:75ab4cb6-1e83-465f-8c6c-49f0569b1e36" class="atb-editor-textannotation" property="http://www.w3.org/ns/oa#exact">Earp</span>, <i style="font-style: italic; ">Guillaume de Machaut: A Guide to Research</i>, 90-92. <i style="font-style: italic; "> </i></p><div><br/></div><div>MS F, along with MS G, is
part of a two-volume collection of Machaut's complete works illuminated with
148 miniatures by Remiet. There are conflicting dates associated with this manuscript.
Many studies suggest the book was the last manuscript made under Machaut's
supervision while François Avril place it within the 1390s based on art
historical evidence. MS F specifically contains the <i>Prologue, Vergier, Jugement Behaigne, Jugement Navarre, Remede, Lyon,
Alerion, Confort, Fonteinne, Harpe, Voir Dit Marquerite, Rose, </i>and <i>Vesci les biens. </i></div>""" .
<urn:uuid:ead8d4db-9ce6-47e1-868e-ae833f228805> a dctypes:Text;
dc:title "Texts for the Prologue";
cnt:chars "<p>Fols. 1r-3r are composed of <span about=\"urn:uuid:366d3a05-708b-4fb5-b7a9-be8ba49b203f\" class=\"atb-editor-textannotation\" property=\"http://www.w3.org/ns/oa#exact\">Machaut's</span> <span about=\"urn:uuid:690577e1-f580-494f-9251-ee3bfb0eeb8e\" class=\"atb-editor-textannotation\" property=\"http://www.w3.org/ns/oa#exact\"><a href=\"https://collab.itc.virginia.edu/access/content/group/658f937f-3041-433a-86c3-c9394b36163d/Machaut%20Texts/Machautvolume1.pdf\">Prologue</a>.</span> Additionally a transcription of fol. <a href=\"http://t-pen.org/TPEN/transcription.jsp?p=1713377&projectID=2239\">1r</a> and <a href=\"http://t-pen.org/TPEN/transcription.jsp?p=1713376&projectID=2239\">1v</a> are available on T-Pen. </p>" .
<urn:uuid:0d38db4a-62cb-4446-83eb-45ddf0df8df1> a dctypes:Text;
dc:title "Corresponding Miniatures for fol. 1 v. ";
cnt:chars """<p>Several other manuscripts that correspond to the first miniature on fol. 1v. </p><div><br/></div><div><i style="font-style: italic; ">Comment Guillaume de Machau respont a Nature... </i>(<span about="urn:uuid:e40e642f-edc9-49bb-9c70-3a67c84cce68" class="atb-editor-textannotation" property="http://www.w3.org/ns/oa#exact">Earp, 145-147</span>.)</div><div><br/></div><div><ul><li><a href="• http://gallica.bnf.fr/ark:/12148/btv1b84490444/f15.image" style="text-decoration: underline; "><span about="urn:uuid:1ea39f5c-b8dd-4ce9-994f-4fd44d2c9485" class="atb-editor-textannotation" property="http://www.w3.org/ns/oa#exact">MS.A fol. Dr</span></a>
</li><li>
MS.
Pm fol. Fol. 1v (unfortunately no digital copy)</li><li><span about="urn:uuid:f83ba2af-48f9-4e4c-8a01-9adf01f6d120" class="atb-editor-textannotation" property="http://www.w3.org/ns/oa#exact">MS. E fol. 1r</span> (right hand
scene showing “Comment Amours…”)</li></ul></div>""" .
<urn:uuid:3ee9a5e7-362d-422d-9982-ee503262b90a> a oa:SpecificResource;
oa:hasSelector <urn:uuid:e5f29191-12d3-4d68-bf17-13241aa28850>;
oa:hasSource <urn:uuid:ffefe20d-e530-49a1-9f5c-3f6e2188dc15> .
<urn:uuid:866fcc2a-da84-4901-8f97-f844bcf042d7> a oa:SpecificResource;
oa:hasSelector <urn:uuid:7ffb42bb-30ab-4bb2-8ca0-3518b452ab01>;
oa:hasSource <urn:uuid:745a74e2-bd58-4782-807f-3413ebbbe480> .
<urn:uuid:e517c1ea-4142-4eda-9cfb-1a5485353e05> a dctypes:Text;
dc:title "Allegorical Figures ";
cnt:chars "<p class=\"\">The largest of these figures is Nature surrounded by Meaning, Rhetoric, and Music. See p.13 text translated by Barton Palmer found on annotation 'texts for the prologue'</p><p class=\"\"><br/></p><p class=\"\">It is interesting to note the close relationship between image which may give a sense of how the text was read. See <span about=\"urn:uuid:642f5f07-c609-4d52-aac8-27afdf3dc91e\" class=\"atb-editor-textannotation\" property=\"http://www.w3.org/ns/oa#exact\">Seanger</span> article for more information. </p><p class=\"\"><br/></p>" .
<urn:uuid:0d0a5437-d27d-4d02-981e-48a7e47a6cc3> a oa:SpecificResource;
oa:hasSelector <urn:uuid:b1606700-b846-4019-85be-a78a5ba6388a>;
oa:hasSource <urn:uuid:631efa34-d2ee-4398-8f6c-74b0c75ea047> .
<urn:uuid:5ce1ce04-3d8b-4922-8d3c-6eadd8fdd594> a dctypes:Text;
dc:title "Corresponding Miniatures to Fol. 1 r.";
cnt:chars """<p>Several other manuscripts that correspond to the same piece of text as the miniature on fol. 1r. </p><div><br/></div><div><i style="font-style: italic; ">Comment Nature, voulant ordendroit plus que onques mais reveler et faire essaucier les biens et honneurs qui sont en Amours... </i>(<span about="urn:uuid:bb1e50cf-a40a-49ae-b18d-519a0918d136" class="atb-editor-textannotation" property="http://www.w3.org/ns/oa#exact">Earp, 145-147.</span>)</div><div><br/></div><div><ul><li><a href="• http://gallica.bnf.fr/ark:/12148/btv1b84490444/f17.image" style="text-decoration: underline; "><span about="urn:uuid:40efbf03-e677-48c2-aa07-ef6205170396" class="atb-editor-textannotation" property="http://www.w3.org/ns/oa#exact">MS. A fol. Er</span></a></li><ul><li>Note that this miniature is out of order because the text is out of order beginning wit <i style="font-style: italic; ">Comment Amours..</i></li></ul><li>
<span about="urn:uuid:62295ca0-3bc7-4eeb-ab78-267892f4c3ba" class="atb-editor-textannotation" property="http://www.w3.org/ns/oa#exact">MS.
Pm fol. 1r</span> (unfortunately not available online)</li><li><span about="urn:uuid:6cb6eda5-8736-4b98-b505-c5c9979eccf7" class="atb-editor-textannotation" property="http://www.w3.org/ns/oa#exact">MS. E fol. 1r</span> (left hand
scene showing “Comment Nature…”) </li></ul></div>""" .
<urn:uuid:a591a7ae-3d94-409b-8a0f-02464ca52e2a> a oa:SpecificResource;
oa:hasSelector <urn:uuid:9574317e-1e2c-4a4a-a809-eb0616170d78>;
oa:hasSource <urn:uuid:745a74e2-bd58-4782-807f-3413ebbbe480> .
<urn:uuid:02bc06f4-b03b-4997-91f9-19b08b0eb88d> a dctypes:Text;
dc:title "Emphasis on kneeling Poet in MS F";
cnt:chars "<p>The kneeling poet found in the <i style=\"font-style: italic; \">Prologue </i>of MS F stands in stark contrast to scenes of Machaut greeting the allegorical figures while working or standing regally beneath a tree in MS A (<a href=\"http://gallica.bnf.fr/ark:/12148/btv1b84490444/f15.image\" style=\"text-decoration: underline; \">MS A Dr</a> and <a href=\"http://gallica.bnf.fr/ark:/12148/btv1b84490444/f17.image\" style=\"text-decoration: underline; \">MS A Er</a>). This emphasis in MS A on the poet's work continues into the <span lang=\"FR\" style=\"font-style: italic; \">Fonteinne amoureuse </span><span lang=\"FR\">(s</span>ee <a href=\"http://gallica.bnf.fr/ark:/12148/btv1b84490444/f329.image\">MS A 154r</a>, <a href=\"http://gallica.bnf.fr/ark:/12148/btv1b84490444/f332.image\">MS A 155v</a>, <a href=\"http://gallica.bnf.fr/ark:/12148/btv1b6000795k/f189.image\"><span about=\"urn:uuid:515e273c-724d-4437-8831-9da798ba32db\" class=\"atb-editor-textannotation\" property=\"http://www.w3.org/ns/oa#exact\">MS E 83r</span></a>) while <a href=\"http://gallica.bnf.fr/ark:/12148/btv1b60007997/f246.image\">MS F 199v</a> does not have such an author portrait. </p><div><br/></div><div><div>It is interesting to note that even though <span about=\"urn:uuid:47eb75bb-c525-4597-9234-891fcda76dee\" class=\"atb-editor-textannotation\" property=\"http://www.w3.org/ns/oa#exact\" style=\"background-color: transparent; \">MS E 83r</span> shows this poet writing he is still kneeling in the opening of the <i>Prologue</i>. </div></div><div><br/></div><div>Might be good to address these issues with regards to how manuscripts both support and subjugate traditional views of patronage. Additional insight may be found in work of <span about=\"urn:uuid:a6ab18bd-e061-4d00-972c-0ae1b469223f\" class=\"atb-editor-textannotation\" property=\"http://www.w3.org/ns/oa#exact\">Earp</span>, <span about=\"urn:uuid:a44075f6-1f3a-4ccc-a1a5-b34174eeeb5a\" class=\"atb-editor-textannotation\" property=\"http://www.w3.org/ns/oa#exact\">McGrady</span>, and <span about=\"urn:uuid:ba59ebb8-682d-4dee-b9f5-8a8622b5bf47\" class=\"atb-editor-textannotation\" property=\"http://www.w3.org/ns/oa#exact\">Wilkens</span>.</div>" .
<urn:uuid:4eafc6f0-1f6e-49a1-9a7b-ffcf0853fdcb> a oa:SpecificResource;
oa:hasSelector <urn:uuid:a02a4ec5-af89-4823-8abe-840cfc6fd84e>;
oa:hasSource <urn:uuid:745a74e2-bd58-4782-807f-3413ebbbe480> .
<urn:uuid:45770ea1-e8aa-4c43-a8f7-111d1887b9b0> a dctypes:Text;
dc:title "Bibliography for MS F";
cnt:chars """<div><span about="urn:uuid:d5b4964b-52e0-4eaa-a7c8-557e534ab3bb" class="atb-editor-textannotation" property="http://www.w3.org/ns/oa#exact">Avril</span>, Francoise, “Les Manuscrits Eluminés
de Guillaume de Machaut.” In <i style="font-style: italic; ">Guillaume de
Machaut: Po</i><i><span style="font-style: italic; ">è</span><span style='font-size:12.0pt;
font-family:Cambria;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
"?? ??";mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA'>te
et Compositeur, Colloque-Table Ronde</span></i><span style="font-size: 12pt; font-family: Cambria; ">, 117-132.
Paris: Klincksieck, 1982.</span></div>
<div><br/></div><div><span about="urn:uuid:8c12b1b1-a85d-4b2c-ab76-903b59ea39f3" class="atb-editor-textannotation" property="http://www.w3.org/ns/oa#exact">Earp</span>, Lawrence. <i style="font-style: italic; ">Guillaume De Machaut: A Guide to Research.</i> New York: Garland Pub. 1995.<br/></div><div><br/></div><div><span about="urn:uuid:f3da9380-4083-4712-899c-c22efc441ad1" class="atb-editor-textannotation" property="http://www.w3.org/ns/oa#exact">Earp</span>, Lawrence. "Machaut's Role in the Production of Manuscripts of His Work." Journal for the American Muscological Society 42.3 (1989): 461-503. </div>
<div><br/></div><span about="urn:uuid:48895b6e-3c6d-4692-a95a-ae02602eeb5a" class="atb-editor-textannotation" property="http://www.w3.org/ns/oa#exact">Machaut</span>, Guillaume de. <i style="font-style: italic; ">The Prologue & Four Love Poems</i>. Kalamazoo, MI: Medieval Institute Publication, 2010. <div><br/></div><div><span about="urn:uuid:bf3c0e06-f74f-4165-b8cb-18309f2bc485" class="atb-editor-textannotation" property="http://www.w3.org/ns/oa#exact">McGrady</span>, Deborah. "Guillaume de Machaut." In <i>The Cambridge Campanion to Medieval French Literature</i>, edited by Simon Gaunt and Sarah Kay, 109-122. Cambridge: Cambridge University Press, 2008.</div><div><br/></div><div><span about="urn:uuid:8ce76257-c10f-42e9-88c4-451da06cbffc" class="atb-editor-textannotation" property="http://www.w3.org/ns/oa#exact">Saenger</span>, Paul. "Reading in the Later Middle Ages." In <i>A History of Reading in the West. </i>Eds. Guglielmo Cavallo and Roger Chartier, trans. Lydia G. Cochrane (Oxford 1999): 120-31. </div><div><br/></div><div><div><span style="text-indent: -0.25in; "><br/><span about="urn:uuid:69caeb5e-bc9e-4f3f-8041-d9625a1edda2" class="atb-editor-textannotation" property="http://www.w3.org/ns/oa#exact">Wilkens</span>, Nigel. “A Pattern of Patronage:</span><span style="text-indent: -0.25in; "> </span><span style="text-indent: -0.25in; ">Machaut, Froissart and the Houses of
Luxembourg and Bohemia in the Fourteenth Century.” </span><i style="text-indent: -0.25in; ">French studies </i><span style="text-indent: -0.25in; ">37
(1983): 257 – 284 (collab).</span><div><p class="MsoNoSpacing" style="margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo1"><o:p></o:p></p>
</div></div></div>""" .
<urn:uuid:4da573c3-4f9c-4ce0-9452-08f07b7abe22> a dm:Project,
dctypes:Collection,
ore:Aggregation,
foaf:Project;
dc:title "Imported Project";
dcterms:description "Created from the contents of your old DM workspace";
ore:aggregates <urn:uuid:45770ea1-e8aa-4c43-a8f7-111d1887b9b0>,
<urn:uuid:631efa34-d2ee-4398-8f6c-74b0c75ea047>,
<urn:uuid:745a74e2-bd58-4782-807f-3413ebbbe480>,
<urn:uuid:b3766d65-b60c-4073-af24-4028e6c0d515>,
<urn:uuid:ffefe20d-e530-49a1-9f5c-3f6e2188dc15> .
<urn:uuid:ffefe20d-e530-49a1-9f5c-3f6e2188dc15> a sc:Canvas;
dc:title "BNF f. fr. 22545 fol. 1 r.";
exif:height 3921;
exif:width 3000 .
<urn:uuid:631efa34-d2ee-4398-8f6c-74b0c75ea047> a sc:Canvas;
dc:title "BNF f. fr. 22545 fol. 1 v.";
exif:height 4012;
exif:width 3000 .
<urn:uuid:745a74e2-bd58-4782-807f-3413ebbbe480> a sc:Canvas;
dc:title "BNF f. fr. 9221 fol. 1 r.";
exif:height 3902;
exif:width 3000 .