-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathB00324.xml
10076 lines (10076 loc) · 888 KB
/
B00324.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
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
<titleStmt>
<title>Llyfr gweddi gyffredin, a gwenidogaeth y sacramentau, a chyn[neddfau a] ceremoniau eraill yn Eglwys Loegr.</title>
<title>Book of common prayer. Welsh</title>
<author>Church of England.</author>
</titleStmt>
<editionStmt>
<edition>
<date>1621</date>
</edition>
</editionStmt>
<extent>Approx. 633 KB of XML-encoded text transcribed from 182 1-bit group-IV TIFF page images.</extent>
<publicationStmt>
<publisher>Text Creation Partnership,</publisher>
<pubPlace>Ann Arbor, MI ; Oxford (UK) :</pubPlace>
<date when="2013-12">2013-12 (EEBO-TCP Phase 2).</date>
<idno type="DLPS">B00324</idno>
<idno type="STC">STC 16438</idno>
<idno type="STC">ESTC S93926</idno>
<idno type="EEBO-CITATION">56572881</idno>
<idno type="OCLC">ocm 56572881</idno>
<idno type="VID">180984</idno>
<availability>
<p>To the extent possible under law, the Text Creation Partnership has waived all copyright and related or neighboring rights to this keyboarded and encoded edition of the work described above, according to the terms of the CC0 1.0 Public Domain Dedication (http://creativecommons.org/publicdomain/zero/1.0/). This waiver does not extend to any page images or other supplementary files associated with this work, which may be protected by copyright or other license restrictions. Please go to https://www.textcreationpartnership.org/ for more information about the project.</p>
</availability>
</publicationStmt>
<seriesStmt>
<title>Early English books online.</title>
</seriesStmt>
<notesStmt>
<note>(EEBO-TCP ; phase 2, no. B00324)</note>
<note>Transcribed from: (Early English Books Online ; image set 180984)</note>
<note>Images scanned from microfilm: (Early English books, 1475-1640 ; 2150:3)</note>
</notesStmt>
<sourceDesc>
<biblFull>
<titleStmt>
<title>Llyfr gweddi gyffredin, a gwenidogaeth y sacramentau, a chyn[neddfau a] ceremoniau eraill yn Eglwys Loegr.</title>
<title>Book of common prayer. Welsh</title>
<author>Church of England.</author>
</titleStmt>
<extent>[339] p. </extent>
<publicationStmt>
<publisher>gan Bonham Norton, a Iohn Bill [printwr i Ardder]choccaf Fawrhydi y Brenin.,</publisher>
<pubPlace>A Brintiwyd yn Llundain :</pubPlace>
<date>1621.</date>
</publicationStmt>
<notesStmt>
<note>Title within ornamental border (McK. & Ferg. 165β); head- and tail-pieces, initials.</note>
<note>Signatures: A-B⁸ A-U⁸.</note>
<note>Imperfect: faded, with loss of text from t.p.; bracketed material conjectured from other eds.</note>
<note>Reproduction of original in: National Library of Wales.</note>
</notesStmt>
</biblFull>
</sourceDesc>
</fileDesc>
<encodingDesc>
<projectDesc>
<p>Created by converting TCP files to TEI P5 using tcp2tei.xsl,
TEI @ Oxford.
</p>
</projectDesc>
<editorialDecl>
<p>EEBO-TCP is a partnership between the Universities of Michigan and Oxford and the publisher ProQuest to create accurately transcribed and encoded texts based on the image sets published by ProQuest via their Early English Books Online (EEBO) database (http://eebo.chadwyck.com). The general aim of EEBO-TCP is to encode one copy (usually the first edition) of every monographic English-language title published between 1473 and 1700 available in EEBO.</p>
<p>EEBO-TCP aimed to produce large quantities of textual data within the usual project restraints of time and funding, and therefore chose to create diplomatic transcriptions (as opposed to critical editions) with light-touch, mainly structural encoding based on the Text Encoding Initiative (http://www.tei-c.org).</p>
<p>The EEBO-TCP project was divided into two phases. The 25,368 texts created during Phase 1 of the project (2000-2009), initially available only to institutions that contributed to their creation, were released into the public domain on 1 January 2015. The approximately 40,000 texts produced during Phase 2 (2009- ), of which 34,963 had been released as of 2020, originally similarly restricted, were similarly freed from all restrictions on 1 August 2020. As of that date anyone is free to take and use these texts for any purpose (modify them, annotate them, distribute them, etc.). But we do respectfully request that due credit and attribution be given to their original source.</p>
<p>Users should be aware of the process of creating the TCP texts, and therefore of any assumptions that can be made about the data.</p>
<p>Text selection was based on the New Cambridge Bibliography of English Literature (NCBEL). If an author (or for an anonymous work, the title) appears in NCBEL, then their works are eligible for inclusion. Selection was intended to range over a wide variety of subject areas, to reflect the true nature of the print record of the period. In general, first editions of a works in English were prioritized, although there are a number of works in other languages, notably Latin and Welsh, included and sometimes a second or later edition of a work was chosen if there was a compelling reason to do so.</p>
<p>Image sets were sent to external keying companies for transcription and basic encoding. Quality assurance was then carried out by editorial teams in Oxford and Michigan. 5% (or 5 pages, whichever is the greater) of each text was proofread for accuracy and those which did not meet QA standards were returned to the keyers to be redone. After proofreading, the encoding was enhanced and/or corrected and characters marked as illegible were corrected where possible up to a limit of 100 instances per text. Any remaining illegibles were encoded as <gap>s. Understanding these processes should make clear that, while the overall quality of TCP data is very good, some errors will remain and some readable characters will be marked as illegible. Users should bear in mind that in all likelihood such instances will never have been looked at by a TCP editor.</p>
<p>The texts were encoded and linked to page images in accordance with level 4 of the TEI in Libraries guidelines.</p>
<p>Copies of the texts have been issued variously as SGML (TCP schema; ASCII text with mnemonic sdata character entities); displayable XML (TCP schema; characters represented either as UTF-8 Unicode or text strings within braces); or lossless XML (TEI P5, characters represented either as UTF-8 Unicode or TEI g elements).</p>
<p>Keying and markup guidelines are available at the <ref target="http://www.textcreationpartnership.org/docs/.">Text Creation Partnership web site</ref>.</p>
</editorialDecl>
<listPrefixDef>
<prefixDef ident="tcp"
matchPattern="([0-9\-]+):([0-9IVX]+)"
replacementPattern="http://eebo.chadwyck.com/downloadtiff?vid=$1&page=$2"/>
<prefixDef ident="char"
matchPattern="(.+)"
replacementPattern="https://raw.githubusercontent.com/textcreationpartnership/Texts/master/tcpchars.xml#$1"/>
</listPrefixDef>
</encodingDesc>
<profileDesc>
<langUsage>
<language ident="wel">wel</language>
</langUsage>
<textClass>
<keywords scheme="http://authorities.loc.gov/">
<term>Church of England -- Liturgy -- Welsh -- Texts -- Early works to 1800.</term>
</keywords>
</textClass>
</profileDesc>
<revisionDesc>
<change>
<date>2012-03</date>
<label>TCP</label>Assigned for keying and markup</change>
<change>
<date>2012-03</date>
<label>SPi Global</label>Keyed and coded from ProQuest page images</change>
<change>
<date>2012-06</date>
<label>Jayne Henley</label>Sampled and proofread</change>
<change>
<date>2012-06</date>
<label>Jayne Henley</label>Text and markup reviewed and edited</change>
<change>
<date>2013-02</date>
<label>pfs</label>Batch review (QC) and XML conversion</change>
</revisionDesc>
</teiHeader>
<text xml:lang="wel">
<front>
<div type="title_page">
<pb facs="tcp:180984:1"/>
<pb facs="tcp:180984:1"/>
<p>LLYFR GWEDDI Gyffredin, a Gweni<g ref="char:EOLhyphen"/>dogaeth y Sacramentau, a chynneddfa<gap reason="illegible" extent="1 letter">
<desc>•</desc>
</gap> a Ceremo<g ref="char:EOLhyphen"/>niau eraill yn Eglwys <hi>Loegr.</hi>
</p>
<p>A Brintiwyd yn Llun<g ref="char:EOLhyphen"/>dain gan <hi>Bonham Norton,</hi> a <hi>Iohn Bill,</hi> Printwyr i ardder<g ref="char:EOLhyphen"/>choccaf Fawrhydi y Brenhin. 1621.</p>
</div>
</front>
<body>
<div type="calendar">
<pb facs="tcp:180984:2"/>
<head>¶Almanac tros xxxiij flynyddoedd.</head>
<p>
<table>
<row>
<cell role="label">
<hi>Oedran yr Arglwydd.</hi>
</cell>
<cell role="label">
<hi>Y Prif</hi>
</cell>
<cell role="label">
<hi>Llythyren y Sul.</hi>
</cell>
<cell role="label">
<hi>Y dydd cyntaf o'r Garawys.</hi>
</cell>
<cell role="label">
<hi>Y Paſc</hi>
</cell>
<cell role="label">
<hi>Wythnos y gweddiau.</hi>
</cell>
<cell role="label">
<hi>Dydd y Dyrchafel.</hi>
</cell>
<cell role="label">
<hi>Y Sulgwyn</hi>
</cell>
<cell role="label">
<hi>Sul yr Aduent.</hi>
</cell>
</row>
<row>
<cell>1621</cell>
<cell>7</cell>
<cell>G</cell>
<cell>14. Chwefr.</cell>
<cell>1. Ebrill.</cell>
<cell>7. Mai.</cell>
<cell>10. Mai.</cell>
<cell>20. Mai.</cell>
<cell>2. Rhagf.</cell>
</row>
<row>
<cell>1622</cell>
<cell>8</cell>
<cell>F</cell>
<cell>6. Mawrth.</cell>
<cell>21.</cell>
<cell>27.</cell>
<cell>30.</cell>
<cell>9. Mehefin</cell>
<cell>1.</cell>
</row>
<row>
<cell>1623</cell>
<cell>9</cell>
<cell>E</cell>
<cell>16. Chwefr.</cell>
<cell>13.</cell>
<cell>19.</cell>
<cell>22.</cell>
<cell>1.</cell>
<cell>30. Tach.</cell>
</row>
<row>
<cell>1624</cell>
<cell>10</cell>
<cell>
<hi>D C</hi>
</cell>
<cell>11.</cell>
<cell>28. Mawrth.</cell>
<cell>3.</cell>
<cell>6.</cell>
<cell>16. Mai.</cell>
<cell>28.</cell>
</row>
<row>
<cell>1625</cell>
<cell>11</cell>
<cell>B</cell>
<cell>2. Mawrth.</cell>
<cell>17. Ebrill.</cell>
<cell>23.</cell>
<cell>26.</cell>
<cell>5. Mehefin.</cell>
<cell>27.</cell>
</row>
<row>
<cell>1626</cell>
<cell>12</cell>
<cell>A</cell>
<cell>22. Chwefr.</cell>
<cell>9.</cell>
<cell>15.</cell>
<cell>18.</cell>
<cell>28. Mai.</cell>
<cell>3. Rhagf.</cell>
</row>
<row>
<cell>1627</cell>
<cell>13</cell>
<cell>G</cell>
<cell>7.</cell>
<cell>25. Mawrth.</cell>
<cell>30. Ebrill.</cell>
<cell>3.</cell>
<cell>13.</cell>
<cell>2.</cell>
</row>
<row>
<cell>1628</cell>
<cell>14</cell>
<cell>
<hi>F E</hi>
</cell>
<cell>27.</cell>
<cell>13. Ebrill.</cell>
<cell>19. Mai.</cell>
<cell>22.</cell>
<cell>1. Mehefin</cell>
<cell>13. Tach.</cell>
</row>
<row>
<cell>1629</cell>
<cell>15</cell>
<cell>D</cell>
<cell>18.</cell>
<cell>5.</cell>
<cell>11.</cell>
<cell>14.</cell>
<cell>24. Mai.</cell>
<cell>29.</cell>
</row>
<row>
<cell>1630</cell>
<cell>16</cell>
<cell>C</cell>
<cell>10.</cell>
<cell>28. Mawrth.</cell>
<cell>3.</cell>
<cell>6.</cell>
<cell>16.</cell>
<cell>28.</cell>
</row>
<row>
<cell>1631</cell>
<cell>17</cell>
<cell>B</cell>
<cell>23.</cell>
<cell>10. Ebrill.</cell>
<cell>16.</cell>
<cell>19.</cell>
<cell>29.</cell>
<cell>27.</cell>
</row>
<row>
<cell>1632</cell>
<cell>18</cell>
<cell>A G</cell>
<cell>20.</cell>
<cell>1.</cell>
<cell>7.</cell>
<cell>10.</cell>
<cell>20.</cell>
<cell>2. Rhagf.</cell>
</row>
<row>
<cell>1633</cell>
<cell>19</cell>
<cell>F</cell>
<cell>6. Mawrth.</cell>
<cell>21.</cell>
<cell>27.</cell>
<cell>30.</cell>
<cell>9. Mehefin</cell>
<cell>1.</cell>
</row>
<row>
<cell>1634</cell>
<cell>1</cell>
<cell>E</cell>
<cell>19. Chwefr.</cell>
<cell>6.</cell>
<cell>12.</cell>
<cell>15.</cell>
<cell>25.</cell>
<cell>30. Tach.</cell>
</row>
<row>
<cell>1635</cell>
<cell>2</cell>
<cell>D</cell>
<cell>11.</cell>
<cell>29. Mawrth</cell>
<cell>4.</cell>
<cell>7.</cell>
<cell>17. Mai.</cell>
<cell>29.</cell>
</row>
<row>
<cell>1636</cell>
<cell>3</cell>
<cell>
<hi>C B</hi>
</cell>
<cell>2. Mawrth.</cell>
<cell>17. Ebrill.</cell>
<cell>23.</cell>
<cell>26.</cell>
<cell>5. Mehefin</cell>
<cell>27.</cell>
</row>
<row>
<cell>1637</cell>
<cell>4</cell>
<cell>A</cell>
<cell>22. Chwefr.</cell>
<cell>9.</cell>
<cell>15.</cell>
<cell>18.</cell>
<cell>28. Mai.</cell>
<cell>3. Rhagf.</cell>
</row>
<row>
<cell>1638</cell>
<cell>5</cell>
<cell>G</cell>
<cell>7.</cell>
<cell>25. Mawrth</cell>
<cell>30 Ebrill.</cell>
<cell>3.</cell>
<cell>13.</cell>
<cell>2.</cell>
</row>
<row>
<cell>1639</cell>
<cell>6</cell>
<cell>F</cell>
<cell>27.</cell>
<cell>13. Ebrill.</cell>
<cell>20. Mai.</cell>
<cell>23.</cell>
<cell>2. Mehefin</cell>
<cell>1.</cell>
</row>
<row>
<cell>1640</cell>
<cell>7</cell>
<cell>
<hi>E D</hi>
</cell>
<cell>19.</cell>
<cell>5.</cell>
<cell>11.</cell>
<cell>14.</cell>
<cell>24. Mai.</cell>
<cell>29. Tach.</cell>
</row>
<row>
<cell>1641</cell>
<cell>8</cell>
<cell>C</cell>
<cell>10. Mawrth</cell>
<cell>25.</cell>
<cell>31.</cell>
<cell>3. Mehefin.</cell>
<cell>13. Mehef.</cell>
<cell>28.</cell>
</row>
<row>
<cell>1642</cell>
<cell>9</cell>
<cell>B</cell>
<cell>23. Chwefr.</cell>
<cell>10.</cell>
<cell>15.</cell>
<cell>19. Mai.</cell>
<cell>29. Mai.</cell>
<cell>27.</cell>
</row>
<row>
<cell>1643</cell>
<cell>10</cell>
<cell>A</cell>
<cell>15.</cell>
<cell>2.</cell>
<cell>7.</cell>
<cell>11.</cell>
<cell>21.</cell>
<cell>3. Rhagf.</cell>
</row>
<row>
<cell>1644</cell>
<cell>11</cell>
<cell>G F</cell>
<cell>6. Mawrth.</cell>
<cell>21.</cell>
<cell>26.</cell>
<cell>30.</cell>
<cell>9. Mehefin</cell>
<cell>1.</cell>
</row>
<row>
<cell>1645</cell>
<cell>12</cell>
<cell>G</cell>
<cell>19. Chwefr.</cell>
<cell>6.</cell>
<cell>11.</cell>
<cell>15.</cell>
<cell>2. Mai.</cell>
<cell>30. Tach.</cell>
</row>
<row>
<cell>1646</cell>
<cell>13</cell>
<cell>D</cell>
<cell>11.</cell>
<cell>29. Mawrth.</cell>
<cell>3.</cell>
<cell>7.</cell>
<cell>17.</cell>
<cell>29.</cell>
</row>
<row>
<cell>1647</cell>
<cell>14</cell>
<cell>C</cell>
<cell>3. Mawrth.</cell>
<cell>18. Ebrill.</cell>
<cell>23.</cell>
<cell>27.</cell>
<cell>6. Mehef.</cell>
<cell>28.</cell>
</row>
<row>
<cell>1648</cell>
<cell>15</cell>
<cell>
<hi>B A</hi>
</cell>
<cell>16. Chwefr.</cell>
<cell>2. Ebrill.</cell>
<cell>7.</cell>
<cell>11.</cell>
<cell>21. Mai.</cell>
<cell>3. Rhagf.</cell>
</row>
<row>
<cell>1649</cell>
<cell>16</cell>
<cell>G</cell>
<cell>7.</cell>
<cell>25. Mawrth</cell>
<cell>29. Ebrill.</cell>
<cell>3.</cell>
<cell>13.</cell>
<cell>2.</cell>
</row>
<row>
<cell>1650</cell>
<cell>17</cell>
<cell>F</cell>
<cell>27.</cell>
<cell>14. Ebrill.</cell>
<cell>19. Mai.</cell>
<cell>23.</cell>
<cell>2. Mehef.</cell>
<cell>1.</cell>
</row>
<row>
<cell>1651</cell>
<cell>18</cell>
<cell>E</cell>
<cell>12.</cell>
<cell>30. Mawrth.</cell>
<cell>4.</cell>
<cell>8.</cell>
<cell>18. Mai.</cell>
<cell>30. Tach.</cell>
</row>
<row>
<cell>1652</cell>
<cell>19</cell>
<cell>
<hi>D C</hi>
</cell>
<cell>3. Mawrth.</cell>
<cell>18. Ebrill.</cell>
<cell>23.</cell>
<cell>27.</cell>
<cell>6. Mehef.</cell>
<cell>28.</cell>
</row>
<row>
<cell>1653</cell>
<cell>1</cell>
<cell>B</cell>
<cell>23. Chwefr.</cell>
<cell>10.</cell>
<cell>15.</cell>
<cell>19.</cell>
<cell>29. Mai.</cell>
<cell>27.</cell>
</row>
</table>
</p>
<p>¶ Nota, fod y Prif a llythyren y Sul yn newidio bob blwyddyn ar y dydd cyntaf o Ionawr.</p>
<p>¶ Nota, mai y Sul cyntaf o'r Adfent fydd y Sul ar ol Gwyl Lini, yr hwn ſydd y 26 o Dachwedd. Noda hefyd, fod cyfrif blwyddyn oedran yr Arglwydd, yn Eglwys Loegr, yn dechreu y 25. o fis Mawrth, yr hwn a dybir ei fod y dydd cyntaf y crewyd y byd ar<g ref="char:EOLhyphen"/>no, a'r dydd yr ymddygwyd Chriſt ym-mru Mair forwyn.</p>
</div>
<div type="almanac">
<div type="month">
<pb facs="tcp:180984:2"/>
<head>¶Ionawr y ſydd iddo xxxj o ddyddiau.</head>
<p>
<table>
<row>
<cell role="label" cols="2">Haul yn
<list>
<item>cyfodi</item>
<item>mach<g ref="char:EOLhyphen"/>lud.</item>
</list>
</cell>
<cell role="label" rows="2" cols="2">awr
<list>
<item>7. mi. 34.</item>
<item>4. mi. 26</item>
</list>
</cell>
<cell role="label" rows="2" cols="2">
<hi>Boreuol weddi.</hi>
<list>
<item>
<hi>ii. Llith.</hi>
</item>
<item>i. Llith</item>
</list>
</cell>
<cell role="label" rows="2" cols="2">
<hi>Pryd<g ref="char:EOLhyphen"/>nhawn weddi.</hi>
<list>
<item>
<hi>ii. Llith.</hi>
</item>
<item>i. Llith</item>
</list>
</cell>
</row>
<row>
<cell cols="2">Psalmau</cell>
</row>
<row>
<cell>i</cell>
<cell>A</cell>
<cell>Kalend.</cell>
<cell>Enwaediad.</cell>
<cell>Gen. xvii.</cell>
<cell>Rhuf. ii.</cell>
<cell>Deu. x.</cell>
<cell>Coloſ. ii.</cell>
</row>
<row>
<cell>ii</cell>
<cell>b</cell>
<cell>iiii. No.</cell>
<cell> </cell>
<cell>Gen. i.</cell>
<cell>Matth. i.</cell>
<cell>Gen. ii.</cell>
<cell>Rhuf. i.</cell>
</row>
<row>
<cell>iii</cell>
<cell>c</cell>
<cell>iii. No.</cell>
<cell> </cell>
<cell>iii</cell>
<cell>ii</cell>
<cell>iiii</cell>
<cell>ii</cell>
</row>
<row>
<cell>iiii</cell>
<cell>d</cell>
<cell>Prid. No.</cell>
<cell> </cell>
<cell>v</cell>
<cell>iii</cell>
<cell>vi</cell>
<cell>iii</cell>
</row>
<row>
<cell>v</cell>
<cell>e</cell>
<cell>Nonas</cell>
<cell> </cell>
<cell>vii</cell>
<cell>iiii</cell>
<cell>viii</cell>
<cell>iiii</cell>
</row>
<row>
<cell>vi</cell>
<cell>f</cell>
<cell>viii Id.</cell>
<cell>Ystwyll</cell>
<cell>Eſa lx.</cell>
<cell>Luc. iii.</cell>
<cell>Eſa. xlix.</cell>
<cell>Ioan. ii.</cell>
</row>
<row>
<cell>vii</cell>
<cell>g</cell>
<cell>vii Id.</cell>
<cell> </cell>
<cell>Gen. ix.</cell>
<cell>Matth. v.</cell>
<cell>Gen. xii</cell>
<cell>Rhuf. v.</cell>
</row>
<row>
<cell>viii</cell>
<cell>A</cell>
<cell>vi Id.</cell>
<cell>Lucian.</cell>
<cell>xiii</cell>
<cell>vi</cell>
<cell>xiiii</cell>
<cell>vi</cell>
</row>
<row>
<cell>ix</cell>
<cell>b</cell>
<cell>v Id.</cell>
<cell> </cell>
<cell>xv</cell>
<cell>vii</cell>
<cell>xvi</cell>
<cell>vii</cell>
</row>
<row>
<cell>x</cell>
<cell>c</cell>
<cell>iiii Id.</cell>
<cell> </cell>
<cell>xvii</cell>
<cell>viii</cell>
<cell>xviii</cell>
<cell>viii</cell>
</row>
<row>
<cell>xi</cell>
<cell>d</cell>
<cell>iii Id.</cell>
<cell> </cell>
<cell>xix</cell>
<cell>ix</cell>
<cell>xx</cell>
<cell>ix</cell>
</row>
<row>
<cell>xii</cell>
<cell>e</cell>
<cell>Prid. Id.</cell>
<cell>Sol in Aqu</cell>
<cell>xxi</cell>
<cell>x</cell>
<cell>xxii</cell>
<cell>x</cell>
</row>
<row>
<cell>xiii</cell>
<cell>f</cell>
<cell>
<hi>Idus.</hi>
</cell>
<cell>Hilar.</cell>
<cell>xxiii.</cell>
<cell>xi</cell>
<cell>xxiiii</cell>
<cell>xi</cell>
</row>
<row>
<cell>xiiii</cell>
<cell>g</cell>
<cell>xix kl.</cell>
<cell>Chwefror.</cell>
<cell>xxv</cell>
<cell>xii</cell>
<cell>xxvi</cell>
<cell>xii</cell>
</row>
<row>
<cell>xv</cell>
<cell> </cell>
<cell>xviii kl.</cell>
<cell> </cell>
<cell>xxvii.</cell>
<cell>xiii</cell>
<cell>xxviii</cell>
<cell>xiii</cell>
</row>
<row>
<cell>xvi</cell>
<cell>b</cell>
<cell>xvii kl.</cell>
<cell> </cell>
<cell>xxix</cell>
<cell>xiiii</cell>
<cell>xxx</cell>
<cell>xiiii</cell>
</row>
<row>
<cell>xvii</cell>
<cell>c</cell>
<cell>xvi kl.</cell>
<cell> </cell>
<cell>xxxi</cell>
<cell>xv</cell>
<cell>xxxii</cell>
<cell>xv</cell>
</row>
<row>
<cell>xviii</cell>
<cell>d</cell>
<cell>xv kl.</cell>
<cell>Priſca.</cell>
<cell>xxxiii</cell>
<cell>xvi</cell>
<cell>xxxiiii</cell>
<cell>xvi</cell>
</row>
<row>
<cell>xix</cell>
<cell>e</cell>
<cell>xiiii kl.</cell>
<cell> </cell>
<cell>xxxv</cell>
<cell>xvii</cell>
<cell>xxxvii</cell>
<cell>i. Cor. i.</cell>
</row>
<row>
<cell>xx</cell>
<cell>f</cell>
<cell>xiii kl.</cell>
<cell>Fabian.</cell>
<cell>xxxviii</cell>
<cell>xviii</cell>
<cell>xxxix</cell>
<cell>ii</cell>
</row>
<row>
<cell>xxi</cell>
<cell>g</cell>
<cell>xii kl.</cell>
<cell>Agnes.</cell>
<cell>xl</cell>
<cell>xix</cell>
<cell>xli</cell>
<cell>iii</cell>
</row>
<row>
<cell>xxii</cell>
<cell>A</cell>
<cell>xi kl.</cell>
<cell>Vincent.</cell>
<cell>xlii</cell>
<cell>xx</cell>
<cell>xliii</cell>
<cell>iiii</cell>
</row>
<row>
<cell>xxiii</cell>
<cell>b</cell>
<cell>x kl.</cell>
<cell> </cell>
<cell>xliiii</cell>
<cell>xxi</cell>
<cell>xlv</cell>
<cell>v</cell>
</row>
<row>
<cell>xxiiii</cell>
<cell>c</cell>
<cell>ix kl.</cell>
<cell> </cell>
<cell>xlvi</cell>
<cell>xxii</cell>
<cell>xlvii</cell>
<cell>vi</cell>
</row>
<row>
<cell>xxv</cell>
<cell>d</cell>
<cell>viii kl.</cell>
<cell>Troad S.</cell>
<cell>Doeth. 5.</cell>
<cell>Act. xxi.</cell>
<cell>Doeth. vi.</cell>
<cell>Act. 26.</cell>
</row>
<row>
<cell>xxvi</cell>
<cell>e</cell>
<cell>vii kl.</cell>
<cell>Paul.</cell>
<cell>Gen. 48.</cell>
<cell>Matth. 23</cell>
<cell>Gen. xlix.</cell>
<cell>i. Cor. vii.</cell>
</row>
<row>
<cell>xxvii</cell>
<cell>f</cell>
<cell>vi kl.</cell>
<cell> </cell>
<cell>l</cell>
<cell>xxiiii</cell>
<cell>Exod. i.</cell>
<cell>viii</cell>
</row>
<row>
<cell>xxxiii</cell>
<cell>g</cell>
<cell>v kl.</cell>
<cell> </cell>
<cell>Exod. ii.</cell>
<cell>xxv</cell>
<cell>iii</cell>
<cell>ix</cell>
</row>
<row>
<cell>xxix</cell>
<cell>
<hi>A</hi>
</cell>
<cell>iiii kl.</cell>
<cell> </cell>
<cell>iiii</cell>
<cell>xxvi</cell>
<cell>v</cell>
<cell>x</cell>
</row>
<row>
<cell>xxx</cell>
<cell>b</cell>
<cell>iii kl.</cell>
<cell> </cell>
<cell>vii</cell>
<cell>xxvii</cell>
<cell>viii</cell>
<cell>xi</cell>
</row>
<row>
<cell>xxxi</cell>
<cell>c</cell>
<cell>Prid. kl.</cell>
<cell> </cell>
<cell>ix</cell>
<cell>xxviii</cell>
<cell>x</cell>
<cell>xii</cell>
</row>
</table>
</p>
</div>
<div type="month">
<pb facs="tcp:180984:3"/>
<head>¶Chwefror y ſydd iddo xxviij o ddyddiau.</head>
<p>
<table>
<row>
<cell role="label" cols="2">Haul yn
<list>
<item>cyfodi</item>
<item>mach<g ref="char:EOLhyphen"/>lud.</item>
</list>
</cell>
<cell role="label" rows="2" cols="2">awr
<list>
<item>6. mi. 50.</item>
<item>5. mi. 10</item>
</list>
</cell>
<cell role="label" rows="2" cols="2">
<hi>Boreuol weddi.</hi>
<list>
<item>
<hi>ii. Llith.</hi>
</item>
<item>i. Llith</item>
</list>
</cell>
<cell role="label" rows="2" cols="2">
<hi>Pryd<g ref="char:EOLhyphen"/>nhawn weddi.</hi>
<list>
<item>
<hi>ii. Llith.</hi>
</item>
<item>i. Llith</item>
</list>
</cell>
</row>
<row>
<cell cols="2">Psalmau</cell>
</row>
<row>
<cell>i</cell>
<cell>d</cell>
<cell>Kalend</cell>
<cell>Ympryd.</cell>
<cell>Exod. xi.</cell>
<cell>Marc. 1.</cell>
<cell>Exod. xii.</cell>
<cell>1. Cor. xii.</cell>
</row>
<row>
<cell>ii</cell>
<cell>e</cell>
<cell>iiii No.</cell>
<cell>
<hi>Pur Mair</hi>
</cell>
<cell>Doeth. ix</cell>
<cell>ii</cell>
<cell>Doeth. 12</cell>
<cell>xiiii</cell>
</row>
<row>
<cell>iii</cell>
<cell>t</cell>
<cell>iii No.</cell>
<cell>Blaſii.</cell>
<cell>Exod. xiii.</cell>
<cell>iii</cell>
<cell>Exo. xiiii</cell>
<cell>xv</cell>
</row>
<row>
<cell>iiii</cell>
<cell>g</cell>
<cell>Prid. No.</cell>
<cell> </cell>
<cell>xv</cell>
<cell>iiii</cell>
<cell>xvi</cell>
<cell>xvi</cell>
</row>
<row>
<cell>v</cell>
<cell>
<hi>A</hi>
</cell>
<cell>Nonas.</cell>
<cell>Agath.</cell>
<cell>xvii</cell>
<cell>v</cell>
<cell>xviii</cell>
<cell>2. Cor. i.</cell>
</row>
<row>
<cell>vi</cell>
<cell>v</cell>
<cell>viii Id.</cell>
<cell> </cell>
<cell>xix</cell>
<cell>vi</cell>
<cell>xx</cell>
<cell>ii</cell>