tonus 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BIBLIOGRAPHY.md +99 -0
- package/LICENSE +29 -0
- package/README.md +108 -0
- package/dist/data/cal.d.ts +10 -0
- package/dist/data/cal.js +3862 -0
- package/dist/data/commune.d.ts +17 -0
- package/dist/data/commune.js +1333 -0
- package/dist/data/gr.d.ts +5 -0
- package/dist/data/gr.js +13449 -0
- package/dist/data/kyriale.d.ts +11 -0
- package/dist/data/kyriale.js +971 -0
- package/dist/data/la.d.ts +5 -0
- package/dist/data/la.js +14229 -0
- package/dist/data/lh.d.ts +5 -0
- package/dist/data/lh.js +3619 -0
- package/dist/data/lu.d.ts +5 -0
- package/dist/data/lu.js +23779 -0
- package/dist/data/masses.d.ts +18 -0
- package/dist/data/masses.js +297 -0
- package/dist/data/office-roman.d.ts +19 -0
- package/dist/data/office-roman.js +13792 -0
- package/dist/data/office.d.ts +12 -0
- package/dist/data/office.js +13052 -0
- package/dist/data/propers.d.ts +13 -0
- package/dist/data/propers.js +7584 -0
- package/dist/data/psalms.d.ts +4 -0
- package/dist/data/psalms.js +10 -0
- package/dist/data/psalms.json +22918 -0
- package/dist/data/tones.d.ts +20 -0
- package/dist/data/tones.js +153 -0
- package/dist/data/types.d.ts +3 -0
- package/dist/data/types.js +2 -0
- package/dist/engines/cal/calendar.d.ts +21 -0
- package/dist/engines/cal/calendar.js +265 -0
- package/dist/engines/cal/date.d.ts +31 -0
- package/dist/engines/cal/date.js +141 -0
- package/dist/engines/cal/types.d.ts +66 -0
- package/dist/engines/cal/types.js +189 -0
- package/dist/engines/chant/chant.d.ts +10 -0
- package/dist/engines/chant/chant.js +135 -0
- package/dist/engines/chant/hour.d.ts +8 -0
- package/dist/engines/chant/hour.js +135 -0
- package/dist/engines/chant/intone.d.ts +8 -0
- package/dist/engines/chant/intone.js +84 -0
- package/dist/engines/chant/ordinary.d.ts +7 -0
- package/dist/engines/chant/ordinary.js +232 -0
- package/dist/engines/chant/propers.d.ts +8 -0
- package/dist/engines/chant/propers.js +107 -0
- package/dist/engines/chant/psalm.d.ts +7 -0
- package/dist/engines/chant/psalm.js +60 -0
- package/dist/engines/chant/syllabify.d.ts +20 -0
- package/dist/engines/chant/syllabify.js +192 -0
- package/dist/engines/chant/types.d.ts +76 -0
- package/dist/engines/chant/types.js +34 -0
- package/dist/engines/epoch.d.ts +2 -0
- package/dist/engines/epoch.js +14 -0
- package/dist/engines/harmonia/api.d.ts +35 -0
- package/dist/engines/harmonia/api.js +90 -0
- package/dist/engines/harmonia/aspects.d.ts +8 -0
- package/dist/engines/harmonia/aspects.js +15 -0
- package/dist/engines/harmonia/data/doctrines.d.ts +16 -0
- package/dist/engines/harmonia/data/doctrines.js +154 -0
- package/dist/engines/harmonia/data/vowels.d.ts +10 -0
- package/dist/engines/harmonia/data/vowels.js +21 -0
- package/dist/engines/harmonia/presence.d.ts +13 -0
- package/dist/engines/harmonia/presence.js +48 -0
- package/dist/engines/harmonia/tabula.d.ts +28 -0
- package/dist/engines/harmonia/tabula.js +32 -0
- package/dist/engines/harmonia/voice.d.ts +19 -0
- package/dist/engines/harmonia/voice.js +51 -0
- package/dist/engines/imprint.d.ts +30 -0
- package/dist/engines/imprint.js +152 -0
- package/dist/engines/planet/appearance.d.ts +40 -0
- package/dist/engines/planet/appearance.js +84 -0
- package/dist/engines/planet/aspects.d.ts +5 -0
- package/dist/engines/planet/aspects.js +41 -0
- package/dist/engines/planet/math.d.ts +13 -0
- package/dist/engines/planet/math.js +56 -0
- package/dist/engines/planet/orbital.d.ts +25 -0
- package/dist/engines/planet/orbital.js +223 -0
- package/dist/engines/planet/planet.d.ts +13 -0
- package/dist/engines/planet/planet.js +198 -0
- package/dist/engines/planet/position.d.ts +62 -0
- package/dist/engines/planet/position.js +156 -0
- package/dist/engines/planet/types.d.ts +61 -0
- package/dist/engines/planet/types.js +14 -0
- package/dist/engines/score/api.d.ts +54 -0
- package/dist/engines/score/api.js +87 -0
- package/dist/engines/score/articulation.d.ts +6 -0
- package/dist/engines/score/articulation.js +112 -0
- package/dist/engines/score/emitters/midi.d.ts +65 -0
- package/dist/engines/score/emitters/midi.js +158 -0
- package/dist/engines/score/emitters/musicxml.d.ts +18 -0
- package/dist/engines/score/emitters/musicxml.js +166 -0
- package/dist/engines/score/infer.d.ts +4 -0
- package/dist/engines/score/infer.js +77 -0
- package/dist/engines/score/ir.d.ts +4 -0
- package/dist/engines/score/ir.js +177 -0
- package/dist/engines/score/meta.d.ts +19 -0
- package/dist/engines/score/meta.js +34 -0
- package/dist/engines/score/neume.d.ts +3 -0
- package/dist/engines/score/neume.js +26 -0
- package/dist/engines/score/parse.d.ts +3 -0
- package/dist/engines/score/parse.js +359 -0
- package/dist/engines/score/phrasing.d.ts +24 -0
- package/dist/engines/score/phrasing.js +257 -0
- package/dist/engines/score/prosody.d.ts +35 -0
- package/dist/engines/score/prosody.js +109 -0
- package/dist/engines/score/tabula.d.ts +70 -0
- package/dist/engines/score/tabula.js +109 -0
- package/dist/engines/score/types.d.ts +159 -0
- package/dist/engines/score/types.js +2 -0
- package/dist/engines/temper/api.d.ts +60 -0
- package/dist/engines/temper/api.js +130 -0
- package/dist/engines/temper/data/constants.d.ts +27 -0
- package/dist/engines/temper/data/constants.js +150 -0
- package/dist/engines/temper/data/guido.d.ts +14 -0
- package/dist/engines/temper/data/guido.js +29 -0
- package/dist/engines/temper/data/modes.d.ts +38 -0
- package/dist/engines/temper/data/modes.js +158 -0
- package/dist/engines/temper/gabc.d.ts +5 -0
- package/dist/engines/temper/gabc.js +53 -0
- package/dist/engines/temper/gamut.d.ts +9 -0
- package/dist/engines/temper/gamut.js +24 -0
- package/dist/engines/temper/guido.d.ts +16 -0
- package/dist/engines/temper/guido.js +48 -0
- package/dist/engines/temper/interval.d.ts +15 -0
- package/dist/engines/temper/interval.js +31 -0
- package/dist/engines/temper/modes.d.ts +6 -0
- package/dist/engines/temper/modes.js +13 -0
- package/dist/engines/temper/neume.d.ts +14 -0
- package/dist/engines/temper/neume.js +59 -0
- package/dist/engines/temper/pitch.d.ts +40 -0
- package/dist/engines/temper/pitch.js +129 -0
- package/dist/engines/temper/scale.d.ts +37 -0
- package/dist/engines/temper/scale.js +217 -0
- package/dist/engines/temper/step.d.ts +23 -0
- package/dist/engines/temper/step.js +53 -0
- package/dist/index.d.ts +40 -0
- package/dist/index.js +27 -0
- package/package.json +60 -0
package/dist/data/lh.js
ADDED
|
@@ -0,0 +1,3619 @@
|
|
|
1
|
+
export const LH_SOURCE = {
|
|
2
|
+
book: "Liber Hymnarius",
|
|
3
|
+
year: 1983,
|
|
4
|
+
editor: "Solesmes",
|
|
5
|
+
code: "lh",
|
|
6
|
+
};
|
|
7
|
+
export const LH_DATA = [
|
|
8
|
+
{
|
|
9
|
+
id: "gregobase:4238",
|
|
10
|
+
incipit: "Certum tenentes ordinem",
|
|
11
|
+
gabc: "(c4)Cer(f)tum(e) te(d)n\\u00e9n(e)tes(dc) \\u00f3r(de)di(e)nem,(e) (,)\\r\\npi(g)o(ghwih) po(gf)sc\\u00e1(g)mus(ghg) p\\u00e9(fe)cto(de)re(e) (;)\\r\\nho(f)ra(e) di(d)\\u00e9(e)i(dc) t\\u00e9r(d!ewf)ti(d)a(d,)\\r\\ntri(d)n\\u00e6(f) vir(e)t\\u00fa(g)tis(ghg) gl\\u00f3(fe)ri(de)am,(e) (::)\\r\\n2. Ut(f) si(e)mus(d) ha(e)bi(dc)t\\u00e1(de)cu(e)lum(e) (,)\\r\\nil(g)li(ghwih) San(gf)cto(g) Spi(ghg)r\\u00ed(fe)tu(de)i,(e) (;)\\r\\nqui(f) quon(e)dam(d) in(e) a(dc)p\\u00f3(d!ewf)sto(d)lis(d,)\\r\\nhac(d) ho(f)ra(e) di(g)stri(ghg)b\\u00fa(fe)tus(de) est.(e) (::)\\r\\n3. Hoc(f) gra(e)di(d)\\u00e9n(e)te(dc) \\u00f3r(de)di(e)ne,(e) (,)\\r\\nor(g)n\\u00e1(ghwih)vit(gf) cun(g)cta(ghg) spl\\u00e9n(fe)di(de)de(e) (;)\\r\\nre(f)gni(e) c\\u00e6(d)l\\u00e9(e)stis(dc) c\\u00f3n(d!ewf)di(d)tor(d,)\\r\\nad(d) no(f)st<i>ra</i>(e) \\u00e6(e)t\\u00e9r(g)na(ghg) pr\\u00e6(fe)mi(de)a.(e) (::)\\r\\n4. De(f)o(e) Pa(d)tri(e) sit(dc) gl\\u00f3(de)ri(e)a(e) (,)\\r\\ne(g)i\\u00fas(ghwih)que(gf) so(g)li(ghg) F\\u00ed(fe)li(de)o(e) (;)\\r\\ncum(f) Sp\\u00ed(e)ri(d)tu(e) Pa(dc)r\\u00e1(d!ewf)cli(d)to,(d,)\\r\\nin(d) sem(f)pi(e)t\\u00e9r(g)na(ghg) s\\u00e6(fe)cu(de)la.(e) (::)\\r\\nA(efe)men.(de) (::)",
|
|
12
|
+
office: "hy",
|
|
13
|
+
mode: "4",
|
|
14
|
+
pages: [
|
|
15
|
+
{ page: "12", sequence: 0, extent: 0 }
|
|
16
|
+
],
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
id: "gregobase:4239",
|
|
20
|
+
incipit: "Dicamus laudes Domino",
|
|
21
|
+
gabc: "(c4)Di(f)c\\u00e1(e)mus(d) lau(e)des(dc) D\\u00f3(de)mi(e)no(e) (,)\\r\\nfer(g)v\\u00e9n(ghwih)te(gf) prom(g)pti(ghg) sp\\u00ed(fe)ri(de)tu ;(e) (;)\\r\\nho(f)ra(e) vo(d)l\\u00fa(e)ta(dc) s\\u00e9(d!ewf)xi(d)es(d,)\\r\\nnos(d) ad(f) o(e)r\\u00e1n(g)dum(ghg) pr\\u00f3(fe)vo(de)cat.(e) (::)\\r\\n2. In(f) hac(e) e(d)nim(e) fi(dc)d\\u00e9(de)li(e)bus(e) (,)\\r\\nve(g)r\\u00e6(ghwih) sa(gf)l\\u00fa(g)tis(ghg) gl\\u00f3(fe)ri(de)a,(e) (;)\\r\\nbe(f)\\u00e1(e)ti(d) A(e)gni(dc) h\\u00f3(d!ewf)sti(d)a,(d,)\\r\\ncru(d)cis(f) vir(e)t\\u00fa(g)te(ghg) r\\u00e9d(fe)di(de)tur.(e) (::)\\r\\n3. Cu(f)ius(e) lu(d)ce(e) cla(dc)r\\u00eds(de)si(e)ma(e) (,)\\r\\nte(g)n\\u00e9(ghwih)bri(gf)cat(g) me(ghg)r\\u00ed(fe)di(de)es ;(e) (;)\\r\\nsu(f)m\\u00e1(e)mus(d) to(e)to(dc) p\\u00e9(d!ewf)cto(d)re(d,)\\r\\ntan(d)ti(f) splen(e)d\\u00f3(g)ris(ghg) gr\\u00e1(fe)ti(de)am.(e) (::)\\r\\n4. De(f)o(e) Pa(d)tri(e) sit(dc) gl\\u00f3(de)ri(e)a(e) (,)\\r\\ne(g)i\\u00fas(ghwih)que(gf) so(g)li(ghg) F\\u00ed(fe)li(de)o(e) (;)\\r\\ncum(f) Sp\\u00ed(e)ri(d)tu(e) Pa(dc)r\\u00e1(d!ewf)cli(d)to,(d,)\\r\\nin(d) sem(f)pi(e)t\\u00e9r(g)na(ghg) s\\u00e6(fe)cu(de)la.(e) (::)\\r\\nA(efe)men.(de) (::)",
|
|
22
|
+
office: "hy",
|
|
23
|
+
mode: "4",
|
|
24
|
+
pages: [
|
|
25
|
+
{ page: "13", sequence: 0, extent: 1 }
|
|
26
|
+
],
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
id: "gregobase:4240",
|
|
30
|
+
incipit: "Ternis horarum terminis",
|
|
31
|
+
gabc: "(c4)TEr(f)nis(e) ho(d)r\\u00e1(e)rum(dc) t\\u00e9r(de)mi(e)nis(e) (,)\\r\\nvo(g)l\\u00fa(ghwih)tis,(gf) dan(g)te(ghg) D\\u00f3(fe)mi(de)no,(e) (;)\\r\\ntri(f)num(e) per(d)f\\u00e9c(e)t<i>e</i>() et(dc) \\u00fa(d!ewf)ni(d)cum(d,)\\r\\ni(d)psum(f) de(e)v\\u00f3(g)ti(ghg) ps\\u00e1l(fe)li(de)mus.(e) (::)\\r\\n2. Sa(f)crum(e) De(d)i(e) my(dc)st\\u00e9(de)ri(e)um(e) (,)\\r\\npu(g)ro(ghwih) te(gf)n\\u00e9n(g)tes(ghg) p\\u00e9(fe)cto(de)re,(e) (;)\\r\\nPe(f)tri(e) ma(d)g\\u00ed(e)stri(dc) r\\u00e9(d!ewf)gu(d)la(d,)\\r\\nsi(d)gno(f) sa(e)l\\u00fa(g)tis(ghg) pr\\u00f3(fe)di(de)ta,(e) (::)\\r\\n3. Et(f) nos(e) psal(d)l\\u00e1(e)mus(dc) sp\\u00ed(de)ri(e)tu,(e) (,)\\r\\nh\\u00e6(g)r\\u00e9n(ghwih)tes(gf) sic(g) a(ghg)p\\u00f3(fe)sto(de)lis,(e) (;)\\r\\nut(f) plan(e)tas(d) ad(e)huc(dc) d\\u00e9(d!ewf)bi(d)les(d,)\\r\\nChri(d)sti(f) vir(e)t\\u00fa(g)te(ghg) d\\u00ed(fe)ri(de)gant.(e) (::)\\r\\n4. De(f)o(e) Pa(d)tri(e) sit(dc) gl\\u00f3(de)ri(e)a(e) (,)\\r\\ne(g)i\\u00fas(ghwih)que(gf) so(g)li(ghg) F\\u00ed(fe)li(de)o(e) (;)\\r\\ncum(f) Sp\\u00ed(e)ri(d)tu(e) Pa(dc)r\\u00e1(d!ewf)cli(d)to,(d,)\\r\\nin(d) sem(f)pi(e)t\\u00e9r(g)na(ghg) s\\u00e6(fe)cu(de)la.(e) (::)\\r\\nA(efe)men.(de) (::)",
|
|
32
|
+
office: "hy",
|
|
33
|
+
mode: "4",
|
|
34
|
+
pages: [
|
|
35
|
+
{ page: "13", sequence: 0, extent: 1 }
|
|
36
|
+
],
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
id: "gregobase:4241",
|
|
40
|
+
incipit: "Veni Redemptor gentium",
|
|
41
|
+
gabc: "(f3)Ve(f)ni,(f) red(f)\\u00e9m(e)ptor(f) g\\u00e9n(h)ti(g)um,(f_') (,)\\r\\no(h)st\\u00e9n(i)de(i) par(i)tum(h) V\\u00edr(i)gi(i)nis ;(j.) (;)\\r\\nmi(j)r\\u00e9(j)tur(i) om(j)ne(h) s\\u01fd(i)cu(h)lum :(f_') (,)\\r\\nta(f)lis(e) de(f)cet(h) par(i)tus(f) De(e)um.(f.) (::)\\r\\n2. Non(f) ex(f) vi(f)r\\u00ed(e)li(f) s\\u00e9(h)mi(g)ne,(f_') (,)\\r\\nsed(h) m\\u00fd(i)sti(i)co(i) spi(h)r\\u00e1(i)mi(i)ne(j.) (;)\\r\\nVer(j)bum(j) De(i)i(j) fa(h)ct<i>um</i>(h) est(i) ca(h)ro(f_') (,)\\r\\nfru(f)ct\\u00fas(e)que(f) ven(h)tris(i) fl\\u00f3(f)ru(e)it.(f.) (::)\\r\\n3. Al(f)vus(f) tu(f)m\\u00e9(e)scit(f) V\\u00edr(h)gi(g)nis,(f_') (,)\\r\\nclau(h)strum(i) pu(i)d\\u00f3(i)ris(h) p\\u00e9r(i)ma(i)net,(j.) (;)\\r\\nve(j)x\\u00edl(j)la(i) vir(j)t\\u00fa(h)tum(i) mi(h)cant,(f_') (,)\\r\\nver(f)s\\u00e1(e)tur(f) in(h) tem(i)plo(f) De(e)us.(f.) (::)\\r\\n4. Pro(f)c\\u00e9(f)dat(f) e(e) th\\u00e1(f)l<i>a</i>()mo(h) su(g)o,(f_') (,)\\r\\npu(h)d\\u00f3(i)ris(i) au(i)la(h) r\\u00e9(i)gi(i)a,(j.) (;)\\r\\ng\\u00e9(j)<i>mi</i>()n\\u00e6(j) gi(i)gas(j) subs(h)t\\u00e1n(i)ti(h)\\u00e6(f_') (,)\\r\\na(f)l\\u00e1(e)cris(f) ut(h) cur(i)rat(f) vi(e)am.(f.) (::)\\r\\n5. \\u00c6(f)qu\\u00e1(f)lis(f) \\u00e6(e)t\\u00e9r(f)no(h) Pa(g)tri,(f_') (,)\\r\\ncar(h)nis(i) tro(i)p\\u01fd(i)o(h) c\\u00edn(i)ge(i)re,(j.) (;)\\r\\nin(j)f\\u00edr(j)ma(i) no(j)stri(h) c\\u00f3r(i)po(h)ris(f_') (,)\\r\\nvir(f)t\\u00fa(e)te(f) fir(h)mans(i) p\\u00e9r(f)pe(e)ti.(f.) (::)\\r\\n6. Pr\\u00e6(f)s\\u00e9(f)pe(f) iam(e) ful(f)get(h) tu(g)um(f_') (,)\\r\\nlu(h)m\\u00e9n(i)que(i) nox(i) spi(h)rat(i) no(i)vum,(j.) (;)\\r\\nquod(j) nul(j)la(i) nox(j) in(h)t\\u00e9r(i)po(h)let(f_') (,)\\r\\nfi(f)d\\u00e9(e)que(f) iu(h)gi(i) l\\u00fa(f)ce(e)at.(f.) (::)\\r\\n7. Sit,(f) Chri(f)ste,(f) rex(e) pi(f)\\u00eds(h)si(g)me,(f_') (,)\\r\\nti(h)bi(i) Pa(i)tr\\u00ed(i)que(h) gl\\u00f3(i)ri(i)a(j.) (;)\\r\\ncum(j) Sp\\u00ed(j)ri(i)tu(j) Pa(h)r\\u00e1(i)cli(h)to,(f_') (,)\\r\\nin(f) sem(e)pi(f)t\\u00e9r(h)na(i) s\\u01fd(f)cu(e)la.(f.) (::)\\r\\nA(fgf)men.(e.f.) (::)",
|
|
42
|
+
office: "hy",
|
|
43
|
+
mode: "2",
|
|
44
|
+
pages: [
|
|
45
|
+
{ page: "11", sequence: 1, extent: 1 }
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
id: "gregobase:4243",
|
|
50
|
+
incipit: "Magnis prophetae",
|
|
51
|
+
gabc: "(c3)MA(f)gnis(e) pro(f)ph\\u00e9(h)t\\u00e6(i) v\\u00f3(j)ci(i)bus(i) (,)\\r\\nve(h)n\\u00ed(i)re(j) Chri(k)stum(jh) n\\u00fan(i)ti(j)ant,(i) (;)\\r\\nl\\u00e6(i)t\\u00e6(i) sa(j)l\\u00fa(h)tis(fh) pr\\u01fd(g)vi(f)a,(e) (,)\\r\\nqua(f) nos(e) red(f)\\u00e9(h)mit,(i) gr\\u00e1(j)ti(i)a.(i) (::)\\r\\n",
|
|
52
|
+
office: "hy",
|
|
53
|
+
mode: "d",
|
|
54
|
+
pages: [
|
|
55
|
+
{ page: "11", sequence: 2, extent: 2 }
|
|
56
|
+
],
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
id: "gregobase:4245",
|
|
60
|
+
incipit: "Christe Redemptor omnium",
|
|
61
|
+
gabc: "(c4)CHri(c)ste,(d) red(eg)\\u00e9m(g)ptor(ed) \\u00f3m(f)ni(ed)um,(d.) (;)\\r\\nex(ce) Pa(g)tre,(h) Pa(h)tris(g) U(h!iwj)ni(ig)ce,(h.) (:)\\r\\nso(hi)lus(g) an(gf)te(e) prin(dc)c\\u00ed(d)pi(de)um(e.) (;)\\r\\nna(c)tus(d) in(eg)ef(g)fa(ed)b\\u00ed(f)li(ed)ter,(d.) (::)\\r\\n2. Tu(c) lu(d)men,(eg) tu(g) splen(ed)dor(f) Pa(ed)tris,(d.) (;)\\r\\ntu(ce) spes(g) per(h)\\u00e9n(h)nis(g) \\u00f3m(h!iwj)ni(ig)um,(h.) (:)\\r\\nin(hi)t\\u00e9n(g)de(gf) quas(e) fun(dc)dunt(d) pre(de)ces(e.) (;)\\r\\ntu(c)i(d) per(eg) or(g)bem(ed) s\\u00e9r(f)vu(ed)li.(d.) (::)\\r\\n3. Sa(c)l\\u00fa(d)tis(eg) au(g)ctor,(ed) r\\u00e9(f)co(ed)le(d.) (;)\\r\\nquod(ce) no(g)stri(h) quon(h)dam(g) c\\u00f3r(h!iwj)po(ig)ris,(h.) (:)\\r\\nex(hi) il(g)li(gf)b\\u00e1(e)ta(dc) V\\u00edr(d)gi(de)ne(e.) (;)\\r\\nna(c)sc\\u00e9n(d)do,(eg) for(g)mam(ed) s\\u00fam(f)pse(ed)ris.(d.) (::)\\r\\n4. Hic(c) pr\\u00e6(d)sens(eg) te(g)st\\u00e1(ed)tur(f) di(ed)es,(d.) (;)\\r\\ncur(ce)rens(g) per(h) an(h)ni(g) c\\u00edr(h!iwj)cu(ig)lum,(h.) (:)\\r\\nquod(hi) so(g)lus(gf) a(e) se(dc)de(d) Pa(de)tris(e.) (;)\\r\\nmun(c)di(d) sa(eg)lus(g) ad(ed)v\\u00e9(f)ne(ed)ris ;(d.) (::)\\r\\n5. Hunc(c) c\\u00e6(d)lum,(eg) ter(g)ra,(ed) hunc(f) ma(ed)re,(d.) (;)\\r\\nhunc(ce) om(g)ne(h) quod(h) in(g) e(h!iwj)is(ig) est,(h.) (:)\\r\\nau(hi)ct\\u00f3(g)rem(gf) ad(e)v\\u00e9n(dc)tus(d) tu(de)i(e.) (;)\\r\\nlau(c)dat(d) ex(eg)s\\u00fal(g)tans(ed) c\\u00e1n(f)ti(ed)co.(d.) (::)\\r\\n6. Nos(c) quo(d)que,(eg) qui(g) san(ed)cto(f) tu(ed)o(d.) (;)\\r\\nred(ce)\\u00e9m(g)pti(h) su(h)mus(g) s\\u00e1n(h!iwj)gui(ig)ne,(h.) (:)\\r\\nob(hi) di(g)em(gf) na(e)t\\u00e1(dc)lis(d) tu(de)i(e.) (;)\\r\\nhym(c)num(d) no(eg)vum(g) con(ed)c\\u00ed(f)ni(ed)mus.(d.) (::)\\r\\n7. Ie(c)su,(d) ti(eg)bi(g) sit(ed) gl\\u00f3(f)ri(ed)a,(d.) (;)\\r\\nqui(ce) na(g)tus(h) es(h) de(g) V\\u00edr(h!iwj)gi(ig)ne,(h.) (:)\\r\\ncum(hi) Pa(g)t<i>re</i>(g) et(f) al(e)mo(dc) Sp\\u00ed(d)ri(de)tu,(e.) (;)\\r\\nin(c) sem(d)pi(eg)t\\u00e9r(g)na(ed) s\\u00e6(f)cu(ed)la.(d.) (::)\\r\\nA(ded)men.(cd..) (::)",
|
|
62
|
+
office: "hy",
|
|
63
|
+
mode: "1",
|
|
64
|
+
pages: [
|
|
65
|
+
{ page: "14", sequence: 0, extent: 2 }
|
|
66
|
+
],
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
id: "gregobase:4246",
|
|
70
|
+
incipit: "Candor aeternae",
|
|
71
|
+
gabc: "(c4)\\r\\nCAn(d!ewfd)dor(dc) \\u00e6(cd)t\\u00e9r(d.)n\\u00e6(d.) (,) \\r\\nDe(f)i(e)t\\u00e1(d)tis(e) al(e.)me,(d.) (;)\\r\\nChri(dh/iv)ste,(h) tu(h) lu(hg)men,(g_h) v\\u00e9(f)ni(gh)<i>a</i> {a}t(g)que(fg) vi(gvFE)ta(d.) (:)\\r\\n\\u00e1d(dg)ve(fe)nis,(dc) mor(dd)bis(c.) (,) \\r\\nh\\u00f3(fe)mi(fg)num(fe) me(dc)d\\u00e9(de)la,(ed__) (,)\\r\\npor(d!ewfd)ta(dc) sa(cd)l\\u00fa(d.)tis.(d.) (::)\\r\\n",
|
|
72
|
+
office: "hy",
|
|
73
|
+
mode: "1",
|
|
74
|
+
pages: [
|
|
75
|
+
{ page: "19", sequence: 1, extent: 3 }
|
|
76
|
+
],
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
id: "gregobase:4247",
|
|
80
|
+
incipit: "A solis ortus",
|
|
81
|
+
gabc: "(c4)A(d) so(e)lis(f) or(gh)tus(d) c\\u00e1r(efwg)di(fe)ne(e.) (;)\\r\\nad(g)\\u00fas(hj)que(j) ter(ji)r\\u00e6(hg) l\\u00ed(hi)mi(i)tem(i.) (:)\\r\\nChri(h)stum(hj//kv) ca(j)n\\u00e1(ji)mus(hg) pr\\u00edn(hih)ci(gf)pem,(efw!gh.) (;)\\r\\nna(d)tum(e) Ma(f)r\\u00ed(h)a(hih) V\\u00edr(gfg)gi(fe)ne.(e.) (::)",
|
|
82
|
+
office: "hy",
|
|
83
|
+
mode: "3",
|
|
84
|
+
pages: [
|
|
85
|
+
{ page: "22", sequence: 1, extent: 3 }
|
|
86
|
+
],
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
id: "gregobase:4255",
|
|
90
|
+
incipit: "Fit porta Christi",
|
|
91
|
+
gabc: "(c4)Fit(h) por(hhg)ta(ed) Chri(g)sti(hj) p\\u00e9r(ji)vi(hi)a(i_') (,)\\r\\nom(k)ni(kj) re(i)f\\u00e9r(ji)ta(h) gr\\u00e1(ih)ti(gh)a,(h.) (;)\\r\\ntrans(k)\\u00edt(k)que(i) rex,(k) et(klk) p\\u00e9r(j)ma(i)net(hiHG_') (,)\\r\\nclau(i)s<i>a</i>,() ut(jk) fu(i)it,(ji) per(h) s<sp>'ae</sp>(ih)cu(gh)la.(h.) (::)\\r\\n2. Sum(h)mi(hhg) Pa(ed)r\\u00e9n(g)tis(hj) F\\u00ed(ji)li(hi)us(i_') (,)\\r\\npro(k)c\\u00e9s(kj)sit(i) au(ji)la(h) V\\u00edr(ih)gi(gh)nis,(h.) (;)\\r\\nspon(k)sus,(k) red(i)\\u00e9m(k)ptor,(klk) c\\u00f3n(j)di(i)tor(hiHG_') (,)\\r\\nsu(i)\\u00e6(jk) gi(i)gas(ji) Ec(h)cl\\u00e9(ih)si(gh)\\u00e6 :(h.) (::)\\r\\n3. Ho(h)nor(hhg) ma(ed)tris(g) et(hj) g\\u00e1u(ji)di(hi)um,(i_') (,)\\r\\nim(k)m\\u00e9n(kj)sa(i) spes(ji) cre(h)d\\u00e9n(ih)ti(gh)um,(h.) (;)\\r\\nla(k)pis(k) de(i) mon(k)te(klk) v\\u00e9(j)ni(i)ens(hiHG_') (,)\\r\\nmun(i)d\\u00fam(jk)que(i) re(ji)plens(h) gr\\u00e1(ih)ti(gh)a.(h.) (::)\\r\\n4. Ex(h)s\\u00fal(hhg)tet(ed) om(g)nis(hj) \\u00e1(ji)ni(hi)ma,(i_') (,)\\r\\nquod(k) nunc(kj) sal(i)v\\u00e1(ji)tor(h) g\\u00e9n(ih)ti(gh)um(h.) (;)\\r\\nad(k)v\\u00e9(k)nit(i) mun(k)di(klk) D\\u00f3(j)mi(i)nus(hiHG_') (,)\\r\\nred(i)\\u00ed(jk)me(i)re(ji) quos(h) c\\u00f3n(ih)di(gh)dit.(h.) (::)\\r\\n5. Chri(h)sto(hhg) sit(ed) om(g)nis(hj) gl\\u00f3(ji)ri(hi)a,(i_') (,)\\r\\nquem(k) Pa(kj)ter(i) De(ji)um(h) g\\u00e9(ih)nu(gh)it,(h.) (;)\\r\\nquem(k) Vir(k)go(i) ma(k)ter(klk) \\u00e9(j)di(i)dit(hiHG_') (,)\\r\\nfe(i)c\\u00fan(jk)da(i) San(ji)cto(h) Sp\\u00ed(ih)ri(gh)tu.(h.) (::)\\r\\nA(hih)men.(gh..) (::)",
|
|
92
|
+
office: "hy",
|
|
93
|
+
mode: "2",
|
|
94
|
+
pages: [
|
|
95
|
+
{ page: "34", sequence: 0, extent: 1 }
|
|
96
|
+
],
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
id: "gregobase:4273",
|
|
100
|
+
incipit: "Excelsam Pauli gloriam",
|
|
101
|
+
gabc: "(c4)EX(ddc)c\\u00e9l(cf)sam(ed) Pau(dh)li(h) gl\\u00f3(g)ri(f)am(e/ghd.) (;)\\r\\ncon(f)c\\u00e9(ed)le(de)bret(g) Ec(g)cl\\u00e9(g)si(f)a,(ed/ffd.) (:)\\r\\nquem(d) mi(d)re(d) s{i}b<i>i</i>(dh) a(h)p\\u00f3(h)sto(g)lum(hvGFgwhGFED.) (;)\\r\\nex(e) ho(g)ste(g) fe(ghghvGFED)cit(fe) D\\u00f3(d)mi(cd)nus.(deDCd.) (::)\\r\\n\\r\\n2. Qui(ddc)bus(cf) suc(ed)c\\u00e9n(dh)sus(h) <sp>'ae</sp>(g)sti(f)bus(e/ghd.) (;)\\r\\nin(f) Chri(ed)sti(de) no(g)men(g) s<sp>'ae</sp>(g)vi(f)it,(ed/ffd.) (:)\\r\\nex(d)\\u00e1r(d)sit(d) his(dh) im(h)p\\u00e9n(h)si(g)us(hvGFgwhGFED.) (;)\\r\\na(e)m\\u00f3(g)rem(g) Chri(ghghvGFED)sti(fe) pr<sp>'ae</sp>(d)di(cd)cans.(deDCd.) (::)\\r\\n\\r\\n3. O(ddc) ma(cf)gnum(ed) Pau(dh)li(h) m\\u00e9(g)ri(f)tum!(e/ghd.) (;)\\r\\nC\\u00e6(f)lum(ed) con(de)sc\\u00e9n(g)dit(g) t\\u00e9r(g)ti(f)um,(ed/ffd.) (:)\\r\\nau(d)dit(d) ver(d)ba(dh) my(h)st\\u00e9(h)ri(g)i(hvGFgwhGFED.) (;)\\r\\nqu\\u00e6(e) nul(g)lus(g) au(ghghvGFED)det(fe) \\u00e9(d)lo(cd)qui.(deDCd.) (::)\\r\\n\\r\\n4. Dum(ddc) ver(cf)bi(ed) spar(dh)git(h) s\\u00e9(g)mi(f)na,(e/ghd.) (;)\\r\\nse(f)ges(ed) sur(de)git(g) ub(g)\\u00e9r(g)ri(f)ma;(ed/ffd.) (:)\\r\\nsic(d) c\\u00e6(d)li(d) re(dh)plent(h) h\\u00f3r(h)re(g)um(hvGFgwhGFED.) (;)\\r\\nbo(e)n\\u00f3(g)rum(g) fru(ghghvGFED)ges(fe) \\u00f3(d)pe(cd)rum.(deDCd.) (::)\\r\\n\\r\\n5. Mi(ddc)c\\u00e1n(cf)tis(ed) mo(dh)re(h) l\\u00e1m(g)pa(f)dis(e/ghd.) (;)\\r\\nper(f)f\\u00fan(ed)dit(de) or(g)bem(g) r\\u00e1(g)di(f)is;(ed/ffd.) (:)\\r\\nfu(d)gat(d) er(d)r\\u00f3(dh)rum(h) t\\u00e9(h)ne(g)bras,(hvGFgwhGFED.) (;)\\r\\nut(e) so(g)la(g) re(ghghvGFED)gnet(fe) v\\u00e9(d)ri(cd)tas.(deDCd.) (::)\\r\\n\\r\\n6. Chri(ddc)sto(cf) sit(ed) om(dh)nis(h) gl\\u00f3(g)ri(f)a,(e/ghd.) (;)\\r\\ncum(f) P{a}tr<i>e</i>(ed) et(de) al(g)mo(g) Sp\\u00ed(g)ri(f)tu,(ed/ffd.) (:)\\r\\nqui(d) de(d)dit(d) vas(dh) tam(h) f\\u00fal(h)gi(g)dum(hvGFgwhGFED.) (;)\\r\\ne(e)le(g)cti(g)\\u00f3(ghghvGFED)nis(fe) g\\u00e9n(d)ti(cd)bus.(deDCd.) (::)\\r\\nA(ded)men.(cd..) (::)",
|
|
102
|
+
office: "hy",
|
|
103
|
+
mode: "1",
|
|
104
|
+
pages: [
|
|
105
|
+
{ page: "343", sequence: 0, extent: 1 }
|
|
106
|
+
],
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
id: "gregobase:4307",
|
|
110
|
+
incipit: "Quod chorus",
|
|
111
|
+
gabc: "(c4)Quod(h) cho(g)rus(hi) va(ji)tum(h.) (,) ve(i)ne(j)r\\u00e1n(h)dus(i) o(h.)lim(g.) (;)\\r\\nSp\\u00ed(ef)ri(e)tu(d) San(dh)cto(h.) (,) c\\u00e9(h)ci(g)nit(h) re(i)pl\\u00e9(ij)tus,(g.) (:)\\r\\nin(i_) De(k)i(j) fa(ih)ctum(g.) (,) ge(d)ne(e)tr\\u00ed(f)ce(g) con(gh)stat(h'_) (,)\\r\\nes(g_)se(e) Ma(f)r\\u00ed(g.)a.(g.) (::)\\r\\n\\r\\n2. H<sp>ae</sp>c(h) De(g)um(hi) c<sp>ae</sp>(ji)li(h.) (,) Do(i)mi(j)n\\u00fam(h)que(i) ter(h.)r<sp>ae</sp>(g.) (;)\\r\\nvir(ef)go(e) con(d)c\\u00e9(dh)pit(h.) (,) pe(h)pe(g)r\\u00edt(h)que(i) vir(ij)go,(g.) (:)\\r\\nat(i_)que(k) post(j) par(ih)tum(g.) (,) m\\u00e9(d)ru(e)it(f) ma(g)n\\u00e9(gh)re(h_') (,)\\r\\nin(g_)vi(e)o(f)l\\u00e1(g.)ta.(g.) (::)\\r\\n\\r\\n3. Quem(h) se(g)nex(hi) iu(ji)stus(h.) (,) S\\u00ed(i)me(j)on(h) in(i) ul(h.)nis(g.) (;)\\r\\nin(ef) do(e)mo(d) sum(dh)psit(h.) (,) D\\u00f3(h)mi(g)ni,(h) ga(i)v\\u00ed(ij)sus(g.) (:)\\r\\nob(i_) quod(k) op(j)t\\u00e1(ih)tum(g.) (,) pr\\u00f3(d)pri(e)o(f) vi(g)d\\u00e9(gh)ret(h_') (,)\\r\\nl\\u00fa(g_)mi(e)ne(f) Chri(g.)stum.(g.) (::)\\r\\n\\r\\n4. Tu(h) li(g)bens(hi) vo(ji)tis,(h.) (,) p\\u00e9(i)ti(j)mus,(h) pre(i)c\\u00e1n(h.)tum,(g.) (;)\\r\\nre(ef)gis(e) <sp>ae</sp>(d)t\\u00e9r(dh)ni(h.) (,) g\\u00e9(h)ne(g)trix,(h) fa(i)v\\u00e9(ij)to,(g.) (:)\\r\\ncla(i_)ra(k) qu<sp>ae</sp>(j) fun(ih)dis(g.) (,) G\\u00e9(d)ni(e)ti(f) be(g)n\\u00ed(gh)gni(h'_) (,)\\r\\nm\\u00fa(g_)ne(e)ra(f) lu(g.)cis.(g.) (::)\\r\\n\\r\\n5. Chri(h)ste,(g) qui(hi) lu(ji)men(h.) (,) Pa(i)tris(j) es(h) su(i)p\\u00e9r(h.)ni,(g.) (;)\\r\\nqui(ef) Pa(e)tris(d) no(dh)bis(h.) (,) r\\u00e9(h)se(g)ras(h) pro(i)f\\u00fan(ij)da,(g.) (:)\\r\\nnos(i_) fac(k) <sp>ae</sp>(j)t\\u00e9r(ih)n<sp>ae</sp>(g.) (,) ti(d)bi(e) fer(f)re(g) lau(gh)des(h_') (,)\\r\\nlu(g_)cis(e) in(f) au(g.)la.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)",
|
|
112
|
+
office: "hy",
|
|
113
|
+
mode: "8",
|
|
114
|
+
pages: [
|
|
115
|
+
{ page: "348", sequence: 1, extent: 1 }
|
|
116
|
+
],
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
id: "gregobase:4329",
|
|
120
|
+
incipit: "Iam bone pastor",
|
|
121
|
+
gabc: "(c4)IAM,(efe) bo(dc)ne(dfd) pa(e)stor,(e) (,) Pe(f)tre,(dc) cle(e)mens(fgf) \\u00e1c(d)ci(ce)pe(e) (;)\\r\\nvo(g)ta(h) pre(i)c\\u00e1n(h)tum,(gvFE) (,) et(f) pec(dc)c\\u00e1(e)ti(fgf) v\\u00edn(d)cu(ce)la(e) (;)\\r\\nre(eevDC)s\\u00f3l(d)ve,(fd) ti(e)bi(e) (,) po(f)te(d)st\\u00e1(c)te(d!ewf) tr\\u00e1(fe)di(de)ta,(e) (;)\\r\\nqua(eed) cun(dc)ctis(cd) c\\u00e6(de)lum(d) (,) ver(f)bo(gh) clau(gf)dis,(ghg) \\u00e1(fe)pe(de)ris.(e) (::)\\r\\n\\r\\nDo(efe)ctor(dc) e(d)gr\\u00e9(fd)gi(e)e,(e) (,) Pau(f)le,(dc) mo(e)res(fgf) \\u00edn(d)stru(ce)e(e) (;)\\r\\net(g) men(h)te(i) po(h)lum(gvFE) (,) nos(f) trans(dc)f\\u00e9r(e)re(fgf) s\\u00e1(d)ta(ce)ge,(e) (;)\\r\\ndo(eevDC)nec(d) per(fd)f\\u00e9(e)ctum(e) (,) lar(f)gi(d)\\u00e1(c)tur(d!ewf) pl\\u00e9(fe)ni(de)us,(e) (;)\\r\\ne(eed)va(dc)cu(cd)\\u00e1(de)to(d) (,) quod(f) ex(gh) par(gf)te(ghg) g\\u00e9(fe)ri(de)mus.(e) (::)\\r\\n\\r\\nSit(efe) Tri(dc)ni(dfd)t\\u00e1(e)ti(e) (,) sem(f)pi(dc)t\\u00e9r(e)na(fgf) gl\\u00f3(d)ri(ce)a,(e) (;)\\r\\nho(g)nor,(h) po(i)t\\u00e9(h)stas(gvFE) (,) at(f)que(dc) iu(e)bi(fgf)l\\u00e1(d)ti(ce)o,(e) (;)\\r\\nin(eevDC) u(d)ni(fd)t\\u00e1(e)te,(e) (,) c<i>u</i>i(f) ma(d)net(c) im(d!ewf)p\\u00e9(fe)ri(de)um(e) (;)\\r\\nex(eed) tunc(dc) et(cd) mo(de)do(d) (,) per(f) \\u00e6(gh)t\\u00e9r(gf)na(ghg) s<sp>'ae</sp>(fe)cu(de)la.(e) (::)\\r\\nA(efe)men.(de) (::)",
|
|
122
|
+
office: "hy",
|
|
123
|
+
mode: "4",
|
|
124
|
+
pages: [
|
|
125
|
+
{ page: "468", sequence: 0, extent: 1 }
|
|
126
|
+
],
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
id: "gregobase:4515",
|
|
130
|
+
incipit: "Iesu nostra redemptio",
|
|
131
|
+
gabc: "(c4)Ie(f)su,(e!fw!gh) nos(g)tra(fd) red(e)\\u00e9mp(fg)ti(fe)o(e.) (;) \\r\\na(g)mor(hj) et(h) de(gf)si(g)d\\u00e9(g')ri(f)um,(ed..) (:) \\r\\nDe(cd)us(d) cre(dc)\\u00e1(d)tor(fe) \\u00f3m(de)ni(e)um,(e.) (;) \\r\\nho(g)mo(gh) in(g) fi(fd)ne(e) t\\u00e9m(fg)po(fe)rum.(e.) (::)\\r\\n",
|
|
132
|
+
office: "hy",
|
|
133
|
+
mode: "4",
|
|
134
|
+
pages: [
|
|
135
|
+
{ page: "88", sequence: 1, extent: 2 }
|
|
136
|
+
],
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
id: "gregobase:4541",
|
|
140
|
+
incipit: "O rex aeterne Domine",
|
|
141
|
+
gabc: "(c4)O(ffe) rex(dc) \\u00e6(ed)t\\u00e9r(g)ne,(fe) D\\u00f3(d)mi(de)ne,(e) (,)\\r\\nsem(g)per(g) cum(hj) Pa(h)tre(ghg) F\\u00ed(e)li(f)us,(g) (;)\\r\\niux(g)ta(h) tu(f)am(g) i(fvED)m\\u00e1(e)gi(f)nem(g) (,)\\r\\nAd(g)am(g) plas(hj)m\\u00e1(h)sti(gf) h\\u00f3(g)mi(gvFE)nem.(e) (::)\\r\\n\\r\\n2. Quem(ffe) d<i>i</i>()\\u00e1(dc)bo(ed)lus(g) de(fe)c\\u00e9(d)pe(de)rat(e) (,)\\r\\nho(g)stis(g) hu(hj)m\\u00e1(h)ni(ghg) g\\u00e9(e)ne(f)ris,(g) (;)\\r\\ne(g)ius(h) et(f) for(g)mam(fvED) c\\u00f3r(e)po(f)ris(g) (,)\\r\\nsum(g)ps\\u00ed(g)sti(hj) tu(h) de(gf) V\\u00edr(g)gi(gvFE)ne,(e) (::)\\r\\n\\r\\n3. Ut(ffe) nos(dc) De(ed)o(g) con(fe)i\\u00fan(d)ge(de)res(e) (,)\\r\\nper(g) car(g)nis(hj) con(h)tu(ghg)b\\u00e9r(e)ni(f)um,(g) (;)\\r\\nda(g)t\\u00fa(h)rus(f) in(g) bap(fvED)t\\u00eds(e)ma(f)te,(g) (,)\\r\\nRe(g)d\\u00e9m(g)ptor,(hj) in(h)dul(gf)g\\u00e9n(g)ti(gvFE)am.(e) (::)\\r\\n\\r\\n4. Tu(ffe) cru(dc)cem(ed) prop(g)ter(fe) h\\u00f3(d)mi(de)nem(e) (,)\\r\\nsus(g)c\\u00ed(g)pe(hj)re(h) di(ghg)gn\\u00e1(e)tus(f) es ;(g) (;)\\r\\nde(g)d\\u00ed(h)sti(f) tu(g)um(fvED) s\\u00e1n(e)gui(f)nem(g) (,)\\r\\nno(g)str\\u00e6(g) sa(hj)l\\u00fa(h)tis(gf) pr\\u00e9(g)ti(gvFE)um.(e) (::)\\r\\n\\r\\n5. Tu(ffe) sur(dc)re(ed)x\\u00ed(g)sti,(fe) gl\\u00f3(d)ri(de)am(e) (,)\\r\\na(g) Pa(g)tre(hj) su(h)mens(ghg) d\\u00e9(e)bi(f)tam ;(g) (;)\\r\\nper(g) te(h) et(f) nos(g) re(fvED)s\\u00far(e)ge(f)re(g) (,)\\r\\nde(g)v\\u00f3(g)ta(hj) men(h)te(gf) cr\\u00e9(g)di(gvFE)mus.(e) (::)\\r\\n\\r\\n6. E(ffe)sto(dc) per(ed)\\u00e9n(g)ne(fe) m\\u00e9n(d)ti(de)bus(e) (,)\\r\\npas(g)ch\\u00e1(g)le,(hj) Je(h)su,(ghg) g\\u00e1u(e)di(f)um(g) (;)\\r\\net(g) nos(h) re(f)n\\u00e1(g)tos(fvED) gr\\u00e1(e)ti(f)\\u00e6(g) (,)\\r\\ntu(g)is(g) tri(hj)\\u00fam(h)phis(gf) \\u00e1g(g)gre(gvFE)ga.(e) (::)\\r\\n\\r\\n7. Je(ffe)su,(dc) ti(ed)bi(g) sit(fe) gl\\u00f3(d)ri(de)a,(e) (,)\\r\\nqui(g) mor(g)te(hj) vi(h)cta(ghg) pr\\u00e6(e)ni(f)tes,(g) (;)\\r\\ncum(g) Pa(h)tr<i>e</i>() et(f) al(g)mo(fvED) Sp\\u00ed(e)ri(f)tu,(g) (,)\\r\\nin(g) sem(g)pi(hj)t\\u00e9r(h)na(gf) s\\u00e6(g)cu(gvFE)la.(e) (::)\\r\\nA(efe)men.(de) (::)",
|
|
142
|
+
office: "hy",
|
|
143
|
+
mode: "4",
|
|
144
|
+
pages: [
|
|
145
|
+
{ page: "76", sequence: 1, extent: 2 }
|
|
146
|
+
],
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
id: "gregobase:4547",
|
|
150
|
+
incipit: "Rex gloriose martyrum",
|
|
151
|
+
gabc: "(c4)Rex(ege) glo(e)ri(g)\\u00f3(gh)se(hg) m\\u00e1r(fe)ty(de)rum,(e) (,)\\r\\nco(f)r\\u00f3(d)na(e) con(fg)fi(fe)t\\u00e9n(d)ti(cd)um,(d) (;)\\r\\nqui(fe) re(d)spu(c)\\u00e9n(ed)tes(ff) ter(d)re(ce)a(e) (,)\\r\\nper(ef)d\\u00fa(g)cis(f!gh) ad(hg) c\\u00e6(fe)l\\u00e9(d)sti(de)a,(e) (::)\\r\\n \\r\\n2. Au(ege)rem(e) be(g)n\\u00ed(gh)gnam(hg) pr\\u00f3(fe)ti(de)nus(e) (,)\\r\\nap(f)p\\u00f3(d)ne(e) no(fg)stris(fe) v\\u00f3(d)ci(cd)bus ;(d) (;)\\r\\ntro(fe)p<sp>'ae</sp>(d)a(c) sa(ed)cra(ff) p\\u00e1n(d)gi(ce)mus,(e) (,)\\r\\ni(ef)gn\\u00f3(g)sce(f!gh) quod(hg) de(fe)l\\u00ed(d)qui(de)mus.(e) (::)\\r\\n \\r\\n3. Tu(ege) vin(e)cis(g) in(gh) mar(hg)t\\u00fd(fe)ri(de)bus(e) (,)\\r\\npar(f)c\\u00e9n(d)do(e) con(fg)fes(fe)s\\u00f3(d)ri(cd)bus ;(d) (;)\\r\\ntu(fe) vin(d)ce(c) no(ed)stra(ff) cr\\u00ed(d)mi(ce)na(e) (,)\\r\\ndo(ef)n\\u00e1n(g)do(f!gh) in(hg)dul(fe)g\\u00e9n(d)ti(de)am.(e) (::)\\r\\n \\r\\n4. Pr\\u00e6(ege)sta,(e) Pa(g)ter(gh) pi(hg)\\u00eds(fe)si(de)me,(e) (,)\\r\\nPa(f)tr\\u00ed(d)que(e) com(fg)par(fe) U(d)ni(cd)ce,(d) (;)\\r\\ncum(fe) Sp\\u00ed(d)ri(c)tu(ed) Pa(ff)r\\u00e1(d)cli(ce)to(e) (,)\\r\\nre(ef)gnans(g) per(f!gh) om(hg)ne(fe) s<sp>'ae</sp>(d)cu(de)lum.(e) (::)\\r\\nA(efe)men.(de) (::)",
|
|
152
|
+
office: "hy",
|
|
153
|
+
mode: "4",
|
|
154
|
+
pages: [
|
|
155
|
+
{ page: "274", sequence: 0, extent: 1 }
|
|
156
|
+
],
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
id: "gregobase:4556",
|
|
160
|
+
incipit: "Primo dierum",
|
|
161
|
+
gabc: "(c4)Pri(d)mo(e) di(f)\\u00e9(g)rum(eg) \\u00f3m(f)ni(e)um,(f_') (,)\\r\\nquo(d) mun(e)dus(f) ex(g)stat(eg) c\\u00f3n(f)di(e)tus(ded.) (;)\\r\\nvel(e) quo(c) re(e)s\\u00far(gh)gens(hi) C\\u00f3n(h)di(g)tor(h'_) (,)\\r\\nnos,(f) mor(h)te(h) vic(g)ta,(ef) l\\u00ed(g)be(f)rat,(e.) (::)\\r\\n\\r\\n2. Pul(d)sis(e) pro(f)cul(g) tor(eg)p\\u00f3(f)ri(e)bus,(f_') (,)\\r\\nsur(d)g\\u00e1(e)mus(f) om(g)nes(eg) \\u00f3(f)ci(e)us,(ded.) (;) \\r\\net(e) noc(c)te(e) qu\\u00e6(gh)r\\u00e1(hi)mus(h) pi(g)um,(h'_) (,) \\r\\nsic(f)ut(h) Pro(h)ph\\u00e9(g)tam(ef) n\\u00f3(g)vi(f)mus,(e.) (::)\\r\\n\\r\\n3. Nos(d)tras(e) pre(f)ces(g) ut(eg) \\u00e1u(f)di(e)at(f_') (,)\\r\\nsu(d)\\u00e1m(e)que(f) dex(g)tram(eg) p\\u00f3r(f)ri(e)gat,(ded.) (;) \\r\\net(e) hic(c) pi(e)\\u00e1(gh)tos(hi) s\\u00f3r(h)di(g)bus(h'_) (,) \\r\\nred(f)dat(h) po(h)l\\u00f3(g)rum(ef) s\\u00e9(g)di(f)bus,(e.) (::)\\r\\n\\r\\n4. Ut,(d) qui(e)que(f) sa(g)cra(eg)t\\u00eds(f)si(e)mo(f_') (,)\\r\\nhu(d)ius(e) di(f)\\u00e9(g)i(eg) t\\u00e9m(f)po(e)re(ded.) (;)\\r\\nho(e)ris(c) qui(e)\\u00e9(gh)tis(hi) ps\\u00e1l(h)li(g)mus,(h'_) (,) \\r\\ndo(f)nis(h) be(h)a(g)tis(ef) m\\u00fa(g)ne(f)ret.(e.) (::)\\r\\n\\r\\n5. De(d)o(e) Pa(f)tri(g) sit(eg) gl\\u00f3(f)ri(e)a(f_') (,)\\r\\ne(d)i\\u00fas(e)que(f) so(g)li(eg) F\\u00ed(f)li(e)o(ded.) (;)\\r\\ncum(e) Sp\\u00ed(c)ri(e)tu(gh) Pa(hi)r\\u00e1(h)cli(g)to,(h'_) (,) \\r\\nin(f) sem(h)pi(h)t\\u00e9r(g)na(ef) s\\u01fd(g)cu(f)la.(e.) (::)\\r\\nA(efe)men.(de..) (::)",
|
|
162
|
+
office: "hy",
|
|
163
|
+
mode: "4",
|
|
164
|
+
pages: [
|
|
165
|
+
{ page: "182", sequence: 1, extent: 2 }
|
|
166
|
+
],
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
id: "gregobase:4557",
|
|
170
|
+
incipit: "Nunc Sancte nobis (in Feriis per annum)",
|
|
171
|
+
gabc: "(c4)Nunc,(h) San(h)cte,(h) no(h)bis,(h) Sp\\u00ed(h)ri(g)tus(g'_) (,)\\r\\nu(h)num(h) Pa(h)tri(h) cum(g) F\\u00ed(h)li(h)o,(h.) (;)\\r\\ndi(h)gn\\u00e1(h)re(h) prom(g)ptus(f) \\u00edn(g)ge(f)ri(e'_) (,)\\r\\nno(f)stro(g) re(g)f\\u00fa(g)sus(f) p\\u00e9(h)cto(g)ri.(g.) (::)\\r\\n\\r\\nOs,(h) lin(h)gua,(h) mens,(h) sen(h)sus,(h) vi(g)gor(g'_) (,)\\r\\ncon(h)fes(h)si(h)\\u00f3(h)nem(g) p\\u00e9r(h)so(h)nent,(h.) (;)\\r\\nflam(h)m\\u00e9(h)scat(h) i(g)gne(f) c\\u00e1(g)ri(f)tas,(e'_) (,)\\r\\nac(f)c\\u00e9n(g)dat(g) ar(g)dor(f) pr\\u00f3(h)xi(g)mos.(g.) (::)\\r\\n\\r\\nPer(h) te(h) sci(h)\\u00e1(h)mus(h) da(h) Pa(g)trem(g'_) (,)\\r\\nno(h)sc\\u00e1(h)mus(h) at(h)que(g) F\\u00ed(h)li(h)um,(h.) (;)\\r\\nte(h) u(h)tri(h)\\u00fas(g)que(f) Sp\\u00ed(g)ri(f)tum(e'_) (,)\\r\\ncre(f)d\\u00e1(g)mus(g) om(g)ni(f) t\\u00e9m(h)po(g)re.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)",
|
|
172
|
+
office: "hy",
|
|
173
|
+
mode: "d",
|
|
174
|
+
pages: [
|
|
175
|
+
{ page: "192", sequence: 0, extent: 1 }
|
|
176
|
+
],
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
id: "gregobase:4558",
|
|
180
|
+
incipit: "Somno refectis",
|
|
181
|
+
gabc: "(c4)SOm(d)no(e) re(f)f\\u00e9(g)ctis(eg) \\u00e1r(f)tu(e)bus,(f) (,)\\r\\nspre(d)to(e) cu(f)b\\u00ed(g)li,(eg) s\\u00far(f)gi(e)mus :(ded) (;)\\r\\nno(e)bis,(c) Pa(e)ter,(gh) ca(hi)n\\u00e9n(h)ti(g)bus(h) (,)\\r\\nad(f)es(h)se(h) te(g) de(ef)p\\u00f3(g)sci(f)mus.(e) (::)\\r\\n\\r\\n",
|
|
182
|
+
office: "hy",
|
|
183
|
+
mode: "4",
|
|
184
|
+
pages: [
|
|
185
|
+
{ page: "190", sequence: 0, extent: 1 }
|
|
186
|
+
],
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
id: "gregobase:4559",
|
|
190
|
+
incipit: "Consors paterni",
|
|
191
|
+
gabc: "(c4)Con(d)sors(e) pa(f)t\\u00e9r(g)ni(eg) l\\u00fa(f)mi(e)nis,(f) (,)\\r\\nlux(d) i(e)pse(f) lu(g)cis(eg) et(f) di(e)es,(ded) (;)\\r\\nno(e)ctem(c) ca(e)n\\u00e9n(gh)do(hi) r\\u00fam(h)pi(g)mus :(h) (,) \\r\\nas(f)s\\u00ed(h)ste(h) pos(g)tu(ef)l\\u00e1n(g)ti(f)bus.(e) (::) ",
|
|
192
|
+
office: "hy",
|
|
193
|
+
mode: "4",
|
|
194
|
+
pages: [
|
|
195
|
+
{ page: "196", sequence: 0, extent: 1 }
|
|
196
|
+
],
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
id: "gregobase:4560",
|
|
200
|
+
incipit: "Rerum creator optime",
|
|
201
|
+
gabc: "(c4)RE(d)rum(e) cre(f)\\u00e1(g)tor(eg) \\u00f3p(f)ti(e)me(f) (,)\\r\\nre(d)ct\\u00f3r(e)que(f) no(g)ster,(eg) r\\u00e9(f)spi(e)ce ;(ded) (;)\\r\\nnos(e) a(c) qui(e)\\u00e9(gh)te(hi) n\\u00f3(h)xi(g)a(h) (,) \\r\\nmer(f)sos(h) so(h)p\\u00f3(g)re(ef) l\\u00ed(g)be(f)ra.(e) (::) ",
|
|
202
|
+
office: "hy",
|
|
203
|
+
mode: "4",
|
|
204
|
+
pages: [
|
|
205
|
+
{ page: "198", sequence: 0, extent: 1 }
|
|
206
|
+
],
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
id: "gregobase:4561",
|
|
210
|
+
incipit: "Nox atra rerum",
|
|
211
|
+
gabc: "(c4)NOX(d) a(e)tra(f) r\\u00e9(g)rum(eg) c\\u00f3n(f)te(e)git(f) (,)\\r\\nter(d)r\\u00e6(e) co(f)l\\u00f3(g)res(eg) \\u00f3m(f)ni(e)um :(ded) (;)\\r\\nnos(e) con(c)fi(e)t\\u00e9n(gh)tes(hi) p\\u00f3(h)sci(g)mus(h) (,) \\r\\nte,(f) iu(h)ste(h) iu(g)dex(ef) c\\u00f3r(g)di(f)um,(e) (::) ",
|
|
212
|
+
office: "hy",
|
|
213
|
+
mode: "4",
|
|
214
|
+
pages: [
|
|
215
|
+
{ page: "201", sequence: 0, extent: 1 }
|
|
216
|
+
],
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
id: "gregobase:4562",
|
|
220
|
+
incipit: "Tu Trinitatis Unitas",
|
|
221
|
+
gabc: "(c4)TU,(d) Tri(e)ni(f)t\\u00e1(g)tis(eg) \\u00da(f)ni(e)tas,(f) (,)\\r\\nor(d)bem(e) po(f)t\\u00e9n(g)ter(eg) qui(f) re(e)gis,(ded) (;)\\r\\nat(e)t\\u00e9n(c)de(e) lau(gh)dum(hi) c\\u00e1n(h)ti(g)ca(h) (,) \\r\\nqu\\u00e6(f) ex(h)cu(h)b\\u00e1n(g)tes(ef) ps\\u00e1l(g)li(f)mus.(e) (::) ",
|
|
222
|
+
office: "hy",
|
|
223
|
+
mode: "4",
|
|
224
|
+
pages: [
|
|
225
|
+
{ page: "203", sequence: 0, extent: 1 }
|
|
226
|
+
],
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
id: "gregobase:4563",
|
|
230
|
+
incipit: "Summae Deus clementiae",
|
|
231
|
+
gabc: "(c4)SUm(d)m\\u00e6(e) De(f)us(g) cle(eg)m\\u00e9n(f)ti(e)\\u00e6(f) (,)\\r\\nmun(d)d\\u00ed(e)que(f) fa(g)ctor(eg) m\\u00e1(f)chi(e)n\\u00e6,(ded) (;)\\r\\nqui(e) tri(c)nus(e) al(gh)mo(hi) n\\u00fa(h)mi(g)ne(h) (,) \\r\\nu(f)n\\u00fas(h)que(h) f\\u00edr(g)mas(ef) \\u00f3m(g)ni(f)a,(e) (::) ",
|
|
232
|
+
office: "hy",
|
|
233
|
+
mode: "4",
|
|
234
|
+
pages: [
|
|
235
|
+
{ page: "206", sequence: 0, extent: 1 }
|
|
236
|
+
],
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
id: "gregobase:4564",
|
|
240
|
+
incipit: "Felix per omnes",
|
|
241
|
+
gabc: "(c4)Fe(f)lix(e) per(d) om(c!de)nes(e) (,) fe(e)stum(f) mun(g)di(fe) c\\u00e1r(d)di(cd)nes(d) (;)\\r\\na(f)po(gh)sto(h)l\\u00f3(gh)rum(dc) (,) pr\\u00e6(f)p\\u00f3l(gh)let(g) a(fe)l\\u00e1(d)cri(e)ter,(e) (:)\\r\\nPe(g)tri(h) be(j)\\u00e1(j)ti,(jh) (,) Pau(h)li(hi) sa(g)cra(gf)t\\u00eds(e)si(fg)mi,(g) (;)\\r\\nquos(g) Chri(hi)stus(h) al(gh)mo(h) (,) con(h)se(hi)cr\\u00e1(g)vit(ge) s\\u00e1n(f)gui(ed)ne,(de) (;)\\r\\nec(c)cle(d)si(f)\\u00e1(ef)rum(d) (,) de(e)pu(f)t\\u00e1(gh)vit(g) pr\\u00edn(fe)ci(de)pes.(e) (::)\\r\\n",
|
|
242
|
+
office: "hy",
|
|
243
|
+
mode: "4",
|
|
244
|
+
pages: [
|
|
245
|
+
{ page: "390", sequence: 0, extent: 1 }
|
|
246
|
+
],
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
id: "gregobase:4565",
|
|
250
|
+
incipit: "Apostolorum passio diem",
|
|
251
|
+
gabc: "(c4)A(f)po(f)sto(f)l\\u00f3(fe)rum(dc) p\\u00e1s(de)si(e)o(e) (,)\\r\\n\\r\\ndi(g)em(gh) sa(hg)cr\\u00e1(hih)vit(gf) s\\u00e6(g)cu(gf)li,(e) (;)\\r\\n\\r\\nPe(f)tri(e) tri(fg)\\u00fam(gf)phum(dc) n\\u00f3(de)bi(dc)lem,(c) (,)\\r\\n\\r\\nPau(g)li(g) co(f)r\\u00f3(g)nam(ghg) pr\\u00e6(fe)fe(de)rens.(e) (::)\\r\\n",
|
|
252
|
+
office: "hy",
|
|
253
|
+
mode: "4",
|
|
254
|
+
pages: [
|
|
255
|
+
{ page: "390", sequence: 0, extent: 1 }
|
|
256
|
+
],
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
id: "gregobase:4603",
|
|
260
|
+
incipit: "Inclitos Christi",
|
|
261
|
+
gabc: "(f3)IN(ff)cli(e)tos(f!gwh) Chri(hg)sti(fg) f\\u00e1(f)mu(f)los(e) ca(f)n\\u00e1(h)mus,(h) (;)\\r\\nquos,(ih) fi(i)de(j) cla(ih)ros(hi) ni(i)ti(h)d\\u00eds(f)que(g) ge(ff)stis,(e) (:)\\r\\nhac(f!gwhivHG) di(f)e(e) tel(h)lus(h) (,) so(i)ci(j)\\u00e1(i)ta(h) c\\u00e6(ih)lo(fe) (,)\\r\\n l\\u00e1u(h)di(g)bus(h) or(fe)nat.(f) (::)\\r\\n \\r\\n",
|
|
262
|
+
office: "hy",
|
|
263
|
+
mode: "2",
|
|
264
|
+
pages: [
|
|
265
|
+
{ page: "316", sequence: 0, extent: 1 }
|
|
266
|
+
],
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
id: "gregobase:4610",
|
|
270
|
+
incipit: "Mediae noctis",
|
|
271
|
+
gabc: "(f3)M\\u00e9(f)di(e)\\u00e6(f) no(h)ctis(i) tem(h)pus(g) est(f) (,)\\r\\npro(i)ph\\u00e9(i)ti(h)ca(i) vox(j) \\u00e1d(h)mo(g)net(f) (;)\\r\\ndi(f)c\\u00e1(f)mus(g) lau(e)des(c) ut(e) De(f)o(f) (,)\\r\\nPa(f)tri(e) sem(f)per(h) ac(i) F\\u00ed(h)li(g)o,(f) (::)",
|
|
272
|
+
office: "hy",
|
|
273
|
+
mode: "2",
|
|
274
|
+
pages: [
|
|
275
|
+
{ page: "209", sequence: 0, extent: 1 }
|
|
276
|
+
],
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
id: "gregobase:4613",
|
|
280
|
+
incipit: "Mole gravati",
|
|
281
|
+
gabc: "(c4)MO-(h)le(hhg) gra(ed)v\\u00e1(g)ti(hj) cr\\u00ed(ji)mi(hi)num(i_\\\\') (,)ad(k) te,(kj) re(i)g\\u00ed(ji)na(h) c<sp>'ae</sp>(ih)li(gh)tum,(h.) (;)con(k)fu(k)gi(i)\\u00e9n(k)tes,(klk) p\\u00f3(j)sci(i)mus(hiHG\\\\'_) (,)no(i)stris(jk) ut(i) ad(ji)sis(h) pr\\u00e9(ih)ci(gh)bus.(h.) (::)",
|
|
282
|
+
office: "hy",
|
|
283
|
+
mode: "2",
|
|
284
|
+
pages: [
|
|
285
|
+
{ page: "422", sequence: 1, extent: 1 }
|
|
286
|
+
],
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
id: "gregobase:4614",
|
|
290
|
+
incipit: "Bernarde gemma caelitum ",
|
|
291
|
+
gabc: "(c4)Ber(h)n\\u00e1r(hg)de,(ed) gem(g)ma(hj) c\\u00e6(ji)li(hi)tum,(i) (,)\\r\\nlau(k)des,(kj) ti(i)bi(ji) quas(h) p\\u00e1n(ih)gi(gh)mus,(h) (;)\\r\\nin(k) no(k)stra(i) ver(k)te(klk) g\\u00e1u(j)di(i)a(hiHG) (,)\\r\\nsa(i)l\\u00fa(jk)tis(i) at(ji)que(h) m\\u00fa(ih)ne(gh)ra.(h) (::)",
|
|
292
|
+
office: "hy",
|
|
293
|
+
mode: "2",
|
|
294
|
+
pages: [
|
|
295
|
+
{ page: "418", sequence: 0, extent: 1 }
|
|
296
|
+
],
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
id: "gregobase:4615",
|
|
300
|
+
incipit: "Ipsum nunc nobis",
|
|
301
|
+
gabc: "(f3)IP(f)sum(e) nunc(f) no(h)bis(i) tem(h)pus(g) est(f'_) (,)\\r\\nquo(i) vo(i)ce(h) e(i)van(j)g\\u00e9(h)li(g)ca(f.) (;)\\r\\nven(f)t\\u00fa(f)rus(g) spon(e)sus(c) cr\\u00e9(e)di(f)tur,(f'_) (,)\\r\\nre(f)gni(e) c\\u00e6(f)l\\u00e9s(h)tis(i) c\\u00f3n(h)di(g)tor.(f.) (::)",
|
|
302
|
+
office: "hy",
|
|
303
|
+
mode: "2",
|
|
304
|
+
pages: [
|
|
305
|
+
{ page: "217", sequence: 0, extent: 1 }
|
|
306
|
+
],
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
id: "gregobase:4616",
|
|
310
|
+
incipit: "Nocte surgentes",
|
|
311
|
+
gabc: "(c4) NO(d_)cte(c) sur(d)g\\u00e9n(fg)tes(f'_) (,) vi(g)gi(h)l\\u00e9(g)mus(f) om(g.)nes,(h.) (;)\\r\\nsem(gh)per(i) in(h) psal(gf)mis(e'_) (,) me(d)di(f)t\\u00e9(e)mur(f) at(d.)que(c.) (:)\\r\\nv\\u00ed(d_)ri(c)bus(d) to(fg)tis(f'_) (,) D\\u00f3(g)mi(h)no(g) ca(f)n\\u00e1(e.)mus(d.) (,)\\r\\nd\\u00fal(f_)ci(e)ter(f) hym(dc)nos,(d.) (::)\\r\\n",
|
|
312
|
+
office: "hy",
|
|
313
|
+
mode: "1",
|
|
314
|
+
pages: [
|
|
315
|
+
{ page: "224", sequence: 1, extent: 2 }
|
|
316
|
+
],
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
id: "gregobase:4617",
|
|
320
|
+
incipit: "O sator rerum",
|
|
321
|
+
gabc: "(c4) O(d) sa(c)tor(d) re(fg)rum,(f) (,) re(g)pa(h)r\\u00e1(g)tor(f) \\u00e6(g)vi,(h) (;)\\r\\nChri(gh)ste,(i) rex(h) re(gf)gum,(e) (,) me(d)tu(f)\\u00e9n(e)de(f) cen(d)sor,(c) (:)\\r\\ntu(d) pre(c)ces(d) no(fg)stras(f) (,) pa(g)ri(h)t\\u00e9r(g)que(f) lau(e)des(d) (,)\\r\\ns\\u00fas(f)ci(e)pe(f) cle(dc)mens.(d) (::)",
|
|
322
|
+
office: "hy",
|
|
323
|
+
mode: "1",
|
|
324
|
+
pages: [
|
|
325
|
+
{ page: "228", sequence: 0, extent: 1 }
|
|
326
|
+
],
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
id: "gregobase:4618",
|
|
330
|
+
incipit: "Ales diei nuntius",
|
|
331
|
+
gabc: "(f3)A(f)les(e) di(f)\\u00e9(h)i(i) n\\u00fan(h)ti(g)us(f'_) (,)\\r\\nlu(i)cem(i) pro(h)p\\u00edn(i)quam(j) pr\\u01fd(h)ci(g)nit ;(f.) (;)\\r\\nnos(f) ex(f)ci(g)t\\u00e1(e)tor(c) m\\u00e9n(e)ti(f)um(f'_) (,)\\r\\niam(f) Chri(e)stus(f) ad(h) vi(i)tam(h) vo(g)cat.(f.) (::)",
|
|
332
|
+
office: "hy",
|
|
333
|
+
mode: "2",
|
|
334
|
+
pages: [
|
|
335
|
+
{ page: "232", sequence: 0, extent: 1 }
|
|
336
|
+
],
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
id: "gregobase:4619",
|
|
340
|
+
incipit: "Rerum supremo ",
|
|
341
|
+
gabc: "(c4)RE(g)rum(g) su(f)pr\\u00e9(e)m<i>o</i>() in(d) v\\u00e9r(fhg)ti(fg)ce(g) (,)\\r\\nre(h!iwji)g\\u00ed(h)na,(g) Vir(h)go,(ig) s\\u00ed(h)ste(g)ris,(f) (;)\\r\\nex(f)u(g)be(f)r\\u00e1n(g)ter(h) \\u00f3m(j)ni(g)um(hih) (,)\\r\\ndi(h)t\\u00e1(h)ta(g) pul(e)chri(f)t\\u00fa(hg)di(fg)ne.(g) (::)\\r\\n",
|
|
342
|
+
office: "hy",
|
|
343
|
+
mode: "8",
|
|
344
|
+
pages: [
|
|
345
|
+
{ page: "420", sequence: 0, extent: 1 }
|
|
346
|
+
],
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
id: "gregobase:4620",
|
|
350
|
+
incipit: "Galli cantu",
|
|
351
|
+
gabc: "(f3)GAl(e)li(f) can(f)tu(c) me(e)di(f)\\u00e1n(f)te(e) (,) no(h)ctis(g) iam(f) ca(g)l\\u00ed(ef)gi(g)nem(f) (;)\\r\\net(g) pro(h)f\\u00fan(i)d\\u00e6(f) no(h)ctis(g) a(f)tram(e) (,) le(h)v\\u00e1n(g)te(f) for(e)m\\u00ed(g)di(hg)nem,(f) (:)\\r\\nDe(e)us(f) al(f)me,(c) te(e) ro(f)g\\u00e1(f)mus(e) (,) sup(h)pli(g)c\\u00e9s(f)que(g) p\\u00f3(ef)sci(g)mus.(f) (::)\\r\\n\\r\\n",
|
|
352
|
+
office: "hy",
|
|
353
|
+
mode: "2",
|
|
354
|
+
pages: [
|
|
355
|
+
{ page: "234", sequence: 0, extent: 1 }
|
|
356
|
+
],
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
id: "gregobase:4621",
|
|
360
|
+
incipit: "Lux aeterna",
|
|
361
|
+
gabc: "(f3)LUX(e) \\u00e6(f)t\\u00e9r(f)na,(c) lu(e)men(f) po(f)tens,(e) (,) di(h)es(g) in(f)de(g)f\\u00ed(ef)ci(g)ens,(f) (;)\\r\\nde(g)bel(h)l\\u00e1(i)tor(f) a(h)tr\\u00e6(g) no(f)ctis,(e) (,) re(h)pa(g)r\\u00e1(f)tor(e) l\\u00fa(g)mi(hg)nis,(f) (:)\\r\\nde(e)stru(f)ct\\u00f3r(f)que(c) te(e)ne(f)br\\u00e1(f)rum,(e) (,) il(h)lu(g)str\\u00e1(f)tor(g) m\\u00e9n(ef)ti(g)um :(f) (::)\\r\\n",
|
|
362
|
+
office: "hy",
|
|
363
|
+
mode: "2",
|
|
364
|
+
pages: [
|
|
365
|
+
{ page: "237", sequence: 0, extent: 1 }
|
|
366
|
+
],
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
id: "gregobase:4623",
|
|
370
|
+
incipit: "Praecessor almus",
|
|
371
|
+
gabc: "(c4)PR\\u00e6(h)c\\u00e9s(hhg)sor(ed) al(g)mus(h) gr\\u00e1(hi)ti(hg)\\u00e6(h) (,)\\r\\net(e) ve(eh)ri(g)t\\u00e1(gf)tis(d) \\u00e1n(e!fg)ge(fe)lus,(e) (;)\\r\\nlu(ed)c\\u00e9r(c)na(e) Chri(g)st<i>i</i>() et(h) p\\u00e9r(hi)pe(hg)tis(h) (,) \\r\\ne(e)van(eh)ge(g)l\\u00ed(gf)sta(d) l\\u00fa(e!fg)mi(fe)nis,(e) (::) \\r\\n",
|
|
372
|
+
office: "hy",
|
|
373
|
+
mode: "4",
|
|
374
|
+
pages: [
|
|
375
|
+
{ page: "426", sequence: 0, extent: 1 }
|
|
376
|
+
],
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
id: "gregobase:4626",
|
|
380
|
+
incipit: "Signum crucis",
|
|
381
|
+
gabc: "(c4)SI(h)gnum(hhg) cru(ed)cis(g) mi(h)r\\u00e1(hi)bi(hg)le(h) (,)\\r\\nto(e)tum(eh) per(g) or(gf)bem(d) pr\\u01fd(e!fg)ni(fe)tet,(e) (;)\\r\\nin(ed) qua(c) pe(e)p\\u00e9n(g)dit(h) \\u00edn(hi)no(hg)cens(h) (,)\\r\\nChri(e)stus,(eh) red(g)\\u00e9m(gf)ptor(d) \\u00f3m(e!fg)ni(fe)um.(e) (::)\\r\\n\\r\\n",
|
|
382
|
+
office: "hy",
|
|
383
|
+
mode: "4",
|
|
384
|
+
pages: [
|
|
385
|
+
{ page: "432", sequence: 1, extent: 2 }
|
|
386
|
+
],
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
id: "gregobase:4630",
|
|
390
|
+
incipit: "Aeterne rerum conditor",
|
|
391
|
+
gabc: "(c4)\\u00c6(ed)t\\u00e9r(g)ne(hj) re(j)rum(ij) c\\u00f3n(k)di(j)tor,(ih) (,)\\r\\nqui(g) ma(hj)re,(j) so(i)lum,(ji) \\u00e6(h)the(gi)ra(i) (;)\\r\\ngu(i)b\\u00e9r(g)nas,(hi) iu(i)stus(hj) r\\u00e9d(g)di(gf)tor(e) (,)\\r\\ncun(f)ctis(g) se(f)c\\u00fan(g)dum(ghg) \\u00f3(fe)pe(de)ra,(e) (::)",
|
|
392
|
+
office: "hy",
|
|
393
|
+
mode: "3",
|
|
394
|
+
pages: [
|
|
395
|
+
{ page: "448", sequence: 0, extent: 1 }
|
|
396
|
+
],
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
id: "gregobase:4636",
|
|
400
|
+
incipit: "Immensae rex potentiae",
|
|
401
|
+
gabc: "(f3)Im(e)m\\u00e9n(f)s\\u00e6(gh) rex(g) po(fe)t\\u00e9n(f)ti(g)\\u00e6,(f_) (,)\\r\\nChri(f)ste,(g) tu(h) Pa(ih)tris(g) gl\\u00f3(fgwh)ri(hg)am(g.) (;)\\r\\nno(g)str\\u00fam(i)que(ij) de(ji)cus(hg) m\\u00f3(fgwh)li(hg)ens,(g_') (,)\\r\\nmor(e)tis(f) fre(gh)g\\u00ed(g)sti(fe) i\\u00e1(fg)cu(gf)la.(f.) (::)\\r\\n\\r\\n2.() In(e)f\\u00edr(f)ma(gh) no(g)stra(fe) s\\u00fab(f)i(g)ens(f_) (,)\\r\\nma(f)gn\\u00fam(g)que(h) pe(ih)tens(g) proe(fgwh)li(hg)um,(g.) (;)\\r\\nmor(g)tem(i) qua(ij) ser(ji)pens(hg) v\\u00ed(fgwh)ce(hg)rat,(g_') (,)\\r\\nvi(e)ctor(f) cal(gh)c\\u00e1(g)sti(fe) m\\u00f3(fg)ri(gf)ens.(f.) (::)\\r\\n\\r\\n3.() Sur(e)gens(f) for(gh)tis(g) e(fe) t\\u00fa(f)mu(g)lo,(f_) (,)\\r\\npas(f)ch\\u00e1(g)li(h) nos(ih) my(g)st\\u00e9(fgwh)ri(hg)o(g.) (;)\\r\\npec(g)c\\u00e1(i)to(ij) rur(ji)sus(hg) m\\u00f3r(fgwh)tu(hg)os(g_') (,)\\r\\nad(e) vi(f)tam(gh) sem(g)per(fe) \\u00edn(fg)no(gf)vas.(f.) (::)\\r\\n\\r\\n4.() Vi(e)tam(f) lar(gh)g\\u00ed(g)re(fe) gr\\u00e1(f)ti(g)\\u00e6,(f_) (,)\\r\\nut,(f) spon(g)sus(h) cum(ih) red(g)\\u00ed(fgwh)e(hg)ris,(g.) (;)\\r\\nor(g)n\\u00e1(i)ta(ij) nos(ji) cum(hg) l\\u00e1m(fgwh)pa(hg)de(g_') (,)\\r\\niam(e) prom(f)ptos(gh) c\\u00e6l<i>o</i>(g) in(fe)v\\u00e9(fg)ni(gf)as.(f.) (::)\\r\\n\\r\\n5.() In(e) lu(f)cem(gh) nos(g) et(fe) r\\u00e9(f)qui(g)em(f_) (,)\\r\\nse(f)r\\u00e9(g)nus(h) iu(ih)dex(g) \\u00e1c(fgwh)ci(hg)pe,(g.) (;)\\r\\nquos(g) fi(i)des(ij) san(ji)ct\\u00e6(hg) Tr\\u00ed(fgwh)a(hg)di(g_') (,)\\r\\nde(e)v\\u00edn(f)xit(gh) at(g)que(fe) c\\u00e1(fg)ri(gf)tas.(f.) (::)\\r\\n\\r\\n6.() Fra(e)tres(f) et(gh) om(g)nes(fe) \\u00e1d(f)vo(g)ca,(f_) (,)\\r\\nqui(f) nunc(g) ex(h)\\u00fa(ih)ti(g) c\\u00f3r(fgwh)po(hg)re(g.) (;)\\r\\nin(g) re(i)gna(ij) Pa(ji)tris(hg) \\u00edn(fgwh)hi(hg)ant,(g_') (,)\\r\\nut(e) te(f) col(gh)l\\u00e1u(g)dent(fe) p\\u00e9r(fg)pe(gf)tim.(f.) (::)\\r\\nA(fgf)men.(ef..) (::)",
|
|
402
|
+
office: "hy",
|
|
403
|
+
mode: "2",
|
|
404
|
+
pages: [
|
|
405
|
+
{ page: "334", sequence: 0, extent: 1 }
|
|
406
|
+
],
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
id: "gregobase:4637",
|
|
410
|
+
incipit: "Rerum Deus fons",
|
|
411
|
+
gabc: "(c4)\\r\\nRe(h)rum(hg) De(h)us,(gf) fons(evDC) \\u00f3(ef)mni(d)um,(d.) (,)\\r\\nqui,(hj) re(ji)bus(g) ac(h)tis(gh) \\u00f3(fe)mni(gh)bus,(hih.) (;)\\r\\nto(h)t\\u00ed(h)us(g) or(fe)bis(d) \\u00e1m(de)bi(dc)tum(c'_) (,)\\r\\ncen(e)su(dg) re(ghg)pl\\u00e9(f)sti(evDC) m\\u00fa(ef)ne(d)rum,(d.) (::)\\r\\nAc,(h) mo(hg)le(h) tan(gf)ta(evDC) c\\u00f3n(ef)di(d)ta,(d.) (,)\\r\\ntan(hj)dem(ji) qui(g)\\u00e9(h)tem(gh) d\\u00ed(fe)ce(gh)ris(hih.) (;)\\r\\nsum(h)ps\\u00eds(h)se,(g) dans(fe) la(d)b\\u00f3(de)ri(dc)bus(c'_) (,)\\r\\nut(e) nos(dg) le(ghg)v\\u00e9(f)mur(evDC) gr\\u00e1(ef)ti(d)us:(d.) (::)\\r\\nCon(h)c\\u00e9(hg)de(h) nunc(gf) mor(evDC)t\\u00e1(ef)li(d)bus(d.) (,)\\r\\nde(hj)fl\\u00e9(ji)re(g) vi(h)t\\u00e6(gh) cr\\u00ed(fe)mi(gh)na,(hih.) (;)\\r\\nin(h)st\\u00e1(h)re(g) iam(fe) vir(d)t\\u00fa(de)ti(dc)bus(c'_) (,)\\r\\net(e) mu(dg)ne(ghg)r\\u00e1(f)ri(evDC) pr\\u00f3(ef)spe(d)ris,(d.) (::)\\r\\nUt(h) cum(hg) tre(h)m\\u00e9n(gf)di(evDC) i\\u00fa(ef)di(d)cis(d.) (,)\\r\\nhor(hj)ror(ji) su(g)pr\\u00e9(h)mus(gh) c<sp>'oe</sp>(fe)pe(gh)rit,(hih.) (;)\\r\\nl\\u00e6(h)t\\u00e9(h)mur(g) o(fe)mnes(d) \\u00edn(de)vi(dc)cem(c'_) (,)\\r\\npa(e)cis(dg) re(ghg)pl\\u00e9(f)ti(evDC) m\\u00fa(ef)ne(d)re.(d.) (::)\\r\\nPr\\u00e6(h)sta,(hg) Pa(h)ter(gf) pi(evDC)\\u00eds(ef)si(d)me,(d.) (,)\\r\\nPa(hj)tr\\u00ed(ji)que(g) com(h)par(gh) U(fe)ni(gh)ce,(hih.) (;)\\r\\ncum(h) Sp\\u00ed(h)ri(g)tu(fe) Pa(d)r\\u00e1(de)cli(dc)to(c'_) (,)\\r\\nre(e)gnans(dg) per(ghg) o(f)mne(evDC) s<sp>'ae</sp>(ef)cu(d)lum.(d.) (::)\\r\\nA(ded)men.(cd..) (::)\\r\\n",
|
|
412
|
+
office: "hy",
|
|
413
|
+
mode: "1",
|
|
414
|
+
pages: [
|
|
415
|
+
{ page: "208", sequence: 1, extent: 2 }
|
|
416
|
+
],
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
id: "gregobase:4666",
|
|
420
|
+
incipit: "Iubilemus Deo",
|
|
421
|
+
gabc: "(c4) IU(f)bi(f)l\\u00e9(-fg)mus(f) De(f!gwh)o(-ghg) (,) sa(f)lu(gh)t\\u00e1(gvFD)ri(fg) nos(g)tro.(f) (::) ",
|
|
422
|
+
office: "an",
|
|
423
|
+
mode: "6",
|
|
424
|
+
pages: [
|
|
425
|
+
{ page: "179", sequence: 0, extent: 1 }
|
|
426
|
+
],
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
id: "gregobase:4677",
|
|
430
|
+
incipit: "Te lucis ante terminum (In Dominicis per Annum)",
|
|
431
|
+
gabc: "(c4) TE(gh) lu(f)cis(g) an(g)te(h) t\\u00e9r(f)mi(g)num(g'_) (,) re(g)rum(h) cre(i)\\u00e1(j)tor,(ih) p\\u00f3s(g)ci(i)mus,(i.) (;)\\r\\nut(h!iwj) s\\u00f3(i)li(h)ta(g) cle(h)m\\u00e9n(f)ti(h)a(h'_) (,) sis(g) pr\\u00e6(f)sul(h) ad(h) cus(g)t\\u00f3(f)di(g)am.(g.) (::)",
|
|
432
|
+
office: "hy",
|
|
433
|
+
mode: "8",
|
|
434
|
+
pages: [
|
|
435
|
+
{ page: "242", sequence: 1, extent: 1 }
|
|
436
|
+
],
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
id: "gregobase:4680",
|
|
440
|
+
incipit: "Te lucis ante terminum (In Feriis per Annum)",
|
|
441
|
+
gabc: "(c4) TE(h) lu(j)cis(j) an(j)te(j) t\\u00e9r(k)mi(j)num(i) (,)\\r\\nre(h)rum(h) cre(h)\\u00e1(h)tor,(h) p\\u00f3s(i)ci(h)mus,(g) (;)\\r\\nut(i) s\\u00f3(i)li(h)ta(g) cle(f)m\\u00e9n(g)ti(h)a(h) (,)\\r\\nsis(h) pr\\u00e6(j)sul(j) ad(i) cus(h)t\\u00f3(i)di(h)am.(g) (::)",
|
|
442
|
+
office: "hy",
|
|
443
|
+
mode: "8",
|
|
444
|
+
pages: [
|
|
445
|
+
{ page: "241", sequence: 0, extent: 0 }
|
|
446
|
+
],
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
id: "gregobase:4681",
|
|
450
|
+
incipit: "Te lucis ante terminum (In Memoriis)",
|
|
451
|
+
gabc: "(c4) TE(g) lu(i)cis(h) an(j)te(j) t\\u00e9r(j)mi(i)num(h_') (,)\\r\\nre(h)rum(j) cre(j)\\u00e1(i)tor,(g) p\\u00f3s(h)ci(g)mus,(f.) (;)\\r\\nut(h) s\\u00f3(h)li(g)ta(j) cle(i)m\\u00e9n(h)ti(g)a(hih___') (,)\\r\\nsis(h) pr\\u00e6(h)sul(g) ad(f) cus(g)t\\u00f3(h)di(g)am.(g.) (::)",
|
|
452
|
+
office: "hy",
|
|
453
|
+
mode: "8",
|
|
454
|
+
pages: [
|
|
455
|
+
{ page: "241", sequence: 1, extent: 0 }
|
|
456
|
+
],
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
id: "gregobase:4682",
|
|
460
|
+
incipit: "Te lucis ante terminum (In Festis)",
|
|
461
|
+
gabc: "(c4) TE(h) lu(gh)cis(h) an(i)te(gh) t\\u00e9r(j)mi(i)num(h_') (,)\\r\\nre(h)rum(i) cre(j)\\u00e1(k)tor,(h) p\\u00f3s(j)ci(j)mus,(i.) (;)\\r\\nut(i) s\\u00f3(i)li(h)ta(g) cle(e)m\\u00e9n(g)ti(h)a(h_') (,)\\r\\nsis(h) pr\\u00e6(gh)sul(h) ad(i) cus(gh)t\\u00f3(j)di(i)am.(h.) (::)",
|
|
462
|
+
office: "hy",
|
|
463
|
+
mode: "2",
|
|
464
|
+
pages: [
|
|
465
|
+
{ page: "241", sequence: 3, extent: 2 }
|
|
466
|
+
],
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
id: "gregobase:4683",
|
|
470
|
+
incipit: "Te lucis ante terminum (In Solemnitatibus)",
|
|
471
|
+
gabc: "(c4) TE(g) lu(g)cis(e) an(g)te(h) t\\u00e9r(i)mi(j)num(h_') (,)\\r\\nre(g)rum(i) cre(h)\\u00e1(j)tor,(g) p\\u00f3s(hi)ci(i)mus,(i.) (;)\\r\\nut(h) s\\u00f3(j)li(k)ta(ih) cle(j)m\\u00e9n(i)ti(j)a(hvGF'_) (,)\\r\\nsis(h) pr\\u00e6(hg)sul(j) ad(ij) cus(h)t\\u00f3(g)di(fg)am.(g.) (::)\\r\\n",
|
|
472
|
+
office: "hy",
|
|
473
|
+
mode: "8",
|
|
474
|
+
pages: [
|
|
475
|
+
{ page: "242", sequence: 2, extent: 1 }
|
|
476
|
+
],
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
id: "gregobase:4685",
|
|
480
|
+
incipit: "Christe qui splendor (Tempore Adventus post diem 16 decembris)",
|
|
481
|
+
gabc: "(c4) Chris(f)te,(e) qui,(d) splen(e)dor(dc) et(de) di(e)es(e'_) (,)\\r\\nnoc(g)tis(g!hwih) te(gf)n\\u00e9(g)bras(ghg) d\\u00e9(fe)te(de)gis,(e.) (;)\\r\\nlu(f)c\\u00eds(e)que(d) lum(e)en(dc) cr\\u00e9(dewf)de(d)ris,(d'_) (,)\\r\\nlu(d)men(f) be(e)\\u00e1(g)tis(ghg) pr<sp>'\\u00e6</sp>(fe)di(de)cans,(e.) (::)",
|
|
482
|
+
office: "hy",
|
|
483
|
+
mode: "4",
|
|
484
|
+
pages: [
|
|
485
|
+
{ page: "9", sequence: 2, extent: 2 }
|
|
486
|
+
],
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
id: "gregobase:4686",
|
|
490
|
+
incipit: "Christe qui splendor (Tempore Quadragesimae hebdomadae II IV)",
|
|
491
|
+
gabc: "(f3)CHris(g)te,(g) qui,(fe) splen(f)dor(g) et(h) di(g)es(f'_) (,)\\r\\nNoc(f)tis(f) te(h)n\\u00e9(g)bras(e) d\\u00e9(f)te(h)gis,(g.) (;)\\r\\nLu(h)c\\u00eds(i)que(h) lu(g)men(f) cr\\u00e9(h)de(g)ris,(f'_) (,)\\r\\nLu(g)men(g) be(fe)\\u00e1(f)tis(g) pr\\u01fd(h)di(g)cans,(f.) (::)\\r\\n\\r\\n2. Pre(g)c\\u00e1(g)mur,(fe) sanc(f)te(g) D\\u00f3(h)mi(g)ne,(f'_) (,)\\r\\nHac(f) noc(f)te(h) nos(g) cus(e)t\\u00f3(f)di(h)as;(g.) (;)\\r\\nSit(h) no(i)bis(h) in(g) te(f) r\\u00e9(h)qui(g)es,(f'_) (,)\\r\\nQui(g)\\u00e9(g)tas(fe) ho(f)ras(g) tr\\u00ed(h)bu(g)e.(f.) (::)\\r\\n\\r\\n3. Som(g)no(g) si(fe) dan(f)tur(g) \\u00f3(h)cu(g)li,(f'_) (,)\\r\\nCor(f) sem(f)per(h) ad(g) te(e) v\\u00ed(f)gi(h)let;(g.) (;)\\r\\nTu(h)\\u00e1(i)que(h) dex(g)tra(f) pr\\u00f3(h)te(g)gas(f'_) (,)\\r\\nFi(g)d\\u00e9(g)les,(fe) qui(f) te(g) d\\u00ed(h)li(g)gunt.(f.) (::)\\r\\n\\r\\n4. De(g)f\\u00e9n(g)sor(fe) nos(f)ter,(g) \\u00e1(h)spi(g)ce,(f'_) (,)\\r\\nIn(f)si(f)di(h)\\u00e1n(g)tes(e) r\\u00e9(f)pri(h)me,(g.) (;)\\r\\nGu(h)b\\u00e9r(i)na(h) tu(g)os(f) f\\u00e1(h)mu(g)los,(f'_) (,)\\r\\nQuos(g) s\\u00e1n(g)gui(fe)ne(f) mer(g)c\\u00e1(h)tus(g) es.(f.) (::)\\r\\n\\r\\n5. Sit,(g) Chris(g)te,(fe) rex(f) pi(g)\\u00eds(h)si(g)me,(f'_) (,)\\r\\nTi(f)bi(f) Pa(h)tr\\u00ed(g)que(e) gl\\u00f3(f)ri(h)a,(g.) (;)\\r\\nCum(h) Sp\\u00ed(i)ri(h)tu(g) Pa(f)r\\u00e1(h)cli(g)to,(f'_) (,)\\r\\nIn(g) sem(g)pi(fe)t\\u00e9r(f)na(g) s\\u01fd(h)cu(g)la.(f.) (::)\\r\\nA(ghg)men.(fg..) (::)",
|
|
492
|
+
office: "hy",
|
|
493
|
+
mode: "2",
|
|
494
|
+
pages: [
|
|
495
|
+
{ page: "51", sequence: 2, extent: 1 }
|
|
496
|
+
],
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
id: "gregobase:4687",
|
|
500
|
+
incipit: "Christe qui splendor (Tempore Nativitatis a sollemnitate Epiphaniae)",
|
|
501
|
+
gabc: "(c3) CHris(d)te,(e) qui,(fh) splen(h)dor(e) et(f) di(d)es(e'_) (,)\\r\\nnoc(h)tis(hg) te(f)n\\u00e9(h)bras(e) d\\u00e9(fe)te(de)gis,(e.) (;)\\r\\nlu(h)c\\u00eds(h)que(i) lum(j)en(h) cr\\u00e9(i)de(h)ris,(fe'__) (,)\\r\\nlu(e)men(e) be(d)\\u00e1(c)tis(d) pr<sp>'\\u00e6</sp>(fe)di(de)cans,(e.) (::)\\r\\n2. Pre(d)c\\u00e1(e)mur,(fh) sanc(h)te(e) D\\u00f3(f)mi(d)ne,(e'_) (,)\\r\\nHac(h) noc(hg)te(f) nos(h) cus(e)t\\u00f3(fe)di(de)as;(e.) (;)\\r\\nSit(h) no(h)bis(i) in(j) te(h) r\\u00e9(i)qui(h)es,(fe'__) (,)\\r\\nQui(e)\\u00e9(e)tas(d) ho(c)ras(d) tr\\u00ed(fe)bu(de)e.(e.) (::)\\r\\n\\r\\n3. Som(d)no(e) si(fh) dan(h)tur(e) \\u00f3(f)cu(d)li,(e'_) (,)\\r\\nCor(h) sem(hg)per(f) ad(h) te(e) v\\u00ed(fe)gi(de)let;(e.) (;)\\r\\nTu(h)\\u00e1(h)que(i) dex(j)tra(h) pr\\u00f3(i)te(h)gas(fe'__) (,)\\r\\nFi(e)d\\u00e9(e)les,(d) qui(c) te(d) d\\u00ed(fe)li(de)gunt.(e.) (::)\\r\\n\\r\\n4. De(d)f\\u00e9n(e)sor(fh) nos(h)ter,(e) \\u00e1(f)spi(d)ce,(e'_) (,)\\r\\nIn(h)si(hg)di(f)\\u00e1n(h)tes(e) r\\u00e9(fe)pri(de)me,(e.) (;)\\r\\nGu(h)b\\u00e9r(h)na(i) tu(j)os(h) f\\u00e1(i)mu(h)los,(fe'__) (,)\\r\\nQuos(e) s\\u00e1n(e)gui(d)ne(c) mer(d)c\\u00e1(fe)tus(de) es.(e.) (::)\\r\\n\\r\\n5. Sit,(d) Chris(e)te,(fh) rex(h) pi(e)\\u00eds(f)si(d)me,(e'_) (,)\\r\\nTi(h)bi(hg) Pa(f)tr\\u00ed(h)que(e) gl\\u00f3(fe)ri(de)a,(e.) (;)\\r\\nCum(h) Sp\\u00ed(h)ri(i)tu(j) Pa(h)r\\u00e1(i)cli(h)to,(fe'__) (,)\\r\\nIn(e) sem(e)pi(d)t\\u00e9r(c)na(d) s\\u01fd(fe)cu(de)la.(e.) (::)\\r\\nA(efe)men.(de..) (::)",
|
|
502
|
+
office: "hy",
|
|
503
|
+
mode: "8",
|
|
504
|
+
pages: [
|
|
505
|
+
{ page: "37", sequence: 1, extent: 1 }
|
|
506
|
+
],
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
id: "gregobase:7263",
|
|
510
|
+
incipit: "Dei fide",
|
|
511
|
+
gabc: "(f3)De(g)i(g) fi(fe)de,(f) qua(g) v\\u00ed(h)vi(g)mus,(f) (,)\\r\\nqua(f) spe(f) per(h)\\u00e9n(g)ni(e) cr\\u00e9(f)di(h)mus,(g) (;)\\r\\nper(h) ca(i)ri(h)t\\u00e1(g)tis(f) gr\\u00e1(h)ti(g)am(f) (,)\\r\\nChri(g)sti(g) ca(fe)n\\u00e1(f)mus(g) gl\\u00f3(h)ri(g)am,(f) (::)",
|
|
512
|
+
office: "hy",
|
|
513
|
+
mode: "2",
|
|
514
|
+
pages: [
|
|
515
|
+
{ page: "56", sequence: 0, extent: 2 }
|
|
516
|
+
],
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
id: "gregobase:7264",
|
|
520
|
+
incipit: "Qua Christus",
|
|
521
|
+
gabc: "(f3)QUa(g) Chri(g)stus(fe) ho(f)ra(g) s\\u00ed(h)ti(g)it(f) (,)\\r\\ncru(f)cem(f) vel(h) in(g) qua(e) s\\u00fab(f)i(h)it,(g) (;)\\r\\nquos(h) pr\\u00e6(i)stat(h) in(g) hac(f) ps\\u00e1l(h)le(g)re(f) (,)\\r\\ndi(g)tet(g) si(fe)ti(f) iu(g)st\\u00ed(h)ti(g)\\u00e6.(f) (::)",
|
|
522
|
+
office: "hy",
|
|
523
|
+
mode: "2",
|
|
524
|
+
pages: [
|
|
525
|
+
{ page: "57", sequence: 0, extent: 1 }
|
|
526
|
+
],
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
id: "gregobase:7265",
|
|
530
|
+
incipit: "Ternis ter horis",
|
|
531
|
+
gabc: "(f3)Ter(g)nis(g) ter(fe) ho(f)ris(g) n\\u00fa(h)me(g)rus(f) (,)\\r\\nno(f)bis(f) sa(h)cr\\u00e1(g)tus(e) p\\u00e1n(f)di(h)tur,(g) (;)\\r\\nsan(h)ct\\u00f3(i)que(h) Ie(g)su(f) n\\u00f3(h)mi(g)ne(f) (,)\\r\\nmu(g)nus(g) pre(fe)c\\u00e9(f)mur(g) v\\u00e9(h)ni(g)\\u00e6.(f) (::)",
|
|
532
|
+
office: "hy",
|
|
533
|
+
mode: "2",
|
|
534
|
+
pages: [
|
|
535
|
+
{ page: "57", sequence: 2, extent: 2 }
|
|
536
|
+
],
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
id: "gregobase:7266",
|
|
540
|
+
incipit: "Iam Christe",
|
|
541
|
+
gabc: "(f3)IAm,(c) Chri(ef)ste,(f) sol(fg) iu(f)st\\u00ed(ef)ti(f)\\u00e6,(f'_) (,)\\r\\nmen(e)tis(g) de(f)h\\u00ed(h)scant(g) t\\u00e9(feg)ne(e)br\\u00e6,(f.) (;)\\r\\nvir(e)t\\u00fa(fg)tum(g) ut(ge) lux(f) r\\u00e9d(f)e(e)at,(dc__) (,)\\r\\nter(c)ris(ef) di(f)em(fg) cum(f) r\\u00e9(ef)pa(f)ras.(f.) (::)\\r\\n\\r\\n",
|
|
542
|
+
office: "hy",
|
|
543
|
+
mode: "d",
|
|
544
|
+
pages: [
|
|
545
|
+
{ page: "56", sequence: 0, extent: 1 }
|
|
546
|
+
],
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
id: "gregobase:7270",
|
|
550
|
+
incipit: "Christum Dominum",
|
|
551
|
+
gabc: "(c4)CHrist(d)um(dfd~) D\\u00f3(e)mi(e)num,(e/fgf/eeof/ded.) (,) pro(dfe) no(fg)bis(g) ten(g)t\\u00e1(gh)tum(g) et(f) pas(ghGF)sum,(efEDd) (;) ve(c)n\\u00ed(c!dwe/fv)te,(ed__) ad(-dfe)o(fg)r\\u00e9(g_hGFg)mus.(fe..) (::)",
|
|
552
|
+
office: "an",
|
|
553
|
+
mode: "4",
|
|
554
|
+
pages: [
|
|
555
|
+
{ page: "52", sequence: 1, extent: 0 }
|
|
556
|
+
],
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
id: "gregobase:7276",
|
|
560
|
+
incipit: "Hodie si vocem Domini",
|
|
561
|
+
gabc: "(f3)HO(fhg)di(g)e,(g_') si(g) vo(gh)cem(g') D\\u00f3(g)mi(g)ni(hs<hs<hs<) au(hf~)di(-fhg)\\u00e9(h)ri(i_h_iwjij)tis,(j.i.) (;) no(g_h)l\\u00ed(i)te(h') ob(g)du(fe)r\\u00e1(f)re(fs<hs<hs<iffe.) (,) cor(ggohf~)da(h) ve(hi)stra.(g.) (::)",
|
|
562
|
+
office: "an",
|
|
563
|
+
mode: "e",
|
|
564
|
+
pages: [
|
|
565
|
+
{ page: "52", sequence: 2, extent: 1 }
|
|
566
|
+
],
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
id: "gregobase:7281",
|
|
570
|
+
incipit: "Christum Dei Filium qui suo",
|
|
571
|
+
gabc: "(c4)Chri(c)stum,(de) De(edffe)i(dc) F\\u00ed(de)li(e)um,(e.) (,) qui(d) su(dh)o(hg) nos(hi) red(h)\\u00e9(gh)mit(g) s\\u00e1n(fe>)gui(de)ne,(efe.) (;) ve(ef!gvFE)n\\u00ed(de)te,(dc__) ad(gf__/gh_GFf)o(de)r\\u00e9(e.)mus.(e.) (::)",
|
|
572
|
+
office: "an",
|
|
573
|
+
mode: "4",
|
|
574
|
+
pages: [
|
|
575
|
+
{ page: "67", sequence: 1, extent: 1 }
|
|
576
|
+
],
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
id: "gregobase:7288",
|
|
580
|
+
incipit: "Te Catharina",
|
|
581
|
+
gabc: "(c4)TE,(g) Ca(g)tha(fd)r\\u00ed(e)na,(f) m\\u00e1(gh)xi(h)mis(g) (,)\\r\\nnunc(f) ve(g)ne(h)r\\u00e1(ji)mur(hg) l\\u00e1u(hi)di(hg)bus,(g) (;)\\r\\ncun(j)ct\\u00e6(k) lu(i)men(j) Ec(h)cl\\u00e9(j)si(i)\\u00e6,(ghGF) (,)\\r\\nser(f)tis(g) or(h)n\\u00e1(ji)ta(hg) pl\\u00fa(hi)ri(hg)mis.(g) (::)",
|
|
582
|
+
office: "hy",
|
|
583
|
+
mode: "8",
|
|
584
|
+
pages: [
|
|
585
|
+
{ page: "369", sequence: 0, extent: 1 }
|
|
586
|
+
],
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
id: "gregobase:7290",
|
|
590
|
+
incipit: "Surrexit Dominus vere (Inv.)",
|
|
591
|
+
gabc: "(c4)SUr(d)r\\u00e9(f_0fg)xit(f) D\\u00f3(g)mi(fe)nus(f) ve(g_0h)re,(ixh_0i!/ggf.) (;) al(f!gwh>//)le(//ghffvED)l\\u00fa(f!gwhgh>)ia.(gf..) (::) Ve(f_h)ni(j)te,(j) (::)",
|
|
592
|
+
office: "an",
|
|
593
|
+
mode: "6",
|
|
594
|
+
pages: [
|
|
595
|
+
{ page: "79", sequence: 1, extent: 1 }
|
|
596
|
+
],
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
id: "gregobase:7291",
|
|
600
|
+
incipit: "Chorus novae Ierusalem",
|
|
601
|
+
gabc: "(c4)CHo(d)rus(c) no(d)v\\u00e6(f) Ie(fg)r\\u00fa(f)sa(e)lem(d_') (,)\\r\\nhym(f)ni(gh) no(g)vam(ed) dul(e)c\\u00e9(fd)di(c)nem(d.) (;)\\r\\npro(f)mat,(g) co(h)lens(hj) cum(g) s\\u00f3(fe)bri(d)is(d_g) (,)\\r\\npas(g)cha(c)le(d) fe(e)stum(fe) g\\u00e1u(d)di(cd)is.(d.) (::)\\r\\n",
|
|
602
|
+
office: "hy",
|
|
603
|
+
mode: "1",
|
|
604
|
+
pages: [
|
|
605
|
+
{ page: "83", sequence: 1, extent: 3 }
|
|
606
|
+
],
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
id: "gregobase:7367",
|
|
610
|
+
incipit: "Deus creator omnium",
|
|
611
|
+
gabc: "(c4)De(f)us,(e) cre(g)\\u00e1(hg)tor(f) \\u00f3m(gh)ni(gvFE)um(e_') (,)\\r\\npo(d)l\\u00ed(dh)que(h) re(h)ctor,(hg) v\\u00e9(gi)sti(hg)ens(g.h.) (;)\\r\\ndi(h)em(h) de(g)c\\u00f3(hg)ro(f) l\\u00fa(g)mi(fe)ne,(d_') (,)\\r\\nno(f)ctem(e) so(g)p\\u00f3(hg)ris(f) gr\\u00e1(gh)ti(gvFE)a,(e.) (::)\\r\\n\\r\\n2. Ar(f)tus(e) so(g)l\\u00fa(hg)tos(f) ut(gh) qui(gvFE)es(e_') (,)\\r\\nred(d)dat(dh) la(h)b\\u00f3(h)ris(hg) \\u00fa(gi)su(hg)i(g.h.) (;)\\r\\nmen(h)t\\u00e9s(h)que(g) fes(hg)sas(f) \\u00e1l(g)le(fe)vet(d_') (,)\\r\\nlu(f)ct\\u00fas(e)que(g) sol(hg)vat(f) \\u00e1n(gh)xi(gvFE)os,(e.) (::)\\r\\n\\r\\n3. Gra(f)tes(e) per(g)\\u00e1(hg)cto(f) iam(gh) di(gvFE)e(e_') (,)\\r\\net(d) no(dh)ctis(h) ex(h)\\u00f3r(hg)tu(gi) pre(hg)ces,(g.h.) (;)\\r\\nvo(h)ti(h) re(g)os(hg) ut(f) \\u00e1d(g)iu(fe)ves,(d_') (,)\\r\\nhym(f)num(e) ca(g)n\\u00e9n(hg)tes(f) s\\u00f3l(gh)vi(gvFE)mus.(e.) (::)\\r\\n\\r\\n4. Te(f) cor(e)dis(g) i(hg)ma(f) c\\u00f3n(gh)ci(gvFE)nant,(e_') (,)\\r\\nte(d) vox(dh) ca(h)n\\u00f3(h)ra(hg) c\\u00f3n(gi)cre(hg)pet,(g.h.) (;)\\r\\nte(h) d\\u00ed(h)li(g)gat(hg) ca(f)stus(g) a(fe)mor,(d_') (,)\\r\\nte(f) mens(e) ad(g)\\u00f3(hg)ret(f) s\\u00f3(gh)bri(gvFE)a,(e.) (::)\\r\\n\\r\\n5. Ut(f) cum(e) pro(g)f\\u00fan(hg)da(f) cl\\u00e1u(gh)se(gvFE)rit(e_') (,)\\r\\ndi(d)em(dh) ca(h)l\\u00ed(h)go(hg) n\\u00f3(gi)cti(hg)um,(g.h.) (;)\\r\\nfi(h)des(h) te(g)n\\u00e9(hg)bras(f) n\\u00e9(g)sci(fe)at(d_') (,)\\r\\net(f) nox(e) fi(g)de(hg) re(f)l\\u00fa(gh)ce(gvFE)at.(e.) (::)\\r\\n\\r\\n6. Chri(f)stum(e) ro(g)g\\u00e1(hg)mus(f) et(gh) Pa(gvFE)trem,(e_') (,)\\r\\nChri(d)sti(dh) Pa(h)tr\\u00eds(h)que(hg) Sp\\u00ed(gi)ri(hg)tum ;(g.h.) (;)\\r\\nu(h)num(h) po(g)tens(hg) per(f) \\u00f3m(g)ni(fe)a,(d_') (,)\\r\\nfo(f)ve(e) pre(g)c\\u00e1n(hg)tes,(f) Tr\\u00ed(gh)ni(gvFE)tas.(e.) (::)\\r\\nA(efe)men.(d.e.) (::)",
|
|
612
|
+
office: "hy",
|
|
613
|
+
mode: "4",
|
|
614
|
+
pages: [
|
|
615
|
+
{ page: "181", sequence: 1, extent: 2 }
|
|
616
|
+
],
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
id: "gregobase:7370",
|
|
620
|
+
incipit: "Regem angelorum",
|
|
621
|
+
gabc: "(c3) Re(e_0f>_0)gem(e) an(e)ge(e)l\\u00f3(eg)rum(h) D\\u00f3(ggf)mi(hf__@gwhGFE)num,(e/fge cco@dv.) (;) ve(b/ceof)n\\u00ed(f)te,(hf__@gwhGFE.) ad(eec)o(de)r\\u00e9(ec__do@ev)mus.(dc..) (::)",
|
|
622
|
+
office: "an",
|
|
623
|
+
mode: "3",
|
|
624
|
+
pages: [
|
|
625
|
+
{ page: "441", sequence: 1, extent: 1 }
|
|
626
|
+
],
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
id: "gregobase:7373",
|
|
630
|
+
incipit: "Festiva vos archangeli",
|
|
631
|
+
gabc: "(c4)Fe(ed)st\\u00ed(g)va(hj) vos,(j) ar(ij)ch\\u00e1n(k)ge(j)li,(ih__) (,) \\r\\nh\\u00e6c(g) nos(hj)tra(j) tol(i)lunt(ji) c\\u00e1n(h)ti(gi)ca,(i.) (;) \\r\\nquos(i) in(g) su(hi)p\\u00e9r(i)na(hj) c\\u00fa(g)ri(gf)a(e'_) (,)\\r\\nin(f)s\\u00ed(g)gnit(f) in(g)gens(ghg) gl\\u00f3(fVe)ri(de)a.(e.) (::)",
|
|
632
|
+
office: "hy",
|
|
633
|
+
mode: "3",
|
|
634
|
+
pages: [
|
|
635
|
+
{ page: "442", sequence: 1, extent: 2 }
|
|
636
|
+
],
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
id: "gregobase:7412",
|
|
640
|
+
incipit: "Captator olim piscium",
|
|
641
|
+
gabc: "(c4)CAp(f)t\\u00e1(f)tor(f) o(fe)lim(dc) p\\u00ed(de)sci(e)um,(e) (,)\\r\\niam(g) nunc(gh) pi(hg)sc\\u00e1(hih)tor(gf) h\\u00f3(g)mi(gf)num,(e) (;)\\r\\ntu(f)is,(e) An(fg)dr\\u00e9(gf)a,(dc) r\\u00e9(de)ti(dc)bus(c) (,)\\r\\nmun(g)di(g) nos(f) ra(g)pe(ghg) fl\\u00fa(fe)cti(de)bus.(e) (::)\\r\\n",
|
|
642
|
+
office: "hy",
|
|
643
|
+
mode: "4",
|
|
644
|
+
pages: [
|
|
645
|
+
{ page: "472", sequence: 0, extent: 1 }
|
|
646
|
+
],
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
id: "gregobase:7424",
|
|
650
|
+
incipit: "Conditor alme siderum",
|
|
651
|
+
gabc: "(c4)COn(e)di(c)tor(e) al(g)me(h) s\\u00ed(h')de(f)rum,(g_') (,)\\r\\n \\u00c6(g)t\\u00e9r(h')na(f) lux(g) cre(f)d\\u00e9n(e')ti(d)um,(e.) (;)\\r\\n Chri(g)ste,(f') red(d)\\u00e9m(e)ptor(f) \\u00f3m(e')ni(d)um,(c_') (,)\\r\\n Ex(c)\\u00e1u(e')di(f) pre(g)ces(f) s\\u00fap(e')pli(d)cum.(e.) (::)\\r\\n\\r\\n",
|
|
652
|
+
office: "hy",
|
|
653
|
+
mode: "4",
|
|
654
|
+
pages: [
|
|
655
|
+
{ page: "3", sequence: 1, extent: 1 }
|
|
656
|
+
],
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
id: "gregobase:7483",
|
|
660
|
+
incipit: "Divina vox",
|
|
661
|
+
gabc: "(c4)Di(ddc)v\\u00ed(cf)na(ed) vox(dh) te(h) d\\u00e9(g)li(f)git,(e/ghd) (;)\\r\\npi(f)sc\\u00e1(ed)tor,(de) ac(g) pro(g) r\\u00e9(g)ti(f)bus(ed/ffd) (:)\\r\\nre(d)m\\u00eds(d)que(d) qua(dh) tu(h) gl\\u00f3(h)ri(g)a(hvGFgwhGFED) (;)\\r\\nc\\u00e6(e)li(g) re(g)f\\u00fal(ghghvGFED)ges(fe) cl\\u00e1(d)vi(cd)bus!(deDCd) (::)",
|
|
662
|
+
office: "hy",
|
|
663
|
+
mode: "1",
|
|
664
|
+
pages: [
|
|
665
|
+
{ page: "352", sequence: 0, extent: 1 }
|
|
666
|
+
],
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
id: "gregobase:7502",
|
|
670
|
+
incipit: "Lucis Largitor",
|
|
671
|
+
gabc: "(c4) LU(e)cis(c) lar(d)g\\u00ed(f)tor(ef) spl\\u00e9n(g)di(f)de(e'_) (,) \\r\\ncu(e)ius(c) se(d)r\\u00e9(f)no(ef) lu(g)m\\u00ed(g)ne(g.) (;) \\r\\npost(g) la(f)psa(g) no(h)ctis(gf) t\\u00e9m(g)po(f)ra(e'_) (,) \\r\\ndi(e)es(c) re(d)f\\u00fa(f)sus(ef) p\\u00e1n(g)di(f)tur,(e.) (::)\\r\\n\\r\\nTu(e) ve(c)rus(d) mun(f)di(ef) l\\u00fa(g)ci(f)fer,(e'_) (,)\\r\\nnon(e) is(c) qui(d) par(f)vis(ef) s\\u00ed(g)de(g)ris(g.) (;)\\r\\nven(g)t\\u00fa(f)r\\u00e6(g) lu(h)cis(gf) nun(g)ti(f)us(e'_) (,)\\r\\nan(e)g\\u00fas(c)to(d) ful(f)get(ef) l\\u00fa(g)mi(f)ne,(e.) (::)\\r\\n\\r\\nSed(e) to(c)to(d) so(f)le(ef) cl\\u00e1(g)ri(f)or,(e'_) (,)\\r\\nlux(e) i(c)pse(d) to(f)tus(ef) et(g) di(g)es,(g.) (;)\\r\\nin(g)t\\u00e9(f)rna(g) nos(h)tri(gf) p\\u00e9(g)cto(f)ris(e'_) (,)\\r\\nil(e)l\\u00fa(c)mi(d)nans(f) pr\\u00e6(ef)c\\u00f3r(g)di(f)a.(e'_) (::)\\r\\n\\r\\nE(e)v\\u00edn(c)cat(d) men(f)tis(ef) c\\u00e1s(g)ti(f)tas(e'_) (,)\\r\\nqu\\u00e6(e) ca(c)ro(d) cu(f)pit(ef) \\u00e1r(g)ro(g)gans,(g.) (;)\\r\\nsan(g)ct\\u00fam(f)que(g) pu(h)ri(gf) c\\u00f3r(g)po(f)ris(e'_) (,)\\r\\nde(e)l\\u00fa(c)brum(d) ser(f)vet(ef) sp\\u00ed(g)ri(f)tus.(e'_) (::)\\r\\n\\r\\nSit,(e) Chri(c)ste,(d) rex(f) pi(ef)\\u00eds(g)si(f)me,(e'_) (,)\\r\\nti(e)bi(c) Pa(d)tr\\u00ed(f)que(ef) gl\\u00f3(g)ri(g)a(g.) (;)\\r\\ncum(g) Sp\\u00ed(f)ri(g)tu(h) Pa(gf)r\\u00e1(g)cli(f)to,(e'_) (,)\\r\\nin(e) sem(c)pi(d)t\\u00e9r(f)na(ef) s<sp>'ae</sp>(g)cu(f)la.(e'_) (::) A(efe)men(d.e.) (::)",
|
|
672
|
+
office: "hy",
|
|
673
|
+
mode: null,
|
|
674
|
+
pages: [
|
|
675
|
+
{ page: "218", sequence: 0, extent: 1 }
|
|
676
|
+
],
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
id: "gregobase:7515",
|
|
680
|
+
incipit: "Christe qui splendor et dies (in dominicis per annum)",
|
|
681
|
+
gabc: "(c4) CHris(gh)te,(f) qui(g) splen(g)dor(h) et(f) di(g)es(g_) (,)\\r\\nnoc(g)tis(h) te(i)n\\u00e9(j)bras(ih) d\\u00e9(g)te(i)git,(i.) (;)\\r\\nlu(h!iwj)c\\u00eds(i)que(h) lu(g)men(h) cr\\u00e9(f)de(h)ris,(h_) (,)\\r\\nlu(g)men(f) be(h)\\u00e1(h)tis(g) pr<sp>'\\u00e6</sp>(f)di(g)cans.(g.) (::)",
|
|
682
|
+
office: "hy",
|
|
683
|
+
mode: "8",
|
|
684
|
+
pages: [
|
|
685
|
+
{ page: "244", sequence: 1, extent: 1 }
|
|
686
|
+
],
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
id: "gregobase:7517",
|
|
690
|
+
incipit: "Christe qui splendor (in festis)",
|
|
691
|
+
gabc: "(c4) CHris(h)te(gh) qui(h) splen(i)dor(gh) et(j) di(i)es(h_') (,)\\r\\nnoc(h)tis(i) te(j)n\\u00e9(k)bras(h) d\\u00e9(j)te(j)gis,(i.) (;)\\r\\nlu(i)c\\u00eds(i)que(h) lu(g)men(e) cr\\u00e9(g)de(h)ris,(h_') (,)\\r\\nlu(h)men(gh) be(h)\\u00e1(i)tis(gh) pr<sp>'\\u00e6</sp>(j)di(i)cans.(h.) (::)",
|
|
692
|
+
office: "hy",
|
|
693
|
+
mode: "2",
|
|
694
|
+
pages: [
|
|
695
|
+
{ page: "243", sequence: 3, extent: 2 }
|
|
696
|
+
],
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
id: "gregobase:7518",
|
|
700
|
+
incipit: "Christe qui splendor (in memoriis)",
|
|
701
|
+
gabc: "(c4) CHris(g)te,(i) qui(h) splen(j)dor(j) et(j) di(i)es,(h_') (,)\\r\\nnoc(h)tis(j) te(j)n\\u00e9(i)bras(g) d\\u00e9(h)te(g)gis,(f.) (;)\\r\\nlu(h)c\\u00eds(h)que(g) lu(j)men(i) cr\\u00e9(h)de(g)ris,(h!i!h'_) (,)\\r\\nlu(h)men(h) be(g)\\u00e1(f)tis(g) pr<sp>'\\u00e6</sp>(h)di(g)cans.(g.) (::)",
|
|
702
|
+
office: "hy",
|
|
703
|
+
mode: "8",
|
|
704
|
+
pages: [
|
|
705
|
+
{ page: "243", sequence: 2, extent: 2 }
|
|
706
|
+
],
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
id: "gregobase:7519",
|
|
710
|
+
incipit: "Christe qui splendor et dies (in feriis per annum)",
|
|
711
|
+
gabc: "(c4)CHris(h)te,(j) qui(j) splen(j)dor(j) et(k) di(j)es,(i'_) (,)\\r\\nnoc(h)tis(h) te(h)n\\u00e9(h)bras(h) d\\u00e9(i)te(h)gis,(g.) (;)\\r\\nlu(i)c\\u00eds(i)que(h) lu(g)men(f) cr\\u00e9(g)de(h)ris,(h'_) (,)\\r\\nlu(h)men(j) be(j)\\u00e1(i)tis(h) pr<sp>'ae</sp>(i)di(h)cans.(g.) (::)",
|
|
712
|
+
office: "hy",
|
|
713
|
+
mode: "8",
|
|
714
|
+
pages: [
|
|
715
|
+
{ page: "243", sequence: 1, extent: 2 }
|
|
716
|
+
],
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
id: "gregobase:7669",
|
|
720
|
+
incipit: "Venite exsultemus IV*",
|
|
721
|
+
gabc: "(c4)VE(dh)n\\u00ed(gh)te,(gf/gf/fe) ex(e)sul(f)t\\u00e9(g)mus(h) D\\u00f3(h)mi(g)no,(g_') (,) iu(g)bi(g)l\\u00e9(g)mus(h) De(h)o,(g') sa(g)lu(f)t\\u00e1(gh)ri(g) no(e_f)stro.(eed.) (;) Pr\\u00e6(d)oc(f)cu(d)p\\u00e9(e)mus(f) f\\u00e1(g)ci(g)em(h) e(h)ius(g_') (,) in(g) con(f)fes(gh)si(g)\\u00f3(e_f)ne,(fe..) (;) et(f) in(de~) psal(ef~)mis(e') (,) iu(e)bi(f)l\\u00e9(ed)mus(f) e(ecd)i.(d/eed.::Z)\\r\\n\\r\\nQu\\u00f3(dh)ni(gh)am(gf/gf/fe) De(e)us(f) ma(g)gnus(h) D\\u00f3(h)mi(g)nus,(g_') (,) et(g) rex(gh) ma(h)gnus(g') su(g)per(f) om(gh)nes(g) de(e_f)os.(eed.) (;) Qu\\u00f3(f)ni(d)am(e) non(f) re(g)p\\u00e9l(g)let(g) D\\u00f3(g)mi(g)nus(g) ple(g)bem(h) su(h)am,(g_') (,) qui(e)a(f) in(g) ma(g)nu(h) e(h)ius(g_') (,) sunt(h) om(g)nes(f) fi(gh)nes(g) ter(e_f)r\\u00e6,(fe..) (;) et(f) al(de~)ti(e)t\\u00fa(e)di(e)nes(e) m\\u00f3n(ef~)ti(e)um(e_') (,) i(f)pse(ed) c\\u00f3n(f)spi(ecd)cit.(d/eed.::Z)\\r\\n\\r\\nQu\\u00f3(dh)ni(gh)am(gf/gf/fe) i(e)ps\\u00ed(f)us(g) est(g) ma(g)re,(g_') et(g) i(g)pse(g) fe(g)cit(h) il(h)lud,(g_') (,) et(e) \\u00e1(f)ri(g)dam(g) fun(g)da(h)v\\u00e9(g)runt(f) ma(gh)nus(g) e(e_f)ius.(eed.) (;) Ve(d)n\\u00ed(f)te,(d) ad(e)o(f)r\\u00e9(g)mus,(g_') et(g) pro(g)ci(g)d\\u00e1(g)mus(g) an(g)te(h) De(h)um,(g_') (,) plo(e)r\\u00e9(f)mus(g) co(g)ram(g) D\\u00f3(g)mi(g)no,(g) qui(h) fe(h)cit(g) nos,(g_') (,) qui(e)a(f) i(g)pse(g) est(h) D\\u00f3(h)mi(g)nus,(f) De(gh)us(g) no(e_f)ster,(fe..) (;) nos(f) au(de~)tem(e) p\\u00f3(e)pu(e)lus(e) e(ef~)ius,(e_') (,) et(e) o(ef)ves(e) p\\u00e1(f)scu(ed)\\u00e6(f) e(ecd)ius.(d/eed.::Z)\\r\\n\\r\\nH\\u00f3(dh)di(gh)e,(gf/gf/fe) si(e) vo(f)cem(g) e(g)ius(g) au(g)di(h)\\u00e9(h)ri(g)tis:(g_') (,) \\u00abNo(e)l\\u00ed(f)te(g) ob(g)du(h)r\\u00e1(g)re(f) cor(gh)da(g) ve(e_f)stra,(eed.) (;) si(f)cut(d) in(e) ex(f)a(g)cer(g)ba(g)ti(g)\\u00f3(g)ne(g_') se(g)c\\u00fan(g)dum(h) di(h)em(g_') (,) ten(e)ta(f)ti(g)\\u00f3(g)nis(g) in(g) de(h)s\\u00e9r(h)to:(g_') (,) u(e)bi(f) ten(g)ta(h)v\\u00e9(h)runt(g) me(f) pa(gh)tres(g) ve(e_f)stri:(fe..) (;) pro(f)ba(de~)v\\u00e9(e)runt(e) et(e) vi(e)d\\u00e9(ef~)runt(e_') (,) \\u00f3(f)pe(ed)ra(f) me(ecd)a.(d/eed.::Z)\\r\\n\\r\\nQua(dh)dra(h)g\\u00edn(gh)ta(gf/gf/fe) an(f)nis(g) pr\\u00f3(g)xi(g)mus(h) fu(h)i(g_') (,) ge(e)ne(f)ra(g)ti(h)\\u00f3(h)ni(g) hu(g)ic,(h_') (,) et(g) di(g)xi:(g') (`) Sem(h)per(g) hi(f) er(gh)rant(g) cor(e_f)de.(eed.) (;) I(f)psi(d) ve(e)ro(f) non(g) co(g)gno(g)v\\u00e9(g)runt(g) vi(g)as(h) me(h)as:(g_') (,) qui(gh)bus(g') iu(h)r\\u00e1(h)vi(g) in(f) i(gh)ra(g) me(e_f)a:(fe..) (;) Si(f) in(de~)tro(e)\\u00ed(ef~)bunt(e_') (,) in(e) r\\u00e9(f)qui(ed)em(f) me(ecd)am.\\u00bb(d/eed.::Z)\\r\\n\\r\\nGl\\u00f3(dh)ri(gh)a(gf/gf/fe) Pa(ef)tri,(g) et(h) F\\u00ed(h)li(g)o,(g_') (,) et(h) Spi(g)r\\u00ed(f)tu(gh)i(g) San(e_f)cto.(eed.) (;) Si(f)cut(d) e(e)rat(f) in(g) prin(h)c\\u00ed(h)pi(g)o,(g_') (,) et(f) nunc,(gh) et(g) sem(e_f)per,(fe..) (;) et(f) in(de~) s{<sp>'ae</sp>}(ef)cu(e)la(e) s\\u00e6(e)cu(f)l\\u00f3(ed)rum.(f) A(ecd)men.(d/eed.::Z)",
|
|
722
|
+
office: "ps",
|
|
723
|
+
mode: "4",
|
|
724
|
+
pages: [
|
|
725
|
+
{ page: "141", sequence: 1, extent: 3 }
|
|
726
|
+
],
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
id: "gregobase:8129",
|
|
730
|
+
incipit: "Cor arca legem continens (another chant)",
|
|
731
|
+
gabc: "(c4)COR,(dh) \\u00e1r(hg)ca(h) l\\u00e9(g)gem(fe) c\\u00f3n(g)ti(g)nens,(h.) (,) Non(hj) ser(ji)vi(gh)t\\u00fa(hg)tis(fe) v\\u00e9(g)te(g)ris,(h.) (;) Sed(d) gr\\u00e1(f)ti(e)\\u00e6,(ghg) sed(fe) v\\u00e9(dc)ni(de)\\u00e6,(e_) (,) Sed(g) et(f!gh) mi(hg)se(fe)ri(c)c\\u00f3r(ef)di(d)\\u00e6.(d.) (::) 2. Cor,(dh) san(hg)ctu(h)\\u00e1(g)ri(fe)um(g) n\\u00f3(g)vi(h.) (,) In(hj)te(ji)me(gh)r\\u00e1(hg)tum(fe) fo\\u00e9(g)de(g)ris,(h.) (;) T\\u00e9m(d)plum(f) ve(e)t\\u00fa(ghg)sto(fe) s\\u00e1n(dc)cti(de)us,(e_) (,) Ve(g)l\\u00fam(f!gh)que(hg) sc\\u00eds(fe)s<i>o</i>() u(c)t\\u00ed(ef)li(d)us.(d.) (::) 3. Te(dh) vul(hg)ne(h)r\\u00e1(g)tum(fe) c\\u00e1(g)ri(g)tas(h.) (,) I(hj)ctu(ji) pa(gh)t\\u00e9n(hg)ti(fe) v\\u00f3(g)lu(g)it,(h.) (;) A(d)m\\u00f3(f)ris(e) in(ghg)vi(fe)s\\u00ed(dc)bi(de)lis(e_) (,) Ut(g) ve(f!gh)ne(hg)r\\u00e9(fe)mur(c) v\\u00fal(ef)ne(d)ra.(d.) (::) 4. Hoc(dh) sub(hg) a(h)m\\u00f3(g)ris(fe) s\\u00fdm(g)bo(g)lo(h.) (,) P\\u00e1s(hj)sus(ji) cru(gh)\\u00e9n(hg)t<i>a</i>() et(fe) m\\u00fd(g)sti(g)ca,(h.) (;) U(d)tr\\u00fam(f)que(e) sa(ghg)cri(fe)f\\u00ed(dc)ci(de)um(e_) (,) Chri(g)stus(f!gh) Sa(hg)c\\u00e9r(fe)dos(c) \\u00f3b(ef)tu(d)lit.(d.) (::) 5. Quis(dh) non(hg) a(h)m\\u00e1n(g)tem(fe) r\\u00e9(g)da(g)met?(h.) (,) Quis(hj) non(ji) re(gh)d\\u00e9m(hg)ptus(fe) d\\u00ed(g)li(g)gat,(h.) (;) Et(d) ca(f)ri(e)t\\u00e1(ghg)te(fe) i\\u00fa(dc)gi(de)ter(e_) (,) H\\u00e6(g)r\\u00e9(f!gh)re(hg) Chri(fe)sto(c) ge(ef)sti(d)at?(d.) (::) 6. Ie(dh)su,(hg) ti(h)bi(g) sit(fe) gl\\u00f3(g)ri(g)a,(h.) (,) Qui(hj) Cor(ji)de(gh) fun(hg)dis(fe) gr\\u00e1(g)ti(g)am,(h.) (;) Cum(d) Pa(f)tr<i>e</i>() et(e) al(ghg)mo(fe) Sp\\u00ed(dc)ri(de)tu(e_) (,) In(g) sem(f!gh)pi(hg)t\\u00e9r(fe)na(c) s\\u01fd(ef)cu(d)la.(d.) (::) A(ded)men.(c.d.) (::)",
|
|
732
|
+
office: "hy",
|
|
733
|
+
mode: "1",
|
|
734
|
+
pages: [
|
|
735
|
+
{ page: "119", sequence: 0, extent: 1 }
|
|
736
|
+
],
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
id: "gregobase:8218",
|
|
740
|
+
incipit: "Venite exsultemus II",
|
|
741
|
+
gabc: "(f3)VE(f)n\\u00ed(e)te,(f) ex(h)sul(h)t\\u00e9(h)mus(i) D\\u00f3(i)mi(h)no,(h_') (,) ju(f)bi(h)l\\u00e9(h)mus(i) De(i)o,(h') sa(g)lu(f)t\\u00e1(g)ri(h) no(gg)stro.(f.) (;) Pr\\u00e6(f)oc(e)cu(f)p\\u00e9(h)mus(h) f\\u00e1(h)ci(h)em(i) e(i)jus(h_') (,) in(g) con(f)fes(g)si(h)\\u00f3(gg)ne,(f.) (;) et(f) in(ec~) psal(ef~)mis(f_') (,) ju(f)bi(h)l\\u00e9(gf)mus(h) e(gef)i.(f/ggf.) (::Z)\\r\\n\\r\\nQu\\u00f3(f)ni(e)am(f) De(h)us(h) ma(h)gnus(i) D\\u00f3(i)mi(h)nus,(h_') (,) et(h) rex(hi) ma(i)gnus(h) su(g)per(f) om(g)nes(h) de(gg)os.(f.) (;) Qu\\u00f3(f)ni(e)am(f) non(h) re(h)p\\u00e9l(h)let(h) D\\u00f3(h)mi(h)nus(h) ple(h)bem(i) su(i)am,(h_') (,) qui(f)a(h) in(h) ma(h)nu(i) e(i)jus(h_') (,) sunt(h) om(g)nes(f) fi(g)nes(h) ter(gg)r\\u00e6,(f.) (;) et(f) al(ec~)ti(e)t\\u00fa(ef)di(f)nes(f) m\\u00f3n(fg~)ti(f)um(f_') (,) i(h)pse(gf) c\\u00f3n(h)spi(gef)cit.(f/ggf.) (::Z)\\r\\n\\r\\nQu\\u00f3(f)ni(e)am(f) i(h)ps\\u00ed(h)us(h) est(i) ma(i)re,(h_') (,) et(f) i(h)pse(h) fe(h)cit(i) il(i)lud,(h_') (,) et(h) \\u00e1(hi)ri(h)dam(h') fun(h)da(h)v\\u00e9(g)runt(f) ma(g)nus(h) e(gg)jus.(f.) (;) Ve(f)n\\u00ed(e)te,(f) a(h)do(h)r\\u00e9(h)mus,(h_') et(h) pro(h)ci(h)d\\u00e1(h)mus(h) an(h)te(i) De(i)um,(h_') (,) plo(f)r\\u00e9(h)mus(h) co(h)ram(h) D\\u00f3(h)mi(h)no,(h) qui(i) fe(i)cit(h) nos,(h_') (,) qui(f)a(h) i(hi)pse(h) est(h_') D\\u00f3(h)mi(g)nus,(f) De(g)us(h) no(gg)ster,(f.) (;) nos(f) au(ec~)tem(e) p\\u00f3(ef)pu(f)lus(f) e(fg~)jus,(f_') (,) et(f) o(fg)ves(f') p\\u00e1(h)scu(gf)\\u00e6(h) e(gef)jus.(f/ggf.) (::Z)\\r\\n\\r\\nH\\u00f3(f)di(e)e,(f) si(h) vo(h)cem(h) e(h)jus(h) au(h)di(i)\\u00e9(i)ri(h)tis:(h_') (,) \\u00abNo(h)l\\u00ed(hi)te(h') ob(h)du(h)r\\u00e1(g)re(f) cor(g)da(h) ve(gg)stra,(f.) (;) si(f)cut(e) in(f) e(h)xa(h)cer(h)ba(h)ti(h)\\u00f3(h)ne(h_') se(h)c\\u00fan(h)dum(i) di(i)em(h_') (,) ten(f)ta(h)ti(h)\\u00f3(h)nis(h) in(h) de(i)s\\u00e9r(i)to:(h_') (,) u(hi)bi(h_') ten(h)ta(h)v\\u00e9(h)runt(g) me(f) pa(g)tres(h) ve(gg)stri:(f.) (;) pro(f)ba(ec)v\\u00e9(ef)runt(f) et(f) vi(f)d\\u00e9(fg)runt(f_') (,) \\u00f3(h)pe(gf)ra(h) me(gef)a.(f/ggf.) (::Z)\\r\\n\\r\\nQua(f)dra(e)g\\u00edn(f)ta(h) an(h)nis(h') pr\\u00f3(h)xi(h)mus(i) fu(i)i(h_') (,) ge(f)ne(h)ra(h)ti(i)\\u00f3(i)ni(h) hu(h)ic,(i') (,) et(h) di(i)xi:(h_) (`) Sem(h)per(g) hi(f) er(g)rant(h) cor(gg)de.(f.) (;) I(f)psi(e) ve(f)ro(h) non(h) co(h)gno(h)v\\u00e9(h)runt(h) vi(h)as(i) me(i)as:(h_') (,) qui(hi)bus(h_') ju(h)r\\u00e1(h)vi(g) in(f) i(g)ra(h) me(gg)a:(f.) (;) Si(f) in(ec~)tro(e)\\u00ed(ef)bunt(f_') (,) in(f) r\\u00e9(h)qui(gf)em(h) me(gef)am.\\u00bb(f/ggf.) (::Z)\\r\\n\\r\\nGl\\u00f3(f)ri(e)a(f) Pa(h)tri,(h) et(i) F\\u00ed(i)li(h)o,(h_') (,) et(h) Spi(g)r\\u00ed(f)tu(g)i(h) San(gg)cto.(f.) (;) Si(f)cut(e) e(f)rat(h) in(h) prin(i)c\\u00ed(i)pi(h)o,(h_') (,) et(gf~) nunc,(g) et(h) sem(gg)per,(f.) (;) et(f) in(ec~) s\\u01fd(ef)cu(f)la(f) s\\u00e6(f)cu(h)l\\u00f3(gf)rum.(h) A(gef)men.(f/ggf.) (::)\\r\\n",
|
|
742
|
+
office: "ps",
|
|
743
|
+
mode: "2",
|
|
744
|
+
pages: [
|
|
745
|
+
{ page: "133", sequence: 1, extent: 3 }
|
|
746
|
+
],
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
id: "gregobase:8225",
|
|
750
|
+
incipit: "Regem venturum Dominum (In dominica)",
|
|
751
|
+
gabc: "(c3) Re(f)gem(d) ven(fh~)t\\u00fa(h)rum(hf__) D\\u00f3(f_h/ihih)mi(g_hGF)num,(f!gwh_GEde!fvfe.) (;) ve(d)n\\u00ed(fef)te,(f!gwhg/hih) a(ffe)do(e_f)r\\u00e9(fvEDC____/dw@ed@e)mus.(ed..) (::) Ps. V{e}(h)n\\u00ed(h)t{e}, <i>p. 146.</i>(hi/hshsfgf) (::)",
|
|
752
|
+
office: "an",
|
|
753
|
+
mode: "5",
|
|
754
|
+
pages: [
|
|
755
|
+
{ page: "4", sequence: 2, extent: 1 }
|
|
756
|
+
],
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
id: "gregobase:8226",
|
|
760
|
+
incipit: "Regem venturum Dominum (In feriis)",
|
|
761
|
+
gabc: "(c4) Re(f)gem(f) ven(f)t\\u00fa(fg)rum(g) D\\u00f3(gf)mi(g)num,(gh..) (;) ve(h)n\\u00ed(gf)te,(gh) a(g_h_GF__)do(fg)r\\u00e9(g.)mus.(f.) (::) Ps. V{e}(h)n\\u00ed(g)t{e}, <i>p. 149.</i>(h) (::)",
|
|
762
|
+
office: "an",
|
|
763
|
+
mode: "6",
|
|
764
|
+
pages: [
|
|
765
|
+
{ page: "4", sequence: 3, extent: 2 }
|
|
766
|
+
],
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
id: "gregobase:8227",
|
|
770
|
+
incipit: "Verbum supernum prodiens a",
|
|
771
|
+
gabc: "(f3)VEr(ef)bum(f) su(fg)p\\u00e9r(e)num(f!gwh) pr\\u00f3d(hg)i(fg)ens,(g_) (,)\\r\\na(i) Pa(ih)tre(g) lu(hg)men(f) \\u00e9x(gf)i(ef)ens,(f.) (;) \\r\\nqui(fg) na(e)tus(fi) or(h)bi(hg) s\\u00fab(fg)ve(fe)nis(e_) (,) \\r\\ncur(e)su(f) de(g)cl\\u00ed(hg)vi(f) t\\u00e9m(gf)po(ef)ris:(f.) (::)\\r\\n\\r\\n2. Il(ef)l\\u00fa(f)mi(fg)na(e) nunc(f!gwh) p\\u00e9c(hg)to(fg)ra(g_) (,)\\r\\ntu(i)\\u00f3(ih)qu<i>e</i>() a(g)m\\u00f3(hg)re(f) c\\u00f3n(gf)cre(ef)ma;(f.) (;)\\r\\nau(fg)d\\u00ed(e)ta(fi) per(h) pr\\u00e6(hg)c\\u00f3(fg)ni(fe)a(e_) (,)\\r\\nsint(e) pul(f)sa(g) tan(hg)dem(f) l\\u00fa(gf)bri(ef)ca.(f.) (::)\\r\\n\\r\\n3. Iu(ef)d\\u00e9x(f)que(fg) cum(e) post(f!gwh) \\u00e1d(hg)e(fg)ris(g_) (,)\\r\\nri(i)m\\u00e1(ih)ri(g) fac(hg)ta(f) p\\u00e9c(gf)to(ef)ris,(f.) (;)\\r\\nred(fg)dens(e) vi(fi)cem(h) pro(hg) \\u00e1b(fg)di(fe)tis(e_) (,)\\r\\nius(e)t\\u00eds(f)que(g) re(hg)gnum(f) pro(gf) bo(ef)nis,(f.) (::)\\r\\n\\r\\n4. Non(ef) de(f)mum(fg) ar(e)t\\u00e9(f!gwh)mur(hg) ma(fg)lis(g_) (,)\\r\\npro(i) qua(ih)li(g)t\\u00e1(hg)te(f) cr\\u00ed(gf)mi(ef)nis,(f.) (;)\\r\\nsed(fg) cum(e) be(fi)\\u00e1(h)tis(hg) c\\u00f3m(fg)po(fe)tes(e_) (,)\\r\\nsi(e)mus(f) per(g)\\u00e9n(hg)nes(f) c\\u01fd(gf)li(ef)tes.(f.) (::)\\r\\n\\r\\n5. Sit,(ef) Chris(f)te,(fg) rex(e) pi(f!gwh)\\u00eds(hg)si(fg)me,(g_) (,)\\r\\nti(i)bi(ih) Pa(g)tr\\u00ed(hg)que(f) gl\\u00f3(gf)ri(ef)a(f.) (;)\\r\\ncum(fg) Sp\\u00ed(e)ri(fi)tu(h) Pa(hg)r\\u00e1(fg)cli(fe)to,(e_) (,)\\r\\nin(e) sem(f)pi(g)t\\u00e9r(hg)na(f) s\\u01fd(gf)cu(ef)la.(f.) (::)\\r\\nA(fgf)men.(ef..) (::)",
|
|
772
|
+
office: "hy",
|
|
773
|
+
mode: "2",
|
|
774
|
+
pages: [
|
|
775
|
+
{ page: "5", sequence: 2, extent: 2 }
|
|
776
|
+
],
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
id: "gregobase:8240",
|
|
780
|
+
incipit: "Urbs Ierusalem beata",
|
|
781
|
+
gabc: "(c4) U{R}bs(e) Ie(ed)r\\u00fa(f)sa(dc)lem(d) be(f)\\u00e1(fd)ta,(e.) (,) di(d)cta(f) pa(h)cis(g) v\\u00ed(fe)si(d)o,(e.) (;) qu\\u00e6(e) con(g)str\\u00fa(h)i(g)tur(hj) in(g) c\\u00e6(hvGF)lis(e.) (,) vi(d)vis(f) ex(h) la(g)p\\u00ed(fe)di(d)bus,(e.) (:) an(e)ge(ed)l\\u00eds(f)que(dc) co(d)ro(f)n\\u00e1(fd)ta(e.) (,) sic(d)ut(f) spon(h)sa(g) c\\u00f3(fe)mi(d)te,(e.) \\r\\n\\r\\n2.(::) No(e)va(ed) v\\u00e9(f)ni(dc)ens(d) e(f) c\\u00e6(fd)lo,(e.) (,) nup(d)ti(f)\\u00e1(h)li(g) th\\u00e1(fe)la(d)mo(e.) (;) pr\\u00e6(e)pa(g)r\\u00e1(h)ta,(g) ut(hj) in(g)t\\u00e1c(hvGF)ta(e.) (,) co(d)pu(f)l\\u00e9(h)tur(g) D\\u00f3(fe)mi(d)no.(e.) (:) Pla(e)t\\u00e9(ed)\\u00e6(f) et(dc) mu(d)ri(f) e(fd)ius(e.) (,) ex(d) au(f)ro(h) pu(g)r\\u00eds(fe)si(d)mo ;(e.) \\r\\n\\r\\n3.(::) Por(e)t\\u00e6(ed) ni(f)tent(dc) mar(d)ga(f)r\\u00ed(fd)tis,(e.) (,) \\u00e1(d)dy(f)tis(h) pa(g)t\\u00e9n(fe)ti(d)bus,(e.) (;) et(e) vir(g)t\\u00fa(h)te(g) me(hj)ri(g)t\\u00f3(hvGF)rum(e.) (,) il(d)luc(f) in(h)tro(g)d\\u00fa(fe)ci(d)tur(e.) (:) o(e)mnis(dc) qui(f) ob(dc) Chri(d)sti(f) no(fd)men(e.) (,) hic(d) in(f) mun(h)do(g) pr\\u00e9(fe)mi(d)tur.(e.) \\r\\n\\r\\n4.(::) Tun(e)si(ed)\\u00f3(f)ni(dc)bus,(d) pres(f)s\\u00fa(fd)ris(e.) (,) ex(d)po(f)l\\u00ed(h)ti(g) l\\u00e1(fe)pi(d)des(e.) (;) su(e)is(g) co(h)ap(g)t\\u00e1n(hj)tur(g) lo(hvGF)cis(e.) (,) per(d) ma(f)num(h) ar(g)t\\u00ed(fe)fi(d)cis ;(e.) (:) di(e)spo(ed)n\\u00fan(f)tur(dc) per(d)man(f)s\\u00fa(fd)ri(e.) (,) sa(d)cris(f) \\u00e6(h)di(g)f\\u00ed(fe)ci(d)is.(e.) \\r\\n\\r\\n5.(::) Gl\\u00f3(e)ri(ed)a(f) et(dc) ho(d)nor(f) De(fd)o(e.) (,) us(d)que(f)qu{\\u00e1}(h)qu<i>e</i> {a}l(g)t\\u00eds(fe)si(d)mo,(e.) (;) u(e)na(g) Pa(h)tri(g) Fi(hj)li(g)\\u00f3(hvGF)que(e.) (,) at(d)que(f) Sanc(h)to(g) Fl\\u00e1(fe)mi(d)ni,(e.) (:) qui(e)bus(ed) laud(f)es(dc) et(d) po(f)t\\u00e9(fd)stas(e.) (,) per(d) \\u00e6(f)t\\u00e9r(h)na(g) s<sp>'ae</sp>(fe)cu(d)la.(e.) (::) A(efe)men.(de..) (::)",
|
|
782
|
+
office: "hy",
|
|
783
|
+
mode: "4",
|
|
784
|
+
pages: [
|
|
785
|
+
{ page: "247", sequence: 0, extent: 1 }
|
|
786
|
+
],
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
id: "gregobase:8243",
|
|
790
|
+
incipit: "Te dicimus praeconio mater",
|
|
791
|
+
gabc: "(c4)TE(g) d\\u00ed(g)ci(f)mus(e) pr\\u00e6(d)c\\u00f3(fhg)ni(fg)o,(g.) (,)\\r\\nma(h/iwji)ter(h) De(g)i(h) pu(ig)r\\u00eds(h)si(g)ma;(f.) (;)\\r\\nno(f)stris(g) be(f)n\\u00ed(g)gna(h) l\\u00e1u(j)di(g)bus(h!i!h'_) (,)\\r\\ntu(h)am(h) re(g)p\\u00e9n(e)de(f) gr\\u00e1(hg)ti(fg)am.(g.) (::)\\r\\n\\r\\n2. Son(g)tes(g) A(f)d\\u00e1(e)mi(d) p\\u00f3(fhg)ste(fg)ri,(g.) (,)\\r\\nin(h/iwji)f\\u00e9(h)cta(g) pro(h)les(ig) g\\u00ed(h)gni(g)mur;(f.) (;)\\r\\nla(f)bis(g) pa(f)t\\u00e9r(g)n\\u00e6(h) n\\u00e9(j)sci(g)a(h!i!h'_) (,)\\r\\ntu(h) so(h)la,(g) Vir(e)go,(f) cr\\u00e9(hg)de(fg)ris.(g.) (::)\\r\\n\\r\\n3. Ca(g)put(g) dra(f)c\\u00f3(e)nis(d) \\u00edn(fhg)vi(fg)di(g.) (,)\\r\\ntu(h/iwji) c\\u00f3n(h)te(g)ris(h) ve(ig)st\\u00ed(h)gi(g)o,(f.) (;)\\r\\nge(f)r\\u00eds(g)que(f) so(g)la(h) gl\\u00f3(j)ri(g)am(h!i!h'_) (,)\\r\\nin(h)ta(h)mi(g)n\\u00e1(e)t<i>\\u00e6</i>(f) o(f)r\\u00ed(hg)gi(fg)nis.(g.) (::)\\r\\n\\r\\n4. No(g)str\\u00e6(g) de(f)cus(e) pro(d)p\\u00e1(fhg)gi(fg)nis,(g.) (,)\\r\\nqu\\u00e6(h/iwji) tol(h)lis(g) E(h)v<i>\\u00e6</i>(i) op(g)pr\\u00f3(h)bri(g)um,(f.) (;)\\r\\ntu(f) nos(g) tu(f)\\u00e9(g)re(h) s\\u00fap(j)pli(g)ces,(h!i!h'_) (,)\\r\\ntu(h) nos(h) la(g)b\\u00e1n(e)tes(f) \\u00e9(hg)ri(fg)ge.(g.) (::)\\r\\n\\r\\n5. Ser(g)p\\u00e9n(g)tis(f) an(e)t\\u00ed(d)qui(fhg) po(fg)tens(g.) (,)\\r\\na(h/iwji)stus(h) re(g)t\\u00fan(h)d<i>e</i>(i) et(g) \\u00edm(h)pe(g)tus,(f.) (;)\\r\\nut(f) c\\u00e6(g)li(f)tum(g) pe(h)r\\u00e9n(j)ni(g)bus(h!i!h'_) (,)\\r\\nper(h) te(h) fru(g)\\u00e1(e)mur(f) g\\u00e1u(hg)di(fg)is.(g.) (::)\\r\\n\\r\\n6. Pa(g)tri(g) sit(f) et(e) Pa(d)r\\u00e1(fhg)cli(fg)to(g.) (,)\\r\\ntu(h/iwji)\\u00f3(h)que(g) Na(h)to(ig) gl\\u00f3(h)ri(g)a,(f.) (;)\\r\\nqui(f) san(g)cti(f)t\\u00e1(g)tis(h) \\u00fa(j)ni(g)c\\u00e6(h!i!h'_) (,)\\r\\nte(h) mu(h)ne(g)r\\u00e1(e)runt(f) gr\\u00e1(hg)ti(fg)a.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)",
|
|
792
|
+
office: "hy",
|
|
793
|
+
mode: "8",
|
|
794
|
+
pages: [
|
|
795
|
+
{ page: "476", sequence: 2, extent: 2 }
|
|
796
|
+
],
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
id: "gregobase:8254",
|
|
800
|
+
incipit: "Adorna Sion Thalamum",
|
|
801
|
+
gabc: "(c4)Ad(h)\\u00f3r(hhg)na,(ed) Si(g)on,(h) th\\u00e1(hi)la(hg)mum,(h'_) (,)\\r\\nqu\\u00e6(e) pr\\u00e6(eh)sto(g)l\\u00e1(gf)ris(d) D\\u00f3(e/fg)mi(fe)num;(e.) (;) \\r\\nspon(ed)sum(c) et(e) spon(g)sam(h) s\\u00fa(hi)sci(hg)pe(h'_) (,)\\r\\nvi(e)gil(eh) f\\u00ed(g)de(gf)i(d) l\\u00fa(e/fg)mi(fe)ne.(e.) (:)",
|
|
802
|
+
office: "hy",
|
|
803
|
+
mode: "4",
|
|
804
|
+
pages: [
|
|
805
|
+
{ page: "347", sequence: 1, extent: 1 }
|
|
806
|
+
],
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
id: "gregobase:8264",
|
|
810
|
+
incipit: "Agnoscat omne saeculum",
|
|
811
|
+
gabc: "(c4)A(g)gn\\u00f3s(g)cat(f) om(e)ne(d) s\\u01fd(fhg)cu(fg)lum(g.) (,)\\r\\nve(hiwji)n\\u00eds(h)se(g) vi(h)t\\u00e6(ig) pr\\u01fd(h)mi(g)um;(f.) (;) \\r\\npost(f) hos(g)tis(f) \\u00e1s(g)pe(h)ri(j) iu(g)gum(hih_') (,) \\r\\nap(h)p\\u00e1(h)ru(g)it(e) red(f)\\u00e9mp(hg)ti(fg)o.(g.) (::)",
|
|
812
|
+
office: "hy",
|
|
813
|
+
mode: "8",
|
|
814
|
+
pages: [
|
|
815
|
+
{ page: "360", sequence: 0, extent: 1 }
|
|
816
|
+
],
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
id: "gregobase:8420",
|
|
820
|
+
incipit: "Christe splendor Patris",
|
|
821
|
+
gabc: "(c3)CHris(e)te,(ef) splen(fe)dor(dc) Pa(de)tris,(e.) (,)\\r\\nDe(f)i(h) ma(hg)ter(fe) Vir(de)go,(e.) (;)\\r\\nIo(h)seph,(ij) tam(j) sa(ih)cr\\u00f3(i)rum(ivHFE.) (,)\\r\\nP\\u00ed(fh)gno(f)rum(fe) ser(dc)v\\u00e1(de)tor.(e.) (::)\\r\\n2. Ni(e)tet(ef) ves(fe)tra(dc) do(de)mus(e.) (,)\\r\\nFl\\u00f3(f)ri(h)bus(hg) vir(fe)t\\u00fa(de)tum,(e.) (;)\\r\\nUn(h)de(ij) gra(j)ti(ih)\\u00e1(i)rum(ivHFE.) (,)\\r\\nFons(fh) pro(f)m\\u00e1(fe)nat(dc) ip(de)se.(e.) (::)\\r\\n3. An(e)ge(ef)li(fe) stu(dc)p\\u00e9n(de)tes(e.) (,)\\r\\nNa(f)tum(h) De(hg)i(fe) cer(de)nunt(e.) (;)\\r\\nSer(h)vi(ij) for(j)<i>ma</i>() ind(ih)\\u00fa(i)tum(ivHFE.) (,)\\r\\nSer(fh)vis(f) fa(fe)mu(dc)l\\u00e1n(de)tem.(e.) (::)\\r\\n4. I(e)mus(ef) pr\\u00e6(fe)es,(dc) Io(de)seph,(e.) (,)\\r\\nHu(f)mi(h)l\\u00eds(hg)que(fe) iu(de)bes;(e.) (;)\\r\\nIu(h)bes(ij) et(j) Ma(ih)r\\u00ed(i)a(ivHFE.) (,)\\r\\nEt(fh) u(f)tr\\u00ed(fe)que(dc) ser(de)vis.(e.) (::)\\r\\n5. Cunc(e)tis(ef) pr\\u00e6(fe)stant(dc) au(de)lis(e.) (,)\\r\\nH\\u00e6c(f) e(h)g\\u00e9(hg)na(fe) s\\u00e6p(de)ta,(e.) (;)\\r\\nSa(h)lus(ij) un(j)de(ih) c\\u0153(i)pit(ivHFE.) (,)\\r\\nG\\u00e9(fh)ne(f)ris(fe) hu(dc)m\\u00e1(de)ni.(e.) (::)\\r\\n6. Ie(e)su,(ef) Ma(fe)ter,(dc) Io(de)seph,(e.) (,)\\r\\nMan(f)si(h)\\u00f3(hg)nis(fe) ves(de)tr\\u00e6(e.) (;)\\r\\nNos(h)tras(ij) da(j)te(ih) se(i)des(ivHFE.) (,)\\r\\nDo(fh)nis(f) fru(fe)i(dc) sanc(de)tis.(e.) (::)\\r\\n7. Ti(e)bi(ef) lau(fe)des,(dc) Chris(de)te,(e.) (,)\\r\\nSpem(f) qui(h) no(hg)bis(fe) pr\\u00e6(de)bes,(e.) (;)\\r\\nTu(h)os(ij) per(j) pa(ih)r\\u00e9n(i)tes(ivHFE.) (,)\\r\\nC\\u00e6(fh)l<i>i</i>() ad(f)\\u00ed(fe)re(dc) do(de)mum.(e.) (::)\\r\\nA(efe)men.(de..) (::)",
|
|
822
|
+
office: "hy",
|
|
823
|
+
mode: "8",
|
|
824
|
+
pages: [
|
|
825
|
+
{ page: "29", sequence: 0, extent: 1 }
|
|
826
|
+
],
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
id: "gregobase:8421",
|
|
830
|
+
incipit: "Christus est vita",
|
|
831
|
+
gabc: "(c4)CHris(ghg)tus(f) est(g) vi(gh)ta(g_f) (,) v\\u00e9(h)ni(h)ens(hiwjh) in(ih) or(g.)bem,(g.) (;) \\r\\nQui(j_) fe(i)rens(k) vul(ji)nus(i_j) (,) re(h)mo(g)v\\u00e9ns(h)que(i) mor(h.)tem,(g.) (:)\\r\\nAd(gh) Pa(i)tris(h) dex(ghg)tram(e_f) (,) re(g)pe(h)t\\u00e9n(g)do,(f) re(ef)gnat(d.) (,)\\r\\nSe(ghg)de(f) su(g)p\\u00e9r(gh)na.(g.) (::)\\r\\n2. Hunc(ghg) se(f)quens(g) pri(gh)mus(g_f) (,) St\\u00e9(h)pha(h)nus(hiwjh) mi(ih)n\\u00eds(g.)ter(g.) (;)\\r\\nSor(j_)tis(i) il(k)l\\u00e1(ji)t\\u00e6(i_j) (,) t\\u00ed(h)tu(g)l<i>o</i>() est(h) de(i)c\\u00f3(h.)rus,(g.) (:)\\r\\nQuam(gh) de(i)dit(h) spi(ghg)rans(e_f) (,) D\\u00f3(g)mi(h)ni(g) be(f)n\\u00ed(ef)gnus(d.) (,)\\r\\nSp\\u00ed(ghg)ri(f)tus(g) il(gh)li.(g.) (::)\\r\\n3. S\\u00e1(ghg)xe(f)o(g) nim(gh)bo(g_f) (,) la(h)pi(h)d\\u00e1(hiwjh)tus(ih) in(g.)stat,(g.) (;)\\r\\nS\\u00fas(j_)ti(i)net(k) mor(ji)tis(i_j) (,) r\\u00e1(h)bi(g)em(h) pro(i)f\\u00e1(h.)nam,(g.) (:)\\r\\nH\\u00f3s(gh)ti(i)bus(h) qu\\u00e6(ghg)rit(e_f) (,) v\\u00e9(g)ni(h)am(g) mi(f)s\\u00e9r(ef)tus(d.) (,)\\r\\nP\\u00e9c(ghg)to(f)re(g) gra(gh)to.(g.) (::)\\r\\n4. Qu\\u01fd(ghg)su(f)mus(g) flen(gh)tes,(g_f) (,) be(h)ne(h)d\\u00edc(hiwjh)te(ih) pri(g.)me(g.) (;)\\r\\nMar(j_)tyr(i) et(k) ci(ji)vis(i_j) (,) so(h)ci(g)\\u00e1(h)te(i) ius(h.)tis:(g.) (:)\\r\\nC\\u01fd(gh)li(i)tus,(h) cla(ghg)r\\u00e6(e_f) (,) re(g)gi(h)\\u00f3(g)nis(f) he(ef)res,(d.) (,)\\r\\nMit(ghg)te(f) fa(g)v\\u00f3(gh)res.(g.) (::)\\r\\n5. Gl\\u00f3(ghg)ri(f)\\u00e6(g) lau(gh)des(g_f) (,) Tr\\u00ed(h)a(h)di(hiwjh) be(ih)\\u00e1(g.)t\\u00e6(g.) (;)\\r\\nM\\u00e1r(j_)ty(i)rum(k) l\\u00e6(ji)ti(i_j) (,) c\\u00f3m(h)i(g)tes(h) ca(i)n\\u00e1(h.)mus,(g.) (:)\\r\\nQu\\u00e6(gh) de(i)dit(h) pri(ghg)mas(e_f) (,) St\\u00e9(g)pha(h)n<i>o</i>() ex(g) a(f)g\\u00f3(ef)ne(d.) (,)\\r\\nFer(ghg)re(f) co(g)r\\u00f3(gh)nas.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)",
|
|
832
|
+
office: "hy",
|
|
833
|
+
mode: "8",
|
|
834
|
+
pages: [
|
|
835
|
+
{ page: "479", sequence: 0, extent: 1 }
|
|
836
|
+
],
|
|
837
|
+
},
|
|
838
|
+
{
|
|
839
|
+
id: "gregobase:8422",
|
|
840
|
+
incipit: "Cohors beata Seraphim",
|
|
841
|
+
gabc: "(c4)CO(f)hors(f) be(f)\\u00e1(fe)ta(dc) S\\u00e9(de)ra(e)phim(e_) (,)\\r\\nQuem(g) Chris(gh)tus(hg) arc(hih)te(gf) d\\u00ed(g)li(gf)git(e.) (;)\\r\\nLau(f)det,(e) cho(fg)r\\u00fas(gf)que(dc) c\\u00e1n(de)ti(dc)cis(c_) (,)\\r\\nNos(g)ter(g) re(f)s\\u00fal(g)tet(ghg) \\u01fd(fe)mu(de)lis.(e.) (::)\\r\\n2. Hic(f) di(f)scit,(f) al(fe)mus(dc) \\u00e9(de)do(e)cet(e_) (,)\\r\\nHic(g) un(gh)de(hg) Ver(hih)bum(gf) pr\\u00f3d(g)e(gf)at,(e.) (;)\\r\\nSi(f)n\\u00fam(e)que(fg) ma(gf)tris(dc) \\u00edm(de)ple(dc)at,(c_) (,)\\r\\nSi(g)num(g) Pa(f)tris(g) non(ghg) d\\u00e9(fe)se(de)rens.(e.) (::)\\r\\n3. Fe(f)lix(f) Io(f)\\u00e1n(fe)nes,(dc) d\\u00ed(de)li(e)git(e_) (,)\\r\\nEt(g) te(gh) Ma(hg)g\\u00eds(hih)ter(gf) pr\\u00f3(g)vi(gf)dus,(e.) (;)\\r\\nUt(f) cla(e)ra(fg) Tha(gf)bor(dc) l\\u00fa(de)mi(dc)na(c_) (,)\\r\\nHor(g)t\\u00ed(g)que(f) cer(g)nas(ghg) t\\u01fd(fe)di(de)a.(e.) (::)\\r\\n4. Tu,(f) rap(f)tus(f) in(fe) sub(dc)l\\u00ed(de)mi(e)a,(e_) (,)\\r\\nAr(g)c\\u00e1(gh)na(hg) c\\u00e6(hih)li(gf) c\\u00f3n(g)spi(gf)cis,(e.) (;)\\r\\nA(f)gni(e) sed(fg) et(gf) mys(dc)t\\u00e9(de)ri(dc)a(c_) (,)\\r\\nEc(g)cle(g)si(f)\\u01fd(g)que(ghg) p\\u00e9r(fe)ci(de)pis.(e.) (::)\\r\\n5. O(f) di(f)gne(f) fi(fe)li(dc) V\\u00edr(de)gi(e)ne,(e_) (,)\\r\\nSuc(g)c\\u00e9s(gh)sor(hg) al(hih)ti(gf) n\\u00f3(g)mi(gf)nis,(e.) (;)\\r\\nNos(f) ad(e)de(fg) Ma(gf)tri(dc) f\\u00ed(de)li(dc)os,(c_) (,)\\r\\nNos(g) con(g)de(f) Chris(g)t<i>i</i>() in(ghg) p\\u00e9c(fe)to(de)re.(e.) (::)\\r\\n6. Ver(f)bo(f) sit(f) in(fe)gens(dc) gl\\u00f3(de)ri(e)a,(e_) (,)\\r\\nCa(g)ro(gh) quod(hg) est(hih) et(gf) cr\\u00e9(g)di(gf)tur,(e.) (;)\\r\\nCum(f) Pa(e)tr<i>e</i>() et(fg) al(gf)mo(dc) Sp\\u00ed(de)ri(dc)tu(c_) (,)\\r\\nIn(g) sem(g)pi(f)t\\u00e9r(g)na(ghg) s\\u01fd(fe)cu(de)la.(e.) (::)\\r\\nA(efe)men.(de..) (::)",
|
|
842
|
+
office: "hy",
|
|
843
|
+
mode: "4",
|
|
844
|
+
pages: [
|
|
845
|
+
{ page: "483", sequence: 0, extent: 1 }
|
|
846
|
+
],
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
id: "gregobase:8423",
|
|
850
|
+
incipit: "Audit tyrannus anxius",
|
|
851
|
+
gabc: "(c4) AU(f)dit(f) ty(gh)r\\u00e1n(h)nus(gh) \\u00e1n(g)xi(gf)us(f_) (,)\\r\\nad(h)\\u00e9s(j)se(k) re(j)gum(ij) pr\\u00edn(h)ci(g)pem,(hg..) (;)\\r\\nqui(f) no(f)men(g) Is(d)ra(c)el(fg) re(gf)gat(f.) (,)\\r\\nt{e}n<i>e</i>(f)\\u00e1t(f)que(gh) Da(h)vid(gh) r\\u00e9(g)gi(gf)am.(f.) (::)\\r\\n\\r\\n2. Ex(f)cl\\u00e1(f)mat(gh) a(h)mens(gh) n\\u00fan(g)ti(gf)o :(f_) (,) \\r\\n\\u00abSuc(h)c\\u00e9s(j)sor(k) in(j)stat,(ij) p\\u00e9l(h)li(g)mur ;(hg..) (;)\\r\\nsa(f)t\\u00e9l(f)les,(g) i,(d) fer(c)rum(fg) ra(gf)pe,(f.) (,)\\r\\nper(f)f\\u00fan(f)de(gh) cu(h)nas(gh) s\\u00e1n(g)gui(gf)ne!\\u00bb(f.) (::)\\r\\n\\r\\n3. Quo(f) pr\\u00f3(f)fi(gh)cit(h) tan(gh)tum(g) ne(gf)fas ?(f_) (,)\\r\\nQuid(h) cri(j)men(k) He(j)r\\u00f3(ij)dem(h) iu(g)vat ?(hg..) (;)\\r\\nU(f)nus(f) tot(g) in(d)ter(c) f\\u00fa(fg)ne(gf)ra(f.) (,)\\r\\nim(f)p\\u00fa(f)ne(gh) Chris(h)tus(gh) t\\u00f3l(g)li(gf)tur.(f.) (::)\\r\\n\\r\\n4. Sal(f)v\\u00e9(f)te,(gh) flo(h)res(gh) m\\u00e1r(g)ty(gf)rum,(f_) (,)\\r\\nquos(h) lu(j)cis(k) {i}ps<i>o</i>(j) in(ij) l\\u00ed(h)mi(g)ne(hg..) (;)\\r\\nChr{i}st<i>i</i>(f) in(f)se(g)c\\u00fa(d)tor(c) s\\u00fas(fg)tu(gf)lit. (f.)(,)\\r\\nceu(f) tur(f)bo(gh) na(h)sc\\u00e9n(gh)tes(g) ro(gf)sas.(f.) (::)\\r\\n\\r\\n5. Vos(f) pri(f)ma(gh) Chris(h)ti(gh) v\\u00edc(g)ti(gf)ma,(f_) (,)\\r\\ngrex(h) im(j)mo(k)la(j)t\\u00f3(ij)rum(h) te(g)ner,(hg..) (;)\\r\\na(f)ram(f) sub(g) ip(d)sam(c) s\\u00edm(fg)pli(gf)ces(f.) (,)\\r\\np{a}lm<i>a</i>(f) et(f) co(gh)r\\u00f3(h)nis(gh) l\\u00fa(g)di(gf)tis.(f.) (::)\\r\\n\\r\\n6. Ie(f)su,(f) ti(gh)bi(h) sit(gh) gl\\u00f3(g)ri(gf)a,(f_) (,)\\r\\nqui(h) na(j)tus(k) es(j) de(ij) V\\u00edr(h)gi(g)ne,(hg..) (;)\\r\\ncum(f) P{a}tr<i>e</i>(f) et(g) al(d)mo(c) Sp\\u00ed(fg)ri(gf)tu,(f.) (,)\\r\\nin(f) sem(f)pi(gh)t\\u00e9r(h)na(gh) s\\u01fd(g)cu(gf)la.(f.) (::)\\r\\nA(fgf)men.(ef..) (::)",
|
|
852
|
+
office: "hy",
|
|
853
|
+
mode: "6",
|
|
854
|
+
pages: [
|
|
855
|
+
{ page: "485", sequence: 1, extent: 1 }
|
|
856
|
+
],
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
id: "gregobase:8424",
|
|
860
|
+
incipit: "Corde natus ex Parentis",
|
|
861
|
+
gabc: "(f3)COr(e)de(ef) na(f)tus(fe) ex(h) Pa(g)r\\u00e9n(f)tis(e.) (,)\\r\\nAn(h)te(i) mun(j)d<i>i</i>() ex(ih)\\u00f3r(i)di(ij)um,(ji..) (;)\\r\\nAl(h)ph<i>a</i>() et(i) O(j)me(i)ga(hg) vo(hih)c\\u00e1(f.)tus,(f.) (,)\\r\\nIp(fi)se(h) fons(hg) et(fg) cl\\u00e1u(g)su(f)la(e.) (:)\\r\\nOm(e)ni(f)um(h) qu\\u00e6(f) sunt,(g) fu(h)\\u00e9(i)runt(h.) (,)\\r\\nQu\\u00e6(j)que(i) post(hg) fu(hih)t\\u00fa(f)ra(ef) sunt.(f.) (::)\\r\\n2. C\\u00f3r(e)po(ef)ris(f) for(fe)mam(h) ca(g)d\\u00fa(f)ci,(e.) (,)\\r\\nMem(h)bra(i) mor(j)t<i>i</i>() ob(ih)n\\u00f3(i)xi(ij)a(ji..) (;)\\r\\nInd(h)u(i)it,(j) ne(i) gens(hg) per(hih)\\u00ed(f.)ret(f.) (,)\\r\\nPri(fi)mo(h)pl\\u00e1s(hg)t<i>i</i>() ex(fg) g\\u00e9r(g)mi(f)ne,(e.) (:)\\r\\nM\\u00e9r(e)se(f)rat(h) quam(f) lex(g) pro(h)f\\u00fan(i)do(h.) (,)\\r\\nNo(j)xi(i)\\u00e1(hg)lis(hih) t\\u00e1r(f)ta(ef)ro.(f.) (::)\\r\\n3. O(e) be(ef)\\u00e1(f)tus(fe) or(h)tus(g) il(f)le,(e.) (,)\\r\\nVir(h)go(i) cum(j) pu(ih)\\u00e9r(i)pe(ij)ra(ji..) (;)\\r\\nE(h)di(i)dit(j) nos(i)tram(hg) sa(hih)l\\u00fa(f.)tem(f.) (,)\\r\\nFe(fi)ta(h) Sanc(hg)to(fg) Sp\\u00ed(g)ri(f)tu,(e.) (:)\\r\\nEt(e) pu(f)er(h) red(f)\\u00e9mp(g)tor(h) or(i)bis(h.) (,)\\r\\nOs(j) sa(i)cr\\u00e1(hg)tum(hih) pr\\u00f3(f)tu(ef)lit.(f.) (::)\\r\\n4. Ec(e)ce(ef) quem(f) va(fe)tes(h) ve(g)t\\u00fas(f)tis(e.) (,)\\r\\nCon(h)ci(i)n\\u00e9(j)bant(ih) s\\u01fd(i)cu(ij)lis,(ji..) (;)\\r\\nQuem(h) pro(i)phe(j)t\\u00e1(i)rum(hg) fi(hih)d\\u00e9(f.)les(f.) (,)\\r\\nP\\u00e1(fi)gi(h)n\\u00e6(hg) spo(fg)p\\u00f3n(g)de(f)rant,(e.) (:)\\r\\nE(e)mi(f)cat(h) pro(f)m\\u00eds(g)sus(h) o(i)lim:(h.) (,)\\r\\nCunc(j)ta(i) col(hg)l\\u00e1u(hih)dent(f) e(ef)um.(f.) (::)\\r\\n5. Gl\\u00f3(e)ri(ef)am(f) Pa(fe)tri(h) me(g)l\\u00f3(f)dis(e.) (,)\\r\\nPer(h)so(i)n\\u00e9(j)mus(ih) v\\u00f3(i)ci(ij)bus;(ji..) (;)\\r\\nGl\\u00f3(h)ri(i)am(j) Chris(i)to(hg) ca(hih)n\\u00e1(f.)mus,(f.) (,)\\r\\nMa(fi)tre(h) na(hg)to(fg) v\\u00edr(g)gi(f)ne,(e.) (:)\\r\\nIn(e)cli(f)t\\u00f3(h)que(f) sem(g)pi(h)t\\u00e9r(i)nam(h.) (,)\\r\\nGl\\u00f3(j)ri(i)am(hg) Pa(hih)r\\u00e1(f)cli(ef)to.(f.) (::) A(fgf)men.(ef..) (::)",
|
|
862
|
+
office: "hy",
|
|
863
|
+
mode: "2",
|
|
864
|
+
pages: [
|
|
865
|
+
{ page: "31", sequence: 0, extent: 1 }
|
|
866
|
+
],
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
id: "gregobase:8425",
|
|
870
|
+
incipit: "Quos Dei vivax",
|
|
871
|
+
gabc: "(c4)QUos(ghg) De(e)i(f) vi(ed)vax(de) p\\u00e9(c)ni(e)tus(g) re(h)v\\u00edn(h.)xit(g.) (;)\\r\\nc\\u00e1(ghg)ri(e)tas(f) o(ed)lim(de) te(c)nu(e)\\u00edt(g)qu<i>e</i>() a(h)m\\u00ed(h.)cos,(g.) (:)\\r\\nu(ji)na(h) vos(j) in(ih)gens(gf) si(h)mul,(j) o(i) be(h)\\u00e1(g)ti,(hih_1',)\\r\\ngl\\u00f3(g_)ri(e)a(f) cin(g.)git.(g.) (::)",
|
|
872
|
+
office: "hy",
|
|
873
|
+
mode: "8",
|
|
874
|
+
pages: [
|
|
875
|
+
{ page: "542", sequence: 0, extent: 1 }
|
|
876
|
+
],
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
id: "gregobase:8426",
|
|
880
|
+
incipit: "Hostis Herodes impie",
|
|
881
|
+
gabc: "(c4)HOs(d)tis(e) He(f)r\\u00f3(gh)des(d) \\u00edm(e!fwg)pi(fe)e,(e.) (;)\\r\\nChris(g)tum(hj) ve(j)n\\u00ed(ji)re(hg) quid(hi) ti(i)mes?(i.) (:)\\r\\nNon(h) \\u00e9(hj/kv)ri(j)pit(ji) mor(hg)t\\u00e1(hih)li(gf)a,(e!fw!gh.) (;) \\r\\nQui(d) re(e)gna(f) dat(h) c\\u00e6(hih)l\\u00e9s(gfg)ti(fe)a.(e.) (::)\\r\\n\\r\\n2. I(d)bant(e) Ma(f)gi,(gh) quam(d) v\\u00ed(e!fwg)de(fe)rant,(e.) (;)\\r\\nStel(g)lam(hj) se(j)qu\\u00e9n(ji)tes(hg) pr\\u01fd(hi)vi(i)am:(i.) (:)\\r\\nLu(h)men(hj/kv) re(j)qu\\u00ed(ji)runt(hg) l\\u00fa(hih)mi(gf)ne:(e!fw!gh.) (;)\\r\\nDe(d)um(e) fa(f)t\\u00e9n(h)tur(hih) m\\u00fa(gfg)ne(fe)re.(e.) (::)\\r\\n\\r\\n3. La(d)v\\u00e1(e)cra(f) pu(gh)ri(d) g\\u00far(e!fwg)gi(fe)tis(e.) (;)\\r\\nC\\u00e6(g)l\\u00e9s(hj)tis(j) A(ji)gnus(hg) \\u00e1t(hi)ti(i)git:(i.) (:)\\r\\nPec(h)c\\u00e1(hj/kv)ta,(j) qu\\u00e6(ji) non(hg) d\\u00e9(hih)tu(gf)lit,(e!fw!gh.) (;)\\r\\nNos(d) ab(e)lu(f)\\u00e9n(h)do(hih) s\\u00fas(gfg)tu(fe)lit.(e.) (::)\\r\\n4. No(d)vum(e) ge(f)nus(gh) pot(d)\\u00e9n(e!fwg)ti(fe)\\u00e6:(e.) (;)\\r\\nA(g)qu\\u00e6(hj) ru(j)b\\u00e9s(ji)cunt(hg) h\\u00fd(hi)dri(i)\\u00e6,(i.) (:)\\r\\nVi(h)n\\u00fam(hj/kv)que(j) ius(ji)sa(hg) f\\u00fan(hih)de(gf)re,(e!fw!gh.) (;)\\r\\nMu(d)t\\u00e1(e)vit(f) un(h)d<i>a</i>() o(hih)r\\u00ed(gfg)gi(fe)nem.(e.) (::)\\r\\n5. Ie(d)su(e) ti(f)bi(gh) sit(d) gl\\u00f3(e!fwg)ri(fe)a,(e.) (;)\\r\\nQui(g) te(hj) re(j)v\\u00e9(ji)las(hg) g\\u00e9n(hi)ti(i)bus,(i.) (:)\\r\\nCum(h) Pa(hj/kv)tr<i>e</i>,() et(j) al(ji)mo(hg) Sp\\u00ed(hih)ri(gf)tu,(e!fw!gh.) (;)\\r\\nIn(d) sem(e)pi(f)t\\u00e9r(h)na(hih) s\\u01fd(gfg)cu(fe)la.(e.) (::)\\r\\nA(efe)men.(de..) (::)",
|
|
882
|
+
office: "hy",
|
|
883
|
+
mode: "3",
|
|
884
|
+
pages: [
|
|
885
|
+
{ page: "36", sequence: 0, extent: 1 }
|
|
886
|
+
],
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
id: "gregobase:8427",
|
|
890
|
+
incipit: "Quicumque Christum quaeritis",
|
|
891
|
+
gabc: "(c4)Qui(d)c\\u00fam(e)que(f) Chris(gh)tum(d) qu\\u01fd(e!fwg)ri(fe)tis(e.) (;)\\r\\nO(g)c<i>u</i>()los(hj) in(j) al(ji)tum(hg) t\\u00f3l(hi)li(i)te(i.) (:)\\r\\nIl(h)lic(hj!kv) li(j)c\\u00e9(ji)bit(hg) v\\u00ed(hih)se(gf)re(efw!gh.) (;)\\r\\nSi(d)gnum(e) per(f)\\u00e9n(h)nis(hih) gl\\u00f3(gfg)ri(fe)\\u00e6.(e.) (::)\\r\\n\\r\\n2. H\\u00e6c(d) stel(e)la,(f) qu\\u00e6(gh) so(d)lis(e!fwg) ro(fe)tam(e.) (;)\\r\\nVin(g)cit(hj) de(j)c\\u00f3(ji)r<i>e</i>() ac(hg) l\\u00fa(hi)mi(i)ne,(i.) (:)\\r\\nVe(h)n\\u00eds(hj!kv)se(j) ter(ji)ris(hg) n\\u00fan(hih)ti(gf)at(efw!gh.) (;)\\r\\nCum(d) car(e)ne(f) ter(h)r\\u00e9s(hih)tri(gfg) De(fe)um.(e.) (::)\\r\\n\\r\\n3. En,(d) P\\u00e9r(e)si(f)c<i>i</i>() ex(gh) or(d)bis(e!fwg) si(fe)nu,(e.) (;)\\r\\nSol(g) un(hj)de(j) su(ji)mit(hg) i\\u00e1(hi)nu(i)am,(i.) (:)\\r\\nCer(h)nunt(hj!kv) pe(j)r\\u00ed(ji)t<i>i</i>() in(hg)t\\u00e9r(hih)pre(gf)tes(efw!gh.) (;)\\r\\nRe(d)g\\u00e1(e)le(f) ve(h)x\\u00edl(hih)lum(gfg) ma(fe)gi.(e.) (::)\\r\\n\\r\\n4. Do(d)mus(e) pu(f)d\\u00ed(gh)ci(d) p\\u00e9c(e!fwg)to(fe)ris(e.) (;)\\r\\nTem(g)plum(hj) re(j)p\\u00e9n(ji)te(hg) fit(hi) De(i)i;(i.) (:)\\r\\nIn(h)t\\u00e1c(hj!kv)ta(j) n\\u00e9(ji)sci(hg)ens(hih) vi(gf)rum(efw!gh.) (;)\\r\\nVer(d)bo(e) con(f)c\\u00e9(h)pit(hih) F\\u00ed(gfg)li(fe)um.(e.) (::)\\r\\n\\r\\n5. E(d)n\\u00ed(e)xa(f) est(gh) pu(d)\\u00e9r(e!fwg)pe(fe)ra(e.) (;)\\r\\nQuem(g) G\\u00e1(hj)bri(j)el(ji) pr\\u00e6(hg)d\\u00ed(hi)xe(i)rat,(i.) (:)\\r\\nQuem(h) ma(hj!kv)tris(j) al(ji)vo(hg) g\\u00e9s(hih)ti(gf)ens(efw!gh.) (;)\\r\\nClau(d)sus(e) Io(f)\\u00e1n(h)nes(hih) s\\u00e9n(gfg)se(fe)rat.(e.) (::)\\r\\n\\r\\n6. Fe(d)no(e) ia(f)c\\u00e9(gh)re(d) p\\u00e9r(e!fwg)tu(fe)lit,(e.) (;)\\r\\nPr\\u00e6(g)s\\u00e9(hj)pe(j) non(ji) ab(hg)h\\u00f3r(hi)ru(i)it,(i.) (:)\\r\\nPar(h)v\\u00f3(hj!kv)que(j) lac(ji)te(hg) pas(hih)tus(gf) est(efw!gh.) (;)\\r\\nPer(d) quem(e) nec(f) a(h)les(hih) \\u00e9(gfg)su(fe)rit.(e.) (::)\\r\\n\\r\\n7. Gau(d)det(e) cho(f)rus(gh) c\\u00e6(d)l\\u00e9s(e!fwg)ti(fe)um(e.) (;)\\r\\nEt(g) \\u00e1n(hj)ge(j)li(ji) ca(hg)nunt(hi) De(i)um,(i.) (:)\\r\\nPa(h)l\\u00e1m(hj!kv)que(j) fit(ji) pas(hg)t\\u00f3(hih)ri(gf)bus(efw!gh.) (;)\\r\\nPas(d)tor,(e) cre(f)\\u00e1(h)tor(hih) \\u00f3m(gfg)ni(fe)um.(e.) (::)\\r\\n \\r\\n8. Ie(d)su,(e) ti(f)bi(gh) sit(d) gl\\u00f3(e!fwg)ri(fe)a,(e.) (;)\\r\\nQui(g) na(hj)tus(j) es(ji) de(hg) V\\u00edr(hi)gi(i)ne,(i.) (:)\\r\\nCum(h) Pa(hj!kv)tr<i>e</i>() et(j) al(ji)mo(hg) Sp\\u00ed(hih)ri(gf)tu,(efw!gh.) (;)\\r\\nIn(d) sem(e)pi(f)t\\u00e9r(h)na(hih) s\\u00e6(gfg)cu(fe)la.(e.) (::)\\r\\nA(efe)men.(de..) (::)",
|
|
892
|
+
office: "hy",
|
|
893
|
+
mode: "3",
|
|
894
|
+
pages: [
|
|
895
|
+
{ page: "40", sequence: 0, extent: 1 }
|
|
896
|
+
],
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
id: "gregobase:8428",
|
|
900
|
+
incipit: "A Patre Unigenite",
|
|
901
|
+
gabc: "(c4) A(h) Pa(hhg)tre(ed) U(g)ni(h)g\\u00e9(hi)ni(hg)te(h_') (,)\\r\\nAd(e) nos(eh) ve(g)nis(gf) per(d) V\\u00edr(efg)gi(fe)nem,(e.) (;)\\r\\nBap(ed)t\\u00eds(c)mi(e) ro(g)re(h) c\\u00f3n(hi)se(hg)crans(h'_) (,)\\r\\nCunc(e)tos,(eh) fi(g)de(gf) re(d)g\\u00e9(efg)ne(fe)rans.(e.) (::)\\r\\n2. De(h) c\\u00e6(hhg)lo(ed) cel(g)sus(h) pr\\u00f3d(hi)i(hg)ens(h_') (,)\\r\\nEx(e)ci(eh)pis(g) for(gf)mam(d) h\\u00f3(efg)mi(fe)nis,(e.) (;)\\r\\nFac(ed)t\\u00fa(c)ram(e) mor(g)te(h) r\\u00e9d(hi)i(hg)mens,(h'_) (,)\\r\\nG\\u00e1u(e)di(eh)a(g) vi(gf)t\\u00e6(d) l\\u00e1r(efg)gi(fe)ens.(e.) (::)\\r\\n3. Hoc(h) te,(hhg) Red(ed)\\u00e9mp(g)tor,(h) qu\\u01fd(hi)su(hg)mus,(h_') (,)\\r\\nIl(e)l\\u00e1(eh)be(g)re(gf) pro(d)p\\u00ed(efg)ti(fe)us,(e.) (;)\\r\\nCla(ed)r\\u00fam(c)que(e) nos(g)tris(h) c\\u00f3r(hi)di(hg)bus(h'_) (,)\\r\\nLu(e)men(eh) pr\\u00e6(g)be(gf) de(d)\\u00ed(efg)fi(fe)cum.(e.) (::)\\r\\n4. Ma(h)ne(hhg) no(ed)b\\u00eds(g)cum,(h) D\\u00f3(hi)mi(hg)ne,(h_') (,)\\r\\nNoc(e)tem(eh) obs(g)c\\u00fa(gf)ram(d) r\\u00e9(efg)mo(fe)ve,(e.) (;)\\r\\nOm(ed)ne(c) de(e)l\\u00edc(g)tum(h) \\u00e1b(hi)lu(hg)e,(h'_) (,)\\r\\nPi(e)e(eh) me(g)d\\u00e9(gf)lam(d) tr\\u00ed(efg)bu(fe)e.(e.) (::)\\r\\n5. O(h) Chris(hhg)te,(ed) vi(g)ta,(h) v\\u00e9(hi)ri(hg)tas,(h_') (,)\\r\\nTi(e)bi(eh) sit(g) om(gf)nis(d) gl\\u00f3(efg)ri(fe)a,(e.) (;)\\r\\nQuem(ed) Pa(c)tris(e) at(g)que(h) Sp\\u00ed(hi)ri(hg)tus(h'_) (,)\\r\\nSplen(e)dor(eh) re(g)v\\u00e9(gf)lat(d) c\\u01fd(efg)li(fe)tus.(e.) (::)\\r\\nA(efe)men.(de..) (::)",
|
|
902
|
+
office: "hy",
|
|
903
|
+
mode: "4",
|
|
904
|
+
pages: [
|
|
905
|
+
{ page: "43", sequence: 0, extent: 1 }
|
|
906
|
+
],
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
id: "gregobase:8671",
|
|
910
|
+
incipit: "Pange lingua... Corporis",
|
|
911
|
+
gabc: "(c2)PAn(d)ge(d) lin(d)gua(c) glo(f)ri(f)\\u00f3(gh)si(h.) (,) C\\u00f3r(h!iwj)po(i)ris(i) mys(h)t\\u00e9(g)ri(i)um,(hvGF.) (:) San(f)gui(g)n\\u00eds(i)que(h) pre(g)ti(f)\\u00f3(g)si,(g.) (,) Quem(g) in(h) mun(f)di(e) pr\\u00e9(d)ti(g)um(gc..) (:) Fruc(c)tus(d) ven(f)tris(d) ge(f)ne(g)r\\u00f3(g)si(f.) (,) Rex(g) ef(h)f\\u00fa(f)dit(gf) g\\u00e9n(d)ti(cd)um.(d.) (::)\\r\\n\\r\\n2. No(d)bis(d) da(d)tus,(c) no(f)bis(f) na(gh)tus(h.) (,) Ex(h!iwj) in(i)t\\u00e1c(i)ta(h) V\\u00edr(g)gi(i)ne,(hvGF.) (:) Et(f) in(g) mun(i)do(h) con(g)ver(f)s\\u00e1(g)tus,(g.) (,) Spar(g)so(h) ver(f)bi(e) s\\u00e9(d)mi(g)ne,(gc..) (:) Su(c)i(d) mo(f)ras(d) in(f)co(g)l\\u00e1(g)tus(f.) (,) Mi(g)ro(h) clau(f)sit(gf) \\u00f3r(d)di(cd)ne.(d.) (::)\\r\\n\\r\\n3. In(d) su(d)pr\\u00e9(d)m\\u00e6(c) noc(f)te(f) c\\u0153(gh)n\\u00e6(h.) (,) Re(h!iwj)c\\u00fam(i)bens(i) cum(h) fr\\u00e1(g)tri(i)bus,(hvGF.) (:) Ob(f)ser(g)v\\u00e1(i)ta(h) le(g)ge(f) ple(g)ne(g.) (,) Ci(g)bis(h) in(f) le(e)g\\u00e1(d)li(g)bus,(gc..) (:) Ci(c)bum(d) tur(f)b\\u00e6(d) du(f)o(g)d\\u00e9(g)n\\u00e6(f.) (,) Se(g)dat(h) su(f)is(gf) m\\u00e1(d)ni(cd)bus.(d.) (::)\\r\\n\\r\\n4. Ver(d)bum(d) ca(d)ro,(c) p\\u00e1(f)nem(f) ve(gh)rum(h.) (,) Ver(h!iwj)bo(i) car(i)nem(h) \\u00e9f(g)fi(i)cit:(hvGF.) (:) Fit(f)que(g) San(i)guis(h) Chris(g)ti(f) me(g)rum,(g.) (,) Et(g) si(h) sen(f)sus(e) d\\u00e9(d)fi(g)cit.(gc..) (:) Ad(c) fir(d)m\\u00e1n(f)dum(d) cor(f) sin(g)c\\u00e9(g)rum(f.) (,) So(g)la(h) fi(f)des(gf) s\\u00faf(d)fi(cd)cit.(d.) (::)\\r\\n\\r\\n5. Tan(d)tum(d) er(d)go(c) Sa(f)cra(f)m\\u00e9n(gh)tum(h.) (,)\\r\\nVe(h!iwj)ne(i)r\\u00e9(i)mur(h) c\\u00e9r(g)nu(i)i:(hvGF.) (:) Et(f) an(g)t\\u00ed(i)quum(h) do(g)cu(f)m\\u00e9n(g)tum(g.) (,) No(g)vo(h) ce(f)dat(e) r\\u00ed(d)tu(g)i:(gc..) (:) Pr\\u00e6(c)stet(d) fi(f)des(d) sup(f)ple(g)m\\u00e9n(g)tum(f.) (,) S\\u00e9n(g)su(h)um(f) de(gf)f\\u00e9c(d)tu(cd)i.(d.) (::)\\r\\n\\r\\n6. Ge(d)ni(d)t\\u00f3(d)ri,(c) Ge(f)ni(f)t\\u00f3(gh)que(h.) (,) Laus(h!iwj) et(i) ju(i)bi(h)l\\u00e1(g)ti(i)o,(hvGF.) (:) Sa(f)lus,(g) ho(i)nor,(h) vir(g)tus(f) quo(g)que(g.) (,) Sit(g) et(h) be(f)ne(e)d\\u00edc(d)ti(g)o:(gc..) (:) Pro(c)ce(d)d\\u00e9n(f)ti(d) ab(f) u(g)tr\\u00f3(g)que(f.) (,) Com(g)par(h) sit(f) lau(gf)d\\u00e1(d)ti(cd)o.(d.) (::)\\r\\nA(fd)men.(cd..) (::)",
|
|
912
|
+
office: "hy",
|
|
913
|
+
mode: null,
|
|
914
|
+
pages: [
|
|
915
|
+
{ page: "110", sequence: 1, extent: 3 }
|
|
916
|
+
],
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
id: "gregobase:8699",
|
|
920
|
+
incipit: "Maternitatem Virginis Mariae",
|
|
921
|
+
gabc: "(f3) MA(e)ter(ef)ni(f)t\\u00e1(f/ghf)tem(fe__) V\\u00edr(f)gi(hg)nis(hfgff) Ma(ef)r\\u00ed(f/ghf)\\u00e6(fe__) ce(f)le(hg)br\\u00e9(h_iHG)mus : (g.) *(;) Chri(i)stum(ij) e(kxj/kij>)jus(hg) F\\u00ed(hi)li(hv_GF)um(f/ghf/gffe.) (,) ad(h)o(gf)r\\u00e9(fiih)mus(gf) D\\u00f3(ghf)mi(ef)num.(f.) (::)",
|
|
922
|
+
office: "an",
|
|
923
|
+
mode: "2",
|
|
924
|
+
pages: [
|
|
925
|
+
{ page: "33", sequence: 1, extent: 1 }
|
|
926
|
+
],
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
id: "gregobase:8701",
|
|
930
|
+
incipit: "Dum sacerdotum celebrant fideles",
|
|
931
|
+
gabc: "(c4)DUM(ed) sa(g)cer(hi)d\\u00f3(i_')tum(i_) (,) c\\u00e9(j)le(h)brant(gf) fi(de)d\\u00e9(e.)les(e.) (;)\\r\\nFes(ijh)ta(g) sol(hi)l\\u00e9m(i'_)ni(i_) (,) ve(j)ne(h)r\\u00e1n(gh)da(ef) cul(g.)tu,(g.) (:)\\r\\nIn(g) tu(h)as(ih) lau(i'_)des(i_) (,) ho(k)nor(ji) hic(g) red(f)\\u00fan(gh)dat,(h.) (,)\\r\\nSum(hg)me(fe) Sa(de)c\\u00e9r(e.)dos.(e.) (::)\\r\\n\\r\\n2. Cu(ed)ius(g) ex(hi) do(i_')no(i_) (,) pot(j)u(h)\\u00e9(gf)re(de) pa(e.)tres(e.) (;)\\r\\nS\\u00e9(ijh)mi(g)tas(hi) lu(i'_)cis(i_) (,) p\\u00f3(j)pu(h)los(gh) do(ef)c\\u00e9(g.)re,(g.) (:)\\r\\nM\\u00f3(g)ri(h)bus(ih) sanc(i'_)tis(i_) (,) r\\u00e9(k)ge(ji)r<i>e</i>() at(g)que(f) ver(gh)bo(h.) (,)\\r\\nP\\u00e1(hg)sce(fe)re(de) vi(e.)t\\u00e6.(e.) (::)\\r\\n\\r\\n3. Sed(ed) nec(g) ad(hi)v\\u00e9r(i_')sis(i_) (,) p\\u00f3t(j)e(h)rant(gf) mo(de)v\\u00e9(e.)ri(e.) (;)\\r\\nA(ijh) tu(g)\\u00e6(hi) cer(i'_)to(i_) (,) f\\u00ed(j)de(h)i(gh) te(ef)n\\u00f3(g.)re,(g.) (:)\\r\\nQuos(g) fu(h)tu(ih)r\\u00f3(i'_)rum(i_) (,) ra(k)ta(ji) pr\\u00e6(g)mi(f)\\u00f3(gh)rum(h.) (,)\\r\\nSpes(hg) a(fe)ni(de)m\\u00e1(e.)bat.(e.) (::)\\r\\n\\r\\n4. Un(ed)de(g) post(hi) vi(i_')t\\u00e6(i_) (,) fr\\u00e1(j)gi(h)lis(gf) la(de)b\\u00f3(e.)res(e.) (;)\\r\\nRi(ijh)te(g) de(hi)c\\u00far(i'_)sos,(i_) (,) p\\u00e1(j)tri(h)as(gh) ad(ef)\\u00e9p(g.)ti(g.) (:)\\r\\nC\\u01fd(g)li(h)tus(ih) se(i'_)des,(i_) (,) s\\u00f3(k)li(ji)da(g) be(f)\\u00e1(gh)ti(h.) (,)\\r\\nPa(hg)ce(fe) fru(de)\\u00fan(e.)tur.(e.) (::)\\r\\n\\r\\n5. Gl\\u00f3(ed)ri(g)\\u00e6(hi) sum(i_')mum(i_) (,) de(j)cus(h) at(gf)que(de) lau(e.)dis,(e.) (;)\\r\\nRex,(ijh) ti(g)bi,(hi) re(i'_)gum,(i_) (,) D\\u00e9(j)i(h)tas(gh) per(ef)\\u00e9n(g.)nis,(g.) (:)\\r\\nQuic(g)quid(h) est(ih) re(i'_)rum(i_) (,) c\\u00e9(k)le(ji)bret(g) per(f) om(gh)ne(h.) (,)\\r\\nTem(hg)pus(fe) et(de) \\u00e6(e.)vum.(e.) (::)\\r\\nA(efe)men.(de..) (::)",
|
|
932
|
+
office: "hy",
|
|
933
|
+
mode: "3",
|
|
934
|
+
pages: [
|
|
935
|
+
{ page: "292", sequence: 1, extent: 2 }
|
|
936
|
+
],
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
id: "gregobase:8702",
|
|
940
|
+
incipit: "Magi videntes parvulum",
|
|
941
|
+
gabc: "(c4)MA(d)gi(e) vi(f)d\\u00e9n(gh)tes(d) p\\u00e1r(e!fwg)vu(fe)lum(e.) (;)\\r\\nE(g)\\u00f3(hj)a(j) pro(ji)munt(hg) m\\u00fa(hi)ne(i)ra,(i.) (:)\\r\\nStra(h)t\\u00ed(hj!kv)que(j) vo(ji)tis(hg) \\u00f3f(hih)fe(gf)runt(e!fw!gh.) (;)\\r\\nThus,(d) myr(e)rh<i>am</i>() et(f) au(h)rum(hih) r\\u00e9(gfg)gi(fe)um.(e.) (::)\\r\\n\\r\\n2. A(d)gn\\u00f3(e)sce(f) cla(gh)r<i>a</i>() in(d)s\\u00ed(e!fwg)gni(fe)a(e.) (;)\\r\\nVir(g)t\\u00fa(hj)tis(j) ac(ji) re(hg)gni(hi) tu(i)i,(i.) (:)\\r\\nPu(h)er,(hj!kv) cu(j)i(ji) tri(hg)nam(hih) Pa(gf)ter(e!fw!gh.) (;)\\r\\nPr\\u00e6(d)des(e)ti(f)n\\u00e1(h)vit(hih) \\u00edn(gfg)do(fe)lem:(e.) (::)\\r\\n\\r\\n3. Re(d)gem(e) De(f)\\u00fam(gh)qu<i>e</i>() an(d)n\\u00fan(e!fwg)ti(fe)ant(e.) (;)\\r\\nThe(g)s\\u00e1u(hj)rus(j) et(ji) fra(hg)grans(hi) o(i)dor(i.) (:)\\r\\nThu(h)ris(hj!kv) Sa(j)b\\u01fd(ji)<i>i</i>,() at(hg) m\\u00fdr(hih)rhe(gf)us(e!fw!gh.) (;)\\r\\nPul(d)vis(e) se(f)p\\u00fal(h)crum(hih) pr\\u01fd(gfg)do(fe)cet.(e.) (::)\\r\\n\\r\\n4. O(d) so(e)la(f) ma(gh)gn\\u00e1(d)r<i>um</i>() \\u00far(e!fwg)bi(fe)um(e.) (;)\\r\\nMa(g)jor(hj) Beth(j)lem,(ji) cui(hg) c\\u00f3n(hi)ti(i)git(i.) (:)\\r\\nDu(h)cem(hj!kv) sa(j)l\\u00fa(ji)tis(hg) c\\u01fd(hih)li(gf)tus(e!fw!gh.) (;)\\r\\nIn(d)cor(e)po(f)r\\u00e1(h)tum(hih) g\\u00ed(gfg)gne(fe)re(e.) (::)\\r\\n\\r\\n5. Hunc(d) et(e) pro(f)ph\\u00e9(gh)tis(d) t\\u00e9s(e!fwg)ti(fe)bus(e.) (;)\\r\\nIs(g)d\\u00e9m(hj)que(j) si(ji)gna(hg)t\\u00f3(hi)ri(i)bus(i.) (:)\\r\\nTes(h)t\\u00e1(hj!kv)tor(j) et(ji) sa(hg)tor(hih) ju(gf)bet(e!fw!gh.) (;)\\r\\nAd(d)\\u00ed(e)re(f) re(h)gn<i>um</i>() et(hih) c\\u00e9r(gfg)ne(fe)re:(e.) (::)\\r\\n\\r\\n6. Re(d)gnum(e) quod(f) amb(gh)it(d) \\u00f3m(e!fwg)ni(fe)a(e.) (;)\\r\\nDi(g)<i>a</i>() et(hj) ma(j)r\\u00ed(ji)n<i>a</i>() et(hg) t\\u00e9r(hi)re(i)a(i.) (:)\\r\\nA(h) so(hj!kv)lis(j) or(ji)t<i>u</i>() ad(hg) \\u00e9x(hih)i(gf)tum(e!fw!gh.) (;)\\r\\nEt(d) t\\u00e1r(e)ta(f)r<i>a</i>() et(h) c\\u00e6(hih)lum(gfg) su(fe)pra.(e.) (::)\\r\\n\\r\\n7. Je(d)su,(e) ti(f)bi(gh) sit(d) gl\\u00f3(e!fwg)ri(fe)a,(e.) (;)\\r\\nQui(g) te(hj) re(j)v\\u00e9(ji)las(hg) g\\u00e9n(hi)ti(i)bus,(i.) (:)\\r\\nCum(h) Pa(hj!kv)tr<i>e</i>() et(j) al(ji)mo(hg) Sp\\u00ed(hih)ri(gf)tu,(e!fw!gh.) (;)\\r\\nIn(d) sem(e)pi(f)t\\u00e9r(h)na(hih) s\\u01fd(gfg)cu(fe)la.(e.) (::)\\r\\nA(efe)men.(de..) (::)",
|
|
942
|
+
office: "hy",
|
|
943
|
+
mode: "3",
|
|
944
|
+
pages: [
|
|
945
|
+
{ page: "38", sequence: 1, extent: 2 }
|
|
946
|
+
],
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
id: "gregobase:8703",
|
|
950
|
+
incipit: "Implente munus debitum",
|
|
951
|
+
gabc: "(c4) IM(dh)pl\\u00e9n(g)te(h) mu(ji)nus(hh) d\\u00e9(g)bi(h)tum(h.) (,)\\r\\nJo(hg)\\u00e1n(e)ne,(gf) re(ed)rum(dg) c\\u00f3n(hg)di(f)tor(e.) (;)\\r\\nJor(dh)d\\u00e1(h)ne(gj) mer(jji)sus(hg) hac(f) di(g)e(hvGFED.) (,)\\r\\nA(fg)quam(h) la(f)v\\u00e1n(gf)do(ed) d\\u00ed(ghg)lu(fe)it,(d.) (::)\\r\\n\\r\\n2. Non(dh) ip(g)se(h) mun(ji)d\\u00e1(hh)ri(g) vo(h)lens(h.) (,)\\r\\nDe(hg) ven(e)tre(gf) na(ed)tus(dg) V\\u00edr(hg)gi(f)nis,(e.) (;)\\r\\nPec(dh)c\\u00e1(h)ta(gj) sed(jji) mor(hg)t\\u00e1(f)li(g)um(hvGFED.) (,)\\r\\nSu(fg)o(h) la(f)v\\u00e1(gf)cro(ed) t\\u00f3l(ghg)le(fe)re.(d.) (::)\\r\\n\\r\\n3. Di(dh)c\\u00e9n(g)te(h) Pa(ji)tre(hh) quod(g) me(h)us(h.) (,)\\r\\nDi(hg)l\\u00e9c(e)tus(gf) hic(ed) est(dg) F\\u00ed(hg)li(f)us,(e.) (;)\\r\\nSu(dh)m\\u00e9n(h)te(gj) Sanc(jji)to(hg) Sp\\u00ed(f)ri(g)tu(hvGFED.) (,)\\r\\nFor(fg)mam(h) co(f)l\\u00fam(gf)b\\u00e6(ed) c\\u01fd(ghg)li(fe)tus,(d.) (::)\\r\\n\\r\\n4. Hoc(dh) m\\u00fds(g)ti(h)co(ji) sub(hh) n\\u00f3(g)mi(h)ne(h.) (,)\\r\\nMi(hg)cat(e) sa(gf)lus(ed) Ec(dg)cl\\u00e9(hg)si(f)\\u00e6;(e.) (;)\\r\\nPer(dh)s\\u00f3(h)na(gj) tri(jji)na(hg) c\\u00f3m(f)ma(g)net(hvGFED.) (,)\\r\\nU(fg)nus(h) De(f)us(gf) per(ed) \\u00f3m(ghg)ni(fe)a.(d.) (::)\\r\\n\\r\\n5. O(dh) Chris(g)te,(h) vi(ji)ta,(hh) v\\u00e9(g)ri(h)tas,(h.) (,)\\r\\nTi(hg)bi(e) sit(gf) om(ed)nis(dg) gl\\u00f3(hg)ri(f)a,(e.) (;)\\r\\nQuem(dh) Pa(h)tris(gj) at(jji)que(hg) Sp\\u00ed(f)ri(g)tus(hvGFED.) (,)\\r\\nSplen(fg)dor(h) re(f)v\\u00e9(gf)lat(ed) c\\u01fd(ghg)li(fe)tus.(d.) (::)\\r\\nA(ded)men.(cd) (::)",
|
|
952
|
+
office: "hy",
|
|
953
|
+
mode: "1",
|
|
954
|
+
pages: [
|
|
955
|
+
{ page: "45", sequence: 1, extent: 2 }
|
|
956
|
+
],
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
id: "gregobase:8704",
|
|
960
|
+
incipit: "Aeterne Rex altissime",
|
|
961
|
+
gabc: "(c4) \\u00c6(g)t\\u00e9r(g!hwih)ne(gf) Rex(hg) al(h!iwji)t\\u00eds(hg)si(fg)me,(g.) (;)\\r\\nRed(g)\\u00e9mp(ih)tor(jk) et(k) fi(ji)d\\u00e9(hg)li(hj)um,(j.) (:)\\r\\nQuo(j) mors(h) so(i)l\\u00fa(g)ta(gh) d\\u00e9(hg)per(fg)it,(g.) (;)\\r\\nDa(f)tur(hg) tri(hj)\\u00fam(ji)phus(hg) gr\\u00e1(hg)ti(fg)\\u00e6.(g.) (::)\\r\\n\\r\\n2. Scan(g)dis(g!hwih) tri(gf)b\\u00fa(hg)nal(h!iwji) d\\u00e9x(hg)te(fg)r\\u00e6(g.) (;)\\r\\nPa(g)tris,(ih) ti(jk)b\\u00ed(k)que(ji) c\\u01fd(hg)li(hj)tus(j.) (:)\\r\\nFer(j)tur(h) pot(i)\\u00e9s(g)tas(gh) \\u00f3m(hg)ni(fg)um,(g.) (;)\\r\\nQu\\u00e6(f) non(hg) e(hj)rat(ji) hu(hg)m\\u00e1(hg)ni(fg)tus.(g.) (::)\\r\\n\\r\\n3. Ut(g) tri(g!hwih)na(gf) re(hg)rum(h!iwji) m\\u00e1(hg)chi(fg)na,(g.) (;)\\r\\nC\\u00e6(g)l\\u00e9s(ih)ti(jk)um,(k) ter(ji)r\\u00e9s(hg)tri(hj)um,(j.) (:)\\r\\nEt(j) in(h)fe(i)r\\u00f3(g)rum(gh) c\\u00f3n(hg)di(fg)ta,(g.) (;)\\r\\nFlec(f)tat(hg) ge(hj)nu(ji) iam(hg) s\\u00fab(hg)di(fg)ta.(g.) (::)\\r\\n\\r\\n4. Tre(g)munt(g!hwih) vi(gf)d\\u00e9n(hg)tes(h!iwji) \\u00e1n(hg)ge(fg)li(g.) (;)\\r\\nVer(g)sam(ih) vi(jk)cem(k) mor(ji)t\\u00e1(hg)li(hj)um:(j.) (:)\\r\\nCul(j)pat(h) ca(i)ro,(g) pur(gh)gat(hg) ca(fg)ro,(g.) (;)\\r\\nRe(f)gnat(hg) ca(hj)ro(ji) Ver(hg)bum(hg) De(fg)i.(g.) (::)\\r\\n\\r\\n5. Tu,(g) Chris(g!hwih)te,(gf) nos(hg)trum(h!iwji) g\\u00e1u(hg)di(fg)um,(g.) (;)\\r\\nMa(g)nens(ih) per(jk)\\u00e9n(k)ne(ji) pr\\u01fd(hg)mi(hj)um,(j.) (:)\\r\\nMun(j)di(h) re(i)gis(g) qui(gh) f\\u00e1(hg)bri(fg)cam,(g.) (;)\\r\\nMun(f)d\\u00e1(hg)na(hj) vin(ji)cens(hg) g\\u00e1u(hg)di(fg)a.(g.) (::)\\r\\n\\r\\n6. Hinc(g) te(g!hwih) pre(gf)c\\u00e1n(hg)tes,(h!iwji) qu\\u01fd(hg)su(fg)mus,(g.) (;)\\r\\nI(g)gn\\u00f3(ih)sce(jk) cul(k)pis(ji) \\u00f3m(hg)ni(hj)bus,(j.) (:)\\r\\nEt(j) cor(h)da(i) sur(g)sum(gh) s\\u00fab(hg)le(fg)va(g.) (;)\\r\\nAd(f) te(hg) su(hj)p\\u00e9r(ji)na(hg) gr\\u00e1(hg)ti(fg)a.(g.) (::)\\r\\n\\r\\n7. Ut,(g) cum(g!hwih) ru(gf)b\\u00e9n(hg)te(h!iwji) c\\u0153(hg)\\u0301per(fg)is(g.) (;)\\r\\nCla(g)r\\u00e9(ih)re(jk) nu(k)be(ji) i\\u00fa(hg)di(hj)cis,(j.) (:)\\r\\nP\\u0153(j)nas(h) re(i)p\\u00e9l(g)las(gh) d\\u00e9(hg)bi(fg)tas,(g.) (;)\\r\\nRed(f)das(hg) co(hj)r\\u00f3(ji)nas(hg) p\\u00e9r(hg)di(fg)tas.(g.) (::)\\r\\n\\r\\n8. Ie(g)su,(g!hwih) ti(gf)bi(hg) sit(h!iwji) gl\\u00f3(hg)ri(fg)a,(g.) (;)\\r\\nQui(g) scan(ih)dis(jk) ad(k) c\\u00e6(ji)l\\u00e9s(hg)ti(hj)a,(j.) (:)\\r\\nCum(j) Pa(h)tr<i>e</i>,() et(i) al(g)mo(gh) Sp\\u00ed(hg)ri(fg)tu,(g.) (;)\\r\\nIn(f) sem(hg)pi(hj)t\\u00e9r(ji)na(hg) s\\u01fd(hg)cu(fg)la.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)",
|
|
962
|
+
office: "hy",
|
|
963
|
+
mode: "8",
|
|
964
|
+
pages: [
|
|
965
|
+
{ page: "92", sequence: 2, extent: 3 }
|
|
966
|
+
],
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
id: "gregobase:8737",
|
|
970
|
+
incipit: "Jesu auctor clementiae",
|
|
971
|
+
gabc: "(c4)JE(ed)su,(g) auc(hj)tor(jji) cle(hg)m\\u00e9n(hi)ti(hg)\\u00e6,(g.) (,)\\r\\nTo(g)t\\u00ed(i!jk)us(j) spes(ji) l\\u00e6(hg)t\\u00ed(h)ti(gf)\\u00e6,(ed..) (;)\\r\\nDul(dh)c\\u00f3(h)ris(g) fons(h!iwji) et(hg) gr\\u00e1(hi)ti(hg)\\u00e6,(g.) (,)\\r\\nVe(h)r\\u00e6(h) cor(g)dis(fe) de(d)l\\u00ed(e!fg)ci(fe)\\u00e6.(e.) (::)\\r\\n\\r\\n2. Je(ed)su,(g) spes(hj) p\\u00e6(jji)ni(hg)t\\u00e9n(hi)ti(hg)bus,(g.) (,)\\r\\nQuam(g) pi(i!jk)us(j) es(ji) pe(hg)t\\u00e9n(h)ti(gf)bus,(ed..) (;)\\r\\nQuam(dh) bo(h)nus(g) te(h!iwji) qu\\u00e6(hg)r\\u00e9n(hi)ti(hg)bus;(g.) (,)\\r\\nSed(h) quid(h) in(g)ve(fe)ni(d)\\u00e9n(e!fg)ti(fe)bus?(e.) (::)\\r\\n\\r\\n3. Tu(ed)a,(g) Je(hj)su,(jji) di(hg)l\\u00e9c(hi)ti(hg)o,(g.) (,)\\r\\nGra(g)ta(i!jk) men(j)tis(ji) re(hg)f\\u00e9c(h)ti(gf)o,(ed..) (;)\\r\\nRe(dh)plet(h) si(g)ne(h!iwji) fas(hg)t\\u00ed(hi)di(hg)o,(g.) (,)\\r\\nDans(h) fa(h)mem(g) de(fe)si(d)d\\u00e9(e!fg)ri(fe)o.(e.) (::)\\r\\n\\r\\n4. O(ed) Je(g)su(hj) di(jji)lec(hg)t\\u00eds(hi)si(hg)me,(g.) (,)\\r\\nSpes(g) su(i!jk)spi(j)r\\u00e1n(ji)tis(hg) \\u00e1(h)ni(gf)m\\u00e6,(ed..) (;)\\r\\nTe(dh) qu\\u00e6(h)runt(g) pi(h!iwji)\\u00e6(hg) l\\u00e1(hi)cri(hg)m\\u00e6,(g.) (,)\\r\\nTe(h) cla(h)mor(g) men(fe)tis(d) \\u00edn(e!fg)ti(fe)m\\u00e6.(e.) (::)\\r\\n\\r\\n5. Ma(ed)ne(g) no(hj)b\\u00eds(jji)cum,(hg) D\\u00f3(hi)mi(hg)ne,(g.) (,)\\r\\nMa(g)ne(i!jk) no(j)vum(ji) cum(hg) l\\u00fa(h)mi(gf)ne,(ed..) (;)\\r\\nPul(dh)sa(h) noc(g)tis(h!iwji) ca(hg)l\\u00ed(hi)gi(hg)ne(g.) (,)\\r\\nMun(h)dum(h) re(g)plens(fe) dul(d)c\\u00e9(e!fg)di(fe)ne.(e.) (::)\\r\\n\\r\\n6. Je(ed)su,(g) sum(hj)ma(jji) be(hg)n\\u00ed(hi)gni(hg)tas,(g.) (,)\\r\\nMi(g)ra(i!jk) cor(j)dis(ji) ju(hg)c\\u00fan(h)di(gf)tas,(ed..) (;)\\r\\nIn(dh)com(h)pre(g)h\\u00e9n(h!iwji)sa(hg) b\\u00f3(hi)ni(hg)tas,(g.) (,)\\r\\nTu(h)a(h) nos(g) strin(fe)git(d) c\\u00e1(e!fg)ri(fe)tas.(e.) (::)\\r\\n\\r\\n7. Je(ed)su,(g) flos(hj) Ma(jji)tris(hg) v\\u00edr(hi)gi(hg)nis,(g.) (,)\\r\\nA(g)mor(i!jk) nos(j)tr\\u00e6(ji) dul(hg)c\\u00e9(h)di(gf)nis,(ed..) (;)\\r\\nLaus(dh) ti(h)bi(g) si(h!iwji)ne(hg) t\\u00e9r(hi)mi(hg)nis,(g.) (,)\\r\\nRe(h)gnum(h) be(g)a(fe)ti(d)t\\u00fa(e!fg)di(fe)nis.(e.) (::)\\r\\nA(efe)men.(de..) (::)",
|
|
972
|
+
office: "hy",
|
|
973
|
+
mode: null,
|
|
974
|
+
pages: [
|
|
975
|
+
{ page: "120", sequence: 1, extent: 3 }
|
|
976
|
+
],
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
id: "gregobase:8747",
|
|
980
|
+
incipit: "Aurora surgit lucida",
|
|
981
|
+
gabc: "(c4)Au(g)r\\u00f3(h')ra(g) sur(h)git(i) l\\u00fa(j')ci(h)da(i') (,)\\r\\nChris(i)ti(i') tri(j)\\u00fam(h)phos(g) \\u00e1f(h')fe(j)rens,(i!jwk/JI.) (;)\\r\\ncum(h) cor(i')pus(j) e(k)ius(i) v\\u00ed(j')se(j)re,(i') (,)\\r\\nMa(h)r\\u00ed(i')a,(j) vis(i) et(h) \\u00fan(i')ge(h)re.(g.) (::)\\r\\n",
|
|
982
|
+
office: "hy",
|
|
983
|
+
mode: "8",
|
|
984
|
+
pages: [
|
|
985
|
+
{ page: "398", sequence: 0, extent: 1 }
|
|
986
|
+
],
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
id: "gregobase:8815",
|
|
990
|
+
incipit: "Inclitus rector (Pro Papa)",
|
|
991
|
+
gabc: "(c4)In(ghg)cli(e)tus(f) rec(g.)tor(g.) (,) pa(h)ter(f) at(h)que(j) pru(ih)dens,(g.) (;)\\r\\ncu(j_)ius(h) in(j)s\\u00ed(ih)gnem(g.) (,) c\\u00f3(h)li(g)mus(e) tri(f)\\u00fam(g.)phum,(g.) (:)\\r\\nis(gf)te(e) con(g)f\\u00e9s(fe)sor(dc) si(c)ne(d) fi(e)ne(f) l\\u00e6(gh)tus(hg__) (,)\\r\\nre(hiwji)gnat(hg) in(hih) as(g.)tris.(g.) (::)",
|
|
992
|
+
office: "hy",
|
|
993
|
+
mode: "8",
|
|
994
|
+
pages: [
|
|
995
|
+
{ page: "293", sequence: 1, extent: 3 }
|
|
996
|
+
],
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
id: "gregobase:8816",
|
|
1000
|
+
incipit: "Inclitus rector (Pro Episcopo)",
|
|
1001
|
+
gabc: "(c4)In(ghg)cli(e)tus(f) rec(g.)tor(g.) (,) pa(h)ter(f) at(h)que(j) pru(ih)dens,(g.) (;)\\r\\ncu(j_)ius(h) in(j)s\\u00ed(ih)gnem(g.) (,) c\\u00f3(h)li(g)mus(e) tri(f)\\u00fam(g.)phum,(g.) (:)\\r\\nis(gf)te(e) con(g)f\\u00e9s(fe)sor(dc) si(c)ne(d) fi(e)ne(f) l\\u00e6(gh)tus(hg__) (,)\\r\\nre(hiwji)gnat(hg) in(hih) as(g.)tris.(g.) (::)",
|
|
1002
|
+
office: "hy",
|
|
1003
|
+
mode: "8",
|
|
1004
|
+
pages: [
|
|
1005
|
+
{ page: "293", sequence: 1, extent: 3 }
|
|
1006
|
+
],
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
id: "gregobase:8817",
|
|
1010
|
+
incipit: "Inclitus rector (Pro Presbytero)",
|
|
1011
|
+
gabc: "(c4)In(ghg)cli(e)tus(f) rec(g.)tor(g.) (,) pa(h)ter(f) at(h)que(j) pru(ih)dens,(g.) (;)\\r\\ncu(j_)ius(h) in(j)s\\u00ed(ih)gnem(g.) (,) c\\u00f3(h)li(g)mus(e) tri(f)\\u00fam(g.)phum,(g.) (:)\\r\\nis(gf)te(e) con(g)f\\u00e9s(fe)sor(dc) si(c)ne(d) fi(e)ne(f) l\\u00e6(gh)tus(hg__) (,)\\r\\nre(hiwji)gnat(hg) in(hih) as(g.)tris.(g.) (::)",
|
|
1012
|
+
office: "hy",
|
|
1013
|
+
mode: "8",
|
|
1014
|
+
pages: [
|
|
1015
|
+
{ page: "293", sequence: 1, extent: 3 }
|
|
1016
|
+
],
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
id: "gregobase:8818",
|
|
1020
|
+
incipit: "Christe pastorum (Pro Presbytero)",
|
|
1021
|
+
gabc: "(c4)CHris(ed)te(g) pas(hi)t\\u00f3(i'_)rum(i_) (,) ca(j)put(h) at(gf)que(de) prin(e.)ceps,(e.) (;)\\r\\nG\\u00e9s(ijh)ti(g)ens(hi) hu(i'_)jus(i_) (,) ce(j)le(h)br\\u00e1(gh)re(ed) fes(g.)tum,(g.) (:)\\r\\nD\\u00e9(g)bi(h)tas(ih) sa(i'_)cro(i_) (,) pi(k)a(ji) tur(g)ba(f) psal(gh)lit(h.) (,)\\r\\nC\\u00e1r(hg)mi(fe)ne(de) lau(e.)des.(e.) (::)\\r\\n\\r\\n2. Hunc(ed) ti(g)b<i>i</i>() e(hi)l\\u00e9c(i'_)tum(i_) (,) f\\u00e1(j)ci(h)ens(gf) mi(de)n\\u00eds(e.)trum(e.) (;)\\r\\nAc(ijh) sa(g)cer(hi)d\\u00f3(i'_)tem(i_) (,) s\\u00f3(j)ci(h)ans,(gh) de(ed)d\\u00eds(g.)ti(g.) (:)\\r\\nDux(g) ut(h) a(ih)st\\u00e1(i'_)ret(i_) (,) p\\u00f3(k)pu(ji)lo(g) fi(f)d\\u00e9(gh)lis(h.) (,)\\r\\nAc(hg) bo(fe)nus(de) al(e.)tor.(e.) (::)\\r\\n\\r\\n3. Hic(ed) gre(g)gis(hi) duc(i'_)tor(i_) (,) fu(j)it(h) at(gf)que(de) for(e.)ma,(e.) (;)\\r\\nLux(ijh) e(g)rat(hi) c\\u00e6(i'_)co,(i_) (,) m\\u00ed(j)se(h)ro(gh) le(ed)v\\u00e1(g.)men,(g.) (:)\\r\\nPr\\u00f3(g)vi(h)dus(ih) cunc(i'_)tis(i_) (,) pa(k)ter(ji) om(g)ni(f)b\\u00fas(gh)que(h.) (,)\\r\\nOm(hg)ni(fe)a(de) fac(e.)tus.(e.) (::)\\r\\n\\r\\n4. Chris(ed)te,(g) qui(hi) sanc(i'_)tis(i_) (,) m\\u00e9(j)ri(h)tam(gf) co(de)r\\u00f3(e.)nam(e.) (;)\\r\\nRed(ijh)dis(g) in(hi) c\\u00e6(i'_)lis,(i_) (,) d\\u00f3(j)ci(h)li(gh) ma(ed)g\\u00eds(g.)trum(g.) (:)\\r\\nFac(g) se(h)qui(ih) vi-(i'_)ta,(i_) (,) si(k)mi(ji)l\\u00ed(g)que(f) tan(gh)dem(h.) (,)\\r\\nFi(hg)ne(fe) po(de)t\\u00ed(e.)ri.(e.) (::)\\r\\n\\r\\n5. \\u00c6(ed)qua(g) laus(hi) sum(i'_)mum(i_) (,) c\\u00e9(j)le(h)bret(gf)\\r\\nPa(de)r\\u00e9n(e.)tem(e.) (;) te(ijh)que,(g) Sal(hi)v\\u00e1(i'_)tor,(i_) (,) pi(j)e(h) rex,(gh)\\r\\nPer(ed) \\u00e6(g.)vum;(g.) (:) Sp\\u00ed(g)ri(h)tus(ih) Sanc(i'_)ti(i_) (,) r\\u00e9(k)so(ji)net(g)\\r\\nPer(f) om(gh)nem(h.) (,) gl\\u00f3(hg)ri(fe)a(de) mun(e.)dum.(e.) (::)\\r\\nA(efe)men.(de..) (::)",
|
|
1022
|
+
office: "hy",
|
|
1023
|
+
mode: "3",
|
|
1024
|
+
pages: [
|
|
1025
|
+
{ page: "290", sequence: 1, extent: 3 }
|
|
1026
|
+
],
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
id: "gregobase:8819",
|
|
1030
|
+
incipit: "Christe pastorum (Pro Episcopo)",
|
|
1031
|
+
gabc: "(c4)CHris(ed)te(g) pas(hi)t\\u00f3(i'_)rum(i_) (,) ca(j)put(h) at(gf)que(de) prin(e.)ceps,(e.) (;)\\r\\nG\\u00e9s(ijh)ti(g)ens(hi) hu(i'_)jus(i_) (,) ce(j)le(h)br\\u00e1(gh)re(ed) fes(g.)tum,(g.) (:)\\r\\nD\\u00e9(g)bi(h)tas(ih) sa(i'_)cro(i_) (,) pi(k)a(ji) tur(g)ba(f) psal(gh)lit(h.) (,)\\r\\nC\\u00e1r(hg)mi(fe)ne(de) lau(e.)des.(e.) (::)\\r\\n\\r\\n2. Str\\u00e9(ed)nu(g)um(hi) bel(i'_)lo(i_) (,) p\\u00fa(j)gi(h)lem(gf) su(de)p\\u00e9r(e.)ni(e.) (;)\\r\\nChr\\u00eds(ijh)ma(g)tis(hi) ple(i'_)no(i_) (,) tu(j)us(h) un(gh)xit(ed) in(g.)tus(g.) (:)\\r\\nSp\\u00ed(g)ri(h)tus(ih) do(i'_)no,(i_) (,) po(k)su(ji)\\u00edt(g)que(f) sanc(gh)tam(h.) (,)\\r\\nP\\u00e1(hg)sce(fe)re(de) gen(e.)tem.(e.) (::)\\r\\n\\r\\n3. Hic(ed) gre(g)gis(hi) duc(i'_)tor(i_) (,) fu(j)it(h) at(gf)que(de) for(e.)ma,(e.) (;)\\r\\nLux(ijh) e(g)rat(hi) c\\u00e6(i'_)co,(i_) (,) m\\u00ed(j)se(h)ro(gh) le(ed)v\\u00e1(g.)men,(g.) (:)\\r\\nPr\\u00f3(g)vi(h)dus(ih) cunc(i'_)tis(i_) (,) pa(k)ter(ji) om(g)ni(f)b\\u00fas(gh)que(h.) (,)\\r\\nOm(hg)ni(fe)a(de) fac(e.)tus.(e.) (::)\\r\\n\\r\\n4. Chris(ed)te,(g) qui(hi) sanc(i'_)tis(i_) (,) m\\u00e9(j)ri(h)tam(gf) co(de)r\\u00f3(e.)nam(e.) (;)\\r\\nRed(ijh)dis(g) in(hi) c\\u00e6(i'_)lis,(i_) (,) d\\u00f3(j)ci(h)li(gh) ma(ed)g\\u00eds(g.)trum(g.) (:)\\r\\nFac(g) se(h)qui(ih) vi-(i'_)ta,(i_) (,) si(k)mi(ji)l\\u00ed(g)que(f) tan(gh)dem(h.) (,)\\r\\nFi(hg)ne(fe) po(de)t\\u00ed(e.)ri.(e.) (::)\\r\\n\\r\\n5. \\u00c6(ed)qua(g) laus(hi) sum(i'_)mum(i_) (,) c\\u00e9(j)le(h)bret(gf)\\r\\nPa(de)r\\u00e9n(e.)tem(e.) (;) te(ijh)que,(g) Sal(hi)v\\u00e1(i'_)tor,(i_) (,) pi(j)e(h) rex,(gh)\\r\\nPer(ed) \\u00e6(g.)vum;(g.) (:) Sp\\u00ed(g)ri(h)tus(ih) Sanc(i'_)ti(i_) (,) r\\u00e9(k)so(ji)net(g)\\r\\nPer(f) om(gh)nem(h.) (,) gl\\u00f3(hg)ri(fe)a(de) mun(e.)dum.(e.) (::)\\r\\nA(efe)men.(de..) (::)",
|
|
1032
|
+
office: "hy",
|
|
1033
|
+
mode: "3",
|
|
1034
|
+
pages: [
|
|
1035
|
+
{ page: "290", sequence: 1, extent: 3 }
|
|
1036
|
+
],
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
id: "gregobase:8820",
|
|
1040
|
+
incipit: "Christe pastorum (Pro Papa)",
|
|
1041
|
+
gabc: "(c4)CHris(ed)te(g) pas(hi)t\\u00f3(i'_)rum(i_) (,) ca(j)put(h) at(gf)que(de) prin(e.)ceps,(e.) (;)\\r\\nG\\u00e9s(ijh)ti(g)ens(hi) hu(i'_)jus(i_) (,) ce(j)le(h)br\\u00e1(gh)re(ed) fes(g.)tum,(g.) (:)\\r\\nD\\u00e9(g)bi(h)tas(ih) sa(i'_)cro(i_) (,) pi(k)a(ji) tur(g)ba(f) psal(gh)lit(h.) (,)\\r\\nC\\u00e1r(hg)mi(fe)ne(de) lau(e.)des.(e.) (::)\\r\\n\\r\\n2. Quas(ed) o(g)ves(hi) Pe(i'_)tro(i_) (,) d\\u00e9(j)de(h)ras,(gf) o(de)v\\u00ed(e.)le(e.) (;)\\r\\nOr(ijh)bis(g) ut(hi) to(i'_)tus(i_) (,) f\\u00ed(j)e(h)ret(gh) sa(ed)cr\\u00e1(g.)tum,(g.) (:)\\r\\nHic(g) tu(h)o(ih) nu(i'_)tu(i_) (,) p\\u00f3(k)si(ji)tus(g) su(f)pr\\u00e9(gh)mo(h.) (,)\\r\\nC\\u00fal(hg)mi(fe)ne(de) re(e.)xit.(e.) (::)\\r\\n\\r\\n3. Hic(ed) gre(g)gis(hi) duc(i'_)tor(i_) (,) fu(j)it(h) at(gf)que(de) for(e.)ma,(e.) (;)\\r\\nLux(ijh) e(g)rat(hi) c\\u00e6(i'_)co,(i_) (,) m\\u00ed(j)se(h)ro(gh) le(ed)v\\u00e1(g.)men,(g.) (:)\\r\\nPr\\u00f3(g)vi(h)dus(ih) cunc(i'_)tis(i_) (,) pa(k)ter(ji) om(g)ni(f)b\\u00fas(gh)que(h.) (,)\\r\\nOm(hg)ni(fe)a(de) fac(e.)tus.(e.) (::)\\r\\n\\r\\n4. Chris(ed)te,(g) qui(hi) sanc(i'_)tis(i_) (,) m\\u00e9(j)ri(h)tam(gf) co(de)r\\u00f3(e.)nam(e.) (;)\\r\\nRed(ijh)dis(g) in(hi) c\\u00e6(i'_)lis,(i_) (,) d\\u00f3(j)ci(h)li(gh) ma(ed)g\\u00eds(g.)trum(g.) (:)\\r\\nFac(g) se(h)qui(ih) vi-(i'_)ta,(i_) (,) si(k)mi(ji)l\\u00ed(g)que(f) tan(gh)dem(h.) (,)\\r\\nFi(hg)ne(fe) po(de)t\\u00ed(e.)ri.(e.) (::)\\r\\n\\r\\n5. \\u00c6(ed)qua(g) laus(hi) sum(i'_)mum(i_) (,) c\\u00e9(j)le(h)bret(gf)\\r\\nPa(de)r\\u00e9n(e.)tem(e.) (;) te(ijh)que,(g) Sal(hi)v\\u00e1(i'_)tor,(i_) (,) pi(j)e(h) rex,(gh)\\r\\nPer(ed) \\u00e6(g.)vum;(g.) (:) Sp\\u00ed(g)ri(h)tus(ih) Sanc(i'_)ti(i_) (,) r\\u00e9(k)so(ji)net(g)\\r\\nPer(f) om(gh)nem(h.) (,) gl\\u00f3(hg)ri(fe)a(de) mun(e.)dum.(e.) (::)\\r\\nA(efe)men.(de..) (::)",
|
|
1042
|
+
office: "hy",
|
|
1043
|
+
mode: "3",
|
|
1044
|
+
pages: [
|
|
1045
|
+
{ page: "290", sequence: 1, extent: 3 }
|
|
1046
|
+
],
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
id: "gregobase:8821",
|
|
1050
|
+
incipit: "Aeterne sol qui lumine",
|
|
1051
|
+
gabc: "(c4)\\u00c6(f)t\\u00e9r(ffe)ne(d) sol,(f) qui(g) l\\u00fa(gh)mi(f)ne(e'_) (,)\\r\\nCre(g)\\u00e1(h)ta(g) com(h!iwji)ples(g) \\u00f3m(g)ni(f)a,(h.) (;)\\r\\nSu(h)pr\\u00e9(h)ma(g) lux(h!iwji) et(gf) m\\u00e9n(h)ti(h)um,(d!ewfe.) (,)\\r\\nTe(e) cor(c)da(e) nos(gfh)tra(gf) c\\u00f3n(g)ci(fe)nunt.(e.) (::)\\r\\n\\r\\n2. Tu(f)o(ffe) fo(d)v\\u00e9n(f)te(g) Sp\\u00ed(gh)ri(f)tu,(e'_) (,)\\r\\nHic(g) vi(h)va(g) lu(h!iwji)mi(g)n\\u00e1(g)ri(f)a(h.) (;)\\r\\nFul(h)s\\u00e9(h)re,(g) per(h!iwji) qu\\u00e6(gf) s\\u01fd(h)cu(h)lis(d!ewfe.) (,)\\r\\nPa(e)tent(c) sa(e)l\\u00fa(gfh)tis(gf) s\\u00e9(g)mi(fe)t\\u00e6.(e.) (::)\\r\\n\\r\\n3. Quod(f) ver(ffe)ba(d) mis(f)sa(g) c\\u01fd(gh)li(f)tus,(e'_) (,)\\r\\nNa(g)t\\u00ed(h)va(g) mens(h!iwji) quod(g) \\u00e9x(g)hi(f)bet,(h.) (;)\\r\\nPer(h) hos(h) mi(g)n\\u00eds(h!iwji)tros(gf) gr\\u00e1(h)ti(h)\\u00e6(d!ewfe.) (,)\\r\\nNo(e)vo(c) ni(e)t\\u00f3(gfh)re(gf) cl\\u00e1(g)ru(fe)it.(e.) (::)\\r\\n\\r\\n4. Ho(f)rum(ffe) co(d)r\\u00f3(f)n\\u00e6(g) p\\u00e1r(gh)ti(f)ceps,(e'_) (,)\\r\\nDoc(g)tri(h)n<i>a</i>() ho(g)n\\u00e9s(h!iwji)tus(g) l\\u00fa(g)ci(f)da,(h.) (;)\\r\\nHic(h) vir(h) be(g)\\u00e1(h!iwji)tus(gf) spl\\u00e9n(h)du(h)it(d!ewfe.) (,)\\r\\nQuem(e) pr\\u00e6(c)di(e)c\\u00e1(gfh)mus(gf) l\\u00e1u(g)di(fe)bus.(e.) (::)\\r\\n\\r\\n5. Ip(f)so(ffe) fa(d)v\\u00e9n(f)te,(g) qu\\u01fd(gh)su(f)mus,(e'_) (,)\\r\\nNo(g)bis,(h) De(g)us,(h!iwji) per(g)c\\u00far(g)re(f)re(h.) (;)\\r\\nDa(h) ve(h)ri(g)t\\u00e1(h!iwji)tis(gf) tr\\u00e1(h)mi(h)tem,(d!ewfe.) (,)\\r\\nPos(e)s\\u00ed(c)mus(e) ut(gfh) te(gf) c\\u00f3n(g)se(fe)qui.(e.) (::)\\r\\n\\r\\n6. Pr\\u00e6(f)sta,(ffe) Pa(d)ter(f) pi(g)\\u00eds(gh)si(f)me,(e'_) (,)\\r\\nPa(g)tr\\u00ed(h)que(g) com(h!iwji)par(g) U(g)ni(f)ce,(h.) (;)\\r\\nCum(h) Sp\\u00ed(h)ri(g)tu(h!iwji) Pa(gf)r\\u00e1(h)cli(h)to(d!ewfe.) (,)\\r\\nRe(e)gnans(c) per(e) om(gfh)ne(gf) s\\u01fd(g)cu(fe)lum.(e.) (::)\\r\\nA(efe)men.(de..) (::)",
|
|
1052
|
+
office: "hy",
|
|
1053
|
+
mode: "4",
|
|
1054
|
+
pages: [
|
|
1055
|
+
{ page: "303", sequence: 1, extent: 2 }
|
|
1056
|
+
],
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
id: "gregobase:8822",
|
|
1060
|
+
incipit: "Fulget in caelis",
|
|
1061
|
+
gabc: "(c4)F\\u00fal(h_)get(g) in(h) c\\u00e6(gf)lis(dc) c\\u00e9(g)le(g)bris(f) sa(g)c\\u00e9r(h.)dos,(h.) (;)\\r\\nStel(h_)la(j) doc(k)t\\u00f3(jvIH)rum(h.) (,) r\\u00fa(i)ti(g)lat(f) co(g)r\\u00fas(h.)ca,(h.) (:)\\r\\nLu(h_)men(g) in(h)t\\u00e1c(gf)tum(dc) f\\u00ed(g)de(g)i(f) per(gh) or(hvGF)bis(f.) (,)\\r\\nCl\\u00ed(f!gwhg)ma(e)ta(fe) spar(d.)gens.(d.) (::)\\r\\n\\r\\n2. Ci(h_)ve(g) tam(h) cla(gf)ro,(dc) Si(g)on(g) o(f) su(g)p\\u00e9r(h.)na,(h.) (;)\\r\\nL\\u00e6(h_)ta(j) dic(k) lau(jvIH)des(h.) (,) D\\u00f3(i)mi(g)no(f) sa(g)l\\u00fa(h.)tis,(h.) (:)\\r\\nQui(h_) mo(g)dis(h) mi(gf)ris(dc) si(g)bi(g) vin(f)xit(gh) ip(hvGF)sum(f.) (,)\\r\\nL\\u00fa(f!gwhg)mi(e)ne(fe) com(d.)plens.(d.) (::)\\r\\n\\r\\n3. Hic(h_) fi(g)dem(h) sa(gf)cram(dc) vi(g)gil(g) us(f)que(g) fir(h.)mat,(h.) (;)\\r\\nAr(h_)m<i>a</i>() et(j) er(k)r\\u00f3(jvIH)rum(h.) (,) s\\u00fab(i)i(g)git(f) pot(g)\\u00e9n(h.)ter,(h.) (:)\\r\\nS\\u00f3r(h_)di(g)dos(h) mo(gf)res(dc) la(g)vat(g) et(f) re(gh)p\\u00e9l(hvGF)lit(f.) (,)\\r\\nD\\u00f3g(f!gwhg)ma(e)te(fe) cla(d.)ro.(d.) (::)\\r\\n\\r\\n4. Laus,(h_) ho(g)nor,(h) vir(gf)tus(dc) Tri(g)\\u00e1(g)di(f) be(g)\\u00e1(h.)t\\u00e6,(h.) (;)\\r\\nCu(h_)ius(j) in(k) ter(jvIH)ris(h.) (,) stu(i)du(g)\\u00eds(f)t<i>i</i>() a(g)m\\u00e1n(h.)ter(h.) (:)\\r\\nAl(h_)ta(g) scru(h)t\\u00e1(gf)ri(dc) ni(g)ti(g)d\\u00e1(f)qu<i>e</i>() in(gh) as(hvGF)tris(f.) (,)\\r\\nLu(f!gwhg)ce(e) po(fe)t\\u00ed(d.)ris.(d.) (::)\\r\\nA(ded)men.(cd..) (::)",
|
|
1062
|
+
office: "hy",
|
|
1063
|
+
mode: "1",
|
|
1064
|
+
pages: [
|
|
1065
|
+
{ page: "424", sequence: 1, extent: 2 }
|
|
1066
|
+
],
|
|
1067
|
+
},
|
|
1068
|
+
{
|
|
1069
|
+
id: "gregobase:8825",
|
|
1070
|
+
incipit: "Jesu corona caelitum",
|
|
1071
|
+
gabc: "(c4)Je(g)su,(d) co(g)r\\u00f3(g)na(ghg) c\\u01fd(ge)li(fg)tum,(g.) (,)\\r\\nMa(h!iwji)r\\u00ed(h)a,(g) c\\u00e6(h)li(gf) g\\u00e1u(e)di(f)um,(g.) (;)\\r\\nDe(g)o(i) fru(j)\\u00e9n(k)tes(klk) An(j)ge(i)li,(hig.) (,)\\r\\nAu(g)d\\u00ed(d)te(g) vo(g)ta(ghg) s\\u00fap(ge)pli(fg)cum.(g.) (::)\\r\\n\\r\\n2. Vos,(g) Pa(d)tri(g)ar(g)ch\\u00e1(ghg)rum(ge) cho(fg)ri,(g.) (,)\\r\\nVa(h!iwji)t\\u00fam(h)que(g) tur(h)m\\u00e6(gf) n\\u00f3(e)bi(f)les,(g.) (;)\\r\\nVos,(g) pr\\u00edn(i)ci(j)pes(k) A(klk)p\\u00f3s(j)to(i)li,(hig.) (,)\\r\\nVos,(g) pur(d)pu(g)r\\u00e1(g)ti(ghg) m\\u00e1r(ge)ty(fg)res,(g.) (::)\\r\\n\\r\\n3. Vos,(g) junc(d)ta(g) con(g)fes(ghg)s\\u00f3(ge)ri(fg)bus(g.) (,)\\r\\nA(h!iwji)m\\u0153(h)\\u0301na(g) cas(h)tra(gf) v\\u00edr(e)gi(f)num,(g.) (;)\\r\\nA(g)na(i)cho(j)ri(k)t\\u00e1(klk)rum(j) gre(i)ges,(hig.) (,)\\r\\nNos(g)tris(d) fa(g)v\\u00e9(g)te(ghg) pl\\u00e1u(ge)si(fg)bus.(g.) (::)\\r\\n\\r\\n4. Ves(g)tris(d) e(g)nim(g) con(ghg)c\\u00ed(ge)vi(fg)bus,(g.) (,)\\r\\nNos(h!iwji)tram(h) pro(g)f\\u00e9s(h)sis(gf) r\\u00e9(e)gu(f)lam,(g.) (;)\\r\\nH\\u00e6c(g) ju(i)bi(j)l\\u00e1n(k)tis(klk) \\u00f3r(j)di(i)nis(hig.) (,)\\r\\nDi(g)c\\u00e1(d)ta(g) sunt(g) sol(ghg)l\\u00e9m(ge)ni(fg)a.(g.) (::)\\r\\n\\r\\n5. His(g) \\u00edn(d)cly(g)tis(g) pa(ghg)r\\u00e9n(ge)ti(fg)bus(g.) (,)\\r\\nCon(h!iwji)gra(h)tu(g)l\\u00e1(h)mur(gf) f\\u00ed(e)li(f)i,(g.) (;)\\r\\nIl(g)l\\u00fas(i)tre(j) quos(k) con(klk)s\\u00f3r(j)ti(i)um(hig.) (,)\\r\\nVes(g)tri(d) be(g)at(g) col(ghg)l\\u00e9(ge)gi(fg)i.(g.) (::)\\r\\n\\r\\n6. Sit(g) laus(d) Pa(g)tri(g) cum(ghg) F\\u00ed(ge)li(fg)o,(g.) (,)\\r\\nEt(h!iwji) u(h)tri(g)\\u00fas(h)que(gf) Fl\\u00e1(e)mi(f)ni,(g.) (;)\\r\\nQuos(g) ves(i)tra(j) fe(k)lix(klk) c\\u00ed(j)vi(i)tas(hig.) (,)\\r\\nHym(g)no(d) c\\u00e9(g)le(g)brat(ghg) p\\u00e9r(ge)pe(fg)ti.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)",
|
|
1072
|
+
office: "hy",
|
|
1073
|
+
mode: "8",
|
|
1074
|
+
pages: [
|
|
1075
|
+
{ page: "537", sequence: 1, extent: 2 }
|
|
1076
|
+
],
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
id: "gregobase:8826",
|
|
1080
|
+
incipit: "Laeti colentes famulum",
|
|
1081
|
+
gabc: "(c4)L\\u00c6(eed)ti(c) co(eg)l\\u00e9n(ggf)tes(dc) f\\u00e1(d)mu(d)lum(e.) (,)\\r\\nQui(e) te(gh) per(hj)f\\u00e9c(h)te(gf) c\\u00f3(g)lu(fe)it,(e.) (;)\\r\\nTi(f)bi(e) gra(fg)t\\u00e1n(gffe)ter,(dc) D\\u00f3(d!ewf)mi(d)ne,(d.) (,)\\r\\nA(dc)m\\u00f3(f)ris(gh) hym(h)num(gf) pr\\u00f3(g)mi(fe)mus(e.) (::)",
|
|
1082
|
+
office: "hy",
|
|
1083
|
+
mode: "4",
|
|
1084
|
+
pages: [
|
|
1085
|
+
{ page: "326", sequence: 1, extent: 2 }
|
|
1086
|
+
],
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
id: "gregobase:8827",
|
|
1090
|
+
incipit: "O castitatis signifer",
|
|
1091
|
+
gabc: "(c4)O(f) cas(f)ti(gh)t\\u00e1(h)tis(gh) s\\u00ed(g)gni(gf)fer(f'_) (,)\\r\\nEt(h) for(j)ti(k)t\\u00fa(j)do(ij) m\\u00e1r(h)ty(g)rum,(hg..) (;)\\r\\nU(f)tr\\u00eds(f)que(g) ref(d)fens(c) pr\\u01fd(fg)mi(gf)a,(f.) (,)\\r\\nAu(f)di(f) be(gh)n\\u00ed(h)gnus(gh) s\\u00fap(g)pli(gf)ces.(f.) (::)\\r\\n\\r\\n2. H\\u00e6c(f) vir(f)go(gh) ma(h)gni(gh) p\\u00e9c(g)to(gf)ris,(f'_) (,)\\r\\nBe(h)\\u00e1(j)ta(k) sor(j)te(ij) d\\u00fa(h)pli(g)ci(hg..) (;)\\r\\nBi(f)n\\u00e1(f)que(g) pal(d)ma(c) n\\u00f3(fg)bi(gf)lis,(f.) (,)\\r\\nHic(f) t\\u00f3l(f)li(gh)tur(h) pr\\u00e6(gh)c\\u00f3(g)ni(gf)is.(f.) (::)\\r\\n\\r\\n3. H\\u00e6c(f) te(f) fa(gh)t\\u00e9(h)ri(gh) p\\u00e9r(g)ti(gf)nax,(f'_) (,)\\r\\nTor(h)t\\u00f3(j)ris(k) a(j)cre(ij) br\\u00e1(h)chi(g)um(hg..) (;)\\r\\nAr(f)m\\u00e1(f)vit(g) in(d) se(c) str\\u00e9(fg)nu(gf)e(f.) (,)\\r\\nTi(f)b\\u00ed(f)que(gh) fu(h)dit(gh) sp\\u00ed(g)ri(gf)tum.(f.) (::)\\r\\n\\r\\n4. Sic(f) s\\u00e6(f)vi(gh)\\u00e9n(h)tis(gh) v\\u00fal(g)ne(gf)ra(f'_) (,)\\r\\nEt(h) blan(j)di(k)\\u00e9n(j)tis(ij) v\\u00edn(h)ce(g)re(hg..) (;)\\r\\nMun(f)di(f) do(g)cens(d) il(c)l\\u00e9(fg)ce(gf)bram,(f.) (,)\\r\\nFi(f)dem(f) do(gh)cet(h) nos(gh) \\u00edn(g)te(gf)gram.(f.) (::)\\r\\n\\r\\n5. Hu(f)jus(f) fa(gh)v\\u00f3(h)re(gh) d\\u00e9(g)bi(gf)ta(f'_) (,)\\r\\nNo(h)bis(j) re(k)m\\u00edt(j)tas(ij) \\u00f3m(h)ni(g)a,(hg..) (;)\\r\\nFo(f)m\\u00e9n(f)ta(g) tol(d)lens(c) cr\\u00ed(fg)mi(gf)num(f.) (,)\\r\\nTu(f)\\u00e1m(f)que(gh) sub(h)dens(gh) gr\\u00e1(g)ti(gf)am.(f.) (::)\\r\\n\\r\\n6. Je(f)su,(f) ti(gh)bi(h) sit(gh) gl\\u00f3(g)ri(gf)a,(f'_) (,)\\r\\nQui(h) na(j)tus(k) es(j) de(ij) V\\u00edr(h)gi(g)ne,(hg..) (;)\\r\\nCum(f) Pa(f)tr<i>e</i>() et(g) al(d)mo(c) Sp\\u00ed(fg)ri(gf)tu,(f.) (,)\\r\\nIn(f) sem(f)pi(gh)t\\u00e9r(h)na(gh) s\\u01fd(g)cu(gf)la.(f.) (::)\\r\\nA(fgf)men.(ef..) (::)",
|
|
1092
|
+
office: "hy",
|
|
1093
|
+
mode: "6",
|
|
1094
|
+
pages: [
|
|
1095
|
+
{ page: "284", sequence: 1, extent: 3 }
|
|
1096
|
+
],
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
id: "gregobase:8829",
|
|
1100
|
+
incipit: "Beata caeli gaudia",
|
|
1101
|
+
gabc: "(c4)BE(g)\\u00e1(g)ta(f) c\\u00e6(e)li(f) g\\u00e1u(g)di(fg)a,(g_') (,)\\r\\nCon(h)fes(jk)si(j)\\u00f3(j)nis(g) pr\\u01fd(h)mi(g)um,(f.) (;)\\r\\nChris(f)t<i>i</i>() o(g) fi(f)d\\u00e9(g)les(h) \\u00e1s(j)se(i)cl\\u00e6(giHG'_) (,)\\r\\nJam(g) pos(gh)si(f)d\\u00e9(e)tis(f) \\u00e1f(g)fa(h)tim.(g.) (::)\\r\\n\\r\\n2. Lau(g)des(g) be(f)n\\u00ed(e)gnis(f) \\u00e1u(g)ri(fg)bus(g_') (,)\\r\\nAu(h)d\\u00ed(jk)te,(j) quas(j) ef(g)f\\u00fan(h)di(g)mus(f.) (;)\\r\\nNos(f) \\u00e9x(g)su(f)les(g) de(h) p\\u00e1(j)tri(i)a(giHG'_) (,)\\r\\nVo(g)bis(gh) sa(f)cr\\u00e1(e)to(f) c\\u00e1n(g)ti(h)co.(g.) (::)\\r\\n\\r\\n3. A(g)m\\u00f3(g)re(f) Chris(e)ti(f) p\\u00e9r(g)ci(fg)ti(g_') (,)\\r\\nCru(h)cem(jk) tu(j)l\\u00eds(j)tis(g) \\u00e1s(h)pe(g)ram,(f.) (;)\\r\\nOb(f)\\u0153(g)di(f)\\u00e9n(g)tes,(h) \\u00edm(j)pi(i)gri(giHG'_) (,)\\r\\nEt(g) ca(gh)ri(f)t\\u00e1(e)te(f) f\\u00e9r(g)vi(h)di.(g.) (::)\\r\\n\\r\\n4. Spe(g)v\\u00eds(g)tis(f) ar(e)tes(f) d\\u01fd(g)mo(fg)num(g_') (,)\\r\\nFal(h)la(jk)ci(j)\\u00e1s(j)que(g) s\\u01fd(h)cu(g)li;(f.) (;)\\r\\nChris(f)tum(g) fa(f)t\\u00e9n(g)do(h) m\\u00f3(j)ri(i)bus,(giHG'_) (,)\\r\\nMi(g)gr\\u00e1s(gh)tis(f) in(e)ter(f) s\\u00ed(g)de(h)ra.(g.) (::)\\r\\n\\r\\n5. Jam(g) nunc(g) po(f)t\\u00ed(e)ti(f) gl\\u00f3(g)ri(fg)a,(g_') (,)\\r\\nAd(h)\\u00e9s(jk)te(j) vo(j)tis(g) \\u00f3m(h)ni(g)um(f.) (;)\\r\\nAr(f)d\\u00e9n(g)ter(f) ex(g)op(h)t\\u00e1n(j)ti(i)um(giHG'_) (,)\\r\\nEx(g)\\u00e9m(gh)pla(f) ves(e)tra(f) pr\\u00f3(g)se(h)qui.(g.) (::)\\r\\n\\r\\n6. Sit(g) Tri(g)ni(f)t\\u00e1(e)ti(f) gl\\u00f3(g)ri(fg)a(g_') (,)\\r\\nQu\\u00e6(h) pro(jk) su(j)a(j) cle(g)m\\u00e9n(h)ti(g)a(f.) (;)\\r\\nVo(f)b\\u00eds(g)que(f) suf(g)fra(h)g\\u00e1n(j)ti(i)bus(giHG'_) (,)\\r\\nNos(g) du(gh)cat(f) ad(e) c\\u00e6(f)l\\u00e9s(g)ti(h)a.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)",
|
|
1102
|
+
office: "hy",
|
|
1103
|
+
mode: "8",
|
|
1104
|
+
pages: [
|
|
1105
|
+
{ page: "313", sequence: 1, extent: 2 }
|
|
1106
|
+
],
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
id: "gregobase:8841",
|
|
1110
|
+
incipit: "Inclytos Christi",
|
|
1111
|
+
gabc: "(f3)IN(ff)cli(e)tos(f!gwh) Chris(hg)ti(fg) f\\u00e1(f)mu(f)los(e) ca(f)n\\u00e1(h.)mus,(h.) (;)\\r\\nQuos,(ih) fi(i)de(j) cla(ih)ros(hi) ni(i)ti(h)d\\u00eds(f)que(g) ges(ff)tis,(e.) (:)\\r\\nHac(f!gwh!ivHG) di(f)e(e) tel(h.)lus(h.) (,) so(i)ci(j)\\u00e1(i)ta(h) c\\u00e6(ih)lo(fe__) (,)\\r\\nL\\u00e1u(h)di(g)bus(h) or(fe)nat.(f.) (::)\\r\\n\\r\\n2. Quip(ff)pe(e) qui(f!gwh) mi(hg)tes,(fg) h\\u00fa(f)mi(f)les,(e) pu(f)d\\u00ed(h.)ci,(h.) (;)\\r\\nN\\u00e9(ih)sci(i)am(j) cul(ih)p\\u00e6(hi) co(i)lu(h)\\u00e9(f)re(g) vi(ff)tam,(e.) (:)\\r\\nDo(f!gwh!ivHG)nec(f) e(e) ter(h.)ris(h.) (,) \\u00e1(i)ni(j)mus(i) vo(h)l\\u00e1(ih)vit(fe__) (,)\\r\\nLi(h)ber(g) ad(h) as(fe)tra.(f.) (::)\\r\\n\\r\\n3. In(ff)de(e) iam(f!gwh) gau(hg)dent(fg) m\\u00ed(f)se(f)ris(e) ad(f)\\u00e9s(h.)se,(h.) (;)\\r\\nFl\\u00e9n(ih)ti(i)um(j) ter(ih)gunt(hi) l\\u00e1(i)cri(h)mas,(f) me(g)d\\u00e9n(ff)tur(e.) (:)\\r\\nM\\u00e9n(f!gwh!ivHG)ti(f)um(e) pla(h.)gis,(h.) (,) vi(i)ti(j)\\u00e1(i)ta(h) red(ih)dunt(fe__) (,)\\r\\nMem(h)bra(g) sa(h)l\\u00fa(fe)ti.(f.) (::)\\r\\n\\r\\n4. Nos(ff)tra(e) laus(f!gwh) er(hg)go(fg) r\\u00e9(f)so(f)net(e) be(f)n\\u00ed(h.)gnis(h.) (;)\\r\\nHis(ih) De(i)i(j) ser(ih)vis(hi) re(i)fe(h)r\\u00e1t(f)que(g) gra(ff)tes,(e.) (:)\\r\\nQui(f!gwh!ivHG) pi(f)a(e) per(h.)gant(h.) (,) o(i)pe(j) nos(i) iu(h)v\\u00e1(ih)re(fe__) (,)\\r\\nRe(h)bus(g) in(h) arc(fe)tis.(f.) (::)\\r\\n\\r\\n5. Sit(ff) De(e)o(f!gwh) so(hg)li(fg) de(f)cus(f) et(e) pot(f)\\u00e9s(h.)tas,(h.) (;)\\r\\nLaus(ih) in(i) ex(j)c\\u00e9l(ih)sis(hi) ho(i)nor(h) ac(f) per(g)\\u00e9n(ff)nis,(e.) (:)\\r\\nQui(f!gwh!ivHG) su(f)is(e) to(h.)tum(h.) (,) m\\u00f3(i)de(j)rans(i) gu(h)b\\u00e9r(ih)nat(fe__) (,)\\r\\nL\\u00e9(h)gi(g)bus(h) or(fe)bem.(f.) (::)\\r\\nA(ghg)men.(fg..) (::)",
|
|
1112
|
+
office: "hy",
|
|
1113
|
+
mode: "2",
|
|
1114
|
+
pages: [
|
|
1115
|
+
{ page: "316", sequence: 1, extent: 2 }
|
|
1116
|
+
],
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
id: "gregobase:9089",
|
|
1120
|
+
incipit: "Relucens inter principes",
|
|
1121
|
+
gabc: "(c4)RE(f)l\\u00fa(f)cens(f) in(fe)ter(dc) pr\\u00edn(de)ci(e)pes(e'_) (,)\\r\\nim(g)m\\u00e9n(gh)s\\u00e6(hg) De(hih)i(gf) c\\u00fa(g)ri(gf)\\u00e6,(e.) (;) \\r\\nBar(f)tho(e)lo(fg)m{<sp>'ae</sp>}(gf)e,(dc) l\\u00e1u(de)di(dc)bus(c'_) (,)\\r\\nno(g)str\\u00edsqu<i>e</i>(g) in(f)t\\u00e9n(g)de(ghg) pr\\u00e9(fe)ci(de)bus(e.) (::)\\r\\n",
|
|
1122
|
+
office: "hy",
|
|
1123
|
+
mode: "4",
|
|
1124
|
+
pages: [
|
|
1125
|
+
{ page: "423", sequence: 0, extent: 1 }
|
|
1126
|
+
],
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
id: "gregobase:9132",
|
|
1130
|
+
incipit: "Praeclara qua tu gloria",
|
|
1131
|
+
gabc: "(c4)Pr\\u00e6(f)cl\\u00e1(f')ra(f) qua(fe) tu(dc) gl\\u00f3(de)ri(e)a,(e'_) (,)\\r\\nLe(g)vi(gh) be(hg)\\u00e1(hih)te,(gf) c\\u00edn(g)ge(gf)ris,(e.) (;)\\r\\nlaus(f) est(e) De(fg)i(gf) cle(dc)m\\u00e9n(de)ti(dc)\\u00e6,(c'_) (,)\\r\\nspes(g) nos(g')tr<i>a</i>(fr) ad(f) in(g)dul(ghg)g\\u00e9n(fe)ti(de)am.(e.) (::)",
|
|
1132
|
+
office: "hy",
|
|
1133
|
+
mode: "4",
|
|
1134
|
+
pages: [
|
|
1135
|
+
{ page: "440", sequence: 0, extent: 1 }
|
|
1136
|
+
],
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
id: "gregobase:9154",
|
|
1140
|
+
incipit: "Magdalae sidus",
|
|
1141
|
+
gabc: "(f3)MAg(c.)da(f)l\\u00e6(e) si(f.)dus,(h.) (,) m\\u00fa(g)li(f)er(g) be(h)\\u00e1(g.)ta,(f.) (;)\\r\\nTe(ff) pi(f)o(g) cul(h.)tu(e.) (,) ve(h)ne(i)r\\u00e1(j)mur(kxk) om(i.)nes,(j.) (:)\\r\\nQuam(j.) si(i)bi(h) Chris(g.)tus(i.) (,) so(f)ci(f)\\u00e1(g)vit(e) arc(d.)ti(c.) (,)\\r\\nF\\u0153(h.)de(f)r<i>e</i>() a(g)m\\u00f3(e.)ris.(f.) (::)",
|
|
1142
|
+
office: "hy",
|
|
1143
|
+
mode: "2",
|
|
1144
|
+
pages: [
|
|
1145
|
+
{ page: "399", sequence: 1, extent: 1 }
|
|
1146
|
+
],
|
|
1147
|
+
},
|
|
1148
|
+
{
|
|
1149
|
+
id: "gregobase:9642",
|
|
1150
|
+
incipit: "Venite exsultemus E",
|
|
1151
|
+
gabc: "(f3)VE(g/goh)n\\u00ed(fg)te,(f/fe) ex(f)sul(g)t\\u00e9(g)mus(f) D\\u00f3(fg)mi(f)no,(f_') (,) ju(f)bi(f)l\\u00e9(f)mus(f) De(fg)o,(f') sa(f)lu(e)t\\u00e1(f)ri(h) no(g_h)stro.(g.) (;) Pr\\u00e6(g)oc(g)cu(h)p\\u00e9(ij)mus(i') f\\u00e1(i)ci(g)em(g) e(h)jus(g_') (,) in(f) con(e)fes(f)si(h)\\u00f3(g_h)ne,(hg..) (;) et(e) in(fg~) psal(gh~)mis(g_') (,) ju(g)bi(g)l\\u00e9(g)mus(hi) e(g)i.(f_gFE.) (::Z)\\r\\n\\r\\nQu\\u00f3(g/goh)ni(fg)am(f/fe~) De(f)us(g) ma(g)gnus(g) D\\u00f3(fg)mi(f)nus,(f_') (,) et(f) rex(f) ma(fg)gnus(f') su(f)per(e) om(f)nes(h) de(g_h)os.(g.) (;) Qu\\u00f3(g)ni(g)am(g) non(g) re(g)p\\u00e9l(g)let(h) D\\u00f3(ij)mi(i)nus(i') ple(i)bem(g) su(h)am,(g_') (,) qui(g)a(g) in(g) ma(g)nu(f) e(g)jus(f_') (,) sunt(fg) om(f)nes(e) fi(f)nes(h) ter(g_h)r\\u00e6,(hg..) (;) et(e) al(fg)ti(g)t\\u00fa(g)di(g)nes(g) m\\u00f3n(gh~)ti(g)um(g_') (,) i(g)pse(g) c\\u00f3n(hi)spi(g)cit.(f_gFE.) (::Z)\\r\\n\\r\\nQu\\u00f3(g/goh)ni(fg)am(f/fe~) i(f)ps\\u00ed(g)us(g) est(g) ma(g)re,(g_') et(g) i(g)pse(g) fe(g)cit(f) il(g)lud,(f_') (,) et(f) \\u00e1(fg)ri(f)dam(f') fun(f)da(g)v\\u00e9(f)runt(e) ma(f)nus(h) e(g_h)jus.(g.) (;) Ve(g)n\\u00ed(g)te,(g) a(g)do(h)r\\u00e9(ij)mus,(i'_) (,) et(i) pro(i)ci(i)d\\u00e1(i)mus(i) an(i)te(g) De(h)um,(g_') (,) plo(g)r\\u00e9(g)mus(f) co(f)ram(f) D\\u00f3(fg)mi(f)no,(f_') qui(f) fe(fg)cit(f) nos,(f'_) (,) qui(f)a(f) i(fg)pse(f) est(f') D\\u00f3(g)mi(f)nus,(e) De(f)us(h) no(g_h)ster,(hg..) (;) nos(e) au(fg~)tem(g) p\\u00f3(g)pu(g)lus(g) e(gh~)jus,(g_') (,) et(g) o(gh)ves(g') p\\u00e1(g)scu(g)\\u00e6(hi) e(g)jus.(f_gFE.) (::Z)\\r\\n\\r\\nH\\u00f3(g/goh)di(fg)e,(f/fe) si(f) vo(g)cem(g) e(h)jus(g') au(g)di(f)\\u00e9(fg)ri(f)tis:(f_') (,) \\r\\n\\u00abNo(f)l\\u00ed(fg)te(f') ob(f)du(g)r\\u00e1(f)re(e) cor(f)da(h) ve(g_h)stra,(g.) (;) si(g)cut(g) in(g) e(g)xa(g)cer(g)ba(g)ti(h)\\u00f3(ij)ne(i') se(i)c\\u00fan(i)dum(g) di(h)em(g') ten(g)ta(g)ti(g)\\u00f3(h)nis(g') in(g) de(f)s\\u00e9r(g)to:(f_') (,) u(f)bi(f) ten(f)ta(f)v\\u00e9(fg)runt(f) me(e) pa(f)tres(h) ve(g_h)stri:(hg..) (;) pro(e)ba(fg)v\\u00e9(g)runt(g) et(g) vi(g)d\\u00e9(gh)runt(g_') (,) \\u00f3(g)pe(g)ra(hi) me(g)a.(f_gFE.) (::Z)\\r\\n\\r\\nQua(g)dra(g)g\\u00edn(g/goh)ta(f/fe) an(f)nis(g') pr\\u00f3(g)xi(g)mus(h) fu(h)i(g_') (,) ge(f)ne(f)ra(f)ti(g)\\u00f3(g)ni(f) hu(f)ic,(g_') (,) et(f) di(f)xi:(f) (`) Sem(fg~)per(f') hi(e) er(f)rant(h) cor(g_h)de.(g.) (;) I(g)psi(h) ve(ij)ro(i') non(i) co(i)gno(i)v\\u00e9(i)runt(i) vi(i)as(g) me(h)as:(g') (,) qui(g)bus(f) ju(f)r\\u00e1(fg)vi(f') in(e) i(f)ra(h) me(g_h)a:(hg..) (;) Si(e) in(fg~)tro(g)\\u00ed(gh)bunt(g_') (,) in(g) r\\u00e9(g)qui(g)em(hi) me(g)am.\\u00bb(f_gFE.) (::Z)\\r\\n\\r\\nGl\\u00f3(g/goh)ri(fg)a(f/fe) Pa(f)tri,(g) et(g) F\\u00ed(fg)li(f)o,(f_') (,) et(g) Spi(f)r\\u00ed(e)tu(f)i(h) San(g_h)cto.(g.) (;) Si(g)cut(h) e(ij)rat(i') in(i) prin(g)c\\u00ed(h)pi(h)o,(g') (,) et(fe~) nunc,(f) et(h) sem(g_h)per,(hg..) (;) et(e) in(fg~) s<sp>'ae</sp>(gh)cu(g)la(g') s\\u00e6(g)cu(g)l\\u00f3(g)rum.(hi) A(g)men.(f_gFE.) (::)\\r\\n",
|
|
1152
|
+
office: "ps",
|
|
1153
|
+
mode: "e",
|
|
1154
|
+
pages: [
|
|
1155
|
+
{ page: "168", sequence: 1, extent: 3 }
|
|
1156
|
+
],
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
id: "gregobase:9664",
|
|
1160
|
+
incipit: "Venite exsultemus VI",
|
|
1161
|
+
gabc: "(c4)VE(h)n\\u00ed(g)te,(h) ex(h)sul(h)t\\u00e9(h)mus(h) D\\u00f3(h)mi(h)no,(h'_) (,) iu(g)bi(h)l\\u00e9(h)mus(h) De(h)o,(h) sa(g)lu(f)t\\u00e1(g)ri(h) no(f)stro.(g.) (;) Pr\\u00e6(h)oc(g)cu(h)p\\u00e9(h)mus(h) f\\u00e1(h)ci(h)em(h) e(h)ius(h_') (,) in(h) con(g)fes(h)si(g)\\u00f3(g)ne,(gf..) (;) et(g) in(g) psal(h)mis(g') iu(f)bi(f)l\\u00e9(f_g)mus(gf) e(g)i.(gh..) (::Z)\\r\\n\\r\\nQu\\u00f3(h)ni(g)am(h) De(h)us(h) ma(h)gnus(h) D\\u00f3(h)mi(h)nus,(h'_) (,) et(g) rex(h) ma(h)gnus(h) su(g)per(f) om(g)nes(h) de(f)os.(g.) (;) Qu\\u00f3(h)ni(g)am(h) non(h) re(h)p\\u00e9l(h)let(h) D\\u00f3(h)mi(h)nus(h) ple(h)bem(h) su(h)am,(h_') (,) qui(g)a(h) in(h) ma(h)nu(h) e(h)ius(h_') sunt(h) om(h)nes(g) fi(h)nes(g) ter(g)r\\u00e6,(gf..) (;) et(g) al(g)ti(g)t\\u00fa(h)di(g)nes(f) m\\u00f3n(g)ti(f)um(f.) (,) i(f_g)pse(g) c\\u00f3n(gf~)spi(g)cit.(gh..) (::Z)\\r\\n\\r\\nQu\\u00f3(h)ni(g)am(h) i(h)ps\\u00ed(h)us(h) est(h) ma(h)re,(h'_) et(h) i(h)pse(h) fe(h)cit(h) il(h)lud,(h_') (,) et(g) \\u00e1(h)ri(g)dam(g) fun(g)da(h)v\\u00e9(g)runt(f) ma(g)nus(h) e(f)ius.(g.) (;) Ve(h)n\\u00ed(g)te,(h) a(h)do(h)r\\u00e9(h)mus,(h_') et(h) pro(h)ci(h)d\\u00e1(h)mus(h) an(h)te(h) De(h)um,(h_') (,) plo(g)r\\u00e9(h)mus(h) co(h)ram(h) D\\u00f3(h)mi(h)no,(h) qui(g) fe(h)cit(g) nos,(g_') (,) qui(g)a(g) i(h)pse(g) est(g') D\\u00f3(h)mi(g)nus,(g') De(h)us(g) no(g)ster,(gf..) (;) nos(g) au(g)tem(g) p\\u00f3(h)pu(g)lus(f) e(g)ius,(f_') (,) et(f) o(f_g)ves(f) p\\u00e1(f_g)scu(g)\\u00e6(gf) e(g)ius.(gh..) (::Z)\\r\\n\\r\\nH\\u00f3(h)di(g)e,(h_') si(h) vo(h)cem(h) e(h)ius(h) au(h)di(h)\\u00e9(h)ri(h)tis:(h_') \\r\\n\\u00ab(,)No(g)l\\u00ed(h)te(g) ob(g)du(h)r\\u00e1(g)re(f) cor(g)da(h) ve(f)stra,(g.) (;) si(h)cut(g) in(h) e(h)xa(h)cer(h)ba(h)ti(h)\\u00f3(h)ne(h_') se(h)c\\u00fan(h)dum(h) di(h)em(h_') (,) ten(g)ta(h)ti(h)\\u00f3(h)nis(h) in(h) de(g)s\\u00e9r(h)to:(g.) (,) u(g)bi(g) ten(g)ta(g)v\\u00e9(h)runt(g) me(g') pa(h)tres(g) ve(g)stri:(gf..) (;) pro(g)ba(g)v\\u00e9(h)runt(g') et(f) vi(f)d\\u00e9(g)runt(f.) (,) \\u00f3(f_g)pe(g)ra(gf) me(g)a.(gh..) (::Z)\\r\\n\\r\\nQua(h)dra(g)g\\u00edn(h)ta(h) an(h)nis(h) pr\\u00f3(h)xi(h)mus(h) fu(h)i(h_') (,) ge(g)ne(h)ra(h)ti(h)\\u00f3(h)ni(g) hu(g)ic,(h_') (,) et(g) di(g)xi:(g') (`) Sem(h)per(g) hi(f) er(g)rant(h) cor(f)de.(g.) (;) I(h)psi(g) ve(h)ro(h) non(h) co(h)gno(h)v\\u00e9(h)runt(h) vi(h)as(h) me(h)as:(h_') (,) qui(g)bus(h) iu(h)r\\u00e1(h)vi(h) in(g) i(h)ra(g) me(g)a:(gf..) (;) Si(g) in(g)tro(g)\\u00ed(h)bunt(g') in(f) r\\u00e9(f_g)qui(g)em(gf~) me(g)am.\\u00bb(gh..) (::Z)\\r\\n\\r\\nGl\\u00f3(h)ri(g)a(h) Pa(h)tri,(h) et(h) F\\u00ed(h)li(h)o,(h_') (,) et(h) Spi(g)r\\u00ed(f)tu(g)i(h) San(f)cto.(g.) (;) Si(h)cut(g) e(h)rat(h) in(h) prin(h)c\\u00ed(h)pi(h)o,(h_') (,) et(g) nunc,(h) et(g) sem(g)per,(gf..) (;) et(g) in(g) s<sp>'ae</sp>(h)cu(g)la(g') s\\u00e6(f)cu(f_g)l\\u00f3(g)rum.(gf) A(g)men.(gh..) (::Z)\\r\\n",
|
|
1162
|
+
office: "ps",
|
|
1163
|
+
mode: "6",
|
|
1164
|
+
pages: [
|
|
1165
|
+
{ page: "149", sequence: 1, extent: 3 }
|
|
1166
|
+
],
|
|
1167
|
+
},
|
|
1168
|
+
{
|
|
1169
|
+
id: "gregobase:9665",
|
|
1170
|
+
incipit: "Jesus refulsit omnium",
|
|
1171
|
+
gabc: "(c4)Je(h)sus(hhg) re(ed)f\\u00fal(g)sit(h) \\u00f3m(hi)ni(hg)um(h'_) (,)\\r\\nPi(e)us(eh) red(g)\\u00e9mp(gf)tor(d) g\\u00e9n(efg)ti(fe)um;(e.) (;)\\r\\nTo(ed)tum(c) ge(e)nus(g) fi(h)d\\u00e9(hi)li(hg)um(h'_) (,)\\r\\nLau(e)dis(eh) c\\u00e9(g)le(gf)bret(d) c\\u00e1n(efg)ti(fe)cum.(e.) (::)\\r\\n\\r\\n2. De(h)nis(hhg) ter(ed) \\u00e6(g)vi(h) c\\u00edr(hi)cu(hg)lis(h'_) (,)\\r\\nJam(e) par(eh)te(g) vi(gf)vens(d) c\\u00f3r(efg)po(fe)ris,(e.) (;)\\r\\nLym(ed)pham(c) pe(e)tit(g) bap(h)t\\u00eds(hi)ma(hg)tis(h'_) (,)\\r\\nCunc(e)tis(eh) ca(g)rens(gf) con(d)t\\u00e1(efg)gi(fe)is.(e.) (::)\\r\\n\\r\\n3. Fe(h)lix(hhg) Jo(ed)\\u00e1n(g)nes(h) m\\u00e9r(hi)ge(hg)re(h'_) (,)\\r\\nIl(e)lum(eh) tre(g)m\\u00e9(gf)scit(d) fl\\u00fa(efg)mi(fe)ne,(e.) (;)\\r\\nPot(ed)est(c) su(e)o(g) qui(h) s\\u00e1n(hi)gui(hg)ne(h'_) (,)\\r\\nPec(e)c\\u00e1(eh)ta(g) mun(gf)di(d) t\\u00e9r(efg)ge(fe)re.(e.) (::)\\r\\n\\r\\n4. Vox(h) er(hhg)go(ed) Pro(g)lem(h) de(hi) po(hg)lis(h'_) (,)\\r\\nTes(e)t\\u00e1(eh)tur(g) ex(gf)c\\u00e9l(d)si(efg) Pa(fe)tris,(e.) (;)\\r\\nFlu(ed)\\u00edt(c)que(e) vir(g)tus(h) Sp\\u00ed(hi)ri(hg)tus(h'_) (,)\\r\\nSanc(e)ti(eh) da(g)trix(gf) cha(d)r\\u00eds(efg)ma(fe)tis.(e.) (::)\\r\\n\\r\\n5. Nos,(h) Chris(hhg)te,(ed) vo(g)ce(h) s\\u00fap(hi)pli(hg)ci(h'_) (,)\\r\\nPre(e)c\\u00e1(eh)mur,(g) om(gf)nes(d) pr\\u00f3(efg)te(fe)ge,(e.) (;)\\r\\nAc(ed) men(c)te(e) fac(g) ni(h)t\\u00e9(hi)sce(hg)re(h'_) (,)\\r\\nTi(e)b\\u00ed(eh)que(g) mun(gf)dos(d) v\\u00ed(efg)ve(fe)re.(e.) (::)\\r\\n\\r\\n6. O(h) Chris(hhg)te,(ed) vi(g)ta,(h) v\\u00e9(hi)ri(hg)tas,(h'_) (,)\\r\\nTi(e)bi(eh) sit(g) om(gf)nis(d) gl\\u00f3(efg)ri(fe)a,(e.) (;)\\r\\nQuem(ed) Pa(c)tris(e) at(g)que(h) Sp\\u00ed(hi)ri(hg)tus(h'_) (,)\\r\\nSplen(e)dor(eh) re(g)v\\u00e9(gf)lat(d) c\\u01fd(efg)li(fe)tus.(e.) (::)\\r\\nA(efe)men.(de..) (::)",
|
|
1172
|
+
office: "hy",
|
|
1173
|
+
mode: "4",
|
|
1174
|
+
pages: [
|
|
1175
|
+
{ page: "46", sequence: 1, extent: 2 }
|
|
1176
|
+
],
|
|
1177
|
+
},
|
|
1178
|
+
{
|
|
1179
|
+
id: "gregobase:9707",
|
|
1180
|
+
incipit: "Venite exsultemus D",
|
|
1181
|
+
gabc: "(c3)VE(i)n\\u00ed(h)te,(i) ex(i)sul(i)t\\u00e9(i)mus(h) D\\u00f3(hi)mi(i)no,(i_') (,) iu(h)bi(i)l\\u00e9(i)mus(i) De(i)o,(i') sa(i)lu(h)t\\u00e1(hj)ri(j) no(i.)stro.(i.) (;) Pr\\u00e6(i)oc(h)cu(i)p\\u00e9(i)mus(i) f\\u00e1(i)ci(i)em(h) e(hi~)ius(i_') (,) in(i) con(h)fes(hj)si(j)\\u00f3(i.)ne,(i.) (;) et(h) in(i) psal(i)mis(i') iu(i)bi(i)l\\u00e9(j)mus(i) e(h)i.(gf..) (::Z)\\r\\n\\r\\nQu\\u00f3(i)ni(h)am(i) De(i)us(i) ma(i)gnus(h) D\\u00f3(hi)mi(i)nus,(i_') (,) et(h) rex(i_) ma(i)gnus(i') su(i)per(h) om(hj)nes(j) de(i.)os.(i.) (;) Qu\\u00f3(i)ni(h)am(i) non(i) re(i)p\\u00e9l(i)let(i) D\\u00f3(i)mi(i)nus(i) ple(i)bem(h) su(hi)am,(i_') (,) qui(h)a(i) in(i) ma(i)nu(i) e(i)ius(i') sunt(i) om(i)nes(h) fi(hj)nes(j) ter(i.)r\\u00e6,(i.) (;) et(h) al(i)ti(i)t\\u00fa(i)di(i)nes(i) m\\u00f3n(i)ti(i)um(i') i(j)pse(i) c\\u00f3n(h)spi(h)cit.(gf..) (::Z)\\r\\n\\r\\nQu\\u00f3(i)ni(h)am(i) i(i)ps\\u00ed(i)us(i) est(i) ma(i)re,(i'_) et(i) i(i)pse(i) fe(i)cit(h) il(hi)lud,(i_') (,) et(h) \\u00e1(i)ri(i)dam(i) fun(i)da(i)v\\u00e9(i)runt(h) ma(hj)nus(j) e(i.)ius.(i.) (;) Ve(i)n\\u00ed(h)te,(i) a(i)do(i)r\\u00e9(i)mus,(i_') et(i) pro(i)ci(i)d\\u00e1(i)mus(i) an(i)te(h) De(hi)um,(i_') (,) plo(h)r\\u00e9(i)mus(i) co(i)ram(i) D\\u00f3(i)mi(i)no,(i) qui(h) fe(hi)cit(i) nos,(i'_) (,) qui(h)a(i) i(i)pse(i) est(i') D\\u00f3(i)mi(i)nus,(h) De(hj)us(j) no(i.)ster,(i.) (;) nos(h) au(i)tem(i) p\\u00f3(i)pu(i)lus(i) e(i)ius,(i_') et(i) o(i)ves(i) p\\u00e1(j)scu(i)\\u00e6(i) e(h)ius.(gf..) (::Z)\\r\\n\\r\\nH\\u00f3(i)di(h)e,(i) si(i) vo(i)cem(i) e(i)ius(i) au(i)di(h)\\u00e9(hi)ri(i)tis:(i_') (,)\\r\\n\\u00ab No(h)l\\u00ed(i)te(i) ob(i)du(i)r\\u00e1(i)re(h) cor(hj)da(j) ve(i.)stra,(i.) (;) si(i)cut(h) in(i) e(i)xa(i)cer(i)ba(i)ti(i)\\u00f3(i)ne(i_') se(i)c\\u00fan(i)dum(h) di(hi)em(i_') (,) ten(h)ta(i)ti(i)\\u00f3(i)nis(i) in(i) de(h)s\\u00e9r(hi)to:(i'_) (,) u(h)bi(i) ten(i)ta(i)v\\u00e9(i)runt(i) me(h) pa(hj)tres(j) ve(i.)stri:(i.) (;) pro(h)ba(i)v\\u00e9(i)runt(i) et(i) vi(i)d\\u00e9(i)runt(i') \\u00f3(j)pe(i)ra(i) me(h)a.(gf..) (::Z)\\r\\n\\r\\nQua(i)dra(h)g\\u00edn(i)ta(i) an(i)nis(i) pr\\u00f3(i)xi(i)mus(h) fu(hi)i(i_') (,) ge(h)ne(i)ra(i)ti(i)\\u00f3(i)ni(h) hu(hi)ic,(i_') et(h) di(i)xi:(i') (`) Sem(i)per(i) hi(h) er(hj)rant(j) cor(i.)de.(i.) (;) I(i)psi(h) ve(i)ro(i) non(i) co(i)gno(i)v\\u00e9(i)runt(i) vi(i)as(h) me(hi)as:(i_') (,) qui(h)bus(i) iu(i)r\\u00e1(i)vi(i) in(h) i(hj)ra(j) me(i.)a:(i.) (;) Si(h) in(i)tro(i)\\u00ed(i)bunt(i') in(i) r\\u00e9(j)qui(i)em(i) me(h)am. \\u00bb(gf..) (::Z)\\r\\n\\r\\nGl\\u00f3(i)ri(h)a(i) Pa(i)tri,(i) et(h) F\\u00ed(hi)li(i)o,(i_') (,) et(i) Spi(i)r\\u00ed(h)tu(hj)i(j) San(i.)cto.(i.) (;) Si(i)cut(h) e(i)rat(i) in(i) prin(h)c\\u00ed(hi)pi(i)o,(i'_) (,) et(h) nunc,(hj) et(j) sem(i.)per,(i.) (;) et(h) in(i) s<sp>'ae</sp>(i)cu(i)la(i') s\\u00e6(i)cu(i)l\\u00f3(j)rum.(i) A(h)men.(gf..) (::)",
|
|
1182
|
+
office: "ps",
|
|
1183
|
+
mode: "d",
|
|
1184
|
+
pages: [
|
|
1185
|
+
{ page: "165", sequence: 1, extent: 3 }
|
|
1186
|
+
],
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
id: "gregobase:9831",
|
|
1190
|
+
incipit: "Quae caritatis",
|
|
1191
|
+
gabc: "(c4)Qu\\u00e6 (h)ca(hhg)ri(ed)t\\u00e1(g)tis(hj) f\\u00fal(ji)gi(hi)dum(i_') (,) es(k) as(kj)trum,(i) Vir(ji)go,(h) s\\u00fa(ih)pe(gh)ris,(h.) (;) spe(k)i(k) no(i)bis(k) mor(klk)t\\u00e1(j)li(i)bus(hiHG_') (,) fons(i) vi(jk)vax(i) es(ji) et(h) pr\\u00f3(ih)flu(gh)us.(h.) (::)",
|
|
1192
|
+
office: "hy",
|
|
1193
|
+
mode: null,
|
|
1194
|
+
pages: [
|
|
1195
|
+
{ page: "264", sequence: 1, extent: 2 }
|
|
1196
|
+
],
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
id: "gregobase:9834",
|
|
1200
|
+
incipit: "Venite exsultemus VII",
|
|
1201
|
+
gabc: "(c3)VE(i)n\\u00ed(i/jki)te,(hhg) ex(h)sul(i)t\\u00e9(i)mus(h) D\\u00f3(hi)mi(h)no,(h_') (,) \\r\\niu(g)bi(h)l\\u00e9(i)mus(i) De(i)o,(i') sa(h)lu(g)t\\u00e1(h)ri(i) no(iv_HG)stro.(h.) (;) \\r\\nPr\\u00e6(h)oc(g)cu(fe)p\\u00e9(f)mus(h) f\\u00e1(h)ci(g)em(h) e(i)ius(i_') (,) \\r\\nin(h) con(g)fes(h)si(i)\\u00f3(i/jkj)ne,(ji..) (;) \\r\\net(hg) in(hi~) psal(ij~)mis(i_') (,) \\r\\niu(i)bi(ih)l\\u00e9(hg)mus(i_j) e(h_i)i.(ivH_'G_hv_G_FEfe..) (::Z)\\r\\n",
|
|
1202
|
+
office: "ps",
|
|
1203
|
+
mode: "7",
|
|
1204
|
+
pages: [
|
|
1205
|
+
{ page: "160", sequence: 1, extent: 3 }
|
|
1206
|
+
],
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
id: "gregobase:10035",
|
|
1210
|
+
incipit: "Venite exsultemus VI*",
|
|
1211
|
+
gabc: "(c4)VE(f_h)n\\u00ed(j)te,(j) ex(j)sul(j)t\\u00e9(j)mus(hg) D\\u00f3(ixi)mi(h)no,(h'_) (,) iu(f)bi(gh)l\\u00e9(h)mus(h) De(h)o,(h) sa(h)lu(gh)t\\u00e1(ixih)ri(gf) no(gg)stro.(f.) (;) Pr\\u00e6(fh)oc(j)cu(j)p\\u00e9(j)mus(j) f\\u00e1(j)ci(j)em(hg~) e(ixi)ius(h_') (,) in(h) con(gh)fes(ixih)si(gf)\\u00f3(gg)ne,(f.) (;) et(d) in(f) psal(fg~)mis(f_') (,) iu(f)bi(g)l\\u00e9(fe)mus(f) e(gh)i.(ixh_i/g/gf.) (::Z)\\r\\n\\r\\nQu\\u00f3(f_h)ni(j)am(j) De(j)us(j) ma(j)gnus(hg) D\\u00f3(ixi)mi(h)nus,(h'_) (,) et(f) rex(g_h) ma(h)gnus(h) su(h)per(gh) om(ixih)nes(gf) de(gg)os.(f.) (;) Qu\\u00f3(f_h)ni(j)am(j) non(j) re(j)p\\u00e9l(j)let(j) D\\u00f3(j)mi(j)nus(j) ple(j)bem(hg~) su(ixi)am,(h_') (,) qui(f)a(gh) in(h) ma(h)nu(h) e(h)ius(h) sunt(h) om(h)nes(gh) fi(ixih)nes(gf) ter(gg)r\\u00e6,(f.) (;) et(d) al(f)ti(f)t\\u00fa(f)di(f)nes(f) m\\u00f3n(fg~)ti(f)um(f'_) (,) i(g)pse(fe) c\\u00f3n(f)spi(gh)cit.(ixh_i/g/gf.) (::Z)\\r\\n\\r\\nQu\\u00f3(f_h)ni(j)am(j) i(j)ps\\u00ed(j)us(j) est(j) ma(j)re,(j_') et(j) i(j)pse(j) fe(j)cit(hg) il(ixi)lud,(h'_) (,) et(f) \\u00e1(g_h)ri(h)dam(h) fun(h)da(h)v\\u00e9(h)runt(gh) ma(ixih)nus(gf) e(gg)ius.(f.) (;) Ve(f_h)n\\u00ed(j)te,(j) a(j)do(j)r\\u00e9(j)mus,(j_') et(j) pro(j)ci(j)d\\u00e1(j)mus(j) an(j)te(hg) De(ixi)um,(h_') (,) plo(f)r\\u00e9(gh)mus(h) co(h)ram(h) D\\u00f3(h)mi(h)no,(h) qui(gh) fe(ixi)cit(h) nos,(h'_) (,) qui(f)a(gh) i(h)pse(h) est(h) D\\u00f3(h)mi(h)nus,(gh) De(ixih)us(gf) no(gg)ster,(f.) (;) nos(d) au(f)tem(f) p\\u00f3(f)pu(f)lus(f) e(fg~)ius,(f'_) (,) et(f) o(fg)ves(f) p\\u00e1(g)scu(fe)\\u00e6(f) e(gh)ius.(ixh_i/g/gf.) (::Z)\\r\\n\\r\\nH\\u00f3(f_h)di(j)e,(j) si(j) vo(j)cem(j) e(j)ius(j) au(j)di(hg)\\u00e9(ixi)ri(h)tis:(h'_) \\r\\n(,)\\u00ab No(f)l\\u00ed(gh)te(h) ob(h)du(h)r\\u00e1(h)re(gh) cor(ixih)da(gf) ve(gg)stra,(f.) (;) si(f_h)cut(j) in(j) e(j)xa(j)cer(j)ba(j)ti(j)\\u00f3(j)ne(j_') se(j)c\\u00fan(j)dum(hg~) di(ixi)em(h_') (,) ten(f)ta(gh)ti(h)\\u00f3(h)nis(h) in(h) de(gh)s\\u00e9r(ixi)to:(h'_) (,) u(f)bi(gh) ten(h)ta(h)v\\u00e9(h)runt(h) me(gh) pa(ixih)tres(gf) ve(gg)stri:(f.) (;) pro(d)ba(f)v\\u00e9(f)runt(f) et(f) vi(f)d\\u00e9(fg)runt(f'_) (,) \\u00f3(g)pe(fe)ra(f) me(gh)a.(ixh_i/g/gf.) (::Z)\\r\\n\\r\\n\\r\\nQua(f_h)dra(j)g\\u00edn(j)ta(j) an(j)nis(j) pr\\u00f3(j)xi(j)mus(hg) fu(ixi)i(h'_) (,) ge(h)ne(h)ra(g)ti(h)\\u00f3(ixi)ni(h) hu(g)ic,(h_') (,) et(g) di(ixi)xi:(h') (`) Sem(h)per(h) hi(gh) er(ixih)rant(gf~) cor(gg)de.(f.) (;) I(f_h)psi(j) ve(j)ro(j) non(j) co(j)gno(j)v\\u00e9(j)runt(j) vi(j)as(hg) me(ixi)as:(h_') (,) qui(f)bus(gh) iu(h)r\\u00e1(h)vi(h) in(gh) i(ixih)ra(gf) me(gg)a:(f.) (;) Si(d) in(f)tro(f)\\u00ed(fg)bunt(f'_) (,) in(f) r\\u00e9(g)qui(fe)em(f) me(gh)am. \\u00bb(ixh_i/g/gf.) (::Z)\\r\\n\\r\\nGl\\u00f3(f_h)ri(j)a(j) Pa(j)tri,(j) et(hg~) F\\u00ed(ixi)li(h)o,(h'_) (,) et(h) Spi(h)r\\u00ed(gh)tu(ixih)i(gf) San(gg)cto.(f.) (;) Si(f_h)cut(j) e(j)rat(j) in(j) prin(hg)c\\u00ed(ixi)pi(h)o,(h.) (,) et(gh) nunc,(ixih) et(gf) sem(gg)per,(f.) (;) et(d) in(f) s<sp>'ae</sp>(fg)cu(f)la(f') (,) s\\u00e6(f)cu(g)l\\u00f3(fe)rum.(f) A(gh)men.(ixh_i/g/gf.) (::)",
|
|
1212
|
+
office: "ps",
|
|
1213
|
+
mode: "6",
|
|
1214
|
+
pages: [
|
|
1215
|
+
{ page: "154", sequence: 2, extent: 4 }
|
|
1216
|
+
],
|
|
1217
|
+
},
|
|
1218
|
+
{
|
|
1219
|
+
id: "gregobase:10171",
|
|
1220
|
+
incipit: "Cor Iesu amore nostri",
|
|
1221
|
+
gabc: "(c4)COR(dfd) Ie(e)su(e/fgf/eeo1f/ded.) (,) a(dfe)m\\u00f3(fg)re(g) no(gh)stri(g') vul(g)ne(f)r\\u00e1(ghGF)tum,(efEDd) (;)\\r\\nve(c)n\\u00ed(c!dwefv)te,(ed__) a(-dfe)do(fg)r\\u00e9(g_hGFg)mus.(fe..) (::)",
|
|
1222
|
+
office: "an",
|
|
1223
|
+
mode: "4",
|
|
1224
|
+
pages: [
|
|
1225
|
+
{ page: "118", sequence: 1, extent: 1 }
|
|
1226
|
+
],
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
id: "gregobase:10222",
|
|
1230
|
+
incipit: "Matthia Sacratissimo",
|
|
1231
|
+
gabc: "(c4)Mat(e)th\\u00ed(e)a,(ed) sa(g)cra(gh)t\\u00eds(j)si(j)mo(ih__) (,)\\r\\nA(i)pos(j)to(i)l\\u00f3(h)rum(g) c\\u0153(hiwji)tu(hg)i(g.) (;)\\r\\nquam(gh) mi(j)ro(i) tu(h) con(g)s\\u00ed(i)li(g)o(hg__) (,)\\r\\na(hi)scr\\u00edp(g)tus(h) es(gf) di(d)v\\u00ed(fgwhg)ni(fe)tus!(e.) (::)",
|
|
1232
|
+
office: "hy",
|
|
1233
|
+
mode: "3",
|
|
1234
|
+
pages: [
|
|
1235
|
+
{ page: "373", sequence: 0, extent: 1 }
|
|
1236
|
+
],
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
id: "gregobase:10248",
|
|
1240
|
+
incipit: "Venite exsultemus V",
|
|
1241
|
+
gabc: "(c3)VE(h)n\\u00ed(h)te,(hi/hssfgf) ex(f)sul(g)t\\u00e9(h)mus(h) D\\u00f3(hi)mi(h)no,(h'_) (,) iu(f)bi(g)l\\u00e9(h)mus(h) De(h)o,(h') sa(g)lu(f)t\\u00e1(h)ri(i) no(h)stro.(i.) (;) Pr\\u00e6(h)oc(h)cu(gh)p\\u00e9(f)mus(f) f\\u00e1(f)ci(d)em(f) e(h)ius(h') in(g) con(f)fes(h)si(i)\\u00f3(h_i)ne,(ih..) (;) et(d) in(f) psal(hi~)mis(h_') (,) iu(h)bi(h/hg)l\\u00e9(gf)mus(ho1i) e(hg/hih)i.(f!gwh_GEdefv/fe.) (::Z)\\r\\n\\r\\nQu\\u00f3(h)ni(h)am(hi/hssfgf) De(f)us(g) ma(h)gnus(h) D\\u00f3(hi)mi(h)nus,(h'_) (,) et(f) rex(gh) ma(h)gnus(h') su(g)per(f) om(h)nes(i) de(h)os.(i.) (;) Qu\\u00f3(h)ni(gh)am(f) non(d) re(f)p\\u00e9l(h)let(h) D\\u00f3(h)mi(h)nus(h) ple(i)bem(h) su(i)am,(h'_) (,) qui(f)a(g) in(h) ma(h)nu(h) e(h)ius(h') sunt(h) om(g)nes(f) fi(h)nes(i) ter(h_i)r\\u00e6,(ih..) (;) et(d) al(f)ti(h)t\\u00fa(h)di(h)nes(h) m\\u00f3n(hi~)ti(h)um(h'_) (,) i(h/hg)pse(gf) c\\u00f3n(ho1i)spi(hg/hih)cit.(f!gwh_GEdefv/fe.) (::Z)\\r\\n\\r\\nQu\\u00f3(h)ni(h)am(hi/hssfgf) i(f)ps\\u00ed(g)us(h) est(h) ma(h)re,(h') et(h) i(h)pse(h) fe(i)cit(h) il(i)lud,(h'_) (,) et(f) \\u00e1(g)ri(h)dam(h) fun(h)da(h)v\\u00e9(g)runt(f) ma(h)nus(i) e(h)ius.(i.) (;) Ve(h)n\\u00ed(gh)te,(f) a(d)do(f)r\\u00e9(h)mus,(h'_) et(h) pro(h)ci(h)d\\u00e1(h)mus(h) an(i)te(h) De(i)um,(h'_) (,) plo(f)r\\u00e9(g)mus(h) co(h)ram(h) D\\u00f3(h)mi(h)no,(h) qui(i) fe(i)cit(h) nos,(h') (,) qui(f)a(g) i(h)pse(h) est(h') D\\u00f3(h)mi(g)nus,(f) De(h)us(i) no(h_i)ster,(ih..) (;) nos(d) au(f)tem(h) p\\u00f3(h)pu(h)lus(h) e(hi~)ius,(h'_) (,) et(h) o(hi)ves(h) p\\u00e1(h/hg)scu(gf)\\u00e6(ho1i) e(hg/hih)ius.(f!gwh_GEdefv/fe.) (::Z)\\r\\n\\r\\nH\\u00f3(h)di(h)e,(hi/hssfgf) si(f) vo(g)cem(h) e(h)ius(h) au(i)di(h)\\u00e9(i)ri(h)tis:(h'_) (,) \\r\\n\\u00ab No(f)l\\u00ed(g)te(h) ob(h)du(h)r\\u00e1(g)re(f) cor(h)da(i) ve(h)stra,(i.) (;) si(h)cut(gh) in(f) e(f)xa(d)cer(f)ba(h)ti(h)\\u00f3(h)ne(h') se(h)c\\u00fan(i)dum(h) di(i)em(h'_) (,) ten(f)ta(g)ti(h)\\u00f3(h)nis(h) in(i) de(h)s\\u00e9r(i)to:(h'_) (,) u(f)bi(g) ten(h)ta(h)v\\u00e9(h)runt(g) me(f) pa(h)tres(i) ve(h_i)stri:(ih..) (;) pro(d)ba(f)v\\u00e9(h)runt(h) et(h) vi(h)d\\u00e9(hi)runt(h'_) (,) \\u00f3(h/hg)pe(gf)ra(ho1i) me(hg/hih)a.(f!gwh_GEdefv/fe.) (::Z)\\r\\n\\r\\nQua(h)dra(h)g\\u00edn(h)ta(hi/hssfgf) an(g)nis(h') pr\\u00f3(h)xi(h)mus(h) fu(hi)i(h'_) (,) ge(f)ne(g)ra(h)ti(i)\\u00f3(i)ni(h) hu(h)ic,(i'_) (,) et(h) di(h)xi:(h') (`) Sem(h)per(g) hi(f) er(h)rant(i) cor(h)de.(i.) (;) I(h)psi(gh) ve(f)ro(f) non(f) co(d)gno(f)v\\u00e9(h)runt(h) vi(i)as(h) me(i)as:(h'_) (,) qui(f)bus(g) iu(h)r\\u00e1(h)vi(g) in(f) i(h)ra(i) me(h_i)a:(ih..) (;) Si(d) in(f)tro(h)\\u00ed(hi)bunt(h'_) (,) in(h) r\\u00e9(h/hg)qui(gf)em(ho1i) me(hg/hih)am. \\u00bb(f!gwh_GEdefv/fe.) (::Z)\\r\\n\\r\\nGl\\u00f3(h)ri(h)a(hi/hssfgf) Pa(f)tri,(g) et(h) F\\u00ed(hi)li(h)o,(h'_) (,) et(h) Spi(g)r\\u00ed(f)tu(h)i(i) San(h)cto.(i.) (;) Si(h)cut(gh) e(f)rat(f) in(d) prin(f)c\\u00ed(h)pi(h)o,(h'_) (,) et(f) nunc,(h) et(i) sem(h_i)per,(ih..) (;) et(d) in(f) s\\u01fd(hi)cu(h)la(h'_) s\\u00e6(h)cu(h/hg)l\\u00f3(gf)rum.(ho1i) A(hg/hih)men.(f!gwh_GEdefv/fe.) (::)",
|
|
1242
|
+
office: "ps",
|
|
1243
|
+
mode: "5",
|
|
1244
|
+
pages: [
|
|
1245
|
+
{ page: "146", sequence: 1, extent: 4 }
|
|
1246
|
+
],
|
|
1247
|
+
},
|
|
1248
|
+
{
|
|
1249
|
+
id: "gregobase:10293",
|
|
1250
|
+
incipit: "Laetare caelum desuper",
|
|
1251
|
+
gabc: "(c4)L\\u00c6(gh)t\\u00e1(e)re,(fg) c\\u00e6(g)lum,(ghg) d\\u00e9(e)su(fg)per,(g) (,)\\r\\nap(g)pl\\u00e1u(h)de,(j) tel(ji)lus(h) ac(g) ma(gh)re:(h) (;)\\r\\nChri(hj)stus(I) re(h)s\\u00far(h!iwj)gens(hg) post(f) cru(gh)cem(h) (,)\\r\\nvi(g)tam(f) de(gh)dit(h) mor(g)t\\u00e1(e)li(fg)bus.(g) \\r\\n\\r\\n\\r\\n",
|
|
1252
|
+
office: "hy",
|
|
1253
|
+
mode: "8",
|
|
1254
|
+
pages: [
|
|
1255
|
+
{ page: "81", sequence: 0, extent: 1 }
|
|
1256
|
+
],
|
|
1257
|
+
},
|
|
1258
|
+
{
|
|
1259
|
+
id: "gregobase:10360",
|
|
1260
|
+
incipit: "Comedetis carnes",
|
|
1261
|
+
gabc: "(f3)CO(f/fef/ghGFghf/f)me(ef)d\\u00e9(hvGFgvEC.gfh)tis(gvFEf.) <v>\\\\greheightstar</v>(,)\\r\\ncar(hf/hfg/hiHGh)nes,(gvFEf/ghg.) (;)\\r\\net(gvFEf) sa(ced)tu(ef)ra(f!gwhf/gef/egivHGivHGh)b\\u00ed(f)mi(gh)ni(g) p\\u00e1(fe)ni(f!gwh)bus:(gf..) (:)\\r\\n<v>\\\\greheightstar</v>()\\r\\nI(gi)ste(g) est(hvGFf) pa(e)nis(fg) quem(gf/hhg) de(gvFE)dit(h) vo(gf)bis(f_) (,)\\r\\nD\\u00f3(f)mi(gh!ivHGh)nus(fg) ad(f)\\r\\nve(fe)sc\\u00e9n(f_hGE.f!gwhGF.gighGF.,hjIHijg./hifhvGEf.,cffvEDef/ehGFEC.efe~)dum.(f_hGEf.) (::)\\r\\n\\r\\n<sp>V/</sp>.\\r\\nNon(f) Moy(e_f!gwhhi>)ses(h) de(ij)dit(i) vo(hi)bis(h) pa(hg)nem(hi>) de(gh) c\\u00e6(f!gwh_g_)lo,(gf..) (;)\\r\\nsed(fc) Pa(ef)ter(f) me(f)us(fe) dat(fgf) vo(ef)bis(f.) (,)\\r\\npa(hi)nem(f) de(ge) c\\u00e6(fg)lo(f.) ve(hjIF_hvGEC.efe)rum.(f_hGEf.) (::)\\r\\n\\r\\n<v>\\\\greheightstar</v>() I(gi)ste.(g) (::)\\r\\n",
|
|
1262
|
+
office: "re",
|
|
1263
|
+
mode: "2",
|
|
1264
|
+
pages: [
|
|
1265
|
+
{ page: "505", sequence: 1, extent: 2 }
|
|
1266
|
+
],
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
id: "gregobase:10363",
|
|
1270
|
+
incipit: "Panem vitae Christum Dominum",
|
|
1271
|
+
gabc: "(c3)PA(-ehg)nem(h) vi(ih__iwjij)t\\u00e6(ji..) (,) Chri(ijIH)stum(h) D\\u00f3(hg/hoi)mi(fe)num,(e_f_!gw_h_e_fveed.) (;) \\r\\nve(df)n\\u00ed(h_!iji___/h!ioj)te,(hhg) a(f)do(fiHG)r\\u00e9(efe___)mus.(e.) (::) \\r\\nPs. Ve(i)n\\u00ed(i/jki)te, p. 160(hhg) (::)\\r\\n",
|
|
1272
|
+
office: "an",
|
|
1273
|
+
mode: "7",
|
|
1274
|
+
pages: [
|
|
1275
|
+
{ page: "113", sequence: 1, extent: 1 }
|
|
1276
|
+
],
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
id: "gregobase:10383",
|
|
1280
|
+
incipit: "Auctor beate saeculi",
|
|
1281
|
+
gabc: "(c4)\\r\\nAU(dh)ctor(hg) be(h)\\u00e1(g)te(fe) s\\u01fd(g)cu(g)li,(h.) (,)\\r\\nChri(hj)ste,(ji) Re(gh)d\\u00e9m(hg)ptor(fe) \\u00f3m(g)ni(g)um,(h.) (;)\\r\\nlu(d)men(f) Pa(e)tris(ghg) de(fe) l\\u00fa(dc)mi(de)ne(e'_) (,)\\r\\nDe(g)\\u00fas(f!gh)que(hg) ve(fe)rus(c) de(ef) De(d.)o:(d.) (::)\\r\\n\\r\\n2. A(dh)mor(hg) co(h)\\u00e9(g)git(fe) te(g) tu(g)us(h.) (,)\\r\\nmor(hj)t\\u00e1(ji)le(gh) cor(hg)pus(fe) s\\u00fa(g)me(g)re,(h.) (;)\\r\\nut(d) no(f)vus(e) A(ghg)dam(fe) r\\u00e9d(dc)de(de)res(e'_) (,)\\r\\nquod(g) ve(f!gh)tus(hg) il(fe)l<i>e</i> {a}b(c)st\\u00fa(ef)le(d.)rat:(d.) (::)\\r\\n\\r\\n3. Il(dh)l<i>e</i> {a}(hg)mor,(h) al(g)mus(fe) \\u00e1r(g)ti(g)fex(h.) (,)\\r\\nter(hj)r\\u00e6(ji) ma(gh)r\\u00eds(hg)qu<i>e</i> {e}t(fe) s\\u00ed(g)de(g)rum,(h.) (;)\\r\\ner(d)r\\u00e1(f)ta(e) pa(ghg)trum(fe) m\\u00ed(dc)se(de)rans(e'_) (,)\\r\\net(g) no(f!gh)stra(hg) rum(fe)pens(c) v\\u00edn(ef)cu(d.)la.(d.) (::)\\r\\n\\r\\n4. Non(dh) cor(hg)de(h) di(g)sc\\u00e9(fe)dat(g) tu(g)o(h.) (,)\\r\\nvis(hj) il(ji)l<i>a</i> {a}(gh)m\\u00f3(hg)ris(fe) \\u00edn(g)cli(g)ti:(h.) (;)\\r\\nhoc(d) fon(f)te(e) gen(ghg)tes(fe) h\\u00e1u(dc)ri(de)ant(e'_) (,)\\r\\nre(g)mis(f!gh)si(hg)\\u00f3(fe)nis(c) gr\\u00e1(ef)ti(d.)am.(d.) (::)\\r\\n\\r\\n5. Ad(dh) hoc(hg) a(h)c\\u00e9r(g)bam(fe) l\\u00e1n(g)ce(g)am(h.) (,)\\r\\npas(hj)s\\u00fam(ji)qu<i>e</i> {a}d(gh) hoc(hg) est(fe) v\\u00fal(g)ne(g)ra,(h.) (;)\\r\\nut(d) nos(f) la(e)v\\u00e1(ghg)ret(fe) s\\u00f3r(dc)di(de)bus(e'_) (,)\\r\\nun(g)da(f!gh) flu(hg)\\u00e9n(fe)t<i>e</i>, et(c) s\\u00e1n(ef)gui(d.)ne.(d.) (::)\\r\\n\\r\\n6. Ie(dh)su,(hg) ti(h)bi(g) sit(fe) gl\\u00f3(g)ri(g)a,(h.) (,)\\r\\nqui(hj) cor(ji)de(gh) fun(hg)dis(fe) gr\\u00e1(g)ti(g)am,(h.) (;)\\r\\ncum(d) Pa(f)tr<i>e</i>, {e}t(e) al(ghg)mo(fe) Sp\\u00ed(dc)ri(de)tu(e'_) (,)\\r\\nin(g) sem(f!gh)pi(hg)t\\u00e9r(fe)na(c) s\\u01fd(ef)cu(d.)la.(d.) (::)\\r\\n\\r\\nA(ded)men.(cd..) (::)\\r\\n",
|
|
1282
|
+
office: "hy",
|
|
1283
|
+
mode: "1",
|
|
1284
|
+
pages: [
|
|
1285
|
+
{ page: "117", sequence: 1, extent: 2 }
|
|
1286
|
+
],
|
|
1287
|
+
},
|
|
1288
|
+
{
|
|
1289
|
+
id: "gregobase:10397",
|
|
1290
|
+
incipit: "Venite exsultemus III",
|
|
1291
|
+
gabc: "(c3)VE(g/goh)n\\u00ed(fg)te,(gvFE) ex(f)sul(g)t\\u00e9(h)mus(g) D\\u00f3(fg)mi(f)no,(f_') (,) iu(f)bi(f)l\\u00e9(f)mus(g) De(g)o,(f') sa(f)lu(e)t\\u00e1(f)ri(h) no(g_h)stro.(g.) (;) Pr\\u00e6(g)oc(g)cu(h)p\\u00e9(ij)mus(i') f\\u00e1(i)ci(h)em(g) e(hi)ius(g_') (,) in(g) con(fe~)fes(f)si(h)\\u00f3(g_h)ne,(hg..) (;) et(fe) in(fg~) psal(gh~)mis(g_') (,) iu(g)bi(hghf/ghg)l\\u00e9(fe)mus(e_f!gwh) e(hf__!gwhG__'FE)i.(e/fge/cdc.) (::Z)\\r\\n\\r\\nQu\\u00f3(g/goh)ni(fg)am(gvFE~) De(f)us(g) ma(h)gnus(g) D\\u00f3(fg)mi(f)nus,(f_') (,) et(f) rex(f_g) ma(g)gnus(f') su(f)per(e) om(f)nes(h) de(g_h)os.(g.) (;) Qu\\u00f3(g)ni(g)am(g) non(g) re(g)p\\u00e9l(g)let(h) D\\u00f3(ij)mi(i)nus(i') ple(i)bem(g) su(hi)am,(g_') (,) qui(g)a(g) in(g) ma(h)nu(f) e(g)ius(f_') (,) sunt(g) om(f)nes(e) fi(f)nes(h) ter(g_h)r\\u00e6,(hg..) (;) et(fe) al(fg~)ti(g)t\\u00fa(g)di(g)nes(g) m\\u00f3n(gh~)ti(g)um(g_') (,) i(hghf/ghg)pse(fe) c\\u00f3n(e_f!gwh)spi(hf__!gwh_G_'FE)cit.(e/fge/cdc.) (::Z)\\r\\n\\r\\nQu\\u00f3(g/goh)ni(fg)am(gvFE~) i(f)ps\\u00ed(g)us(h) est(g) ma(fg)re,(f_') (,) et(f) i(f)pse(f) fe(f)cit(g) il(g)lud,(f_') (,) et(f) \\u00e1(fg)ri(f)dam(f') fun(f)da(g)v\\u00e9(f)runt(e) ma(f)nus(h) e(g_h)ius.(g.) (;) Ve(g)n\\u00ed(g)te,(g) a(g)do(h)r\\u00e9(ij)mus,(i_') (,) et(i) pro(i)ci(g)d\\u00e1(hi)mus(g') an(g)te(g) De(h)um,(g_',) plo(g)r\\u00e9(g)mus(g) co(g)ram(g) D\\u00f3(gh)mi(g)no,(g') qui(f) fe(g)cit(f) nos,(f_') (,) qui(f)a(f) i(fg)pse(f) est(f') D\\u00f3(g)mi(f)nus,(e) De(f)us(h) no(g_h)ster,(hg..) (;) nos(fe) au(fg~)tem(g) p\\u00f3(g)pu(g)lus(g) e(gh~)ius,(g_',) et(g) o(gh)ves(g) p\\u00e1(hghf/ghg)scu(fe)\\u00e6(e_f!gwh) e(hf__!gwh_G_'FE)ius.(e/fge/cdc.) (::Z)\\r\\n\\r\\nH\\u00f3(g/goh)di(fg)e,(gvFE) si(f) vo(g)cem(g) e(h)ius(g') au(g)di(f)\\u00e9(fg)ri(f)tis:(f_') (,)\\u00ab No(f)l\\u00ed(fg)te(f') ob(f)du(g)r\\u00e1(f)re(e) cor(f)da(h) ve(g_h)stra,(g.) (;) si(g)cut(g) in(g) e(g)xa(g)cer(g)ba(g)ti(h)\\u00f3(ij)ne(i_') (,) se(i)c\\u00fan(i)dum(g) di(hi)em(g_') (,) ten(g)ta(g)ti(g)\\u00f3(h)nis(g') in(g) de(f)s\\u00e9r(fg)to:(f_') (,) u(fg)bi(f') ten(f)ta(f)v\\u00e9(g)runt(f) me(e) pa(f)tres(h) ve(g_h)stri:(hg..) (;) pro(fe)ba(fg)v\\u00e9(g)runt(g) et(g) vi(g)d\\u00e9(gh)runt(g_') (,) \\u00f3(hghf/ghg)pe(fe)ra(e_f!gwh) me(hf__!gwh_G'_FE)a.(e/fge/cdc.) (::Z)\\r\\n\\r\\nQua(g)dra(g)g\\u00edn(g/goh)ta(ffe) an(f)nis(g') pr\\u00f3(h)xi(g)mus(f) fu(fg)i(f'_) (,) ge(f)ne(f)ra(f)ti(g)\\u00f3(g)ni(f) hu(f)ic,(g_') (,) et(f) di(f)xi:(f') (`) Sem(g)per(f) hi(e) er(f)rant(h) cor(g_h)de.(g.) (;) I(g)psi(h) ve(ij)ro(i') non(i) co(i)gno(g)v\\u00e9(hi)runt(g') vi(g)as(g) me(h)as:(g_') (,) qui(g)bus(f) iu(f)r\\u00e1(g)vi(f') in(e) i(f)ra(h) me(g_h)a:(hg..) (;) Si(fe) in(fg~)tro(g)\\u00ed(gh)bunt(g_') (,) in(g) r\\u00e9(hghf/ghg)qui(fe)em(e_f!gwh) me(hf__!gwh_G_'FE)am. \\u00bb(e/fge/cdc.) (::Z)\\r\\n\\r\\nGl\\u00f3(g/goh)ri(fg)a(gvFE) Pa(fg)tri,(h) et(g) F\\u00ed(fg)li(f)o,(f_') (,) et(g) Spi(f)r\\u00ed(e)tu(f)i(h) San(g_h)cto.(g.) (;) Si(g)cut(h) e(ij)rat(i') in(i) prin(g)c\\u00ed(hi)pi(h)o,(h_g_) (,) et(fe~) nunc,(f) et(h) sem(g_h)per,(hg..) (;) et(fe) in(fg~) s\\u01fd(gh)cu(g)la(g_') s\\u00e6(g)cu(hghf/ghg)l\\u00f3(fe)rum.(e_f!gwh) A(hf__!gwh_G'_FE)men.(e/fge/cdc.) (::)\\r\\n",
|
|
1292
|
+
office: "ps",
|
|
1293
|
+
mode: "3",
|
|
1294
|
+
pages: [
|
|
1295
|
+
{ page: "135", sequence: 1, extent: 4 }
|
|
1296
|
+
],
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
id: "gregobase:10398",
|
|
1300
|
+
incipit: "Regem Apostolorum",
|
|
1301
|
+
gabc: "(c3)RE(e_0!f>_0)gem(e) A(e)po(e)sto(e)l\\u00f3(eg)rum(h) D\\u00f3(ggf)mi(hf__!gwhG__FE)num,(e/fge/ccod.) (;) ve(b/c@eof)n\\u00ed(f)te,(hf__!gwhG__FE.) a(eec)do(d_e)r\\u00e9(ec__doe)mus.(dc..) (::) Ve(g/goh)n\\u00ed(fg)te. <i>p.135.</i>(gvFE) (::)",
|
|
1302
|
+
office: "an",
|
|
1303
|
+
mode: "3",
|
|
1304
|
+
pages: [
|
|
1305
|
+
{ page: "266", sequence: 1, extent: 1 }
|
|
1306
|
+
],
|
|
1307
|
+
},
|
|
1308
|
+
{
|
|
1309
|
+
id: "gregobase:10407",
|
|
1310
|
+
incipit: "O Roma felix",
|
|
1311
|
+
gabc: "(c4)\\r\\nO(f) Ro(e)ma(d) fe(c!de)lix,(e'_) (,)\\r\\nque(e) tan(f)t\\u00f3(g)rum(fe) pr\\u00edn(d)ci(cd)pum(d.) (;)\\r\\nes(f) pur(gh)pu(h)r\\u00e1(gh)ta(dc__) (,)\\r\\npre(f)ti(gh)\\u00f3(g)so(fe) s\\u00e1n(d)gui(e)ne!(e.) (:)\\r\\nEx(g)c\\u00e9l(h)lis(j) om(j)nem(jh__) (,)\\r\\nmun(h)di(hi) pul(g)chri(gf)t\\u00fa(e)di(fg)nem(g.) (;)\\r\\nnon(g) lau(hi)de(h) tu(gh)a,(h'_) (;)\\r\\nsed(h) san(hi)ct\\u00f3(g)rum(ge) m\\u00e9(f)ri(ed)tis,(de..) (;)\\r\\nquos(c) cru(d)en(f)t\\u00e1(ef)tis(d.) (,)\\r\\niu(e)gu(f)l\\u00e1(gh)sti(g) gl\\u00e1(fe)di(de)is.(e.) 2.(::)\\r\\nVos(f) er(e)go(d) mo(c!de)do,(e'_) (,)\\r\\nglo(e)ri(f)\\u00f3(g)si(fe) m\\u00e1r(d)ty(cd)res,(d.) (;)\\r\\nPe(f)tre(gh) be(h)\\u00e1(gh)te,(dc__) (,)\\r\\nPau(f)le,(gh) mun(g)di(fe) l\\u00ed(d)li(e)um,(e.) (:)\\r\\nc\\u00e6(g)l\\u00e9(h)stis(j) au(j)l\\u00e6(jh__) (,)\\r\\ntri(h)um(hi)ph\\u00e1(g)les(gf) m\\u00ed(e)li(fg)tes,(g.) (;)\\r\\npr\\u00e9(g)ci(hi)bus(h) al(gh)mis(h'_) (;)\\r\\nve(h)stris(hi) nos(g) ab(ge) \\u00f3m(f)ni(ed)bus(de..) (;)\\r\\nmu(c)n\\u00ed(d)te(f) ma(ef)lis,(d.) (,)\\r\\nfer(e)te(f) su(gh)per(g) \\u01fd(fe)the(de)ra.(e.) 3.(::)\\r\\nGl\\u00f3(f)ri(e)a(d) Pa(c!de)tri(e'_) (,)\\r\\nper(e) im(f)m\\u00e9n(g)sa(fe) s\\u01fd(d)cu(cd)la,(d.) (;)\\r\\nsit(f) ti(gh)bi,(h) Na(gh)te,(dc__) (,)\\r\\nde(f)cus(gh) et(g) im(fe)p\\u00e9(d)ri(e)um,(e.) (:)\\r\\nho(g)nor,(h) po(j)t\\u00e9(j)stas(jh__) (,)\\r\\nSan(h)ct\\u00f3(hi)que(g) Spi(gf)r\\u00ed(e)tu(fg)i;(g.) (;)\\r\\nsit(g) Tri(hi)ni(h)t\\u00e1(gh)ti(h'_) (;)\\r\\nsa(h)lus(hi) in(g)di(ge)v\\u00ed(f)du(ed)a(de..) (;)\\r\\nper(c) in(d)fi(f)n\\u00ed(ef)ta(d.) (,)\\r\\ns\\u00e6(e)cu(f)l\\u00f3(gh)rum(g) s\\u01fd(fe)cu(de)la.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
1312
|
+
office: "hy",
|
|
1313
|
+
mode: "4",
|
|
1314
|
+
pages: [
|
|
1315
|
+
{ page: "392", sequence: 1, extent: 2 }
|
|
1316
|
+
],
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
id: "gregobase:10412",
|
|
1320
|
+
incipit: "Qui luce splendes",
|
|
1321
|
+
gabc: "(c4)Qui(f) lu(f)ce(f) splen(fe)des(dc) \\u00f3r(de)di(e)nis(e'_) (,)\\r\\na(g)pos(gh)to(hg)l\\u00f3(hih)rum(gf) m\\u00e1(g)xi(gf)ma,(e.) (;)\\r\\nTho(f)ma,(e) be(fg)n\\u00ed(gf)gnus(dc) \\u00e1c(de)ci(dc)pe(c'_) (,)\\r\\nlau(g)des(g) ti(f)bi(g) quas(ghg) p\\u00e1n(fe)gi(de)mus.(e.) 2.(::)",
|
|
1322
|
+
office: "hy",
|
|
1323
|
+
mode: "4",
|
|
1324
|
+
pages: [
|
|
1325
|
+
{ page: "394", sequence: 0, extent: 1 }
|
|
1326
|
+
],
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
id: "gregobase:10444",
|
|
1330
|
+
incipit: "Christe lux vera",
|
|
1331
|
+
gabc: "(c4)\\r\\nCHri(d_)ste,(c) lux(d) ve(fg)ra,(f'_) (,)\\r\\nb\\u00f3(g)ni(h)tas(g) et(f) vi(g.)ta,(h.) (;)\\r\\ng\\u00e1u(gh)di(i)um(h) mun(gf)di,(e'_) (,)\\r\\np\\u00ed(d)e(f)tas(e) im(f)m\\u00e9n(d.)sa,(c.) (:)\\r\\nqui(d_) nos(c) a(d) mor(fg)te(f'_) (,)\\r\\nv\\u00ed(g)vi(h)do(g) sal(f)v\\u00e1(e.)sti(d.) (,)\\r\\ns\\u00e1n(f_)gui(e)ne(f) tu(dc)o.(d.) (::)",
|
|
1332
|
+
office: "hy",
|
|
1333
|
+
mode: "1",
|
|
1334
|
+
pages: [
|
|
1335
|
+
{ page: "229", sequence: 1, extent: 2 }
|
|
1336
|
+
],
|
|
1337
|
+
},
|
|
1338
|
+
{
|
|
1339
|
+
id: "gregobase:10445",
|
|
1340
|
+
incipit: "Ad preces nostras",
|
|
1341
|
+
gabc: "(c4)\\r\\nAD(d_) pre(c)ces(d) no(fg)stras(f'_) (,)\\r\\nde(g)i(h)t\\u00e1(g)tis(f) au(g.)res,(h.) (;)\\r\\nDe(gh)us,(i) in(h)cl\\u00ed(gf)na(e'_) (,)\\r\\npi(d)e(f)t\\u00e1(e)te(f) so(d.)la;(c.) (:)\\r\\ns\\u00fap(d_)pli(c)cum(d) vo(fg)ta(f'_) (,)\\r\\ns\\u00fa(g)sci(h)pe,(g) pre(f)c\\u00e1(e.)mur(d.) (,)\\r\\nf\\u00e1(f_)mu(e)li(f) tu(dc)i.(d.) (::)",
|
|
1342
|
+
office: "hy",
|
|
1343
|
+
mode: "1",
|
|
1344
|
+
pages: [
|
|
1345
|
+
{ page: "225", sequence: 1, extent: 2 }
|
|
1346
|
+
],
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
id: "gregobase:10447",
|
|
1350
|
+
incipit: "Amoris sensus erige",
|
|
1351
|
+
gabc: "(f3)\\r\\nA(f)m\\u00f3(e)ris(f) sen(h)sus(i) \\u00e9(h)ri(g)ge(f'_) (,)\\r\\nad(i) te,(i) lar(h)g\\u00ed(i)tor(j) v\\u00e9(h)ni(g)\\u00e6,(f.) (;)\\r\\nut(f) fi(f)as(g) cle(e)mens(c) c\\u00f3r(e)di(f)bus(f'_) (,)\\r\\npur(f)g\\u00e1(e)tis(f) in(h)de(i) s\\u00f3r(h)di(g)bus.(f.) (::)\\r\\n",
|
|
1352
|
+
office: "hy",
|
|
1353
|
+
mode: "2",
|
|
1354
|
+
pages: [
|
|
1355
|
+
{ page: "232", sequence: 2, extent: 2 }
|
|
1356
|
+
],
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
id: "gregobase:10449",
|
|
1360
|
+
incipit: "Adesto Christe cordibus",
|
|
1361
|
+
gabc: "(c4)\\r\\nAD(d)\\u00e9(e)sto,(f) Chri(g)ste,(eg) c\\u00f3r(f)di(e)bus,(f'_) (,)\\r\\ncel(d)sa(e) re(f)d\\u00e9m(g)ptis(eg) c\\u00e1(f)ri(e)tas;(ded.) (;)\\r\\nin(e)f\\u00fan(c)de(e) no(gh)stris(hi) f\\u00e9r(h)vi(g)dos(h'_) (,)\\r\\nfle(f)tus,(h) ro(h)g\\u00e1(g)mus,(ef) v\\u00f3(g)ci(f)bus.(e.) (::)\\r\\n",
|
|
1362
|
+
office: "hy",
|
|
1363
|
+
mode: "4",
|
|
1364
|
+
pages: [
|
|
1365
|
+
{ page: "204", sequence: 1, extent: 1 }
|
|
1366
|
+
],
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
id: "gregobase:10451",
|
|
1370
|
+
incipit: "Laudemus Deum nostrum",
|
|
1371
|
+
gabc: "(f3)LAu(ef~)d\\u00e9(f)mus(f/ghf/fe) De(f)um(hg~) no(h_iHG)strum,(g.) (;) in(i) fe(kxij)sti(j/kij)vi(hg/hi)t\\u00e1(hv_GF)te(f/ghf/gf/fe.) (,) pa(h)tris(gf) no(fi/ih)stri(gf) Be(gh)ne(f)d\\u00ed(ef)cti.(f.) (::)\\r\\nPs. Ve(f)n\\u00ed(e)te. p. 133(f) (::)",
|
|
1372
|
+
office: "an",
|
|
1373
|
+
mode: "2",
|
|
1374
|
+
pages: [
|
|
1375
|
+
{ page: "556", sequence: 1, extent: 1 }
|
|
1376
|
+
],
|
|
1377
|
+
},
|
|
1378
|
+
{
|
|
1379
|
+
id: "gregobase:10458",
|
|
1380
|
+
incipit: "Salve dies dierum",
|
|
1381
|
+
gabc: "(c4)\\r\\nSAl(g)ve(g) di(h)es,(g') di(h)\\u00e9(i)rum(g) gl\\u00f3(h)ri(f)a,(g.) (,)\\r\\ndi(h)es(j) fe(i)lix(g') Chri(h)sti(i) vi(g)ct\\u00f3(h)ri(i)a,(i.) (;)\\r\\ndi(j)es(k) di(jvIH)gna(g') iu(h)gi(f) l\\u00e6(g)t\\u00ed(f)ti(e)a,(d.) (,)\\r\\ndi(e)es(g) pri(h)ma.(g.) (::)\\r\\n",
|
|
1382
|
+
office: "hy",
|
|
1383
|
+
mode: "7",
|
|
1384
|
+
pages: [
|
|
1385
|
+
{ page: "210", sequence: 1, extent: 3 }
|
|
1386
|
+
],
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
id: "gregobase:10481",
|
|
1390
|
+
incipit: "Te nostra laetis",
|
|
1391
|
+
gabc: "(c4)\\r\\nTE(f) no(f)stra(f) l\\u00e6(fe)tis(dc) l\\u00e1u(de)di(e)bus,(e'_) (,)\\r\\nIa(g)c\\u00f3(gh)be,(hg) tol(hih)lunt(gf) c\\u00e1n(g)ti(gf)ca,(e.) (;)\\r\\nquem(f) Chri(e)stus(fg) ar(gf)t<i>e</i> {e}x(dc) r\\u00e9(de)ti(dc)um(c'_) (,)\\r\\nad(g) tan(g)ta(f) ve(g)xit(ghg) c\\u00fal(fe)mi(de)na.(e.) (::)",
|
|
1392
|
+
office: "hy",
|
|
1393
|
+
mode: "4",
|
|
1394
|
+
pages: [
|
|
1395
|
+
{ page: "400", sequence: 1, extent: 1 }
|
|
1396
|
+
],
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
id: "gregobase:10482",
|
|
1400
|
+
incipit: "O sempiternae curiae",
|
|
1401
|
+
gabc: "(c4)\\r\\nO(e) sem(e)pi(ed)t\\u00e9r(g)n\\u00e6(gh) c\\u00fa(j)ri(j)\\u00e6(ih__) (,)\\r\\nre(i)gis(j) su(i)p\\u00e9r(h)ni(g) pr\\u00edn(h!iwji)ci(hg)pes,(g.) (;)\\r\\nquos(gh) i(j)pse(i) Ie(h)sus(g) \\u00e9(i)do(g)cens(hg__) (,)\\r\\ndo(hi)n\\u00e1(g)vit(h) or(gf)b<i>i</i> {A}(d)p\\u00f3(f!gwhg)sto(fe)los.(e.) (::)\\r\\n",
|
|
1402
|
+
office: "hy",
|
|
1403
|
+
mode: "3",
|
|
1404
|
+
pages: [
|
|
1405
|
+
{ page: "267", sequence: 1, extent: 2 }
|
|
1406
|
+
],
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
id: "gregobase:10515",
|
|
1410
|
+
incipit: "Dies aetasque",
|
|
1411
|
+
gabc: "(c4)DI(d)es(e) \\u00e6(f)t\\u00e1s(g)que(eg) c\\u00e9(f)te(e)ris(f) (,)\\r\\no(d)ct\\u00e1(e)va(f) splen(g)det(eg) s\\u00e1n(f)cti(e)or(ded) (;)\\r\\nin(e) te(c) quam,(e) Ie(gh)su,(hi) c\\u00f3n(h)se(g)cras,(h) (,)\\r\\npri(f)m\\u00ed(h)ti(h)\\u00e6(g) sur(ef)g\\u00e9n(g)ti(f)um.(e) \\r\\n\\r\\n2.(::) Tu(d) ti(e)bi(f) no(g)stras(eg) \\u00e1(f)ni(e)mas(f) (,)\\r\\nnunc(d) pri(e)mo(f) con(g)re(eg)s\\u00fa(f)sci(e)ta;(ded) (;)\\r\\nti(e)bi(c) con(e)s\\u00far(gh)gant(hi) c\\u00f3r(h)po(g)ra(h) (,)\\r\\nse(f)c\\u00fan(h)da(h) mor(g)te(ef) l\\u00ed(g)be(f)ra.(e) \\r\\n\\r\\n3.(::) Ti(d)b\\u00ed(e)que(f) mox(g) in(eg) n\\u00fa(f)bi(e)bus,(f) (,)\\r\\nChri(d)ste,(e) fe(f)r\\u00e1(g)mur(eg) \\u00f3b(f)vi(e)am(ded) (;)\\r\\nte(e)cum(c) vi(e)ct\\u00fa(gh)ri(hi) p\\u00e9r(h)pe(g)tim:(h) (,)\\r\\ntu(f) vi(h)ta,(h) re(g)sur(ef)r\\u00e9(g)cti(f)o.(e) \\r\\n\\r\\n4.(::) Cu(d)ius(e) vi(f)d\\u00e9n(g)tes(eg) f\\u00e1(f)ci(e)em,(f) (,)\\r\\ncon(d)fi(e)gu(f)r\\u00e9(g)mur(eg) gl\\u00f3(f)ri(e)\\u00e6;(ded) (;)\\r\\nte(e) co(c)gno(e)sc\\u00e1(gh)mus(hi) si(h)cut(g) es,(h) (,)\\r\\nlux(f) ve(h)ra(h) et(g) su(ef)\\u00e1(g)vi(f)tas.(e) \\r\\n\\r\\n5.(::) Re(d)gnum,(e) cum(f) Pa(g)tri(eg) tr\\u00e1(f)di(e)tos,(f) (,)\\r\\nple(d)nos(e) sep(f)t\\u00e9(g)no(eg) chr\\u00eds(f)ma(e)te,(ded) (;)\\r\\nin(e) te(c)met(e) nos(gh) l\\u00e6(hi)t\\u00ed(h)fi(g)cas,(h) (,)\\r\\ncon(f)s\\u00fam(h)met(h) san(g)cta(ef) Tr\\u00ed(g)ni(f)tas.(e) (::)\\r\\nA(efe)men.(de) (::)\\r\\n",
|
|
1412
|
+
office: "hy",
|
|
1413
|
+
mode: "4",
|
|
1414
|
+
pages: [
|
|
1415
|
+
{ page: "183", sequence: 0, extent: 1 }
|
|
1416
|
+
],
|
|
1417
|
+
},
|
|
1418
|
+
{
|
|
1419
|
+
id: "gregobase:10535",
|
|
1420
|
+
incipit: "Caelestis formam gloriae",
|
|
1421
|
+
gabc: "(c4)\\r\\nC\\u00c6(h)l\\u00e9(hhg)stis(ed) for(g)mam(h) gl\\u00f3(hi)ri(hg)\\u00e6,(h'_) (,)\\r\\nquam(e) spes(eh) qu\\u00e6(g)rit(gf) Ec(d)cl\\u00e9(e!fg)si(fe)\\u00e6,(e.) (;)\\r\\nin(ed) mon(c)te(e) Chri(g)stus(h) \\u00edn(hi)di(hg)cat,(h'_) (,)\\r\\nqui(e) su(eh)pra(g) so(gf)lem(d) \\u00e9(e!fg)mi(fe)cat.(e.) (::)",
|
|
1422
|
+
office: "hy",
|
|
1423
|
+
mode: "4",
|
|
1424
|
+
pages: [
|
|
1425
|
+
{ page: "408", sequence: 2, extent: 1 }
|
|
1426
|
+
],
|
|
1427
|
+
},
|
|
1428
|
+
{
|
|
1429
|
+
id: "gregobase:10536",
|
|
1430
|
+
incipit: "Dulcis Iesu memoria",
|
|
1431
|
+
gabc: "(c4)\\r\\nDUl(h)cis(h) Ie(h)su(h) me(d)m\\u00f3(f)ri(e)a,(d'_) (,)\\r\\ndans(h) ve(h)ra(i) cor(g)di(h) g\\u00e1u(j)di(i)a,(h.) (;)\\r\\nsed(h) su(i)per(j) mel(k) et(j) \\u00f3m(h)ni(j)a(ivHG'_) (,)\\r\\ne(h)ius(h) dul(i)cis(g) pr\\u00e6(e)s\\u00e9n(g)ti(h)a.(h.) (::)",
|
|
1432
|
+
office: "hy",
|
|
1433
|
+
mode: "d",
|
|
1434
|
+
pages: [
|
|
1435
|
+
{ page: "409", sequence: 1, extent: 1 }
|
|
1436
|
+
],
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
id: "gregobase:10537",
|
|
1440
|
+
incipit: "O nata lux de lumine",
|
|
1441
|
+
gabc: "(c4)\\r\\nO(h) na(hg)ta(ed) lux(g) de(h) l\\u00fa(hi)mi(hg)ne,(h'_) (,)\\r\\nIe(e)su,(eh) re(g)d\\u00e9m(gf)ptor(d) s\\u01fd(e!fg)cu(fe)li(e.) (;)\\r\\ndi(ed)gn\\u00e1(c)re(e) cle(g)mens(h) s\\u00fap(hi)pli(hg)cum(h'_) (,)\\r\\nlau(e)des(eh) pre(g)c\\u00e9s(gf)que(d) s\\u00fa(e!fg)me(fe)re.(e.) (::)",
|
|
1442
|
+
office: "hy",
|
|
1443
|
+
mode: "4",
|
|
1444
|
+
pages: [
|
|
1445
|
+
{ page: "409", sequence: 2, extent: 2 }
|
|
1446
|
+
],
|
|
1447
|
+
},
|
|
1448
|
+
{
|
|
1449
|
+
id: "gregobase:10556",
|
|
1450
|
+
incipit: "In martyris Laurentii",
|
|
1451
|
+
gabc: "(c4)\\r\\nIN(d) m\\u00e1r(e)ty(f)ris(g) Lau(gvFE)r\\u00e9n(d)ti(de)i(e'_) (,)\\r\\nnon(e) in(e)cru(ed)\\u00e9n(g)to(gh) pr\\u0153\\u0301(h)li(gh)o,(h.) (;)\\r\\nar(hi)m\\u00e1(j)ta(ivHG) pu(h)gn\\u00e1(g)vit(h) Fi(gvFE)des(e'_) (,)\\r\\npr\\u00f3(e)pr<i>i</i>i(g) cru(gh)\\u00f3(g)ris(g) pr\\u00f3(fe)di(de)ga.(e.) (::)",
|
|
1452
|
+
office: "hy",
|
|
1453
|
+
mode: "4",
|
|
1454
|
+
pages: [
|
|
1455
|
+
{ page: "411", sequence: 1, extent: 2 }
|
|
1456
|
+
],
|
|
1457
|
+
},
|
|
1458
|
+
{
|
|
1459
|
+
id: "gregobase:10557",
|
|
1460
|
+
incipit: "Martyris Christi",
|
|
1461
|
+
gabc: "(c4)MAr(ghg)ty(f)ris(g) Chri(gh)sti(gf__) (,) c\\u00f3(h)li(h)mus(h/iwjh) tri(ih)\\u00fam(g.)phum,(g.) (;)\\r\\ndo(j_)na(i) qui(k) mun(ji)di(i_j) (,) pe(h)ri(g)t\\u00fa(h)ra(i) sper(h.)nit,(g.) (:) \\r\\nfert(gh) o(i)pem(h) nu(ghg)dis,(e_f) (,) a(g)li(h)m\\u00e9n(g)ta,(f)\\r\\nnum(ef)mos(d.) (,) tra(ghg)dit(f) e(g)g\\u00e9(gh)nis.(g.) \\r\\n",
|
|
1462
|
+
office: "hy",
|
|
1463
|
+
mode: "8",
|
|
1464
|
+
pages: [
|
|
1465
|
+
{ page: "412", sequence: 1, extent: 2 }
|
|
1466
|
+
],
|
|
1467
|
+
},
|
|
1468
|
+
{
|
|
1469
|
+
id: "gregobase:10558",
|
|
1470
|
+
incipit: "Regem martyrum Dominum",
|
|
1471
|
+
gabc: "(c4)RE(c!dwe/fv)gem(e) m\\u00e1r(e)ty(e)rum(fg~) D\\u00f3(ge)mi(f)num,(deDC__) (;) ve(c_e!fw_g)n\\u00ed(g)te,(g_h) a(hv_GF)do(g)r\\u00e9(gv_FE)mus.(e.) (::) \\r\\n\\r\\nPs. Ve(dh)n\\u00ed(gh)te. <i>p.141</i>(gf/gf/fe) (::)",
|
|
1472
|
+
office: "an",
|
|
1473
|
+
mode: "4",
|
|
1474
|
+
pages: [
|
|
1475
|
+
{ page: "273", sequence: 1, extent: 1 }
|
|
1476
|
+
],
|
|
1477
|
+
},
|
|
1478
|
+
{
|
|
1479
|
+
id: "gregobase:10561",
|
|
1480
|
+
incipit: "O Redemptoris pietas",
|
|
1481
|
+
gabc: "(c4)\\r\\nO(ghg) Re(e)dem(f)pt\\u00f3(ed)ris(de) p\\u00ed(c)e(e)tas(g) co(h)l\\u00e9n(h.)da(g.) (;)\\r\\nqu\\u00e6(ghg) Pa(e)tr<i>i</i> e(f)x\\u00f3p(ed)tans(de) h\\u00f3(c)mi(e)nes(g) di(h)c\\u00e1(h.)ri,(g.) (:)\\r\\nSp\\u00ed(ji)ri(h)tus(j) mi(ih)ro(gf) va(h)ri(j)\\u00f3(i)que(h) du(g)cis(hih'_15) (,)\\r\\np\\u00e9(g_)cto(e)ra(f) nu(g.)tu!(g.) (::)",
|
|
1482
|
+
office: "hy",
|
|
1483
|
+
mode: "8",
|
|
1484
|
+
pages: [
|
|
1485
|
+
{ page: "325", sequence: 1, extent: 2 }
|
|
1486
|
+
],
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
id: "gregobase:10573",
|
|
1490
|
+
incipit: "Gaudium mundi",
|
|
1491
|
+
gabc: "(c4)\\r\\nGAu(d!ewfd)di(dc)um(cd) mun(d.)di,(d.) (,)\\r\\nno(f)va(e) stel(d)la(e) c\\u00e6(e.)li,(d.) (;)\\r\\npr\\u00f3(dh/iv)cre(h)ans(h) so(hg)lem,(g_h) p\\u00e1(f)ri(gh)ens(g) pa(fg)r\\u00e9n(gvFE)tem,(d.) (:)\\r\\nda(dg) ma(fe)num(dc) lap(dd)sis,(c.) (,)\\r\\nfer(fe) o(fg)pem(fe) ca(dc)d\\u00fa(de)cis,(ed__) (,)\\r\\nvir(d!ewfd)go(dc) Ma(cd)r\\u00ed(d.)a.(d.) (::)",
|
|
1492
|
+
office: "hy",
|
|
1493
|
+
mode: "1",
|
|
1494
|
+
pages: [
|
|
1495
|
+
{ page: "414", sequence: 1, extent: 2 }
|
|
1496
|
+
],
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
id: "gregobase:10574",
|
|
1500
|
+
incipit: "Aurora velut fulgida",
|
|
1501
|
+
gabc: "(c4)\\r\\nAU(g)r\\u00f3(g)ra(f) ve(e)lut(d) f\\u00fal(fhg)gi(fg)da,(g.) (,) \\r\\nad(h!iwji) c\\u00e6(h)li(g) me(h)at(ig) c\\u00fal(h)mi(g)na(f.) (;) \\r\\nut(f) sol(g) Ma(f)r\\u00ed(g)a(h) spl\\u00e9n(j)di(g)da,(hih'_15) (,) \\r\\ntam(h)quam(h) lu(g)na(e) pul(f)ch\\u00e9r(hg)ri(fg)ma.(g.) (::)",
|
|
1502
|
+
office: "hy",
|
|
1503
|
+
mode: "8",
|
|
1504
|
+
pages: [
|
|
1505
|
+
{ page: "416", sequence: 1, extent: 1 }
|
|
1506
|
+
],
|
|
1507
|
+
},
|
|
1508
|
+
{
|
|
1509
|
+
id: "gregobase:10575",
|
|
1510
|
+
incipit: "Solis o Virgo",
|
|
1511
|
+
gabc: "(c4)\\r\\nSO(d!ewfd)lis,(dc) o(cd) Vir(d.)go,(d.) (,)\\r\\nr\\u00e1(f)di(e)is(d) a(e)m\\u00ed(e.)cta,(d.) (;)\\r\\nbis(dh/iv) ca(h)put(h) se(hg)nis(g_h) re(f)di(gh)m\\u00ed(g)ta(fg) stel(gvFE)lis,(d.) (:)\\r\\nlu(dg)na(fe) cu(dc)<i>i</i> pr{\\u00e6}(dd)bet(c.) (,)\\r\\np\\u00e9(fe)di(fg)bus(fe) sca(dc)b\\u00e9l(de)lum,(ed__) (,)\\r\\n\\u00edn(d!ewfd)cli(dc)ta(cd) ful(d.)ges.(d.) (::)",
|
|
1512
|
+
office: "hy",
|
|
1513
|
+
mode: "1",
|
|
1514
|
+
pages: [
|
|
1515
|
+
{ page: "416", sequence: 2, extent: 3 }
|
|
1516
|
+
],
|
|
1517
|
+
},
|
|
1518
|
+
{
|
|
1519
|
+
id: "gregobase:10611",
|
|
1520
|
+
incipit: "O sancta mundi domina",
|
|
1521
|
+
gabc: "(c4)\\r\\nO(h) san(hhg)cta(ed) mun(g)di(hj) d\\u00f3(ji)mi(hi)na,(i'_) (,)\\r\\nre(k)g\\u00ed(kj)na(i) c\\u00e6(ji)li(h) \\u00edn(ih)cli(gh)ta,(h.) (;)\\r\\no(k) stel(k)la(i) ma(k)ris(klk) f\\u00fal(j)gi(i)da,(hiHG'_) (,)\\r\\nvir(i)go(jk) ma(i)ter(ji) mi(h)r\\u00ed(ih)fi(gh)ca.(h.) (::)",
|
|
1522
|
+
office: "hy",
|
|
1523
|
+
mode: "2",
|
|
1524
|
+
pages: [
|
|
1525
|
+
{ page: "428", sequence: 2, extent: 2 }
|
|
1526
|
+
],
|
|
1527
|
+
},
|
|
1528
|
+
{
|
|
1529
|
+
id: "gregobase:10612",
|
|
1530
|
+
incipit: "Beata Dei genetrix nitor",
|
|
1531
|
+
gabc: "(c4)BE(h)\\u00e1(hhg)ta(ed) De(g)i(hj) g\\u00e9(ji)ne(hi)trix,(i'_) (,)\\r\\nni(k)tor(kj) hu(i)m\\u00e1(ji)ni(h) g\\u00e9(ih)ne(gh)ris,(h.) (;)\\r\\nper(k) quam(k) de(i) ser(k)vis(klk) l\\u00ed(j)be(i)ri(hiHG'_) (,)\\r\\nlu(i)c\\u00eds(jk)que(i) su(ji)mus(h) f\\u00ed(ih)li(gh)i;(h.) (::)",
|
|
1532
|
+
office: "hy",
|
|
1533
|
+
mode: "2",
|
|
1534
|
+
pages: [
|
|
1535
|
+
{ page: "429", sequence: 1, extent: 1 }
|
|
1536
|
+
],
|
|
1537
|
+
},
|
|
1538
|
+
{
|
|
1539
|
+
id: "gregobase:10617",
|
|
1540
|
+
incipit: "Ave maris stella",
|
|
1541
|
+
gabc: "(c4)\\r\\nA(ffe)ve,(d) ma(c)ris(dfd) stel(e'_)la,(e_) (,) \\r\\nDe(g)i(g_h/iwji) ma(hg)ter(hih) al(g.)ma,(g.) (;) \\r\\nat(hi)que(h) sem(g)per(h) vir(fe)go,(d_e) (,) \\r\\nfe(ed)lix(cd) c\\u00e6(f)li(fgf) por(ede)ta.(e.) (::)",
|
|
1542
|
+
office: "hy",
|
|
1543
|
+
mode: "4",
|
|
1544
|
+
pages: [
|
|
1545
|
+
{ page: "259", sequence: 1, extent: 2 }
|
|
1546
|
+
],
|
|
1547
|
+
},
|
|
1548
|
+
{
|
|
1549
|
+
id: "gregobase:10642",
|
|
1550
|
+
incipit: "Salve crux sancta",
|
|
1551
|
+
gabc: "(c4)\\r\\nSAl(d)ve,(fe) crux(fg) san(gh)cta,(gvFE'_) (,)\\r\\nsal(f)ve(dc) mun(g)di(hj) gl\\u00f3(ji)ri(hgh)a,(h.) (;)\\r\\nve(hi)ra(h) spes(g) no(h)stra,(gvFE'_) (,)\\r\\nve(d)ra(fe) fe(fg)rens(fe) g\\u00e1u(d)di(cd)a,(d.) (:)\\r\\nsi(h)gnum(g) sa(hi)l\\u00fa(h)tis,(g.) (,)\\r\\nsa(h)lus(g) in(fe) pe(de)r\\u00ed(d)cu(dc)lis,(c.) (;)\\r\\nvi(cd)t\\u00e1(dc)le(f) li(gh)gnum(hvGFf) (,)\\r\\nvi(d)tam(c) por(d)tans(fg) \\u00f3m(fvEDd)ni(cd)um.(d.) (::)",
|
|
1552
|
+
office: "hy",
|
|
1553
|
+
mode: "1",
|
|
1554
|
+
pages: [
|
|
1555
|
+
{ page: "431", sequence: 2, extent: 2 }
|
|
1556
|
+
],
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
id: "gregobase:11245",
|
|
1560
|
+
incipit: "Commune vos apostoli",
|
|
1561
|
+
gabc: "(c4)Com(f)m\\u00fa(f)ne(f) vos,(fe) a(dc)p\\u00f3s(de)to(e)li,(e_) (,)\\r\\nex(g)t\\u00f3l(gh)lat(hg) hym(hih)ni(gf) i\\u00fa(g)bi(gf)lum,(e.) (;)\\r\\nquos(f) \\u00e1d(e)vo(fg)cat(gf) par(dc) gr\\u00e1(de)ti(dc)a,(c_) (,)\\r\\nco(g)r\\u00f3(g)nat(f) u(g)na(ghg) gl\\u00f3(fe)ri(de)a.(e.) 2.(::)\\r\\n",
|
|
1562
|
+
office: "hy",
|
|
1563
|
+
mode: "4",
|
|
1564
|
+
pages: [
|
|
1565
|
+
{ page: "483", sequence: 0, extent: 1 }
|
|
1566
|
+
],
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
id: "gregobase:11256",
|
|
1570
|
+
incipit: "Christe caelorum habitator alme",
|
|
1571
|
+
gabc: "(c4)CHri(d!ewfd)ste,(dc) c\\u00e6(cd)l\\u00f3(d.)rum(d.) (,)\\r\\nha(f)bi(e)t\\u00e1(d)tor(e) al(e.)me,(d.) (;)\\r\\nvi(dh/iv)ta(h) san(h)ct\\u00f3(hg)rum,(g_h) vi(f)a(gh) spes(g) sa(fg)l\\u00fas(gvFE)que,(d.) (:)\\r\\nh\\u00f3(dg)sti(fe)am(dc) cle(dd)mens,(c.) (,)\\r\\nti(fe)bi(fg) quam(fe) li(dc)t\\u00e1(de)mus,(ed__) (,)\\r\\ns\\u00fa(d!ewfd)sci(dc)pe(cd) lau(d.)dis.(d.) (::)",
|
|
1572
|
+
office: "hy",
|
|
1573
|
+
mode: "1",
|
|
1574
|
+
pages: [
|
|
1575
|
+
{ page: "462", sequence: 1, extent: 2 }
|
|
1576
|
+
],
|
|
1577
|
+
},
|
|
1578
|
+
{
|
|
1579
|
+
id: "gregobase:11361",
|
|
1580
|
+
incipit: "Te saeculorum principem",
|
|
1581
|
+
gabc: "(c4)\\r\\nTE(dh) s\\u00e6(g)cu(h)l\\u00f3(ji)rum(hh) pr\\u00edn(g)ci(h)pem,(h.) (,)\\r\\nte,(hg) Chri(e)ste,(gf) re(ed)gem(dg) g\\u00e9n(hg)ti(f)um,(e.) (;)\\r\\nte(dh) m\\u00e9n(h)ti(gj)um,(jji) te(hg) cor(f)di(g)um(hvGFED.) (,)\\r\\nu(fg)num(h) fa(f)t\\u00e9(gf)mur(ed) \\u00e1r(ghg)bi(fe)trum.(d.) (::)",
|
|
1582
|
+
office: "hy",
|
|
1583
|
+
mode: "1",
|
|
1584
|
+
pages: [
|
|
1585
|
+
{ page: "122", sequence: 1, extent: 3 }
|
|
1586
|
+
],
|
|
1587
|
+
},
|
|
1588
|
+
{
|
|
1589
|
+
id: "gregobase:11726",
|
|
1590
|
+
incipit: "Hymnum canentes martyrum",
|
|
1591
|
+
gabc: "(c4)\\r\\nHYm(ege)num(e) ca(g)n\\u00e9n(gh)tes(hg) m\\u00e1r(fe)ty(de)rum(e'_) (,)\\r\\ndi(f)c\\u00e1(d)mus(e) In(fg)no(fe)c\\u00e9n(d)ti(cd)um,(d.) (;)\\r\\nquos(fe) ter(d)ra(c) de(ed)flens(ff) p\\u00e9r(d)di(ce)dit,(e.) (,)\\r\\ngau(ef)dens(g) sed(f!gh) \\u00e6(hg)thra(fe) s\\u00fa(d)sci(de)pit;(e.) (::)\\r\\n",
|
|
1592
|
+
office: "hy",
|
|
1593
|
+
mode: "4",
|
|
1594
|
+
pages: [
|
|
1595
|
+
{ page: "484", sequence: 2, extent: 2 }
|
|
1596
|
+
],
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
id: "gregobase:13356",
|
|
1600
|
+
incipit: "Candor aeternae",
|
|
1601
|
+
gabc: "(c4)\\r\\nCAn(e_)dor(d) \\u00e6(e)t\\u00e9r(gh)n\\u00e6(gvFE'_) (,) \\r\\nDe(d)i(e!fg)t\\u00e1(fe)tis(de) al(e.)me,(e.) (;)\\r\\nChri(e)ste,(gh) tu(h) lu(gh)men,(h'_) (,)\\r\\nv\\u00e9(j)ni(hg)<i>a</i> {a}t(h)que(gvFE) vi(de)ta(e.) (:)\\r\\n\\u00e1d(e)ve(e)nis,(ed) mor(f)bis(dc__) (,) \\r\\nh\\u00f3(d)mi(ed)num(efe) me(fd)d\\u00e9(f!gh)la,(h'_) (,)\\r\\npor(g)ta(fe) sa(de)l\\u00fa(e.)tis.(e.) (::)\\r\\n",
|
|
1602
|
+
office: "hy",
|
|
1603
|
+
mode: "4",
|
|
1604
|
+
pages: [
|
|
1605
|
+
{ page: "21", sequence: 1, extent: 2 }
|
|
1606
|
+
],
|
|
1607
|
+
},
|
|
1608
|
+
{
|
|
1609
|
+
id: "gregobase:14141",
|
|
1610
|
+
incipit: "Fulgentis auctor aetheris",
|
|
1611
|
+
gabc: "(c4)\\r\\nFUl(e)g\\u00e9n(c)tis(d) au(f)ctor(ef) \\u01fd(g)the(f)ris,(e'_) (,)\\r\\nqui(e) lu(c)nam(d) lu(f)men(ef) n\\u00f3(g)cti(g)bus,(g.) (;)\\r\\nso(g)lem(f) di(g)\\u00e9(h)rum(gf) c\\u00far(g)si(f)bus(e'_) (,)\\r\\ncer(e)to(c) fun(d)d\\u00e1(f)sti(ef) tr\\u00e1(g)mi(f)te,(e.) (::)",
|
|
1612
|
+
office: "hy",
|
|
1613
|
+
mode: "4",
|
|
1614
|
+
pages: [
|
|
1615
|
+
{ page: "230", sequence: 1, extent: 2 }
|
|
1616
|
+
],
|
|
1617
|
+
},
|
|
1618
|
+
{
|
|
1619
|
+
id: "gregobase:14154",
|
|
1620
|
+
incipit: "Christum pastorum principem",
|
|
1621
|
+
gabc: "(c3) CHris(e_f)tum,(e) pas(e)t\\u00f3(eg)rum(h) pr\\u00edn(ggf)ci(h_f_!gwh_G_FE)pem,(e/fgeccod.) (;) ve(b/c@eo@fv)n\\u00ed(f)te,(h_f_!gwh_G_FE.) a(eec)do(de)r\\u00e9(e_c_doe)mus.(dc..) (::) <i>Ps.</i> Ve(g/goh)n\\u00ed(fg)te,(gvFE) (::)",
|
|
1622
|
+
office: "an",
|
|
1623
|
+
mode: "3",
|
|
1624
|
+
pages: [
|
|
1625
|
+
{ page: "289", sequence: 0, extent: 1 }
|
|
1626
|
+
],
|
|
1627
|
+
},
|
|
1628
|
+
{
|
|
1629
|
+
id: "gregobase:14187",
|
|
1630
|
+
incipit: "Verbum salutis omnium",
|
|
1631
|
+
gabc: "(c4)VEr(e)bum(c) sa(e)l\\u00fa(g)tis(h) \\u00f3m(h)ni(f)um,(g'_ ) (,)\\r\\nPa(g)tris(h) ab(f) o(g)re(f) pr\\u00f3(e)di(d)ens,(e.) (;)\\r\\nVir(g)go(f) be(d)\\u00e1(e)ta,(f) s\\u00fas(e)ci(d)pe(c'_) (,)\\r\\nca(c)sto,(e) Ma(f)r\\u00ed(g)a,(f) v\\u00ed(e)sce(d)re.(e.) (::)\\r\\n\\r\\n2. Te(e) nunc(c) il(e)l\\u00fa(g)strat(h) c\\u01fd(h)li(f)tus(g'_) (,)\\r\\num(g)bra(h) fe(f)c\\u00fan(g)di(f) Sp\\u00ed(e)ri(d)tus,(e.) (;)\\r\\nge(g)stes(f) ut(d) Chri(e)stum(f) D\\u00f3(e)mi(d)num,(c'_) (,)\\r\\n\\u00e6(c)qu\\u00e1(e)lem(f) Pa(g)tri(f) F\\u00ed(e)li(d)um.(e.) (::)\\r\\n\\r\\n3. H\\u00e6c(e) est(c) sa(e)cr\\u00e1(g)ti(h) i\\u00e1(h)nu(f)a(g'_) (,)\\r\\ntem(g)pli(h) se(f)r\\u00e1(g)ta(f) i\\u00fa(e)gi(d)ter,(e.) (;)\\r\\nso(g)li(f) su(d)pr\\u00e9(e)mo(f) Pr\\u00edn(e)ci(d)pi(c'_) (,)\\r\\npan(c)dens(e) be(f)\\u00e1(g)ta(f) l\\u00ed(e)mi(d)na.(e.) (::)\\r\\n\\r\\n4. O(e)lim(c) pro(e)m\\u00eds(g)sus(h) v\\u00e1(h)ti(f)bus,(g'_) (,)\\r\\nna(g)tus(h) an(f)te(g) lu(f)c\\u00ed(e)fe(d)rum,(e.) (;)\\r\\nquem(g) G\\u00e1(f)bri(d)el(e) an(f)n\\u00fan(e)ti(d)at,(c'_) (,)\\r\\nter(c)ris(e) de(f)sc\\u00e9n(g)dit(f) D\\u00f3(e)mi(d)nus.(e.) (::)\\r\\n\\r\\n5. L\\u00e6(e)t\\u00e9n(c)tur(e) si(g)mul(h) \\u00e1n(h)ge(f)li,(g'_) (,)\\r\\nom(g)nes(h) ex(f)s\\u00fal(g)tent(f) p\\u00f3(e)pu(d)li :(e.) (;)\\r\\nex(g)c\\u00e9l(f)sus(d) ve(e)nit(f) h\\u00fa(e)mi(d)lis(c'_) (,)\\r\\nsal(c)v\\u00e1(e)re(f) quod(g) per(f)\\u00ed(e)e(d)rat.(e.) (::)\\r\\n\\r\\n6. Sit,(e) Chri(c)ste,(e) rex(g) pi(h)\\u00eds(h)si(f)me,(g'_) (,)\\r\\nti(g)bi(h) Pa(f)tr\\u00ed(g)que(f) gl\\u00f3(e)ri(d)a(e.) (;)\\r\\ncum(g) Sp\\u00ed(f)ri(d)tu(e) Pa(f)r\\u00e1(e)cli(d)to,(c'_) (,)\\r\\nin(c) sem(e)pi(f)t\\u00e9r(g)na(f) s\\u01fd(e)cu(d)la.(e.) (::)\\r\\nA(efe)men.(d.e.) (::)",
|
|
1632
|
+
office: "hy",
|
|
1633
|
+
mode: "4",
|
|
1634
|
+
pages: [
|
|
1635
|
+
{ page: "9", sequence: 1, extent: 1 }
|
|
1636
|
+
],
|
|
1637
|
+
},
|
|
1638
|
+
{
|
|
1639
|
+
id: "gregobase:14205",
|
|
1640
|
+
incipit: "Populus Domini",
|
|
1641
|
+
gabc: "(c3)POpulus(f e f) D\\u00f3mini(h hi i'_,) et(i) o(h')ves(i) p\\u00e1s(j)cu(i)\\u00e6(h) eius,(i. i. ;) ve(jk)n\\u00ed(j)te(i) a(j)do(ih)r\\u00e9(ij)mus(j) e(i.)um.(i.) (::) Ven\\u00edte,(i hi i) (::)",
|
|
1642
|
+
office: "an",
|
|
1643
|
+
mode: "d",
|
|
1644
|
+
pages: [
|
|
1645
|
+
{ page: "180", sequence: 0, extent: 1 }
|
|
1646
|
+
],
|
|
1647
|
+
},
|
|
1648
|
+
{
|
|
1649
|
+
id: "gregobase:14250",
|
|
1650
|
+
incipit: "O lux beata Caelitum",
|
|
1651
|
+
gabc: "(f3)O(ef) lux(f) be(hg)\\u00e1(f)ta(e) c<sp>'ae</sp>(h)li(ij)tum(j.) (,)\\r\\net(ij) sum(h)ma(hg) spes(fh) mor(hg)t\\u00e1(fg)li(f)um,(e.) (;)\\r\\nIe(ef)su,(f) cu(fe)i(f) do(gh)m\\u00e9(j)sti(ih)ca(h.) (,)\\r\\nar(ij)r\\u00ed(g)sit(hg) or(f)to(e) c\\u00e1(gh)ri(f)tas ;(f.) (::)",
|
|
1652
|
+
office: "hy",
|
|
1653
|
+
mode: "2",
|
|
1654
|
+
pages: [
|
|
1655
|
+
{ page: "26", sequence: 0, extent: 2 }
|
|
1656
|
+
],
|
|
1657
|
+
},
|
|
1658
|
+
{
|
|
1659
|
+
id: "gregobase:14258",
|
|
1660
|
+
incipit: "Veni Creator Spiritus",
|
|
1661
|
+
gabc: "name:Veni Creator Spiritus;\\r\\noffice-part:Hymnus;\\r\\nmode:8;\\r\\nbook:Liber Hymnarius, 1983, p. 90;\\r\\n%%\\r\\n(c3) VE(e)ni(f) cre(ed)\\u00e1(e)tor(fe) Sp\\u00ed(h)ri(i)tus,(h.) (;)\\r\\nmen(h)tes(e) tu(f)\\u00f3(h)rum(ih) v\\u00ed(i)si(j)ta,(i.) (:)\\r\\nim(h)ple(ij) su(hg)p\\u00e9r(fe)na(hi) gr\\u00e1(e)ti(f)a,(h.) (;)\\r\\nqu\\u00e6(gh) tu(f) cre(ed)\\u00e1s(f)ti,(fgf) p\\u00e9c(e)to(de)ra.(e.) (::)\\r\\n\\r\\n2. Qui(e) d\\u00ed(f)ce(ed)ris(e) Pa(fe)r\\u00e1(h)cli(i)tus,(h.) (;)\\r\\ndo(h)num(e) De(f)i(h) al(ih)t\\u00eds(i)si(j)mi,(i.) (:)\\r\\nfons(h) vi(ij)vus,(hg) i(fe)gnis,(hi) c\\u00e1(e)ri(f)tas(h.) (;)\\r\\net(gh) spi(f)ri(ed)t\\u00e1(f)lis(fgf) \\u00fan(e)cti(de)o.(e.) (::)\\r\\n\\r\\n3. Tu(e) sep(f)ti(ed)f\\u00f3r(e)mis(fe) m\\u00fa(h)ne(i)re,(h.) (;)\\r\\nd\\u00e9x(h)tr\\u00e6(e) De(f)i(h) tu(ih) d\\u00ed(i)gi(j)tus,(i.) (:)\\r\\ntu(h) ri(ij)te(hg) pro(fe)m\\u00eds(hi)sum(e) Pa(f)tris(h.) (;)\\r\\nser(gh)m\\u00f3(f)ne(ed) di(f)tans(fgf) g\\u00fat(e)tu(de)ra.(e.) (::)\\r\\n\\r\\n4. Ac(e)c\\u00e9n(f)de(ed) lu(e)men(fe) s\\u00e9n(h)si(i)bus,(h.) (;)\\r\\nin(h)f\\u00fand<i>e</i>(e) a(f)m\\u00f3(h)rem(ih) c\\u00f3r(i)di(j)bus,(i.) (:)\\r\\nin(h)f\\u00edr(ij)ma(hg) no(fe)stri(hi) c\\u00f3r(e)po(f)ris,(h.) (;) \\r\\nvir(gh)t\\u00fa(f)te(ed) fir(f)mans(fgf) p\\u00e9r(e)pe(de)ti.(e.) (::)\\r\\n\\r\\n5. H\\u00f3(e)stem(f) re(ed)p\\u00e9l(e)las(fe) l\\u00f3n(h)gi(i)us(h.) (;)\\r\\npa(h)c\\u00e9m(e)que(f) do(h)nes(ih) pr\\u00f3(i)ti(j)nus ;(i.) (:)\\r\\ndu(h)ct\\u00f3(ij)re(hg) sic(fe) te(hi) pr\\u01fd(e)vi(f)o(h.) (;)\\r\\nvi(gh)t\\u00e9(f)mus(ed) om(f)ne(fgf) n\\u00f3(e)xi(de)um.(e.) (::)\\r\\n\\r\\n6. Per(e) te(f) sci(ed)\\u00e1(e)mus(fe) da(h) Pa(i)trem(h.) (;)\\r\\nnos(h)c\\u00e1(e)mus(f) at(h)que(ih) F\\u00ed(i)li(j)um,(i.) (:)\\r\\nte(h) u(ij)tri(hg)\\u00fas(fe)que(hi) Sp\\u00ed(e)ri(f)tum(h.) (;)\\r\\ncre(gh)d\\u00e1(f)mus(ed) om(f)ni(fgf) t\\u00e9m(e)po(de)re.(e.) (::)\\r\\n\\r\\nA(efe)men.(de..) (::)",
|
|
1662
|
+
office: "hy",
|
|
1663
|
+
mode: "8",
|
|
1664
|
+
pages: [
|
|
1665
|
+
{ page: "90", sequence: 0, extent: 2 }
|
|
1666
|
+
],
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
id: "gregobase:14293",
|
|
1670
|
+
incipit: "Agnes beatae virginis",
|
|
1671
|
+
gabc: "(c4) A(g)gnes(g) be(fd)\\u00e1(e)t\\u00e6(f) v\\u00edr(gh)gi(h)nis(g_') (,)\\r\\nna(f)t\\u00e1(g)lis(h) est,(ji) quo(hg) sp\\u00ed(hi)ri(hg)tum(g.) (;)\\r\\nc\\u00e6(j)lo(k) re(i)f\\u00fa(j)dit(h) d\\u00e9(j)bi(i)tum,(ghGF'_) (,)\\r\\npi(f)o(g) sa(h)cr\\u00e1(ji)ta(hg) s\\u00e1n(hi)gui(hg)ne.(g.) (::)",
|
|
1672
|
+
office: "hy",
|
|
1673
|
+
mode: "8",
|
|
1674
|
+
pages: [
|
|
1675
|
+
{ page: "341", sequence: 1, extent: 1 }
|
|
1676
|
+
],
|
|
1677
|
+
},
|
|
1678
|
+
{
|
|
1679
|
+
id: "gregobase:15059",
|
|
1680
|
+
incipit: "Venite exsultemus VI**",
|
|
1681
|
+
gabc: "(c4)Ve(f_h)n\\u00ed(j)te,(j) ex(j)sul(h)t\\u00e9(h)mus(i) D\\u00f3(i)mi(h)no;(h'_) (,)\\r\\niu(h)bi(h)l\\u00e9(h)mus(i) De(i)o(h') sa(h)lu(g)t\\u00e1(h)ri(f) no(gg)stro.(f.) (;)\\r\\nPr\\u00e6(f_h)oc(j)cu(j)p\\u00e9(j)mus(h) f\\u00e1(h)ci(h)em(i) e(i)ius(h'_) (,)\\r\\nin(h) con(g)fes(h)si(f)\\u00f3(gg)ne,(f.) (;)\\r\\net(d) in(f) psal(fg~)mis(f'_) (,)\\r\\niu(f)bi(g)l\\u00e9(fe)mus(f) e(gh)i.(ixh_i/ggf.) (::Z)\\r\\n\\r\\nQu\\u00f3(f_h)ni(j)am(j) De(j)us(h) ma(h)gnus(i) D\\u00f3(i)mi(h)nus,(h'_) (,)\\r\\net(h) rex(h_i) ma(i)gnus(h') su(h)per(g) om(h)nes(f) de(gg)os.(f.) (;)\\r\\nQu\\u00f3(f_h)ni(j)am(j) non(j) re(h)p\\u00e9l(h)let(h) D\\u00f3(h)mi(h)nus(h) ple(h)bem(i) su(i)am,(h'_) (,)\\r\\nqui(h)a(h) in(h) ma(h)nu(i) e(i)ius(h') sunt(h) om(h)nes(g) fi(h)nes(f) ter(gg)r\\u00e6,(f.) (;)\\r\\net(d) al(f)ti(f)t\\u00fa(f)di(f)nes(f) m\\u00f3n(fg~)ti(f)um(f'_) (,) i(g)pse(fe) c\\u00f3n(f)spi(gh)cit.(ixh_i/ggf.) (::Z)\\r\\n\\r\\nQu\\u00f3(f_h)ni(j)am(j) i(j)ps\\u00ed(h)us(i) est(i) ma(h)re,(h'_) (,)\\r\\net(h) i(h)pse(h) fe(h)cit(i) il(i)lud,(h'_) (,)\\r\\net(h) \\u00e1(h_i)ri(i)dam(h') fun(h)da(h)v\\u00e9(h)runt(g) ma(h)nus(f) e(gg)ius.(f.) (;)\\r\\nVe(f_h)n\\u00ed(i)te,(i) a(i)do(i)r\\u00e9(i)mus(h'_) (,) et(h) pro(h)ci(h)d\\u00e1(h)mus(h) an(h)te(i) De(i)um,(h'_) (,)\\r\\nplo(h)r\\u00e9(hi)mus(h') co(h)ram(h) D\\u00f3(h)mi(h)no,(h) qui(i) fe(i)cit(h) nos,(h'_) (,)\\r\\nqui(h)a(h) i(h_i)pse(h) est(h') D\\u00f3(h)mi(h)nus(g) De(h)us(f) no(gg)ster,(f.) (;)\\r\\nnos(d) au(f)tem(f) p\\u00f3(f)pu(f)lus(f) e(fg~)ius(f'_) (,)\\r\\net(f) o(fg)ves(f) pa(g)scu(fe)\\u00e6(f) e(gh)ius.(ixh_i/ggf.) (::Z)\\r\\n\\r\\nH\\u00f3(f_h)di(j)e,(j) si(j) vo(j)cem(j) e(j)ius(h) au(h)di(i)\\u00e9(i)ri(h)tis:(h'_) (,)\\r\\n\\u00ab No(h)l\\u00ed(hi)te(h') ob(h)du(h)r\\u00e1(h)re(g) cor(h)da(f) ve(gg)stra,(f.) (;)\\r\\nsi(f_h)cut(j) in(j) e(j)xa(j)cer(j)ba(j)ti(j)\\u00f3(j)ne(h'_) se(h)c\\u00fan(h)dum(i) di(i)em(h'_) (,)\\r\\nten(h)ta(h)ti(h)\\u00f3(h)nis(h) in(h) de(i)s\\u00e9r(i)to,(h_) (,)\\r\\nu(hi)bi(h') ten(h)ta(h)v\\u00e9(h)runt(h) me(g) pa(h)tres(f) ve(gg)stri:(f.) (;)\\r\\npro(d)ba(f)v\\u00e9(f)runt(f) et(f) vi(f)d\\u00e9(fg)runt(f'_) (,)\\r\\n\\u00f3(g)pe(fe)ra(f) me(gh)a.(ixh_i/ggf.) (::Z)\\r\\n\\r\\nQua(f_h)dra(j)g\\u00edn(j)ta(j) an(j)nis(h') pr\\u00f3(h)xi(h)mus(i) fu(i)i(h'_) (,)\\r\\nge(h)ne(h)ra(h)ti(i)\\u00f3(i)ni(h) hu(h)ic,(i'_) (,)\\r\\net(h) di(i)xi:(h') (`) sem(h)per(h) hi(hg) er(h)rant(f) cor(gg)de.(f.) (;)\\r\\nI(f_h)psi(j) ve(j)ro(h') non(h) co(h)gno(h)v\\u00e9(h)runt(h) vi(h)as(i) me(i)as,(h_) (,)\\r\\nqui(hi)bus(h') iu(h)r\\u00e1(h)vi(h) in(g) i(h)ra(f) me(gg)a:(f.) (;)\\r\\nSi(d) in(f)tro(f)\\u00ed(fg)bunt(f'_) (,)\\r\\nin(f) r\\u00e9(g)qui(fe)em(f) me(gh)am. \\u00bb(ixh_i/ggf.) (::Z)\\r\\n\\r\\nGl\\u00f3(f_h)ri(j)a(j) Pa(j)tri,(h) et(i) F\\u00ed(i)li(h)o,(h'_) (,)\\r\\net(h) Spi(h)r\\u00ed(g)tu(h)i(f) San(gg)cto.(f.) (;)\\r\\nSi(f_h)cut(j) e(j)rat(h') in(h) prin(i)c\\u00ed(i)pi(h)o,(h'_) (,)\\r\\net(g) nunc(h) et(f) sem(gg)per,(f.) (;)\\r\\net(d) in(f) s<sp>'ae</sp>(fg)cu(f)la(f) s\\u00e6(f)cu(g)l\\u00f3(fe)rum.(f) A(gh)men.(ixh_i/ggf.) (::Z)",
|
|
1682
|
+
office: "ps",
|
|
1683
|
+
mode: "6",
|
|
1684
|
+
pages: [
|
|
1685
|
+
{ page: "157", sequence: 1, extent: 3 }
|
|
1686
|
+
],
|
|
1687
|
+
},
|
|
1688
|
+
{
|
|
1689
|
+
id: "gregobase:15084",
|
|
1690
|
+
incipit: "Iesu redemptor saeculi TP",
|
|
1691
|
+
gabc: "initial-style: 1;\\r\\nname: Iesu redemptor saeculi TP;\\r\\nbook: Liber Hymnarius p. 77;\\r\\noccasion: Dominicis Tempore Paschali Usque ad Ascensionem Domini;\\r\\noffice-part: Ad Completorium H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 1;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)IE(h)su,(h) re(h)d\\u00e9m(hg)ptor(f) s\\u01fd(g)cu(gh)li,(h) (,)\\r\\nVer(d)bum(d) Pa(g)tris(fe) al(d)t\\u00eds(e)si(d)mi,(c) (;)\\r\\nlux(d) lu(f)cis(d) in(e)vi(f)s\\u00ed(g)bi(f)lis,(ghg) (,)\\r\\ncu(f)stos(e) tu(g)\\u00f3(fe)rum(c) p\\u00e9r(ef)vi(d)gil:(d) (::)\\r\\nTu(h) fa(h)bri(h)c\\u00e1(hg)tor(f) \\u00f3m(g)ni(gh)um(h) (,)\\r\\ndis(d)cr\\u00e9(d)tor(g) at(fe)que(d) t\\u00e9m(e)po(d)rum,(c) (;)\\r\\nfes(d)sa(f) la(d)b\\u00f3(e)re(f) c\\u00f3r(g)po(f)ra(ghg) (,)\\r\\nno(f)ctis(e) qui(g)\\u00e9(fe)te(c) r\\u00e9(ef)cre(d)a.(d) (::)\\r\\nQui(h) fran(h)gis(h) i(hg)ma(f) t\\u00e1r(g)ta(gh)ra,(h) (,)\\r\\ntu(d) nos(d) ab(g) ho(fe)ste(d) l\\u00ed(e)be(d)ra,(c) (;)\\r\\nne(d) v\\u00e1(f)le(d)at(e) se(f)d\\u00fa(g)ce(f)re(ghg) (,)\\r\\ntu(f)o(e) re(g)d\\u00e9m(fe)ptos(c) s\\u00e1n(ef)gui(d)ne,(d) (::)\\r\\nUt,(h) dum(h) gra(h)v\\u00e1(hg)ti(f) c\\u00f3r(g)po(gh)re(h) (,)\\r\\nbre(d)vi(d) ma(g)n\\u00e9(fe)mus(d) t\\u00e9m(e)po(d)re,(c) (;)\\r\\nsic(d) ca(f)ro(d) no(e)stra(f) d\\u00f3r(g)mi(f)at(ghg) (,)\\r\\nut(f) mens(e) so(g)p\\u00f3(fe)rem(c) n\\u00e9(ef)sci(d)at.(d) (::)\\r\\nIe(h)su,(h) ti(h)bi(hg) sit(f) gl\\u00f3(g)ri(gh)a,(h) (,)\\r\\nqui(d) mor(d)te(g) vi(fe)cta(d) pr\\u01fd(e)ni(d)tes,(c) (;)\\r\\ncum(d) Pa(f)tr<i>e</i>() et(d) al(e)mo(f) Sp\\u00ed(g)ri(f)tu,(ghg) (,)\\r\\nin(f) sem(e)pi(g)t\\u00e9r(fe)na(c) s\\u01fd(ef)cu(d)la.(d) (::) A(ded)men.(cd) (::)\\r\\n",
|
|
1692
|
+
office: "hy",
|
|
1693
|
+
mode: "1",
|
|
1694
|
+
pages: [
|
|
1695
|
+
{ page: "77", sequence: 0, extent: 1 }
|
|
1696
|
+
],
|
|
1697
|
+
},
|
|
1698
|
+
{
|
|
1699
|
+
id: "gregobase:15086",
|
|
1700
|
+
incipit: "Hic est dies",
|
|
1701
|
+
gabc: "initial-style: 1;\\r\\nname: Hic est dies;\\r\\nbook: Liber Hymnaris, p. 79;\\r\\noccasion: Dominicis Tempore Paschali Usque ad Ascensionem Domini;\\r\\noffice-part: Ad Officium Lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 3;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Hic(e) est(g) di(h)es(h) ve(g)rus(h!iwj) De(i)i,(ih__) (,)\\r\\nsan(hiwj)cto(i) se(h)r\\u00e9(h)nus(g) l\\u00fa(h)mi(fg)ne,(g.) (;)\\r\\nquo(hiwj) d\\u00ed(i)lu(h)it(h) san(g)guis(i) sa(gh)cer(hg..) (,)\\r\\npro(h)br\\u00f3(h)sa(g) mun(f)di(ghg) cr\\u00ed(f)mi(de)na.(e.) (::)\\r\\n",
|
|
1702
|
+
office: "hy",
|
|
1703
|
+
mode: "3",
|
|
1704
|
+
pages: [
|
|
1705
|
+
{ page: "79", sequence: 0, extent: 2 }
|
|
1706
|
+
],
|
|
1707
|
+
},
|
|
1708
|
+
{
|
|
1709
|
+
id: "gregobase:15087",
|
|
1710
|
+
incipit: "Aurora lucis",
|
|
1711
|
+
gabc: "(c4)Au(g)r\\u00f3(h)ra(g) lu(h)cis(i) r\\u00fa(j)ti(h)lat,(i) (,)\\r\\nc\\u00e6(i)lum(i) re(j)s\\u00fal(h)tat(g) l\\u00e1u(h)di(j)bus,(ijwkJI) (;)\\r\\nmun(h)dus(i) ex(j)s\\u00fal(k)tans(i) i\\u00fa(j)bi(j)lat,(i) (,)\\r\\nge(h)mens(i) in(j)f\\u00e9r(i)nus(h) \\u00fa(i)lu(h)lat.(g) \\r\\n\\r\\n2.(::)\\r\\nCum(g) rex(h) il(g)le(h) for(i)t\\u00eds(j)si(h)mus,(i) (,)\\r\\nmor(i)tis(i) con(j)fr\\u00e1(h)ctis(g) v\\u00ed(h)ri(j)bus,(ijwkJI) (;)\\r\\npe(h)de(i) con(j)c\\u00fal(k)cans(i) t\\u00e1r(j)ta(j)ra(i) (,)\\r\\nsol(h)vit(i) ca(j)t\\u00e9(i)na(h) m\\u00ed(i)se(h)ros.(g)\\r\\n\\r\\n(::Z-) 3.\\r\\nIl(g)le,(h) quem(g) clau(h)sum(i) l\\u00e1(j)pi(h)de(i) (,)\\r\\nmi(i)les(i) cu(j)st\\u00f3(h)dit(g) \\u00e1(h)cri(j)ter,(ijwkJI) (;)\\r\\ntri(h)\\u00fam(i)phans(j) pom(k)pa(i) n\\u00f3(j)bi(j)li(i) (,)\\r\\nvi(h)ctor(i) sur(j)git(i) de(h) f\\u00fa(i)ne(h)re.(g)\\r\\n\\r\\n4.(::)\\r\\nIn(g)f\\u00e9r(h)ni(g) iam(h) ge(i)m\\u00ed(j)ti(h)bus(i) (,)\\r\\nso(i)l\\u00fa(i)tis(j) et(h) do(g)l\\u00f3(h)ri(j)bus,(ijwkJI) (;)\\r\\nqui(h)a(i) sur(j)r\\u00e9(k)xit(i) D\\u00f3(j)mi(j)nus(i) (,)\\r\\nres(h)pl\\u00e9n(i)dens(j) cla(i)mat(h) \\u00e1n(i)ge(h)lus.(g)\\r\\n\\r\\n5.(::)\\r\\nE(g)sto(h) pe(g)r\\u00e9n(h)ne(i) m\\u00e9n(j)ti(h)bus(i) (,)\\r\\npas(i)ch\\u00e1(i)le,(j) Ie(h)su,(g) g\\u00e1u(h)di(j)um(ijwkJI) (;)\\r\\net(h) nos(i) re(j)n\\u00e1(k)tos(i) gr\\u00e1(j)ti(j)\\u00e6(i) (,)\\r\\ntu(h)is(i) tri(j)\\u00fam(i)phis(h) \\u00e1g(i)gre(h)ga.(g)\\r\\n\\r\\n6.(::)\\r\\nIe(g)su,(h) ti(g)bi(h) sit(i) gl\\u00f3(j)ri(h)a,(i) (,)\\r\\nqui(i) mor(i)te(j) vi(h)cta(g) pr\\u01fd(h)ni(j)tes,(ijwkJI) (;)\\r\\ncum(h) Pa(i)tr<i>e</i>() et(j) al(k)mo(i) Sp\\u00ed(j)ri(j)tu,(i) (,)\\r\\nin(h) sem(i)pi(j)t\\u00e9r(i)na(h) s\\u01fd(i)cu(h)la.(g) (::)\\r\\nA(ghg)men.(fg) (::)\\r\\n",
|
|
1712
|
+
office: "hy",
|
|
1713
|
+
mode: "8",
|
|
1714
|
+
pages: [
|
|
1715
|
+
{ page: "82", sequence: 0, extent: 1 }
|
|
1716
|
+
],
|
|
1717
|
+
},
|
|
1718
|
+
{
|
|
1719
|
+
id: "gregobase:15088",
|
|
1720
|
+
incipit: "Iam surgit TP",
|
|
1721
|
+
gabc: "initial-style: 1;\\r\\nname: Iam surgit;\\r\\nbook: Liber Hymnaris, p. 82;\\r\\noccasion: Dominicis Tempore Paschali Usque ad Ascensionem Domini;\\r\\noffice-part: Ad Tertiam H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 8;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Iam(g) sur(h)git(g) ho(h)ra(i) t\\u00e9r(j)ti(h)a,(i) (,)\\r\\nqua(i) Chri(i)stus(j) a(h)sc\\u00e9n(g)dit(h) cru(j)cem;(ijwkJI) (;)\\r\\nnil(h) \\u00edn(i)so(j)lens(k) mens(i) c\\u00f3(j)gi(j)tet,(i) (,)\\r\\nin(h)t\\u00e9n(i)dat(j) af(i)f\\u00e9(j)ctum(i) pre(h)cis.(g) (::)\\r\\nQui(g) cor(h)de(g) Chri(h)stum(i) s\\u00fa(j)sci(h)pit,(i) (,)\\r\\nin(i)n\\u00f3(i)xi(j)um(h) sen(g)sum(h) ge(j)rit(ijwkJI) (;)\\r\\nvo(h)t\\u00eds(i)que(j) pr\\u00e6(k)stat(i) s\\u00e9(j)du(j)lis(i) (,)\\r\\nSan(h)ctum(i) me(j)r\\u00e9(i)ri(j) Sp\\u00ed(i)ri(h)tum.(g) (::)\\r\\nH\\u00e6c(g) ho(h)ra,(g) qu\\u00e6(h) fi(i)nem(j) de(h)dit(i) (,)\\r\\ndi(i)ri(i) ve(j)t\\u00e9r(h)no(g) cr\\u00ed(h)mi(j)nis;(ijwkJI) (;)\\r\\nhinc(h) iam(i) be(j)\\u00e1(k)ta(i) t\\u00e9m(j)po(j)ra(i) (,)\\r\\ncoe(h)p\\u00e9(i)re(j) Chri(i)sti(j) gr\\u00e1(i)ti(h)a.(g) (::)\\r\\nIe(g)su,(h) ti(g)bi(h) sit(i) gl\\u00f3(j)ri(h)a,(i) (,)\\r\\nqui(i) mor(i)te(j) vi(h)cta(g) pr\\u01fd(h)ni(j)tes,(ijwkJI) (;)\\r\\ncum(h) Pa(i)tr<i>e</i>() et(j) al(k)mo(i) Sp\\u00ed(j)ri(j)tu,(i) (,)\\r\\nin(h) sem(i)pi(j)t\\u00e9r(i)na(j) s\\u01fd(i)cu(h)la.(g) (::) A(ghg)men.(fg) (::)\\r\\n",
|
|
1722
|
+
office: "hy",
|
|
1723
|
+
mode: "8",
|
|
1724
|
+
pages: [
|
|
1725
|
+
{ page: "85", sequence: 0, extent: 1 }
|
|
1726
|
+
],
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
id: "gregobase:15089",
|
|
1730
|
+
incipit: "Venite servi (TP)",
|
|
1731
|
+
gabc: "initial-style: 1;\\r\\nname: Venite servi TP;\\r\\nbook: Liber Hymnaris, p. 86;\\r\\noccasion: Dominicis Tempore Paschali Usque ad Ascensionem Domini;\\r\\noffice-part: Ad Sextam H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 8;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Ve(g)n\\u00ed(h)te,(g) ser(h)vi,(i) s\\u00fap(j)pli(h)ces,(i) (,)\\r\\net(i) men(i)t<i>e</i>() et(j) o(h)r<i>e</i>() ex(g)t\\u00f3l(h)li(j)te(ijwkJI) (;)\\r\\ndi(h)gnis(i) be(j)\\u00e1(k)tum(i) l\\u00e1u(j)di(j)bus(i) (,)\\r\\nno(h)men(i) De(j)i(i) cum(j) c\\u00e1n(i)ti(h)co.(g) (::)\\r\\nHoc(g) nam(h)que(g) tem(h)pus(i) il(j)lud(h) est,(i) (,)\\r\\nquo(i) s\\u00e6(i)cu(j)l\\u00f3(h)rum(g) i\\u00fa(h)di(j)cem(ijwkJI) (;)\\r\\nin(h)i\\u00fa(i)sta(j) mor(k)ti(i) tr\\u00e1(j)di(j)dit(i) (,)\\r\\nmor(h)t\\u00e1(i)li(j)um(i) sen(j)t\\u00e9n(i)ti(h)a.(g) (::)\\r\\nEt(g) nos(h) a(g)m\\u00f3(h)re(i) d\\u00e9(j)bi(h)to,(i) (,)\\r\\nti(i)m\\u00f3(i)re(j) iu(h)sto(g) s\\u00fab(h)di(j)ti,(ijwkJI) (;)\\r\\nad(h)v\\u00e9r(i)sus(j) om(k)nes(i) \\u00edm(j)pe(j)tus(i) (,)\\r\\nquos(h) s\\u00e6(i)vus(j) ho(i)stis(j) \\u00edn(i)cu(h)tit,(g) (::)\\r\\nU(g)num(h) ro(g)g\\u00e9(h)mus(i) et(j) Pa(h)trem(i) (,)\\r\\nDe(i)um(i) re(j)g\\u00e9m(h)que(g) F\\u00ed(h)li(j)um(ijwkJI) (;)\\r\\nsi(h)m\\u00fal(i)que(j) San(k)ctum(i) Sp\\u00ed(j)ri(j)tum,(i) (,)\\r\\nin(h) Tri(i)ni(j)t\\u00e1(i)te(j) D\\u00f3(i)mi(h)num.(g) (::) A(ghg)men.(fg) (::)\\r\\n",
|
|
1732
|
+
office: "hy",
|
|
1733
|
+
mode: "8",
|
|
1734
|
+
pages: [
|
|
1735
|
+
{ page: "86", sequence: 0, extent: 1 }
|
|
1736
|
+
],
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
id: "gregobase:15090",
|
|
1740
|
+
incipit: "Haec hora (TP)",
|
|
1741
|
+
gabc: "initial-style: 1;\\r\\nname: Haec hora TP;\\r\\nbook: Liber Hymnaris, p. 87;\\r\\noccasion: Dominicis Tempore Paschali Usque ad Ascensionem Domini;\\r\\noffice-part: Ad Nonam H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 8;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)H\\u00c6C(g) ho(h)ra,(g) qu\\u00e6(h) res(i)pl\\u00e9n(j)du(h)it(i) (,)\\r\\ncru(i)c\\u00eds(i)que(j) sol(h)vit(g) n\\u00fa(h)bi(j)la,(ijwkJI) (;)\\r\\nmun(h)dum(i) te(j)n\\u00e9(k)bris(i) \\u00e9(j)xu(j)ens,(i) (,)\\r\\nred(h)dens(i) se(j)r\\u00e9(i)na(j) l\\u00fa(i)mi(h)na.(g) (::)\\r\\nH\\u00e6c(g) ho(h)ra,(g) qua(h) re(i)s\\u00fa(j)sci(h)tans(i) (,)\\r\\nIe(i)sus(i) se(j)p\\u00fal(h)cris(g) c\\u00f3r(h)po(j)ra,(ijwkJI) (;)\\r\\npro(h)d\\u00ed(i)re(j) mor(k)tis(i) l\\u00ed(j)be(j)ra(i) (,)\\r\\nius(h)sit(i) re(j)f\\u00fa(i)so(j) sp\\u00ed(i)ri(h)tu.(g) (::)\\r\\nNo(g)v\\u00e1(h)ta(g) s\\u00e6(h)cla(i) cr\\u00e9(j)di(h)mus(i) (,)\\r\\nmor(i)tis(i) so(j)l\\u00fa(h)tis(g) l\\u00e9(h)gi(j)bus,(ijwkJI) (;)\\r\\nvi(h)t\\u00e6(i) be(j)\\u00e1(k)t\\u00e6(i) m\\u00fa(j)ne(j)ra(i) (,)\\r\\ncur(h)sum(i) pe(j)r\\u00e9n(i)nem(j) c\\u00far(i)re(h)re.(g) (::)\\r\\nIe(g)su,(h) ti(g)bi(h) sit(i) gl\\u00f3(j)ri(h)a,(i) (,)\\r\\nqui(i) mor(i)te(j) vi(h)cta(g) pr\\u01fd(h)ni(j)tes,(ijwkJI) (;)\\r\\ncum(h) Pa(i)tr<i>e</i>() et(j) al(k)mo(i) Sp\\u00ed(j)ri(j)tu,(i) (,)\\r\\nin(h) sem(i)pi(j)t\\u00e9r(i)na(j) s\\u01fd(i)cu(h)la.(g) (::) A(ghg)men.(fg) (::)\\r\\n",
|
|
1742
|
+
office: "hy",
|
|
1743
|
+
mode: "8",
|
|
1744
|
+
pages: [
|
|
1745
|
+
{ page: "87", sequence: 0, extent: 1 }
|
|
1746
|
+
],
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
id: "gregobase:15200",
|
|
1750
|
+
incipit: "Optatus votis omnium",
|
|
1751
|
+
gabc: "initial-style: 1;\\r\\nname: Optatus votis omnium;\\r\\nbook: Liber Hymnaris, p. 94;\\r\\noccasion: Dominicis Tempore Paschali Ab Ascensione Domini;\\r\\noffice-part: Ad Laudes H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 1;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Op(dhiv)t\\u00e1(hg)tus(h) vo(jvIH)tis(g) \\u00f3m(h)ni(gf)um(eghv) (;)\\r\\nsa(dh)cr\\u00e1(gfh)tus(g) il(fe)l\\u00fa(de)xit(g) di(f)es,(ed) (:)\\r\\nquo(hi) Chri(hg)stus,(hj) mun(ivHG)di(h) spes,(gf/fe) De(d)us,(h) (;)\\r\\ncon(hi)sc\\u00e9n(hvGF)dit(ggf) c\\u00e6(evDC)los(d) \\u00e1r(ef)du(d)os.(d) \\r\\n\\r\\n2.(::)\\r\\nMa(dhiv)gni(hg) tri(h)\\u00fam(jvIH)phum(g) pr\\u0153(h)li(gf)i,(eghv) (;)\\r\\nmun(dh)di(gfh) pe(g)r\\u00e9m(fe)pto(de) pr\\u00edn(g)ci(f)pe,(ed) (:)\\r\\nPa(hi)tris(hg) pr\\u00e6(hj)s\\u00e9n(ivHG)tans(h) v\\u00fal(gf/fe)ti(d)bus(h) (;)\\r\\nvi(hi)ctr\\u00ed(hvGF)cis(ggf) car(evDC)nis(d) gl\\u00f3(ef)ri(d)am,(d) \\r\\n\\r\\n3.(::)\\r\\nIn(dhiv) nu(hg)be(h) fer(jvIH)tur(g) l\\u00fa(h)ci(gf)da(eghv) (;)\\r\\net(dh) spem(gfh) fa(g)cit(fe) cre(de)d\\u00e9n(g)ti(f)bus,(ed) (:)\\r\\niam(hi) pa(hg)ra(hj)d\\u00ed(ivHG)sum(h) r\\u00e9(gf/fe)se(d)rans(h) (;) quem(hi) pro(hvGF)to(ggf)pl\\u00e1(evDC)sti(d) cl\\u00e1u(ef)se(d)rant.(d) \\r\\n\\r\\n4.(::)\\r\\nO(dhiv) gran(hg)de(h) cun(jvIH)ctis(g) g\\u00e1u(h)di(gf)um,(eghv) (;)\\r\\nquod(dh) par(gfh)tus(g) no(fe)str\\u00e6(de) V\\u00edr(g)gi(f)nis,(ed) (:)\\r\\npost(hi) spu(hg)ta,(hj) fla(ivHG)gra,(h) post(gf/fe) cru(d)cem(h) (;)\\r\\npa(hi)t\\u00e9r(hvGF)n\\u00e6(ggf) se(evDC)di(d) i\\u00fan(ef)gi(d)tur.(d) \\r\\n\\r\\n5.(::)\\r\\nA(dhiv)g\\u00e1(hg)mus(h) er(jvIH)go(g) gr\\u00e1(h)ti(gf)as(eghv) (;)\\r\\nno(dh)str\\u00e6(gfh) sa(g)l\\u00fa(fe)tis(de) v\\u00edn(g)di(f)ci,(ed) (:)\\r\\nno(hi)strum(hg) quod(hj) cor(ivHG)pus(h) v\\u00e9(gf/fe)xe(d)rit(h) (;)\\r\\nsu(hi)bl\\u00ed(hvGF)m<i>e</i>() ad(ggf) c\\u00e6(evDC)li(d) r\\u00e9(ef)gi(d)am.(d) \\r\\n\\r\\n6.(::)\\r\\nSit(dhiv) no(hg)bis(h) cum(jvIH) c\\u00e6(g)l\\u00e9(h)sti(gf)bus(eghv) (;)\\r\\ncom(dh)m\\u00fa(gfh)ne(g) ma(fe)nens(de) g\\u00e1u(g)di(f)um:(ed) (:)\\r\\nil(hi)lis,(hg) quod(hj) se(ivHG)met(h) \\u00f3b(gf/fe)tu(d)lit,(h) (;)\\r\\nno(hi)bis,(hvGF) quod(ggf) se(evDC) non(d) \\u00e1b(ef)stu(d)lit.(d) \\r\\n\\r\\n7.(::)\\r\\nNunc,(dhiv) Chri(hg)ste,(h) scan(jvIH)dens(g) \\u01fd(h)the(gf)ra(eghv) (;)\\r\\nad(dh) te(gfh) cor(g) no(fe)strum(de) s\\u00fa(g)ble(f)va,(ed) (:)\\r\\ntu(hi)um(hg) Pa(hj)tr\\u00eds(ivHG)que(h) Sp\\u00ed(gf/fe)ri(d)tum(h) (;)\\r\\ne(hi)m\\u00edt(hvGF)tens(ggf) no(evDC)bis(d) c\\u01fd(ef)li(d)tus.(d) (::) A(ded)men.(cd) (::)\\r\\n",
|
|
1752
|
+
office: "hy",
|
|
1753
|
+
mode: "1",
|
|
1754
|
+
pages: [
|
|
1755
|
+
{ page: "94", sequence: 0, extent: 1 }
|
|
1756
|
+
],
|
|
1757
|
+
},
|
|
1758
|
+
{
|
|
1759
|
+
id: "gregobase:15287",
|
|
1760
|
+
incipit: "Dulci depromat",
|
|
1761
|
+
gabc: "initial-style: 1;\\r\\nname: Dulci depromat;\\r\\nbook: Liber Hymnarius, p. 306;\\r\\noccasion: Commune Unius Virginis;\\r\\noffice-part: Ad Officium Lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 8;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Dul(g)ci(hi) de(j)pr\\u00f3(ih)mat(g) c\\u00e1r(h)mi(f)ne(g'_) (,)\\r\\nde(i)v\\u00f3(k)ta(j) plebs(i) sol(k)l\\u00e9m(ji)ni(h)a,(g.) (;)\\r\\ndum(g) in(h) c\\u00e6(f)l\\u00f3(g)rum(e) c\\u00fal(fe)mi(d)ne(c'_) (,)\\r\\nh\\u00e6c(g) vir(hi)go(j) mi(ih)cat(g) gl\\u00f3(h)ri(f)a.(g.) \\r\\n\\r\\n2.(::)\\r\\nVir(g)go,(hi) qu\\u00e6(j) Chri(ih)sti(g) l\\u00e1u(h)di(f)bus(g'_) (,)\\r\\nva(i)c\\u00e1(k)vit(j) iam(i) vi(k)r\\u00ed(ji)li(h)ter,(g.) (;)\\r\\nsan(g)ct\\u00f3(h)rum(f) nunc(g) ag(e)m\\u00ed(fe)ni(d)bus(c'_) (,)\\r\\ncon(g)i\\u00fan(hi)gi(j)tur(ih) fe(g)l\\u00ed(h)ci(f)ter.(g.) \\r\\n\\r\\n3.(::)\\r\\nVi(g)cit(hi) per(j) pu(ih)di(g)c\\u00ed(h)ti(f)am(g'_) (,)\\r\\nin(i)f\\u00edr(k)m\\u00e6(j) car(i)nis(k) v\\u00ed(ji)ti(h)um;(g.) (;)\\r\\nspre(g)vit(h) mun(f)di(g) blan(e)d\\u00ed(fe)ti(d)am(c'_) (,)\\r\\nChri(g)sti(hi) se(j)quens(ih) ve(g)st\\u00ed(h)gi(f)um.(g.) \\r\\n\\r\\n4.(::)\\r\\nPer(g) hanc(hi) nos,(j) Chri(ih)ste,(g) d\\u00ed(h)ri(f)ge(g'_) (,)\\r\\nser(i)vans(k) a(j) cun(i)ctis(k) h\\u00f3(ji)sti(h)bus;(g.) (;)\\r\\ncul(g)p\\u00e1(h)rum(f) la(g)psus(e) c\\u00f3r(fe)ri(d)ge(c'_) (,)\\r\\nnos(g) \\u00edm(hi)bu(j)ens(ih) vir(g)t\\u00fa(h)ti(f)bus.(g.) \\r\\n\\r\\n5.(::)\\r\\nIe(g)su,(hi) ti(j)bi(ih) sit(g) gl\\u00f3(h)ri(f)a,(g'_) (,)\\r\\nqui(i) na(k)tus(j) es(i) de(k) V\\u00edr(ji)gi(h)ne,(g.) (;)\\r\\ncum(g) Pa(h)tr<i>e</i>() et(f) al(g)mo(e) Sp\\u00ed(fe)ri(d)tu,(c'_) (,)\\r\\nin(g) sem(hi)pi(j)t\\u00e9r(ih)na(g) s\\u01fd(h)cu(f)la.(g.) (::)\\r\\n\\r\\nA(ghg)men.(gh..) (::)\\r\\n",
|
|
1762
|
+
office: "hy",
|
|
1763
|
+
mode: "8",
|
|
1764
|
+
pages: [
|
|
1765
|
+
{ page: "306", sequence: 0, extent: 1 }
|
|
1766
|
+
],
|
|
1767
|
+
},
|
|
1768
|
+
{
|
|
1769
|
+
id: "gregobase:15288",
|
|
1770
|
+
incipit: "Aptata virgo",
|
|
1771
|
+
gabc: "initial-style: 1;\\r\\nname: Aptata virgo;\\r\\nbook: Liber Hymnarius, p. 308;\\r\\noccasion: Commune Unius Virginis;\\r\\noffice-part: Ad Laudes H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 8;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Ap(g)t\\u00e1(g)ta,(fd) vir(e)go,(f) l\\u00e1m(gh)pa(h)de(g'_) (,)\\r\\nad(f) n\\u00fap(g)ti(h)as(ji) in(hg)gr\\u00e9s(hi)sa(hg) es(g.) (;)\\r\\n\\u00e6(j)t\\u00e9r(k)ni(i) re(j)gis(h) gl\\u00f3(j)ri(i)\\u00e6,(ghGF'_) (,)\\r\\nquem(f) lau(g)dant(h) tur(ji)b\\u00e6(hg) c\\u01fd(hi)li(hg)c\\u00e6.(g.) (::)\\r\\n\\r\\n\\r\\n",
|
|
1772
|
+
office: "hy",
|
|
1773
|
+
mode: "8",
|
|
1774
|
+
pages: [
|
|
1775
|
+
{ page: "308", sequence: 2, extent: 2 }
|
|
1776
|
+
],
|
|
1777
|
+
},
|
|
1778
|
+
{
|
|
1779
|
+
id: "gregobase:15289",
|
|
1780
|
+
incipit: "Iesu corona virginum",
|
|
1781
|
+
gabc: "initial-style: 1;\\r\\nname: Iesu corona virginum;\\r\\nbook: Liber Hymnarius, p. 310;\\r\\noccasion: Commune Unius Virginis;\\r\\noffice-part: Ad Vesperas H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 8;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Ie(g)su,(hi) co(j)r\\u00f3(ih)na(g) v\\u00edr(h)gi(f)num,(g'_) (,)\\r\\nquem(i) Ma(k)ter(j) il(i)la(k) c\\u00f3n(ji)ci(h)pit(g.) (;)\\r\\nqu\\u00e6(g) so(h)la(f) vir(g)go(e) p\\u00e1r(fe)tu(d)rit,(c'_) (,)\\r\\nh\\u00e6c(g) vo(hi)ta(j) cle(ih)mens(g) \\u00e1c(h)ci(f)pe,(g.) \\r\\n\\r\\n2.(::)\\r\\nQui(g) pa(hi)scis(j) in(ih)ter(g) l\\u00ed(h)li(f)a(g'_) (,)\\r\\ns\\u00e6p(i)tus(k) cho(j)r\\u00e9(i)is(k) v\\u00edr(ji)gi(h)num,(g.) (;)\\r\\nspon(g)sus(h) de(f)c\\u00f3(g)rus(e) gl\\u00f3(fe)ri(d)a(c'_) (,)\\r\\nspon(g)s\\u00eds(hi)que(j) red(ih)dens(g) pr\\u01fd(h)mi(f)a.(g.) \\r\\n\\r\\n3.(::)\\r\\nQuo(g)c\\u00fam(hi)que(j) per(ih)gis,(g) v\\u00edr(h)gi(f)nes(g'_) (,)\\r\\nse(i)qu\\u00fan(k)tur,(j) at(i)que(k) l\\u00e1u(ji)di(h)bus(g.) (;)\\r\\npost(g) te(h) ca(f)n\\u00e9n(g)tes(e) c\\u00far(fe)si(d)tant(c'_) (,)\\r\\nhym(g)n\\u00f3s(hi)que(j) dul(ih)ces(g) p\\u00e9r(h)so(f)nant(g.) \\r\\n\\r\\n4.(::)\\r\\nTe(g) de(hi)pre(j)c\\u00e1(ih)mur,(g) l\\u00e1r(h)gi(f)us(g'_) (,)\\r\\nno(i)stris(k) a(j)d\\u00e1u(i)ge(k) m\\u00e9n(ji)ti(h)bus(g.) (;)\\r\\nne(g)sc\\u00ed(h)re(f) pror(g)sus(e) \\u00f3m(fe)ni(d)a(c'_) (,)\\r\\ncor(g)rup(hi)ti(j)\\u00f3(ih)nis(g) v\\u00fal(h)ne(f)ra.(g.) \\r\\n\\r\\n5.(::)\\r\\nIe(g)su,(hi) ti(j)bi(ih) sit(g) gl\\u00f3(h)ri(f)a,(g'_) (,)\\r\\nqui(i) na(k)tus(j) es(i) de(k) V\\u00edr(ji)gi(h)ne(g.) (;)\\r\\ncum(g) Pa(h)tr<i>e</i>() et(f) al(g)mo(e) Sp\\u00ed(fe)ri(d)tu,(c'_) (,)\\r\\nin(g) sem(hi)pi(j)t\\u00e9r(ih)na(g) s\\u01fd(h)cu(f)la.(g.) (::)\\r\\n\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
1782
|
+
office: "hy",
|
|
1783
|
+
mode: "8",
|
|
1784
|
+
pages: [
|
|
1785
|
+
{ page: "310", sequence: 1, extent: 2 }
|
|
1786
|
+
],
|
|
1787
|
+
},
|
|
1788
|
+
{
|
|
1789
|
+
id: "gregobase:15366",
|
|
1790
|
+
incipit: "Alleluia spiritus Domini replevit",
|
|
1791
|
+
gabc: "(c3) Al(d/fh~)le(h)l\\u00fa(Hs/0Hs/0Hs<)ja,(hih___/jvI'HGhf__ ,) Sp\\u00ed(fg)ri(f)tus(f) D\\u00f3(fg)mi(f)ni(f'_ ,) re(f)pl\\u00e9(fg)vit(f) or(f!gw!h>)bem(e) ter(f!gwh)r\\u00e1(h)rum,(gf..) (;)\\r\\nve(f!gwh)ni(e)te,(f!gwh) a(h)do(g)r\\u00e9(h)mus,(f.) (,)\\r\\nal(f!gw!h>)le(evd/eo1!fv)l\\u00fa(fe/ede)ja.(ed..) (::)",
|
|
1792
|
+
office: "an",
|
|
1793
|
+
mode: "5",
|
|
1794
|
+
pages: [
|
|
1795
|
+
{ page: "98", sequence: 1, extent: 1 }
|
|
1796
|
+
],
|
|
1797
|
+
},
|
|
1798
|
+
{
|
|
1799
|
+
id: "gregobase:15367",
|
|
1800
|
+
incipit: "Lux iucunda",
|
|
1801
|
+
gabc: "(c3)Lux(c) iu(e)c\\u00fan(f)da,(e') lux(h) in(g)s\\u00ed(f)gnis,(e.) (;)\\r\\nqua(f) de(g) thro(e)no(c') mis(d)sus(c) i(bc)gnis(e.) (;)\\r\\nin(f) Chri(g)sti(f) di(e)sc\\u00ed(d)pu(e)los,(e.) (::)\\r\\n\\r\\n2. Cor(c)da(e) re(f)plet,(e') lin(h)guas(g) di(f)tat,(e.) (;)\\r\\nad(f) con(g)c\\u00f3r(e)des(c') nos(d) in(c)v\\u00ed(bc)tat(e.) (;)\\r\\ncor(f)dis,(g) lin(f)gu\\u00e6(e) m\\u00f3(d)du(e)los.(e.) (::)\\r\\n\\r\\n3. Con(i)so(h)l\\u00e1(i)tor(g') al(h)me,(f) ve(d)ni,(e.) (;)\\r\\nlin(e)guas(g) re(i)ge,(i') cor(j)da(h) le(i)ni:(i.) (;)\\r\\nni(j)hil(k) fel(l)lis(k) aut(ji) ve(h)n\\u00e9(i)ni(i.) (;)\\r\\nsub(i) tu(g)a(h) pr\\u00e6(fe)s\\u00e9n(d)ti(e)a.(e.) (::)\\r\\n\\r\\n4. No(i)va(h) fa(i)cti(g') cre(h)a(f)t\\u00fa(d)ra,(e.) (;)\\r\\nte(e) lau(g)d\\u00e1(i)mus(i') men(j)te(h) pu(i)ra,(i.) (;)\\r\\ngr\\u00e1(j)ti(k)\\u00e6(l) nunc,(k) sed(ji) na(h)t\\u00fa(i)ra(i.) (;)\\r\\npri(i)us(g) i(h)r\\u00e6(fe) f\\u00ed(d)li(e)i.(e.) (::)\\r\\n\\r\\n5. Tu(e) qui(e) da(f)tor(e') es(g) et(h) do(ij)num,(i.) (;)\\r\\nno(j)stri(k) cor(j)dis(i') om(j)ne(gf) bo(h)num,(i.) (;)\\r\\ncor(e) ad(g) lau(i)dem(i') red(j)de(h) pro(i)num,(i.) (;)\\r\\nno(i)str\\u00e6(j) lin(h)gu\\u00e6(f') for(h)mans(g) so(f)num(e.) (;)\\r\\nin(d) tu(f)a(hi) pr\\u00e6(e)c\\u00f3(f)ni(e)a.(e.) (::)\\r\\n\\r\\n6. Tu(e) nos(e) pur(f)ges(e') a(g) pec(h)c\\u00e1(ij)tis,(i.) (;)\\r\\nau(j)ctor(k) i(j)pse(i') pi(j)e(gf)t\\u00e1(h)tis,(i.) (;)\\r\\net(e) in(g) Chri(i)sto(i') re(j)no(h)v\\u00e1(i)tis(i.) (;)\\r\\nda(i) per(j)f\\u00e9(h)ct\\u00e6(f') no(h)vi(g)t\\u00e1(f)tis(e.) (;)\\r\\nple(d)na(f) no(hi)bis(e) g\\u00e1u(f)di(e)a.(e.) (::)\\r\\n",
|
|
1802
|
+
office: "hy",
|
|
1803
|
+
mode: "7",
|
|
1804
|
+
pages: [
|
|
1805
|
+
{ page: "98", sequence: 2, extent: 2 }
|
|
1806
|
+
],
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
id: "gregobase:15453",
|
|
1810
|
+
incipit: "Immensa et una",
|
|
1811
|
+
gabc: "initial-style: 1;\\r\\nname: Immensa et una;\\r\\nbook: Liber Hymnarius p. 105;\\r\\noccasion: Sanctissimae Trinitatus;\\r\\noffice-part: Ad Vesperas H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 8;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Im(gh)m\\u00e9n(gf)s<i>a</i>() et(d) u(e)na,(f) Tr\\u00ed(gh)ni(h)tas,(g.) (,)\\r\\ncu(gh)ius(gf) po(d)t\\u00e9(e)stas(f) \\u00f3m(gh)ni(h)a(g.) (;)\\r\\nfa(h)cit(j) re(ij)g\\u00edt(h)que(gf) t\\u00e9m(gh)po(gf)ra(e_) (,)\\r\\net(g) ex(fe)stat(d) an(e)te(f) s\\u01fd(gh)cu(h)la.(g.) \\r\\n\\r\\n2.(::)\\r\\nTu(gh) so(gf)la(d) ple(e)no(f) s\\u00faf(gh)fi(h)cis(g.) (,)\\r\\nti(gh)bi(gf) be(d)\\u00e1(e)ta(f) g\\u00e1u(gh)di(h)o;(g.) (;)\\r\\ntu(h) pu(j)ra,(ij) sim(h)plex,(gf) pr\\u00f3(gh)vi(gf)da(e_) (,)\\r\\nc\\u00e6(g)los(fe) et(d) or(e)bem(f) c\\u00f3n(gh)ti(h)nes.(g.) \\r\\n\\r\\n3.(::)\\r\\nOm(gh)nis,(gf) Pa(d)ter,(e) fons(f) gr\\u00e1(gh)ti(h)\\u00e6,(g.) (,)\\r\\nLu(gh)men(gf) pa(d)t\\u00e9r(e)n\\u00e6(f) gl\\u00f3(gh)ri(h)\\u00e6,(g.) (;)\\r\\nSan(h)ct<i>e</i>() u(j)tri(ij)\\u00fas(h)que(gf) Sp\\u00ed(gh)ri(gf)tus(e_) (,)\\r\\nin(g)ter(fe)mi(d)n\\u00e1(e)ta(f) c\\u00e1(gh)ri(h)tas,(g.) \\r\\n\\r\\n4.(::)\\r\\nEx(gh) te(gf) su(d)pr\\u00e9(e)m<i>a</i>() o(f)r\\u00ed(gh)gi(h)ne,(g.) (,)\\r\\nTri(gh)as(gf) be(d)n\\u00ed(e)gna,(f) pr\\u00f3(gh)flu(h)it(g.) (;)\\r\\ncre(h)\\u00e1(j)ta(ij) quic(h)quid(gf) s\\u00fa(gh)sti(gf)net,(e_) (,)\\r\\nquic(g)quid(fe) de(d)c\\u00f3(e)re(f) p\\u00e9r(gh)fi(h)cit.(g.) \\r\\n\\r\\n5.(::)\\r\\nQuos(gh) et(gf) co(d)r\\u00f3(e)na(f) m\\u00fa(gh)ne(h)ras(g.) (,)\\r\\na(gh)dop(gf)ti(d)\\u00f3(e)nis(f) \\u00edn(gh)ti(h)m\\u00e6,(g.) (;)\\r\\nnos(h) tem(j)pla(ij) fac(h) ni(gf)t\\u00e9n(gh)ti(gf)a(e_) (,)\\r\\nti(g)bi(fe) pla(d)c\\u00e9(e)re(f) i\\u00fa(gh)gi(h)ter.(g.) \\r\\n\\r\\n6.(::)\\r\\nO(gh) vi(gf)va(d) lux,(e) nos(f) \\u00e1n(gh)ge(h)lis(g.) (,)\\r\\nda(gh) iun(gf)g<i>i</i>() in(d) au(e)la(f) c\\u01fd(gh)li(h)ca,(g.) (;)\\r\\nut(h) gra(j)t<i>i</i>() a(ij)m\\u00f3(h)ris(gf) l\\u00e1u(gh)di(gf)bus(e_) (,)\\r\\nte(g) con(fe)ci(d)n\\u00e1(e)mus(f) p\\u00e9r(gh)pe(h)tim.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
1812
|
+
office: "hy",
|
|
1813
|
+
mode: "8",
|
|
1814
|
+
pages: [
|
|
1815
|
+
{ page: "105", sequence: 0, extent: 1 }
|
|
1816
|
+
],
|
|
1817
|
+
},
|
|
1818
|
+
{
|
|
1819
|
+
id: "gregobase:15454",
|
|
1820
|
+
incipit: "Te Patrem summum",
|
|
1821
|
+
gabc: "initial-style: 1;\\r\\nname: Te Patrem summum;\\r\\nbook: Liber Hymnarius p. 107;\\r\\noccasion: Sanctissimae Trinitatis;\\r\\noffice-part: Ad Officium lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 1;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Te(h_) Pa(g)trem(h) sum(gf)mum(e.) (,) ge(e)ni(g)t\\u00fam(e)que(f) Ver(e.)bum(d.) (;)\\r\\nFla(d)men(d) ac(dh) San(h)ctum(h_g_j_) D\\u00f3(i)mi(h)num(g) fa(h)t\\u00e9n(gf)tur(e.) (:)\\r\\n\\u00fa(f_)ni(e)cum,(g) quot(ghGEf)quot(d.) (,) pa(e)ra(g)d\\u00ed(e)s<i>i</i>() a(f)moe(ed)nus(c'_) (,)\\r\\nhor(f_)tus(e) a(g)d\\u00fa(fe)nat.(d.) \\r\\n\\r\\n2.(::)\\r\\nQuam(h_) mo(g)dis(h) mi(gf)ris,(e.) (,) Tri(e)as(g) al(e)ma,(f) vi(e.)vas(d.) (;)\\r\\np\\u00e9r(d)ci(d)pit(dh) ne(h)mo,(h_g_j_) ta(i)men(h) us(g)qu<i>e</i>() in(h) \\u00e6(gf)vum(e.) (:)\\r\\nc\\u01fd(f_)li(e)tes(g) vul(ghGEf)tu(d.) (,) s\\u00e1(e)ti(g)as,(e) a(f)l\\u00e1(ed)cri(c'_) (,)\\r\\nvo(f_)ce(e) ca(g)n\\u00e9n(fe)tes.(d.) \\r\\n\\r\\n3.(::)\\r\\nTe(h_) ca(g)nunt(h) mun(gf)di(e.) (,) sta(e)tu(g)\\u00eds(e)se(f) mo(e.)lem,(d.) (;)\\r\\nL\\u00fa(d)mi(d)n<i>e</i>() \\u00e6(dh)t\\u00e9r(h)no(h_g_j_) r\\u00e9(i)ge(h)r<i>e</i>() u(g)ni(h)v\\u00e9r(gf)sa,(e.) (:)\\r\\n\\u00ed(f_)gni(e)bus(g) cel(ghGEf)si(d.) (,) re(e)fo(g)v\\u00e9(e)r<i>e</i>() A(f)m\\u00f3(ed)ris(c'_) (,)\\r\\ncor(f_)da(e) tu(g)\\u00f3(fe)rum.(d.) \\r\\n\\r\\n4.(::)\\r\\nMen(h_)te(g) per(h)m\\u00ed(gf)sti(e.) (,) s\\u00fa(e)pe(g)rum(e) ca(f)t\\u00e9r(e.)vis,(d.) (;)\\r\\niam(d) cho(d)ris(dh) il(h)lis(h_g_j_) so(i)ci(h)\\u00e1(g)mus(h) hym(gf)nos,(e.) (:)\\r\\nqui(f_) tu(e)<i>a</i>() op(g)t\\u00e1(ghGEf)mus(d.) (,) fo(e)re(g) sem(e)pi(f)t\\u00e9r(ed)na(c'_) (,)\\r\\npa(f_)ce(e) be(g)\\u00e1(fe)ti.(d.) (::)\\r\\nA(ded)men.(cd..) (::)\\r\\n",
|
|
1822
|
+
office: "hy",
|
|
1823
|
+
mode: "1",
|
|
1824
|
+
pages: [
|
|
1825
|
+
{ page: "107", sequence: 1, extent: 2 }
|
|
1826
|
+
],
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
id: "gregobase:15455",
|
|
1830
|
+
incipit: "Trinitas summo",
|
|
1831
|
+
gabc: "initial-style: 1;\\r\\nname: Trinitas summo;\\r\\nbook: Liber Hymnarius p. 108;\\r\\noccasion: Sanctissimae Trinitatis;\\r\\noffice-part: Ad Officium lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 1;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Tr\\u00ed(d!efd)ni(dc)tas,(cd) sum(d.)mo(d.) (,) s\\u00f3(f)li(e)o(d) co(e)r\\u00fa(e.)scans,(d.) (;)\\r\\ngl\\u00f3(dhiv)ri(h)\\u00e6(h) car(hg)men(g_h) ti(f)bi(gh) sit(g) pe(fg)r\\u00e9n(gvFE)ne,(d.) (:)\\r\\nqu\\u00e6(dg) te(fe)nes(dc) no(dd)stri(c.) (,) ve(fe)he(fg)m\\u00e9n(fe)t<i>i</i>() a(dc)m\\u00f3(de)re(e_d_) (,)\\r\\np\\u00e9(d!efd)cto(dc)ris(cd) i(d.)ma.(d.) \\r\\n\\r\\n2.(::)\\r\\nC\\u00f3n(d!efd)di(dc)tor(cd) re(d.)rum,(d.) (,) Pa(f)ter,(e) al(d)ma(e) vir(e.)tus,(d.) (;)\\r\\nquos(dhiv) tu(h)\\u00e6(h) vi(hg)t\\u00e6(g_h) fa(f)cis(gh) at(g)que(fg) for(gvFE)m\\u00e6(d.) (:)\\r\\nes(dg)se(fe) con(dc)s\\u00f3r(dd)tes,(c.) (,) f\\u00ed(fe)de(fg)i(fe) fac(dc) us(de)que(e_d_) (,)\\r\\ndo(d!efd)na(dc) me(cd)r\\u00e9(d.)ri.(d.) \\r\\n\\r\\n3.(::)\\r\\nCan(d!efd)dor(dc) \\u00e6(cd)t\\u00e9r(d.)n\\u00e6(d.) (,) spe(f)cu(e)l\\u00fam(d)que(e) lu(e.)cis,(d.) (;)\\r\\nNa(dhiv)te,(h) quos(h) di(hg)cis(g_h) so(f)ci(gh)\\u00e1s(g)que(fg) fra(gvFE)tres,(d.) (:)\\r\\np\\u00e1l(dg)mi(fe)tes(dc) vi(dd)ti(c.) (,) ti(fe)bi(fg) nos(fe) i(dc)n\\u00e9s(de)se(e_d_) (,)\\r\\nda(d!efd) vi(dc)ri(cd)d\\u00e1n(d.)tes.(d.) \\r\\n\\r\\n4.(::)\\r\\nC\\u00e1(d!efd)ri(dc)tas,(cd) i(d.)gnis,(d.) (,) p\\u00ed(f)e(e)tas,(d) po(e)t\\u00e9n(e.)ti(d.) (;)\\r\\nl\\u00fa(dhiv)mi(h)n<i>e</i>() ac(h) blan(hg)do(g_h) m\\u00f3(f)de(gh)rans(g) cre(fg)\\u00e1(gvFE)ta,(d.) (:)\\r\\nSp\\u00ed(dg)ri(fe)tus,(dc) men(dd)tem(c.) (,) r\\u00e9(fe)no(fg)va,(fe) fo(dc)v\\u00e9(de)to(e_d_) (,)\\r\\n\\u00edn(d!efd)ti(dc)ma(cd) cor(d.)dis.(d.) \\r\\n\\r\\n5.(::)\\r\\nHo(d!efd)spes(dc) o(cd) dul(d.)cis,(d.) (,) Tri(f)as(e) ob(d)se(e)cr\\u00e1n(e.)da,(d.) (;)\\r\\nnos(dhiv) ti(h)bi(h) iu(hg)gi(g_h) fac(f) a(gh)m\\u00f3(g)re(fg) ne(gvFE)xos,(d.) (:)\\r\\np\\u00e9r(dg)pe(fe)tes(dc) do(dd)nec(c.) (,) mo(fe)du(fg)l\\u00e9(fe)mur(dc) hym(de)nos(e_d_) (,)\\r\\nte(d!efd)que(dc) fru(cd)\\u00e1(d.)mur.(d.) (::)\\r\\nA(ded)men.(cd..) (::)\\r\\n",
|
|
1832
|
+
office: "hy",
|
|
1833
|
+
mode: "1",
|
|
1834
|
+
pages: [
|
|
1835
|
+
{ page: "108", sequence: 0, extent: 1 }
|
|
1836
|
+
],
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
id: "gregobase:15456",
|
|
1840
|
+
incipit: "Deum verum",
|
|
1841
|
+
gabc: "initial-style: 1;\\r\\nname: Deum verum;\\r\\nbook: Liber Hymnarius p. 106;\\r\\noccasion: Sanctissimae Trinitatis;\\r\\noffice-part: Ad Invitatorium;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 4;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)De(cdefv)um(e) ve(dffe)rum,(d_c_) (,) u(de)num(e') in(e>) Tri(c)ni(de)t\\u00e1(efg)te(ffe.) (;) et(e) Tri(g)ni(gh)t\\u00e1(h_g_/hv_GFg)tem(ffe.) (,) in(e) U(dc)ni(de)t\\u00e1(efg_FE)te,(ddoe.) (;) ve(c_d)n\\u00ed(e)te,(fg) ad(g_f_/g_1hGFf)o(de)r\\u00e9(e.)mus.(e.) (::)\\r\\n",
|
|
1842
|
+
office: "an",
|
|
1843
|
+
mode: "4",
|
|
1844
|
+
pages: [
|
|
1845
|
+
{ page: "106", sequence: 0, extent: 1 }
|
|
1846
|
+
],
|
|
1847
|
+
},
|
|
1848
|
+
{
|
|
1849
|
+
id: "gregobase:15488",
|
|
1850
|
+
incipit: "Iam surgit",
|
|
1851
|
+
gabc: "initial-style: 1;\\r\\nname: Iam surgit;\\r\\nbook: Liber Hymnarius, p. 85;\\r\\noccasion: Cunctis diebus;\\r\\noffice-part: Ad Tertiam H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 1;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)IAM(h) sur(h)git(h) ho(hg)ra(f) t\\u00e9r(g)ti(gh)a,(h'_) (,)\\r\\nqua(d) Chri(d)stus(g) a(fe)sc\\u00e9n(d)dit(e) cru(d)cem;(c.) (;)\\r\\nnil(d) \\u00edn(f)so(d)lens(e) mens(f) c\\u00f3(g)gi(f)tet,(ghg'_1) (,)\\r\\nin(f)t\\u00e9n(e)dat(g) af(fe)f\\u00e9(c)ctum(ef) pre(d)cis.(d.) \\r\\n\\r\\n2.(::)\\r\\nQui(h) cor(h)de(h) Chri(hg)stum(f) s\\u00fa(g)sci(gh)pit,(h'_) (,)\\r\\nin(d)n\\u00f3(d)xi(g)um(fe) sen(d)sum(e) ge(d)rit(c.) (;)\\r\\nvo(d)t\\u00eds(f)que(d) pr\\u00e6(e)stat(f) s\\u00e9(g)du(f)lis(ghg'_1) (,)\\r\\nSan(f)ctum(e) me(g)r\\u00e9(fe)ri(c) Sp\\u00ed(ef)ri(d)tum.(d.) \\r\\n\\r\\n3.(::)\\r\\nH\\u00e6c(h) ho(h)ra,(h) qu\\u00e6(hg) fi(f)nem(g) de(gh)dit(h'_) (,)\\r\\ndi(d)ri(d) ve(g)t\\u00e9r(fe)no(d) cr\\u00ed(e)mi(d)nis;(c.) (;)\\r\\nhinc(d) iam(f) be(d)\\u00e1(e)ta(f) t\\u00e9m(g)po(f)ra(ghg'_1) (,)\\r\\ncoe(f)p\\u00e9(e)re(g) Chri(fe)sti(c) gr\\u00e1(ef)ti(d)a.(d.) \\r\\n\\r\\n4.(::)\\r\\nIe(h)su,(h) ti(h)bi(hg) sit(f) gl\\u00f3(g)ri(gh)a,(h'_) (,)\\r\\nqui(d) mor(d)te(g) vi(fe)cta(d) pr\\u01fd(e)ni(d)tes,(c.) (;)\\r\\ncum(d) Pa(f)tr<i>e</i>() et(d) al(e)mo(f) Sp\\u00ed(g)ri(f)tu,(ghg'_1) (,)\\r\\nin(f) sem(e)pi(g)t\\u00e9r(fe)na(c) s\\u01fd(ef)cu(d)la.(d.) (::)\\r\\nA(ded)men.(cd..) (::)\\r\\n",
|
|
1852
|
+
office: "hy",
|
|
1853
|
+
mode: "1",
|
|
1854
|
+
pages: [
|
|
1855
|
+
{ page: "85", sequence: 0, extent: 1 }
|
|
1856
|
+
],
|
|
1857
|
+
},
|
|
1858
|
+
{
|
|
1859
|
+
id: "gregobase:15508",
|
|
1860
|
+
incipit: "Venite exsultemus IV",
|
|
1861
|
+
gabc: "initial-style: 1;\\r\\nname: Venite exsultemus IV;\\r\\nbook: Liber Hymnarius p. 138;\\r\\noccasion: ;\\r\\noffice-part: Invitatorium;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 4;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Ve(e)n\\u00ed(g)te,(h) ex(h)sul(h)t\\u00e9(h)mus(g) D\\u00f3(hi)mi(hg)no,(h'_) (,) iu(e)bi(g)l\\u00e9(h)mus(h) De(h)o,(h) sa(g)lu(fv_ED)t\\u00e1(e)ri(g) no(e_f)stro.(e.) (;) Pr\\u00e6(e)oc(g)cu(h)p\\u00e9(h)mus(h) f\\u00e1(h)ci(h)em(g) e(hi)ius(h'_) (,) in(g) con(fv_ED~)fes(e)si(g)\\u00f3(e_f)ne,(ed..) (;) et(c) in(de~) psal(fe~)mis(d') iu(e)bi(f)l\\u00e9(g)mus(gh) e(g)i.(fe..) (::Z-)\\r\\n\\r\\nQu\\u00f3(e)ni(g)am(h) De(h)us(h) ma(h)gnus(g) D\\u00f3(hi)mi(hg)nus,(h'_) (,) et(e) rex(g_h) ma(h)gnus(h) su(g)per(fv_ED) om(e)nes(g) de(e_f)os.(e.) (;) Qu\\u00f3(e)ni(g)am(h) non(h) re(h)p\\u00e9l(h)let(h) D\\u00f3(h)mi(h)nus(h) ple(h)bem(g) su(hi)am,(h'_) (,) qui(e)a(g) in(h) ma(h)nu(h) e(h)ius(h'_) (,) sunt(h) om(g)nes(fv_ED) fi(e)nes(g) ter(e_f)r\\u00e6,(ed..) (;) et(c) al(de~)ti(e)t\\u00fa(e)di(e)nes(e) m\\u00f3n(f)ti(fe)um(d') i(e)pse(f) c\\u00f3n(gh)spi(g)cit.(fe..) (::Z-)\\r\\n\\r\\nQu\\u00f3(e)ni(g)am(h) i(h)ps\\u00ed(h)us(h) est(h) ma(h)re,(h'_) et(h) i(h)pse(h) fe(h)cit(g) il(hi)lud,(h'_) (,) et(e) \\u00e1(g)ri(h)dam(h) fun(h)da(h)v\\u00e9(g)runt(fv_ED) ma(e)nus(g) e(e_f)ius.(e.) (;) Ve(e)n\\u00ed(g)te,(h) a(h)do(h)r\\u00e9(h)mus,(h'_) (,) et(h) pro(h)ci(h)d\\u00e1(h)mus(h) an(h)te(g) De(hi)um,(h'_) (,) plo(e)r\\u00e9(g)mus(h) co(h)ram(h) D\\u00f3(h)mi(h)no,(h) qui(g) fe(hi)cit(hg) nos,(h.) (,) qui(e)a(g) i(h)pse(h) est(h) D\\u00f3(h)mi(g)nus(fv_ED) De(e)us(g) no(e_f)ster,(ed..) (;) nos(c) au(de~)tem(e) p\\u00f3(e)pu(e)lus(e) e(ef~)ius,(e'_) (,) et(e) o(fe)ves(d') p\\u00e1(e)scu(f)\\u00e6(gh) e(g)ius.(fe..) (::Z-)\\r\\n\\r\\nH\\u00f3(e)di(g)e,(h) si(h) vo(h)cem(h) e(h)ius(h) au(h)di(g)\\u00e9(hi)ri(hg)tis:(h'_) \\u00ab(,)No(e)l\\u00ed(g)te(h) ob(h)du(h)r\\u00e1(g)re(fv_ED) cor(e)da(g) ve(e_f)stra,(e.) (;) si(e)cut(g) in(h) e(h)xa(h)cer(h)ba(h)ti(h)\\u00f3(h)ne(h) se(h)c\\u00fan(h)dum(g) di(hi)em(h'_) (,) ten(e)ta(g)ti(h)\\u00f3(h)nis(h) in(h) de(g)s\\u00e9r(hi)to,(h'_) (,) u(e)bi(g) ten(h)ta(h)v\\u00e9(h)runt(g) me(fv_ED) pa(e)tres(g) ve(e_f)stri:(ed..) (;) pro(c)ba(de)v\\u00e9(e)runt(e) et(e) vi(e)d\\u00e9(fe)runt(d') \\u00f3(e)pe(f)ra(gh) me(g)a.(fe..) (::Z-)\\r\\n\\r\\nQua(e)dra(g)g\\u00edn(h)ta(h) an(h)nis(h) pr\\u00f3(h)xi(h)mus(g) fu(hi)i(h'_) (,) ge(e)ne(g)ra(h)ti(h)\\u00f3(h)ni(h) hu(g)ic,(h'_) (,) et(h) di(h)xi:(h') (`) Sem(h)per(g) hi(fv_ED) er(e)rant(g) cor(e_f)de.(e.) (;) I(e)psi(g) ve(h)ro(h) non(h) co(h)gno(h)v\\u00e9(h)runt(h) vi(h)as(g) me(hi)as,(h'_) (,) qui(e)bus(g) iu(h)r\\u00e1(h)vi(g) in(fv_ED) i(e)ra(g) me(e_f)a:(ed..) (;) Si(c) in(de~)tro(e)\\u00ed(fe)bunt(d') in(d) r\\u00e9(e)qui(f)em(gh) me(g)am.\\u00bb(fe..) (::Z-)\\r\\n\\r\\nGl\\u00f3(e)ri(g)a(h) Pa(h)tri,(h) et(g) F\\u00ed(hi)li(hg)o,(h'_) (,) et(h) Spi(g)r\\u00ed(fv_ED)tu(e)i(g) San(e_f)cto.(e.) (;) Si(e)cut(g) e(h)rat(h) in(h) prin(g)c\\u00ed(hi)pi(hg)o,(h_g_) et(fv_ED~) nunc,(e) et(g) sem(e_f)per,(ed..) (;) et(c) in(de~) s\\u01fd(f)cu(fe)la(d') s\\u00e6(e)cu(f)l\\u00f3(g)rum.(gh) A(g)men.(fe..) (::Z-)\\r\\n",
|
|
1862
|
+
office: "ps",
|
|
1863
|
+
mode: "4",
|
|
1864
|
+
pages: [
|
|
1865
|
+
{ page: "138", sequence: 2, extent: 4 }
|
|
1866
|
+
],
|
|
1867
|
+
},
|
|
1868
|
+
{
|
|
1869
|
+
id: "gregobase:15509",
|
|
1870
|
+
incipit: "Iam lucis orto sidere",
|
|
1871
|
+
gabc: "(c4)Iam(e) lu(c)cis(d) or(f)to(ef) si(g)de(f)re(e_',)\\r\\nDe(e)um(c) pre(d)ce(f)mur(ef) sup(g)pli(g)ces,(g.) (;)\\r\\nut(g) in(f) di(g)ur(h)nis(gf) ac(g)ti(f)bus(e_',)\\r\\nnos(e) ser(c)vet(d) a(f) no(ef)cen(g)ti(f)bus.(e.) (::)\\r\\n",
|
|
1872
|
+
office: "hy",
|
|
1873
|
+
mode: "4",
|
|
1874
|
+
pages: [
|
|
1875
|
+
{ page: "233", sequence: 0, extent: 1 }
|
|
1876
|
+
],
|
|
1877
|
+
},
|
|
1878
|
+
{
|
|
1879
|
+
id: "gregobase:15524",
|
|
1880
|
+
incipit: "Veniens Mater Inclitus",
|
|
1881
|
+
gabc: "(c4) VE(h)ni(hhg)ens(ed) ma(g)ter(hj) \\u00edn(ji)cli(hi)ta,(i)\\r\\n(;) cum(k) Sanc(kj)ti(i) do(ji)no(h) Sp\\u00ed(ih)ri(gh)tus,(h)\\r\\n(:) nos(k) ut(k) Io(i)\\u00e1n(k)nem(klk) v\\u00ed(j)si(i)ta(hiHG)\\r\\n(;) in(i) hui(jk)us(i) car(ji)nis(h) s\\u00e9(ih)di(gh)bus.(h)\\r\\n(::)",
|
|
1882
|
+
office: "hy",
|
|
1883
|
+
mode: "2",
|
|
1884
|
+
pages: [
|
|
1885
|
+
{ page: "376", sequence: 0, extent: 1 }
|
|
1886
|
+
],
|
|
1887
|
+
},
|
|
1888
|
+
{
|
|
1889
|
+
id: "gregobase:15553",
|
|
1890
|
+
incipit: "Verbum supernum prodiens",
|
|
1891
|
+
gabc: "initial-style: 1;\\r\\nname: Verbum supernum prodiens;\\r\\nbook: Liber Hymnarius p. 115;\\r\\noccasion: Sanctissimae Corporis et Sanguinis Christi;\\r\\noffice-part: Laudes H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 8;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Ver(g)bum(ghwih) su(gf)p\\u00e9r(hg)num(hiwji) pr\\u00f3d(hg)i(fg)ens(g.) (;)\\r\\nnec(g) Pa(ih)tris(jk) lin(k)quens(ji) d\\u00e9x(hg)te(hj)ram,(j.) (:)\\r\\nad(j) o(h)pus(i) su(g)um(gh) \\u00e9x(hg)i(fg)ens(g.) (;)\\r\\nve(f)nit(hg) ad(hj) vi(ji)t\\u00e6(hg) v\\u00e9(hg)spe(fg)ram.(g.) \\r\\n\\r\\n2.(::)\\r\\nIn(g) mor(ghwih)tem(gf) a(hg) di(hiwji)sc\\u00ed(hg)pu(fg)lo(g.) (;)\\r\\nsu(g)is(ih) tra(jk)d\\u00e9n(k)dus(ji) \\u01fd(hg)mu(hj)lis,(j.) (:)\\r\\npri(j)us(h) in(i) vi(g)t\\u00e6(gh) f\\u00e9r(hg)cu(fg)lo(g.) (;)\\r\\nse(f) tr\\u00e1(hg)di(hj)dit(ji) di(hg)sc\\u00ed(hg)pu(fg)lis.(g.) \\r\\n(::) (Z)\\r\\n\\r\\n3. Qui(g)bus(ghwih) sub(gf) bi(hg)na(hiwji) sp\\u00e9(hg)ci(fg)e(g.) (;)\\r\\ncar(g)nem(ih) de(jk)dit(k) et(ji) s\\u00e1n(hg)gui(hj)nem,(j.) (:)\\r\\nut(j) d\\u00fa(h)pli(i)cis(g) sub(gh)st\\u00e1n(hg)ti(fg)\\u00e6(g.) (;)\\r\\nto(f)tum(hg) ci(hj)b\\u00e1(ji)ret(hg) h\\u00f3(hg)mi(fg)nem.(g.) \\r\\n\\r\\n(::)\\r\\n4. Se(g) na(ghwih)scens(gf) de(hg)dit(hiwji) s\\u00f3(hg)ci(fg)um,(g.) (;)\\r\\ncon(g)v\\u00e9(ih)scens(jk) in(k) e(ji)d\\u00fa(hg)li(hj)um,(j.) (:)\\r\\nse(j) m\\u00f3(h)ri(i)ens(g) in(gh) pr\\u00e9(hg)ti(fg)um,(g.) (;)\\r\\nse(f) re(hg)gnans(hj) dat(ji) in(hg) pr\\u01fd(hg)mi(fg)um.(g.) \\r\\n(::)\\r\\n5. O(g) sa(ghwih)lu(gf)t\\u00e1(hg)ris(hiwji) h\\u00f3(hg)sti(fg)a,(g.) (;)\\r\\nqu\\u00e6(g) c\\u00e6(ih)li(jk) pan(k)dis(ji) \\u00f3(hg)sti(hj)um,(j.) (:)\\r\\nbel(j)la(h) pre(i)munt(g) ho(gh)st\\u00ed(hg)li(fg)a:(g.) (;)\\r\\nda(f) ro(hg)bur,(hj) fer(ji) au(hg)x\\u00ed(hg)li(fg)um.(g.) \\r\\n\\r\\n(::)\\r\\n6. U(g)ni(ghwih) tri(gf)n\\u00f3(hg)que(hiwji) D\\u00f3(hg)mi(fg)no(g.) (;)\\r\\nsit(g) sem(ih)pi(jk)t\\u00e9r(k)na(ji) gl\\u00f3(hg)ri(hj)a,(j.) (:)\\r\\nqui(j) vi(h)tam(i) si(g)ne(gh) t\\u00e9r(hg)mi(fg)no(g.) (;)\\r\\nno(f)bis(hg) do(hj)net(ji) in(hg) p\\u00e1(hg)tri(fg)a.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
1892
|
+
office: "hy",
|
|
1893
|
+
mode: "8",
|
|
1894
|
+
pages: [
|
|
1895
|
+
{ page: "115", sequence: 0, extent: 2 }
|
|
1896
|
+
],
|
|
1897
|
+
},
|
|
1898
|
+
{
|
|
1899
|
+
id: "gregobase:15595",
|
|
1900
|
+
incipit: "Venite exsultemus",
|
|
1901
|
+
gabc: "initial-style: 1;\\r\\nname: Venite exsultemus;\\r\\nbook: Liber Hymnarius p. 179;\\r\\noccasion: Tempore Per Annum in Dominicis;\\r\\noffice-part: Ad Invitatorium;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: E;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(f3)Ve(g)n\\u00ed(g_f_!gwh)te(g_h_f_/g_f_/fe.) (,) ex(g)sul(h)t\\u00e9(i_g_)mus(i_h_) D\\u00f3(g_h_g_)mi(fg)no.(g.) (::)\\r\\n",
|
|
1902
|
+
office: "an",
|
|
1903
|
+
mode: "e",
|
|
1904
|
+
pages: [
|
|
1905
|
+
{ page: "179", sequence: 1, extent: 0 }
|
|
1906
|
+
],
|
|
1907
|
+
},
|
|
1908
|
+
{
|
|
1909
|
+
id: "gregobase:15596",
|
|
1910
|
+
incipit: "Regem magnum",
|
|
1911
|
+
gabc: "initial-style: 1;\\r\\nname: Regem magnum;\\r\\nbook: Liber Hymnarius p. 179;\\r\\noccasion: Tempore Per Annum in Feriis III;\\r\\noffice-part: Ad Invitatorium;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: E;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(f3)Re(e)gem(fg) ma(h)gnum(gf~) D\\u00f3(g)mi(g)num,(hi..) (;) ve(i)n\\u00ed(g)te,(h) ad(fe)o(fh)r\\u00e9(hiHG)mus.(g.) (::)\\r\\n",
|
|
1912
|
+
office: "an",
|
|
1913
|
+
mode: "e",
|
|
1914
|
+
pages: [
|
|
1915
|
+
{ page: "179", sequence: 3, extent: 0 }
|
|
1916
|
+
],
|
|
1917
|
+
},
|
|
1918
|
+
{
|
|
1919
|
+
id: "gregobase:15597",
|
|
1920
|
+
incipit: "Dominum qui fecit nos",
|
|
1921
|
+
gabc: "initial-style: 1;\\r\\nname: Dominum qui fecit nos;\\r\\nbook: Liber Hymnarius p. 179;\\r\\noccasion: Tempore Per Annum in Feriis IV;\\r\\noffice-part: Ad Invitatorium;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 6;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)D\\u00f3(f)mi(f)num(fg) qui(g) fe(gf)cit(g) nos,(gh..) (;) ve(h)n\\u00ed(gf)te,(gh) ad(g_0_1h_G_F_)o(fg)r\\u00e9(g.)mus.(f.) (::)\\r\\n",
|
|
1922
|
+
office: "an",
|
|
1923
|
+
mode: "6",
|
|
1924
|
+
pages: [
|
|
1925
|
+
{ page: "179", sequence: 4, extent: 1 }
|
|
1926
|
+
],
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
id: "gregobase:15598",
|
|
1930
|
+
incipit: "Adoremus Dominum",
|
|
1931
|
+
gabc: "initial-style: 1;\\r\\nname: Adoremus Dominum;\\r\\nbook: Liber Hymnarius p. 180;\\r\\noccasion: Tempore Per Annum in Feriis V;\\r\\noffice-part: Ad Invitatorium;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: E;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(f3)Ad(e)o(g_i_h_)r\\u00e9(fgh)mus(g_h/ffe) D\\u00f3(fg)mi(g)num(g.) (,) qui(g_f_!gwh) fe(g)cit(gihh) nos.(hg..) (::)\\r\\n",
|
|
1932
|
+
office: "an",
|
|
1933
|
+
mode: "e",
|
|
1934
|
+
pages: [
|
|
1935
|
+
{ page: "180", sequence: 1, extent: 1 }
|
|
1936
|
+
],
|
|
1937
|
+
},
|
|
1938
|
+
{
|
|
1939
|
+
id: "gregobase:15599",
|
|
1940
|
+
incipit: "Dominum Deum nsotrum",
|
|
1941
|
+
gabc: "initial-style: 1;\\r\\nname: Dominum Deum nsotrum;\\r\\nbook: Liber Hymnarius p. 180;\\r\\noccasion: Tempore Per Annum in Feriis VI;\\r\\noffice-part: Ad Invitatorium;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: E;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(f3)D\\u00f3(e)mi(fg)num(g) De(gh)um(g) no(h)strum,(fgF_E_) (;) ve(gh)ni(i)te(h) ad(ih)o(fg)re(g.)mus.(g.) (::)\\r\\n",
|
|
1942
|
+
office: "an",
|
|
1943
|
+
mode: "e",
|
|
1944
|
+
pages: [
|
|
1945
|
+
{ page: "180", sequence: 2, extent: 1 }
|
|
1946
|
+
],
|
|
1947
|
+
},
|
|
1948
|
+
{
|
|
1949
|
+
id: "gregobase:15600",
|
|
1950
|
+
incipit: "Populus Domini",
|
|
1951
|
+
gabc: "initial-style: 1;\\r\\nname: Populus Domini;\\r\\nbook: Liber Hymnarius p. 180;\\r\\noccasion: Tempore Per Annum in Sabbatis;\\r\\noffice-part: Ad Invitatorium;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: D;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c3)P\\u00f3(f)pu(e)lus(f) D\\u00f3(h)mi(hi)ni(i'_) (,) et(i) o(h')ves(i) p\\u00e1(j)scu(i)\\u00e6(h) e(i.)ius,(i.) (;) ve(jk)n\\u00ed(j)te(i') ad(j)o(ih)r\\u00e9(ij)mus(j) e(i.)um.(i.) (::)\\r\\n",
|
|
1952
|
+
office: "an",
|
|
1953
|
+
mode: "d",
|
|
1954
|
+
pages: [
|
|
1955
|
+
{ page: "180", sequence: 3, extent: 1 }
|
|
1956
|
+
],
|
|
1957
|
+
},
|
|
1958
|
+
{
|
|
1959
|
+
id: "gregobase:15601",
|
|
1960
|
+
incipit: "Aeterne rerum ... noctem",
|
|
1961
|
+
gabc: "initial-style: 1;\\r\\nname: Aeterne rerum conditor;\\r\\nbook: Liber Hymnarius, p. 184;\\r\\noccasion: Tempore Per Annum Diebus Dominicis I & III;\\r\\noffice-part: Ad Laudes H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 1;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)\\u00c6(f)t\\u00e9r(f)ne(g) re(h)rum(ixi) c\\u00f3n(h)di(g)tor,(h'_) (,)\\r\\nno(h)ctem(g) di(j)\\u00e9m(j)que(g) qui(h) re(ixi)gis,(h.) (;)\\r\\net(g) t\\u00e9m(h)po(g)rum(h) das(g) t\\u00e9m(e)po(f)ra(g'_) (,)\\r\\nut(g) \\u00e1l(h)le(g)ves(f) fa(e)st\\u00ed(fg)di(fe)um,(d.) \\r\\n\\r\\n2.(::)\\r\\nPr\\u00e6(f)co(f) di(g)\\u00e9(h)i(ixi) iam(h) so(g)nat,(h'_) (,)\\r\\nno(h)ctis(g) pro(j)f\\u00fan(j)d\\u00e6(g) p\\u00e9r(h)vi(ixi)gil,(h.) (;)\\r\\nno(g)ct\\u00far(h)na(g) lux(h) vi(g)\\u00e1n(e)ti(f)bus(g'_) (,)\\r\\na(g) no(h)cte(g) no(f)ctem(e) s\\u00e9(fg)gre(fe)gans.(d.) \\r\\n\\r\\n3.(::)\\r\\nHoc(f) ex(f)ci(g)t\\u00e1(h)tus(ixi) l\\u00fa(h)ci(g)fer(h'_) (,)\\r\\nsol(h)vit(g) po(j)lum(j) ca(g)l\\u00ed(h)gi(ixi)ne;(h.) (;)\\r\\nhoc(g) om(h)nis(g) er(h)r\\u00f3(g)num(e) cho(f)rus(g'_) (,)\\r\\nvi(g)as(h) no(g)c\\u00e9n(f)di(e) d\\u00e9(fg)se(fe)rit.(d.) \\r\\n\\r\\n4.(::)\\r\\nHoc(f) nau(f)ta(g) vi(h)res(ixi) c\\u00f3l(h)li(g)git(h'_) (,)\\r\\npon(h)t\\u00ed(g)que(j) mi(j)t\\u00e9(g)scunt(h) fre(ixi)ta;(h.) (;)\\r\\nhoc,(g) i(h)pse(g) Pe(h)tr<i>a</i>() Ec(g)cl\\u00e9(e)si(f)\\u00e6,(g'_) (,)\\r\\nca(g)n\\u00e9n(h)te,(g) cul(f)pam(e) d\\u00ed(fg)lu(fe)it.(d.) \\r\\n\\r\\n5.(::)\\r\\nIe(f)su,(f) la(g)b\\u00e1n(h)tes(ixi) r\\u00e9(h)spi(g)ce(h'_) (,)\\r\\net(h) nos(g) vi(j)d\\u00e9n(j)do(g) c\\u00f3r(h)ri(ixi)ge;(h.) (;)\\r\\nsi(g) r\\u00e9(h)spi(g)cis,(h) la(g)psus(e) ca(f)dunt(g'_) (,)\\r\\nfle(g)t\\u00fa(h)que(g) cul(f)pa(e) s\\u00f3l(fg)vi(fe)tur.(d.) \\r\\n\\r\\n6.(::)\\r\\nTu,(f) lux,(f) re(g)f\\u00fal(h)ge(ixi) s\\u00e9n(h)si(g)bus(h'_) (,)\\r\\nmen(h)t\\u00eds(g)que(j) som(j)num(g) d\\u00eds(h)cu(ixi)te;(h.) (;)\\r\\nte(g) no(h)stra(g) vox(h) pri(g)mum(e) so(f)net(g'_) (,)\\r\\net(g) vo(h)ta(g) sol(f)v\\u00e1(e)mus(fg) ti(fe)bi.(d.) \\r\\n\\r\\n7.(::)\\r\\nSit,(f) Chri(f)ste,(g) rex(h) pi(ixi)\\u00eds(h)si(g)me,(h'_) (,)\\r\\nti(h)bi(g) Pa(j)tr\\u00ed(j)que(g) gl\\u00f3(h)ri(ixi)a(h.) (;)\\r\\ncum(g) Sp\\u00ed(h)ri(g)tu(h) Pa(g)r\\u00e1(e)cli(f)to,(g'_) (,)\\r\\nin(g) sem(h)pi(g)t\\u00e9r(f)na(e) s\\u01fd(fg)cu(fe)la.(d.) (::)\\r\\nA(ded)men.(cd..) (::)\\r\\n",
|
|
1962
|
+
office: "hy",
|
|
1963
|
+
mode: "1",
|
|
1964
|
+
pages: [
|
|
1965
|
+
{ page: "184", sequence: 0, extent: 1 }
|
|
1966
|
+
],
|
|
1967
|
+
},
|
|
1968
|
+
{
|
|
1969
|
+
id: "gregobase:15602",
|
|
1970
|
+
incipit: "Nunc Sancte (dom.)",
|
|
1971
|
+
gabc: "initial-style: 1;\\r\\nname: Nunc Sancte nobis Spiritus;\\r\\nbook: Liber Hymnarius, p. 185;\\r\\noccasion: Tempore Per Annum Diebus Dominicis i & III;\\r\\noffice-part: Ad Tertiam H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 2;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(f3)Nunc,(f) San(e)cte,(f) no(h)bis,(g) Sp\\u00ed(f)ri(f)tus,(e'_) (,)\\r\\nu(f)num(e) Pa(f)tri(h) cum(g) F\\u00ed(f)li(e)o,(eh..) (;)\\r\\ndi(h)gn\\u00e1(j)re(i) prom(j)ptus(h) \\u00edn(i)ge(hg)ri(f'_) (,)\\r\\nno(e)stro(f) re(h)f\\u00fa(hi)sus(hg) p\\u00e9(f)cto(ef)ri.(f.) \\r\\n\\r\\n2.(::)\\r\\nOs,(f) lin(e)gua,(f) mens,(h) sen(g)sus,(f) vi(f)gor(e'_) (,)\\r\\ncon(f)fes(e)si(f)\\u00f3(h)nem(g) p\\u00e9r(f)so(e)nent,(eh..) (;)\\r\\nflam(h)m\\u00e9(j)scat(i) i(j)gne(h) c\\u00e1(i)ri(hg)tas,(f'_) (,)\\r\\nac(e)c\\u00e9n(f)dat(h) ar(hi)dor(hg) pr\\u00f3(f)xi(ef)mos.(f.) \\r\\n\\r\\n3.(::)\\r\\nPer(f) te(e) sci(f)\\u00e1(h)mus(g) da(f) Pa(f)trem,(e'_) (,)\\r\\nno(f)sc\\u00e1(e)mus(f) at(h)que(g) F\\u00ed(f)li(e)um,(eh..) (;)\\r\\nte(h) u(j)tri(i)\\u00fas(j)que(h) Sp\\u00ed(i)ri(hg)tum(f'_) (,)\\r\\ncre(e)d\\u00e1(f)mus(h) om(hi)ni(hg) t\\u00e9m(f)po(ef)re.(f.) (::)\\r\\nA(fgf)men.(ef..) (::)\\r\\n",
|
|
1972
|
+
office: "hy",
|
|
1973
|
+
mode: "2",
|
|
1974
|
+
pages: [
|
|
1975
|
+
{ page: "185", sequence: 0, extent: 1 }
|
|
1976
|
+
],
|
|
1977
|
+
},
|
|
1978
|
+
{
|
|
1979
|
+
id: "gregobase:15603",
|
|
1980
|
+
incipit: "Rector potens (dom.)",
|
|
1981
|
+
gabc: "initial-style: 1;\\r\\nname: Rector potens verax Deus;\\r\\nbook: Liber Hymnarius, p. 186;\\r\\noccasion: Tempore Per Annum Diebus Dominicis i & III;\\r\\noffice-part: Ad Sextam H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 2;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(f3)Re(f)ctor(e) po(f)tens,(h) ve(g)rax(f) De(f)us,(e'_) (,)\\r\\nqui(f) t\\u00e9m(e)pe(f)ras(h) re(g)rum(f) vi(e)ces,(eh..) (;)\\r\\nsplen(h)d\\u00f3(j)re(i) ma(j)ne(h) \\u00edn(i)stru(hg)is(f'_) (,)\\r\\net(e) \\u00ed(f)gni(h)bus(hi) me(hg)r\\u00ed(f)di(ef)em,(f.) \\r\\n\\r\\n2.(::)\\r\\nEx(f)st\\u00edn(e)gue(f) flam(h)mas(g) l\\u00ed(f)ti(f)um,(e'_) (,)\\r\\nau(f)fer(e) ca(f)l\\u00f3(h)rem(g) n\\u00f3(f)xi(e)um,(eh..) (;)\\r\\ncon(h)fer(j) sa(i)l\\u00fa(j)tem(h) c\\u00f3r(i)po(hg)rum(f'_) (,)\\r\\nve(e)r\\u00e1m(f)que(h) pa(hi)cem(hg) c\\u00f3r(f)di(ef)um.(f.) \\r\\n\\r\\n3.(::)\\r\\nPr\\u00e6(f)sta,(e) Pa(f)ter(h) pi(g)\\u00eds(f)si(f)me,(e'_) (,)\\r\\nPa(f)tr\\u00ed(e)que(f) com(h)par(g) U(f)ni(e)ce,(eh..) (;)\\r\\ncum(h) Sp\\u00ed(j)ri(i)tu(j) Pa(h)r\\u00e1(i)cli(hg)to(f'_) (,)\\r\\nre(e)gnans(f) per(h) om(hi)ne(hg) s\\u01fd(f)cu(ef)lum.(f.) (::)\\r\\nA(fgf)men.(ef..) (::)\\r\\n",
|
|
1982
|
+
office: "hy",
|
|
1983
|
+
mode: "2",
|
|
1984
|
+
pages: [
|
|
1985
|
+
{ page: "186", sequence: 0, extent: 1 }
|
|
1986
|
+
],
|
|
1987
|
+
},
|
|
1988
|
+
{
|
|
1989
|
+
id: "gregobase:15604",
|
|
1990
|
+
incipit: "Rerum Deus tenax (dom.)",
|
|
1991
|
+
gabc: "initial-style: 1;\\r\\nname: Rerum Deus tenax vigor;\\r\\nbook: Liber Hymnarius, p. 187;\\r\\noccasion: Tempore Per Annum Diebus Dominicis I & III;\\r\\noffice-part: Ad Nonam H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 2;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(f3)Re(f)rum,(e) De(f)us,(h) te(g)nax(f) vi(f)gor,(e'_) (,)\\r\\nim(f)m\\u00f3(e)tus(f) in(h) te(g) p\\u00e9r(f)ma(e)nens,(eh..) (;)\\r\\nlu(h)cis(j) di(i)\\u00far(j)n\\u00e6(h) t\\u00e9m(i)po(hg)ra(f'_) (,)\\r\\nsuc(e)c\\u00e9s(f)si(h)bus(hi) de(hg)t\\u00e9r(f)mi(ef)nans,(f.) \\r\\n\\r\\n2.(::)\\r\\nLar(f)g\\u00ed(e)re(f) cla(h)rum(g) v\\u00e9(f)spe(f)re,(e'_) (,)\\r\\nquo(f) vi(e)ta(f) num(h)quam(g) d\\u00e9(f)ci(e)dat,(eh..) (;)\\r\\nsed(h) pr\\u01fd(j)mi(i)um(j) mor(h)tis(i) sa(hg)cr\\u00e6(f'_) (,)\\r\\npe(e)r\\u00e9n(f)nis(h) in(hi)stet(hg) gl\\u00f3(f)ri(ef)a.(f.) \\r\\n\\r\\n3.(::)\\r\\nPr\\u00e6(f)sta,(e) Pa(f)ter(h) pi(g)\\u00eds(f)si(f)me,(e'_) (,)\\r\\nPa(f)tr\\u00ed(e)que(f) com(h)par(g) U(f)ni(e)ce,(eh..) (;)\\r\\ncum(h) Sp\\u00ed(j)ri(i)tu(j) Pa(h)r\\u00e1(i)cli(hg)to(f'_) (,)\\r\\nre(e)gnans(f) per(h) om(hi)ne(hg) s\\u01fd(f)cu(ef)lum.(f.) (::)\\r\\nA(fgf)men.(ef..) (::)\\r\\n",
|
|
1992
|
+
office: "hy",
|
|
1993
|
+
mode: "2",
|
|
1994
|
+
pages: [
|
|
1995
|
+
{ page: "187", sequence: 0, extent: 1 }
|
|
1996
|
+
],
|
|
1997
|
+
},
|
|
1998
|
+
{
|
|
1999
|
+
id: "gregobase:15605",
|
|
2000
|
+
incipit: "Lucis creator",
|
|
2001
|
+
gabc: "initial-style: 1;\\r\\nname: Lucis creator optime;\\r\\nbook: Liber Hymnarius, p. 188;\\r\\noccasion: Tempore Per Annum Diebus Dominicis I & III;\\r\\noffice-part: Ad Vesperas II H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 8;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c3)Lu(e)cis(fh) cre(h)\\u00e1(hg)tor(fe) \\u00f3p(h)ti(ih)me,(gvFE'_) (,)\\r\\nlu(h)cem(iji) di(j)\\u00e9(hf)rum(g) pr\\u00f3(g)fe(fe)rens,(e.) (;)\\r\\npri(e)m\\u00f3r(fh)di(h)is(hg) lu(fe)cis(h) no(ih)v\\u00e6(gvFE'_) (,)\\r\\nmun(h)di(iji) pa(j)rans(hf) o(g)r\\u00ed(g)gi(fe)nem;(e.) \\r\\n\\r\\n2.(::)\\r\\nQui(e) ma(fh)ne(h) iun(hg)ctum(fe) v\\u00e9(h)spe(ih)ri(gvFE'_) (,)\\r\\ndi(h)em(iji) vo(j)c\\u00e1(hf)ri(g) pr\\u01fd(g)ci(fe)pis:(e.) (;)\\r\\nt\\u00e6(e)trum(fh) cha(h)os(hg) il(fe)l\\u00e1(h)bi(ih)tur;(gvFE'_) (,)\\r\\nau(h)di(iji) pre(j)ces(hf) cum(g) fl\\u00e9(g)ti(fe)bus.(e.) \\r\\n\\r\\n3.(::)\\r\\nNe(e) mens(fh) gra(h)v\\u00e1(hg)ta(fe) cr\\u00ed(h)mi(ih)ne(gvFE'_) (,)\\r\\nvi(h)t\\u00e6(iji) sit(j) ex(hf)sul(g) m\\u00fa(g)ne(fe)re,(e.) (;)\\r\\ndum(e) nil(fh) pe(h)r\\u00e9n(hg)ne(fe) c\\u00f3(h)gi(ih)tat(gvFE'_) (,)\\r\\nse(h)s\\u00e9(iji)que(j) cul(hf)pis(g) \\u00edl(g)li(fe)gat.(e.) \\r\\n\\r\\n3.(::)\\r\\nC\\u00e6(e)l\\u00f3(fh)rum(h) pul(hg)set(fe) \\u00edn(h)ti(ih)mum,(gvFE'_) (,)\\r\\nvi(h)t\\u00e1(iji)le(j) tol(hf)lat(g) pr\\u01fd(g)mi(fe)um;(e.) (;)\\r\\nvi(e)t\\u00e9(fh)mus(h) om(hg)ne(fe) n\\u00f3(h)xi(ih)um,(gvFE'_) (,)\\r\\npur(h)g\\u00e9(iji)mus(j) om(hf)ne(g) p\\u00e9s(g)si(fe)mum.(e.) \\r\\n\\r\\n4.(::)\\r\\nPr\\u00e6(e)sta,(fh) Pa(h)ter(hg) pi(fe)\\u00eds(h)si(ih)me,(gvFE'_) (,)\\r\\nPa(h)tr\\u00ed(iji)que(j) com(hf)par(g) U(g)ni(fe)ce,(e.) (;)\\r\\ncum(e) Sp\\u00ed(fh)ri(h)tu(hg) Pa(fe)r\\u00e1(h)cli(ih)to(gvFE'_) (,)\\r\\nre(h)gnans(iji) per(j) om(hf)ne(g) s\\u01fd(g)cu(fe)lum.(e.) (::)\\r\\nA(efe)men.(de.) (::)\\r\\n",
|
|
2002
|
+
office: "hy",
|
|
2003
|
+
mode: "8",
|
|
2004
|
+
pages: [
|
|
2005
|
+
{ page: "188", sequence: 0, extent: 1 }
|
|
2006
|
+
],
|
|
2007
|
+
},
|
|
2008
|
+
{
|
|
2009
|
+
id: "gregobase:15607",
|
|
2010
|
+
incipit: "Aeterna lux divinitas",
|
|
2011
|
+
gabc: "initial-style: 1;\\r\\nname: Aeterna lux divinitas;\\r\\nbook: Liber Hymnarius, p. 190;\\r\\noccasion: Tempore Per Annum Feriis II Hebd. I & III;\\r\\noffice-part: Ad Officium Lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 4;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4) \\u00c6(d)t\\u00e9r(e)na(f) lux,(g) di(eg)v\\u00ed(f)ni(e)tas,(f'_) (,)\\r\\nin(d) u(e)ni(f)t\\u00e1(g)te(eg) Tr\\u00ed(f)ni(e)tas,(ded.) (;)\\r\\nte(e) con(c)fi(e)t\\u00e9(gh)mur(hi) d\\u00e9(h)bi(g)les,(h'_) (,)\\r\\nte(f) de(h)pre(h)c\\u00e1(g)mur(ef) s\\u00fap(g)pli(f)ces.(e.) \\r\\n\\r\\n2.(::)\\r\\nSum(d)mum(e) Pa(f)r\\u00e9n(g)tem(eg) cr\\u00e9(f)di(e)mus(f'_) (,)\\r\\nNa(d)t\\u00fam(e)que(f) Pa(g)tris(eg) \\u00fa(f)ni(e)cum,(ded.) (;)\\r\\net(e) ca(c)ri(e)t\\u00e1(gh)tis(hi) v\\u00edn(h)cu(g)lum(h'_) (,)\\r\\nqui(f) iun(h)git(h) il(g)los(ef) Sp\\u00ed(g)ri(f)tum.(e.) \\r\\n\\r\\n3.(::)\\r\\nO(d) v\\u00e9(e)ri(f)tas,(g) o(eg) c\\u00e1(f)ri(e)tas,(f'_) (,)\\r\\no(d) fi(e)nis(f) et(g) fe(eg)l\\u00ed(f)ci(e)tas,(ded.) (;)\\r\\nspe(e)r\\u00e1(c)re(e) fac(gh) et(hi) cr\\u00e9(h)de(g)re,(h'_) (,)\\r\\na(f)m\\u00e1(h)re(h) fac(g) et(ef) c\\u00f3n(g)se(f)qui.(e.) \\r\\n\\r\\n4,(::)\\r\\nQui(d) fi(e)nis(f) et(g) e(eg)x\\u00f3r(f)di(e)um(f'_) (,)\\r\\nre(d)r\\u00fam(e)que(f) fons(g) es(eg) \\u00f3m(f)ni(e)um,(ded.) (;)\\r\\ntu(e) so(c)lus(e) es(gh) so(hi)l\\u00e1(h)ci(g)um,(h'_) (,)\\r\\ntu(f) cer(h)ta(h) spes(g) cre(ef)d\\u00e9n(g)ti(f)um.(e.) \\r\\n\\r\\n5.(::)\\r\\nQui(d) cun(e)cta(f) so(g)lus(eg) \\u00e9f(f)fi(e)cis(f'_) (,)\\r\\ncun(d)ct\\u00eds(e)que(f) so(g)lus(eg) s\\u00faf(f)fi(e)cis,(ded.) (;)\\r\\ntu(e) so(c)la(e) lux(gh) es(hi) \\u00f3m(h)ni(g)bus(h'_) (,)\\r\\net(f) pr\\u01fd(h)mi(h)um(g) spe(ef)r\\u00e1n(g)ti(f)bus.(e.) \\r\\n\\r\\n6.(::)\\r\\nChri(d)stum(e) ro(f)g\\u00e1(g)mus(eg) et(f) Pa(e)trem,(f'_) (,)\\r\\nChri(d)sti(e) Pa(f)tr\\u00eds(g)que(eg) Sp\\u00ed(f)ri(e)tum;(ded.) (;)\\r\\nu(e)num(c) po(e)tens(gh) per(hi) \\u00f3m(h)ni(g)a,(h'_) (,)\\r\\nfo(f)ve(h) pre(h)c\\u00e1n(g)tes,(ef) Tr\\u00ed(g)ni(f)tas.(e.) (::)\\r\\nA(efe)men.(de.) (::)\\r\\n",
|
|
2012
|
+
office: "hy",
|
|
2013
|
+
mode: "4",
|
|
2014
|
+
pages: [
|
|
2015
|
+
{ page: "190", sequence: 2, extent: 1 }
|
|
2016
|
+
],
|
|
2017
|
+
},
|
|
2018
|
+
{
|
|
2019
|
+
id: "gregobase:15608",
|
|
2020
|
+
incipit: "Splendor paternae",
|
|
2021
|
+
gabc: "initial-style: 1;\\r\\nname: Splendor paternae gloriae;\\r\\nbook: Liber Hymnarius, p. 191;\\r\\noccasion: Tempore Per Annum Feriis II Hebd. I & III;\\r\\noffice-part: Ad Laudes matutinas H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 1;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Splen(h)dor(h) pa(h)t\\u00e9r(h)n\\u00e6(h) gl\\u00f3(hi)ri(h)\\u00e6,(h'_) (,)\\r\\nde(h) lu(h)ce(h) lu(g)cem(f) pr\\u00f3(gh)fe(g)rens,(g.) (;)\\r\\nlux(f) lu(h)cis(h) et(g) fons(f) l\\u00fa(g)mi(g)nis,(h'_) (,)\\r\\ndi(g)em(g) di(g)es(f) il(d)l\\u00fa(f)mi(e)nans,(d.) \\r\\n\\r\\n2.(::)\\r\\nVe(h)r\\u00fas(h)que(h) sol,(h) il(h)l\\u00e1(hi)be(h)re(h'_) (,)\\r\\nmi(h)cans(h) ni(h)t\\u00f3(g)re(f) p\\u00e9r(gh)pe(g)ti,(g.) (;)\\r\\niu(f)b\\u00e1r(h)que(h) San(g)cti(f) Sp\\u00ed(g)ri(g)tus(h'_) (,)\\r\\nin(g)f\\u00fan(g)de(g) no(f)stris(d) s\\u00e9n(f)si(e)bus.(d.) \\r\\n\\r\\n3.(::)\\r\\nVo(h)tis(h) vo(h)c\\u00e9(h)mus(h) et(hi) Pa(h)trem,(h'_) (,)\\r\\nPa(h)trem(h) pe(h)r\\u00e9n(g)nis(f) gl\\u00f3(gh)ri(g)\\u00e6,(g.) (;)\\r\\nPa(f)trem(h) po(h)t\\u00e9n(g)tis(f) gr\\u00e1(g)ti(g)\\u00e6,(h'_) (,)\\r\\ncul(g)pam(g) re(g)l\\u00e9(f)get(d) l\\u00fa(f)bri(e)cam.(d.) \\r\\n\\r\\n4.(::)\\r\\nIn(h)f\\u00f3r(h)met(h) a(h)ctus(h) str\\u00e9(hi)nu(h)os,(h'_) (,)\\r\\nden(h)tem(h) re(h)t\\u00fan(g)dat(f) \\u00edn(gh)vi(g)di,(g.) (;)\\r\\nca(f)sus(h) se(h)c\\u00fan(g)det(f) \\u00e1(g)spe(g)ros,(h'_) (,)\\r\\ndo(g)net(g) ge(g)r\\u00e9n(f)di(d) gr\\u00e1(f)ti(e)am.(d.) \\r\\n\\r\\n5.(::)\\r\\nMen(h)tem(h) gu(h)b\\u00e9r(h)net(h) et(hi) re(h)gat(h'_) (,)\\r\\nca(h)sto,(h) fi(h)d\\u00e9(g)li(f) c\\u00f3r(gh)po(g)re;(g.) (;)\\r\\nfi(f)des(h) ca(h)l\\u00f3(g)re(f) f\\u00e9r(g)ve(g)at,(h'_) (,)\\r\\nfrau(g)dis(g) ve(g)n\\u00e9(f)na(d) n\\u00e9(f)sci(e)at.(d.) \\r\\n\\r\\n6.(::)\\r\\nChri(h)st\\u00fas(h)que(h) no(h)bis(h) sit(hi) ci(h)bus,(h'_) (,)\\r\\npo(h)t\\u00fas(h)que(h) no(g)ster(f) sit(gh) fi(g)des;(g.) (;)\\r\\nl\\u00e6(f)ti(h) bi(h)b\\u00e1(g)mus(f) s\\u00f3(g)bri(g)am(h'_) (,)\\r\\ne(g)bri(g)e(g)t\\u00e1(f)tem(d) Sp\\u00ed(f)ri(e)tus.(d.) \\r\\n\\r\\n7.(::)\\r\\nL\\u00e6(h)tus(h) di(h)es(h) hic(h) tr\\u00e1ns(hi)e(h)at;(h'_) (,)\\r\\npu(h)dor(h) sit(h) ut(g) di(f)l\\u00fa(gh)cu(g)lum,(g.) (;)\\r\\nfi(f)des(h) ve(h)lut(g) me(f)r\\u00ed(g)di(g)es,(h'_) (,)\\r\\ncre(g)p\\u00fa(g)scu(g)lum(f) mens(d) n\\u00e9(f)sci(e)at.(d.) \\r\\n\\r\\n8.(::)\\r\\nAu(h)r\\u00f3(h)ra(h) cur(h)sus(h) pr\\u00f3(hi)ve(h)hit;(h'_) (,)\\r\\nAu(h)r\\u00f3(h)ra(h) to(g)tus(f) pr\\u00f3d(gh)e(g)at,(g.) (;)\\r\\nin(f) Pa(h)tre(h) to(g)tus(f) F\\u00ed(g)li(g)us(h'_) (,)\\r\\net(g) to(g)tus(g) in(f) Ver(d)bo(f) Pa(e)ter.(d.) (::)\\r\\nA(ded)men.(cd..) (::)\\r\\n",
|
|
2022
|
+
office: "hy",
|
|
2023
|
+
mode: "1",
|
|
2024
|
+
pages: [
|
|
2025
|
+
{ page: "191", sequence: 0, extent: 1 }
|
|
2026
|
+
],
|
|
2027
|
+
},
|
|
2028
|
+
{
|
|
2029
|
+
id: "gregobase:15609",
|
|
2030
|
+
incipit: "Rector potens verax Deus (In Feriis per annum)",
|
|
2031
|
+
gabc: "initial-style: 1;\\r\\nname: Rector potens verax Deus;\\r\\nbook: Liber Hymnarius, p. 193;\\r\\noccasion: In Feriis Per Annum;\\r\\noffice-part: Ad Sextam H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: D;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Re(h)ctor(h) po(h)tens,(h) ve(h)rax(h) De(g)us,(g'_) (,)\\r\\nqui(h) t\\u00e9m(h)pe(h)ras(h) re(g)rum(h) vi(h)ces,(h.) (;)\\r\\nsplen(h)d\\u00f3(h)re(h) ma(g)ne(f) \\u00edn(g)stru(f)is(e'_) (,)\\r\\net(f) \\u00ed(g)gni(g)bus(g) me(f)r\\u00ed(h)di(g)em,(g.) \\r\\n\\r\\n2.(::)\\r\\n\\r\\nEx(h)st\\u00edn(h)gue(h) flam(h)mas(h) l\\u00ed(h)ti(g)um,(g'_) (,)\\r\\nau(h)fer(h) ca(h)l\\u00f3(h)rem(g) n\\u00f3(h)xi(h)um,(h.) (;)\\r\\ncon(h)fer(h) sa(h)l\\u00fa(g)tem(f) c\\u00f3r(g)po(f)rum(e'_) (,)\\r\\nve(f)r\\u00e1m(g)que(g) pa(g)cem(f) c\\u00f3r(h)di(g)um.(g.) \\r\\n\\r\\n3.(::)\\r\\nPr\\u00e6(h)sta,(h) Pa(h)ter(h) pi(h)\\u00eds(h)si(g)me,(g'_) (,)\\r\\nPa(h)tr\\u00ed(h)que(h) com(h)par(g) U(h)ni(h)ce,(h.) (;)\\r\\ncum(h) Sp\\u00ed(h)ri(h)tu(g) Pa(f)r\\u00e1(g)cli(f)to(e'_) (,)\\r\\nre(f)gnans(g) per(g) om(g)ne(f) s\\u01fd(h)cu(g)lum.(g.) (::)\\r\\nA(ghg)men.(fg) (::)\\r\\n",
|
|
2032
|
+
office: "hy",
|
|
2033
|
+
mode: "d",
|
|
2034
|
+
pages: [
|
|
2035
|
+
{ page: "193", sequence: 1, extent: 1 }
|
|
2036
|
+
],
|
|
2037
|
+
},
|
|
2038
|
+
{
|
|
2039
|
+
id: "gregobase:15610",
|
|
2040
|
+
incipit: "Rerum Deus tenax vigor (In Feriis per annum)",
|
|
2041
|
+
gabc: "initial-style: 1;\\r\\nname: Rerum Deus tenax vigor;\\r\\nbook: Liber Hymnarius, p. 194;\\r\\noccasion: In Feriis Per Annum;\\r\\noffice-part: Ad Nonam H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: D;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Re(h)rum,(h) De(h)us,(h) te(h)nax(h) vi(g)gor,(g'_) (,)\\r\\nim(h)m\\u00f3(h)tus(h) in(h) te(g) p\\u00e9r(h)ma(h)nens,(h.) (;)\\r\\nlu(h)cis(h) di(h)\\u00far(g)n\\u00e6(f) t\\u00e9m(g)po(f)ra(e'_) (,)\\r\\nsuc(f)c\\u00e9s(g)si(g)bus(g) de(f)t\\u00e9r(h)mi(g)nans,(g.) \\r\\n\\r\\n2.(::)\\r\\nLar(h)g\\u00ed(h)re(h) cla(h)rum(h) v\\u00e9(h)spe(g)re,(g'_) (,)\\r\\nquo(h) vi(h)ta(h) num(h)quam(g) d\\u00e9(h)ci(h)dat,(h.) (;)\\r\\nsed(h) pr\\u01fd(h)mi(h)um(g) mor(f)tis(g) sa(f)cr\\u00e6(e'_) (,)\\r\\npe(f)r\\u00e9n(g)nis(g) in(g)stet(f) gl\\u00f3(h)ri(g)a.(g.) \\r\\n\\r\\n3.(::)\\r\\nPr\\u00e6(h)sta,(h) Pa(h)ter(h) pi(h)\\u00eds(h)si(g)me,(g'_) (,)\\r\\nPa(h)tr\\u00ed(h)que(h) com(h)par(g) U(h)ni(h)ce,(h.) (;)\\r\\ncum(h) Sp\\u00ed(h)ri(h)tu(g) Pa(f)r\\u00e1(g)cli(f)to(e'_) (,)\\r\\nre(f)gnans(g) per(g) om(g)ne(f) s\\u01fd(h)cu(g)lum.(g.) (::)\\r\\nA(ghg)men.(fg) (::)\\r\\n",
|
|
2042
|
+
office: "hy",
|
|
2043
|
+
mode: "d",
|
|
2044
|
+
pages: [
|
|
2045
|
+
{ page: "194", sequence: 1, extent: 1 }
|
|
2046
|
+
],
|
|
2047
|
+
},
|
|
2048
|
+
{
|
|
2049
|
+
id: "gregobase:15611",
|
|
2050
|
+
incipit: "Immense caeli",
|
|
2051
|
+
gabc: "initial-style: 1;\\r\\nname: Immense caeli conditor;\\r\\nbook: Liber Hymnarius, p. 195;\\r\\noccasion: In Feriis II Per Annum;\\r\\noffice-part: Ad Vesperas H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: D;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Im(d)m\\u00e9n(f)se(g) c\\u00e6(g)li(f) c\\u00f3n(h)di(g)tor,(g'_) (,)\\r\\nqui,(d) mix(f)ta(g) ne(g) con(f)f\\u00fan(h)de(g)rent,(g.) (;)\\r\\na(h)qu\\u00e6(jk) flu(j)\\u00e9n(j)ta(g) d\\u00ed(h)vi(g)dens,(g'_) (,)\\r\\nc\\u00e6(d)lum(f) de(g)d\\u00ed(g)sti(f) l\\u00ed(h)mi(g)tem,(g.) \\r\\n\\r\\n2.(::)\\r\\nFir(d)mans(f) lo(g)cum(g) c\\u00e6(f)l\\u00e9(h)sti(g)bus(g'_) (,)\\r\\nsi(d)m\\u00fal(f)que(g) ter(g)r\\u00e6(f) r\\u00ed(h)vu(g)lis,(g.) (;)\\r\\nut(h) un(jk)da(j) flam(j)mas(g) t\\u00e9m(h)pe(g)ret,(g'_) (,)\\r\\nter(d)r\\u00e6(f) so(g)lum(g) ne(f) d\\u00eds(h)si(g)pet:(g.) \\r\\n\\r\\n3.(::)\\r\\nIn(d)f\\u00fan(f)de(g) nunc,(g) pi(f)\\u00eds(h)si(g)me,(g'_) (,)\\r\\ndo(d)num(f) pe(g)r\\u00e9n(g)nis(f) gr\\u00e1(h)ti(g)\\u00e6,(g.) (;)\\r\\nfrau(h)dis(jk) no(j)v\\u00e6(j) ne(g) c\\u00e1(h)si(g)bus(g'_) (,)\\r\\nnos(d) er(f)ror(g) \\u00e1t(g)te(f)rat(h) ve(g)tus.(g.) \\r\\n\\r\\n4.(::)\\r\\nLu(d)cem(f) fi(g)des(g) in(f)v\\u00e9(h)ni(g)at,(g'_) (,)\\r\\nsic(d) l\\u00fa(f)mi(g)nis(g) iu(f)bar(h) fe(g)rat;(g.) (;)\\r\\nh\\u00e6c(h) va(jk)na(j) cun(j)cta(g) t\\u00e9r(h)re(g)at,(g'_) (,)\\r\\nhanc(d) fal(f)sa(g) nul(g)la(f) c\\u00f3m(h)pri(g)mant.(g.) \\r\\n\\r\\n5.(::)\\r\\nPr\\u00e6(d)sta,(f) Pa(g)ter(g) pi(f)\\u00eds(h)si(g)me,(g'_) (,)\\r\\nPa(d)tr\\u00ed(f)que(g) com(g)par(f) U(h)ni(g)ce,(g.) (;)\\r\\ncum(h) Sp\\u00ed(jk)ri(j)tu(j) Pa(g)r\\u00e1(h)cli(g)to(g'_) (,)\\r\\nre(d)gnans(f) per(g) om(g)ne(f) s\\u01fd(h)cu(g)lum.(g.) (::)\\r\\nA(ghg)men.(fg) (::)\\r\\n",
|
|
2052
|
+
office: "hy",
|
|
2053
|
+
mode: "d",
|
|
2054
|
+
pages: [
|
|
2055
|
+
{ page: "195", sequence: 0, extent: 1 }
|
|
2056
|
+
],
|
|
2057
|
+
},
|
|
2058
|
+
{
|
|
2059
|
+
id: "gregobase:15616",
|
|
2060
|
+
incipit: "Consors paterni (+rhythmic signs)",
|
|
2061
|
+
gabc: "initial-style: 1;\\r\\nname: Consors paterni;\\r\\nbook: Liber Hymnarius, p. 196;\\r\\noccasion: Tempore Per Annum Feriis III Hebd. I & III;\\r\\noffice-part: Ad Officium Lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 4;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Con(d)sors(e) pa(f)t\\u00e9r(g)ni(eg) l\\u00fa(f)mi(e)nis,(f'_) (,)\\r\\nlux(d) i(e)pse(f) lu(g)cis(eg) et(f) di(e)es,(ded.) (;)\\r\\nno(e)ctem(c) ca(e)n\\u00e9n(gh)do(hi) r\\u00fam(h)pi(g)mus:(h'_) (,)\\r\\nas(f)s\\u00ed(h)ste(h) po(g)stu(ef)l\\u00e1n(g)ti(f)bus.(e.) \\r\\n\\r\\n2.(::)\\r\\nAu(d)fer(e) t\\u00e9(f)ne(g)bras(eg) m\\u00e9n(f)ti(e)um,(f'_) (,)\\r\\nfu(d)ga(e) ca(f)t\\u00e9r(g)vas(eg) d\\u01fd(f)mo(e)num,(ded.) (;)\\r\\nex(e)p\\u00e9l(c)le(e) som(gh)no(hi)l\\u00e9n(h)ti(g)am(h'_) (,)\\r\\nne(f) pi(h)gri(h)t\\u00e1n(g)tes(ef) \\u00f3(g)bru(f)at.(e.) \\r\\n\\r\\n3.(::)\\r\\nSic,(d) Chri(e)ste,(f) no(g)bis(eg) \\u00f3m(f)ni(e)bus(f'_) (,)\\r\\nin(d)d\\u00fal(e)ge(f)as(g) cre(eg)d\\u00e9n(f)ti(e)bus,(ded.) (;)\\r\\nut(e) pro(c)sit(e) e(gh)xo(hi)r\\u00e1n(h)ti(g)bus(h'_) (,)\\r\\nquod(f) pr\\u00e6(h)ci(h)n\\u00e9n(g)tes(ef) ps\\u00e1l(g)li(f)mus.(e.) \\r\\n\\r\\n4.(::)\\r\\nSit,(d) Chri(e)ste,(f) rex(g) pi(eg)\\u00eds(f)si(e)me,(f'_) (,)\\r\\nti(d)bi(e) Pa(f)tr\\u00ed(g)que(eg) gl\\u00f3(f)ri(e)a(ded.) (;)\\r\\ncum(e) Sp\\u00ed(c)ri(e)tu(gh) Pa(hi)r\\u00e1(h)cli(g)to,(h'_) (,)\\r\\nin(f) sem(h)pi(h)t\\u00e9r(g)na(ef) s\\u01fd(g)cu(f)la.(e.) (::)\\r\\nA(efe)men.(de.) (::)\\r\\n",
|
|
2062
|
+
office: "hy",
|
|
2063
|
+
mode: "4",
|
|
2064
|
+
pages: [
|
|
2065
|
+
{ page: "196", sequence: 1, extent: 1 }
|
|
2066
|
+
],
|
|
2067
|
+
},
|
|
2068
|
+
{
|
|
2069
|
+
id: "gregobase:15617",
|
|
2070
|
+
incipit: "O sacrosancta Trinitas",
|
|
2071
|
+
gabc: "initial-style: 1;\\r\\nname: O sacrosancta Trinitas;\\r\\nbook: Liber Hymnarius, p. 196;\\r\\noccasion: Tempore Per Annum Feriis III Hebd. I & III;\\r\\noffice-part: Ad Officium Lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 4;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)O(d) Sa(e)cro(f)s\\u00e1n(g)cta(eg) Tr\\u00ed(f)ni(e)tas,(f'_) (,)\\r\\nqu\\u00e6(d) cun(e)cta(f) con(g)dens(eg) \\u00f3r(f)di(e)nas,(ded.) (;)\\r\\ndi(e)em(c) la(e)b\\u00f3(gh)ri(hi) d\\u00e9(h)pu(g)tans(h'_) (,)\\r\\nno(f)ctem(h) qui(h)\\u00e9(g)ti(ef) d\\u00e9(g)di(f)cas,(e.) \\r\\n\\r\\n2.(::)\\r\\nTe(d) ma(e)ne,(f) si(g)mul(eg) v\\u00e9(f)spe(e)re,(f'_) (,)\\r\\nte(d) no(e)ct<i>e</i>() ac(f) di(g)e(eg) c\\u00e1(f)ni(e)mus;(ded.) (;)\\r\\nin(e) tu(c)a(e) nos(gh) tu(hi) gl\\u00f3(h)ri(g)a(h'_) (,)\\r\\nper(f) cun(h)cta(h) ser(g)va(ef) t\\u00e9m(g)po(f)ra.(e.) \\r\\n\\r\\n3.(::)\\r\\nNos(d) \\u00e1d(e)su(f)mus(g) te(eg) c\\u00e9r(f)nu(e)i(f'_) (,)\\r\\nen(d) a(e)do(f)r\\u00e1n(g)tes(eg) f\\u00e1(f)mu(e)li;(ded.) (;)\\r\\nvo(e)ta(c) pre(e)c\\u00e9s(gh)que(hi) s\\u00fap(h)pli(g)cum(h'_) (,)\\r\\nhym(f)nis(h) ad(h)i\\u00fan(g)ge(ef) c\\u01fd(g)li(f)tum.(e.) \\r\\n\\r\\n4.(::)\\r\\nPr\\u00e6(d)sta,(e) Pa(f)ter(g) pi(eg)\\u00eds(f)si(e)me,(f'_) (,)\\r\\nPa(d)tr\\u00ed(e)que(f) com(g)par(eg) U(f)ni(e)ce,(ded.) (;)\\r\\ncum(e) Sp\\u00ed(c)ri(e)tu(gh) Pa(hi)r\\u00e1(h)cli(g)to(h'_) (,)\\r\\nre(f)gnans(h) per(h) om(g)ne(ef) s\\u01fd(g)cu(f)lum.(e.) (::)\\r\\nA(efe)men.(de.) (::)\\r\\n",
|
|
2072
|
+
office: "hy",
|
|
2073
|
+
mode: "4",
|
|
2074
|
+
pages: [
|
|
2075
|
+
{ page: "196", sequence: 2, extent: 1 }
|
|
2076
|
+
],
|
|
2077
|
+
},
|
|
2078
|
+
{
|
|
2079
|
+
id: "gregobase:15618",
|
|
2080
|
+
incipit: "Rerum creator (+rhythmic signs)",
|
|
2081
|
+
gabc: "initial-style: 1;\\r\\nname: Rerum creator;\\r\\nbook: Liber Hymnarius, p. 198;\\r\\noccasion: Tempore Per Annum Feriis IV Hebd. I & III;\\r\\noffice-part: Ad Officium Lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 4;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Re(d)rum(e) cre(f)\\u00e1(g)tor(eg) \\u00f3p(f)ti(e)me(f'_) (,)\\r\\nre(d)ct\\u00f3r(e)que(f) no(g)ster,(eg) r\\u00e9(f)spi(e)ce;(ded.) (;)\\r\\nnos(e) a(c) qui(e)\\u00e9(gh)te(hi) n\\u00f3(h)xi(g)a(h'_) (,)\\r\\nmer(f)sos(h) so(h)p\\u00f3(g)re(ef) l\\u00ed(g)be(f)ra.(e.) \\r\\n\\r\\n2.(::)\\r\\nTe,(d) san(e)cte(f) Chri(g)ste,(eg) p\\u00f3(f)sci(e)mus;(f'_) (,)\\r\\ni(d)gn\\u00f3(e)sce(f) tu(g) cri(eg)m\\u00ed(f)ni(e)bus,(ded.) (;)\\r\\nad(e) con(c)fi(e)t\\u00e9n(gh)dum(hi) s\\u00far(h)gi(g)mus(h'_) (,)\\r\\nmo(f)r\\u00e1s(h)que(h) no(g)ctis(ef) r\\u00fam(g)pi(f)mus.(e.) \\r\\n\\r\\n3.(::)\\r\\nMen(d)tes(e) ma(f)n\\u00fas(g)que(eg) t\\u00f3l(f)li(e)mus,(f'_) (,)\\r\\nPro(d)ph\\u00e9(e)ta(f) si(g)cut(eg) n\\u00f3(f)cti(e)bus(ded.) (;)\\r\\nno(e)bis(c) ge(e)r\\u00e9n(gh)dum(hi) pr\\u01fd(h)ci(g)pit(h'_) (,)\\r\\nPau(f)l\\u00fas(h)que(h) ge(g)stis(ef) c\\u00e9n(g)su(f)it.(e.) \\r\\n\\r\\n4.(::)\\r\\nVi(d)des(e) ma(f)lum(g) quod(eg) g\\u00e9s(f)si(e)mus;(f'_) (,)\\r\\noc(d)c\\u00fal(e)ta(f) no(g)stra(eg) p\\u00e1n(f)di(e)mus,(ded.) (;)\\r\\npre(e)ces(c) ge(e)m\\u00e9n(gh)tes(hi) f\\u00fan(h)di(g)mus;(h'_) (,)\\r\\ndi(f)m\\u00edt(h)te(h) quod(g) pec(ef)c\\u00e1(g)vi(f)mus.(e.) \\r\\n\\r\\n5.(::)\\r\\nSit,(d) Chri(e)ste,(f) rex(g) pi(eg)\\u00eds(f)si(e)me,(f'_) (,)\\r\\nti(d)bi(e) Pa(f)tr\\u00ed(g)que(eg) gl\\u00f3(f)ri(e)a(ded.) (;)\\r\\ncum(e) Sp\\u00ed(c)ri(e)tu(gh) Pa(hi)r\\u00e1(h)cli(g)to,(h'_) (,)\\r\\nin(f) sem(h)pi(h)t\\u00e9r(g)na(ef) s\\u01fd(g)cu(f)la.(e.) (::)\\r\\nA(efe)men.(de.) (::)\\r\\n",
|
|
2082
|
+
office: "hy",
|
|
2083
|
+
mode: "4",
|
|
2084
|
+
pages: [
|
|
2085
|
+
{ page: "198", sequence: 2, extent: 1 }
|
|
2086
|
+
],
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
id: "gregobase:15619",
|
|
2090
|
+
incipit: "Scientiarum Domino",
|
|
2091
|
+
gabc: "initial-style: 1;\\r\\nname: Scientiarum Domino;\\r\\nbook: Liber Hymnarius, p. 199;\\r\\noccasion: Tempore Per Annum Feriis IV Hebd. I & III;\\r\\noffice-part: Ad Officium Lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 4;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Sci(d)en(e)ti(f)\\u00e1(g)rum(eg) D\\u00f3(f)mi(e)no,(f'_) (,)\\r\\nsit(d) ti(e)bi(f) iu(g)bi(eg)l\\u00e1(f)ti(e)o,(ded.) (;)\\r\\nqui(e) no(c)stra(e) vi(gh)des(hi) \\u00edn(h)ti(g)ma(h'_) (,)\\r\\ntu(f)\\u00e1(h)que(h) fo(g)ves(ef) gr\\u00e1(g)ti(f)a.(e.) \\r\\n\\r\\n2-(::)\\r\\nQui(d) bo(e)num,(f) pa(g)stor(eg) \\u00f3p(f)ti(e)me,(f'_) (,)\\r\\ndum(d) ser(e)vas,(f) qu\\u00e6(g)ris(eg) p\\u00e9r(f)di(e)tum,(ded.) (;)\\r\\nin(e) p\\u00e1(c)scu(e)is(gh) u(hi)b\\u00e9r(h)ri(g)mis(h'_) (,)\\r\\nnos(f) iun(h)ge(h) pi(g)is(ef) gr\\u00e9(g)gi(f)bus,(e.) \\r\\n\\r\\n3.(::)\\r\\nNe(d) ter(e)ror(f) i(g)r\\u00e6(eg) i\\u00fa(f)di(e)cis(f'_) (,)\\r\\nnos(d) h\\u00e6(e)dis(f) iun(g)gat(eg) r\\u00e9(f)pro(e)bis,(ded.) (;)\\r\\nsed(e) si(c)mus(e) te(gh)met(hi) i\\u00fa(h)di(g)ce(h'_) (,)\\r\\no(f)ves(h) \\u00e6(h)t\\u00e9r(g)n\\u00e6(ef) p\\u00e1(g)scu(f)\\u00e6.(e.) \\r\\n\\r\\n4.(::)\\r\\nTi(d)bi,(e) Re(f)d\\u00e9m(g)ptor,(eg) gl\\u00f3(f)ri(e)a,(f'_) (,)\\r\\nho(d)nor,(e) vir(f)tus,(g) vi(eg)ct\\u00f3(f)ri(e)a,(ded.) (;)\\r\\nre(e)gn\\u00e1n(c)ti(e) su(gh)per(hi) \\u00f3m(h)ni(g)a(h'_) (,)\\r\\nper(f) s\\u00e6(h)cu(h)l\\u00f3(g)rum(ef) s\\u01fd(g)cu(f)la.(e.) (::)\\r\\nA(efe)men.(de.) (::)\\r\\n",
|
|
2092
|
+
office: "hy",
|
|
2093
|
+
mode: "4",
|
|
2094
|
+
pages: [
|
|
2095
|
+
{ page: "199", sequence: 1, extent: 1 }
|
|
2096
|
+
],
|
|
2097
|
+
},
|
|
2098
|
+
{
|
|
2099
|
+
id: "gregobase:15620",
|
|
2100
|
+
incipit: "Nox atra rerum (+rhythmic signs)",
|
|
2101
|
+
gabc: "initial-style: 1;\\r\\nname: Nox atra rerum;\\r\\nbook: Liber Hymnarius, p. 201;\\r\\noccasion: Tempore Per Annum Feriis V Hebd. I & III;\\r\\noffice-part: Ad Officium Lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 4;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Nox(d) a(e)tra(f) re(g)rum(eg) c\\u00f3n(f)te(e)git(f'_) (,)\\r\\nter(d)r\\u00e6(e) co(f)l\\u00f3(g)res(eg) \\u00f3m(f)ni(e)um:(ded.) (;)\\r\\nnos(e) con(c)fi(e)t\\u00e9n(gh)tes(hi) p\\u00f3(h)sci(g)mus(h'_) (,)\\r\\nte,(f) iu(h)ste(h) iu(g)dex(ef) c\\u00f3r(g)di(f)um,(e.) \\r\\n\\r\\n2.(::)\\r\\nUt(d) \\u00e1u(e)fe(f)ras(g) pi(eg)\\u00e1(f)cu(e)la(f'_) (,)\\r\\nsor(d)d\\u00e9s(e)que(f) men(g)tis(eg) \\u00e1(f)blu(e)as,(ded.) (;)\\r\\ndo(e)n\\u00e9s(c)que,(e) Chri(gh)ste,(hi) gr\\u00e1(h)ti(g)am(h'_) (,)\\r\\nut(f) ar(h)ce(h)\\u00e1n(g)tur(ef) cr\\u00ed(g)mi(f)na.(e.) \\r\\n\\r\\n3.(::)\\r\\nMens,(d) ec(e)ce,(f) tor(g)pet(eg) \\u00edm(f)pi(e)a,(f'_) (,)\\r\\nquam(d) cul(e)pa(f) mor(g)det(eg) n\\u00f3(f)xi(e)a;(ded.) (;)\\r\\nob(e)sc\\u00fa(c)ra(e) ge(gh)stit(hi) t\\u00f3l(h)le(g)re(h'_) (,)\\r\\net(f) te,(h) Re(h)d\\u00e9m(g)ptor,(ef) qu\\u01fd(g)re(f)re.(e.) \\r\\n\\r\\n4.(::)\\r\\nRe(d)p\\u00e9l(e)le(f) tu(g) ca(eg)l\\u00ed(f)gi(e)nem(f'_) (,)\\r\\nin(d)tr\\u00edn(e)se(f)cus(g) quam(eg) m\\u00e1(f)xi(e)me,(ded.) (;)\\r\\nut(e) in(c) be(e)\\u00e1(gh)to(hi) g\\u00e1u(h)de(g)at(h'_) (,)\\r\\nse(f) col(h)lo(h)c\\u00e1(g)ri(ef) l\\u00fa(g)mi(f)ne.(e.) \\r\\n\\r\\n5.(::)\\r\\nSit,(d) Chri(e)ste,(f) rex(g) pi(eg)\\u00eds(f)si(e)me,(f'_) (,)\\r\\nti(d)bi(e) Pa(f)tr\\u00ed(g)que(eg) gl\\u00f3(f)ri(e)a(ded.) (;)\\r\\ncum(e) Sp\\u00ed(c)ri(e)tu(gh) Pa(hi)r\\u00e1(h)cli(g)to,(h'_) (,)\\r\\nin(f) sem(h)pi(h)t\\u00e9r(g)na(ef) s\\u01fd(g)cu(f)la.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
2102
|
+
office: "hy",
|
|
2103
|
+
mode: "4",
|
|
2104
|
+
pages: [
|
|
2105
|
+
{ page: "201", sequence: 1, extent: 1 }
|
|
2106
|
+
],
|
|
2107
|
+
},
|
|
2108
|
+
{
|
|
2109
|
+
id: "gregobase:15621",
|
|
2110
|
+
incipit: "Christe precamur",
|
|
2111
|
+
gabc: "initial-style: 1;\\r\\nname: Christe precamur;\\r\\nbook: Liber Hymnarius, p. 201;\\r\\noccasion: Tempore Per Annum Feriis V Hebd. I & III;\\r\\noffice-part: Ad Officium Lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 4;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Chri(d)ste,(e) pre(f)c\\u00e1(g)mur(eg) \\u00e1d(f)nu(e)as(f'_) (,)\\r\\no(d)r\\u00e1n(e)ti(f)bus(g) ser(eg)vis(f) tu(e)is,(ded.) (;)\\r\\ni(e)n\\u00ed(c)qui(e)tas(gh) h\\u00e6c(hi) s\\u01fd(h)cu(g)li(h'_) (,)\\r\\nne(f) no(h)stram(h) cap(g)t\\u00ed(ef)vet(g) fi(f)dem.(e.) \\r\\n\\r\\n2.(::)\\r\\nNon(d) co(e)gi(f)t\\u00e9(g)mus(eg) \\u00edm(f)pi(e)e,(f'_) (,)\\r\\nin(d)vi(e)de(f)\\u00e1(g)mus(eg) n\\u00e9(f)mi(e)ni,(ded.) (;)\\r\\nl\\u00e6(e)si(c) non(e) red(gh)d\\u00e1(hi)mus(h) vi(g)cem,(h'_) (,)\\r\\nvin(f)c\\u00e1(h)mus(h) in(g) bo(ef)no(g) ma(f)lum.(e.) \\r\\n\\r\\n3.(::)\\r\\nAb(d)sit(e) no(f)stris(g) e(eg) c\\u00f3r(f)di(e)bus(f'_) (,)\\r\\ni(d)ra,(e) do(f)lus,(g) su(eg)p\\u00e9r(f)bi(e)a;(ded.) (;)\\r\\nab(e)s\\u00ed(c)stat(e) a(gh)va(hi)r\\u00ed(h)ti(g)a,(h'_) (,)\\r\\nma(f)l\\u00f3(h)rum(h) ra(g)dix(ef) \\u00f3m(g)ni(f)um.(e.) \\r\\n\\r\\n4.(::)\\r\\nCon(d)s\\u00e9r(e)vet(f) pa(g)cis(eg) foe(f)de(e)ra(f'_) (,)\\r\\nnon(d) si(e)mu(f)l\\u00e1(g)ta(eg) c\\u00e1(f)ri(e)tas;(ded.) (;)\\r\\nsit(e) il(c)li(e)b\\u00e1(gh)ta(hi) c\\u00e1(h)sti(g)tas(h'_) (,)\\r\\ncre(f)du(h)li(h)t\\u00e1(g)te(ef) p\\u00e9r(g)pe(f)ti.(e.) \\r\\n\\r\\n5.(::)\\r\\nSit,(d) Chri(e)ste,(f) rex(g) pi(eg)\\u00eds(f)si(e)me,(f'_) (,)\\r\\nti(d)bi(e) Pa(f)tr\\u00ed(g)que(eg) gl\\u00f3(f)ri(e)a(ded.) (;)\\r\\ncum(e) Sp\\u00ed(c)ri(e)tu(gh) Pa(hi)r\\u00e1(h)cli(g)to,(h'_) (,)\\r\\nin(f) sem(h)pi(h)t\\u00e9r(g)na(ef) s\\u01fd(g)cu(f)la.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
2112
|
+
office: "hy",
|
|
2113
|
+
mode: "4",
|
|
2114
|
+
pages: [
|
|
2115
|
+
{ page: "201", sequence: 2, extent: 1 }
|
|
2116
|
+
],
|
|
2117
|
+
},
|
|
2118
|
+
{
|
|
2119
|
+
id: "gregobase:15622",
|
|
2120
|
+
incipit: "Tu Trinitatis (+rhythmic signs)",
|
|
2121
|
+
gabc: "initial-style: 1;\\r\\nname: Tu Trinitatis;\\r\\nbook: Liber Hymnarius, p. 203;\\r\\noccasion: Tempore Per Annum Feriis VI Hebd. I & III;\\r\\noffice-part: Ad Officium Lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 4;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Tu,(d) Tri(e)ni(f)t\\u00e1(g)tis(eg) U(f)ni(e)tas,(f'_) (,)\\r\\nor(d)bem(e) po(f)t\\u00e9n(g)ter(eg) qui(f) re(e)gis,(ded.) (;)\\r\\nat(e)t\\u00e9n(c)de(e) lau(gh)dum(hi) c\\u00e1n(h)ti(g)ca(h'_) (,)\\r\\nqu\\u00e6(f) ex(h)cu(h)b\\u00e1n(g)tes(ef) ps\\u00e1l(g)li(f)mus.(e.) \\r\\n\\r\\n2.(::)\\r\\nNam(d) l\\u00e9(e)ctu(f)lo(g) con(eg)s\\u00far(f)gi(e)mus(f'_) (,)\\r\\nno(d)ctis(e) qui(f)\\u00e9(g)to(eg) t\\u00e9m(f)po(e)re,(ded.) (;)\\r\\nut(e) fla(c)gi(e)t\\u00e9(gh)mus(hi) v\\u00fal(h)ne(g)rum(h'_) (,)\\r\\na(f) te(h) me(h)d\\u00e9(g)lam(ef) \\u00f3m(g)ni(f)um,(e.) \\r\\n\\r\\n3.(::)\\r\\nQuo,(d) frau(e)de(f) quic(g)quid(eg) d\\u01fd(f)mo(e)num(f'_) (,)\\r\\nin(d) n\\u00f3(e)cti(f)bus(g) de(eg)l\\u00ed(f)qui(e)mus,(ded.) (;)\\r\\nab(e)st\\u00e9r(c)gat(e) il(gh)lud(hi) c\\u01fd(h)li(g)tus(h'_) (,)\\r\\ntu(f)\\u00e6(h) po(h)t\\u00e9(g)stas(ef) gl\\u00f3(g)ri(f)\\u00e6.(e.) \\r\\n\\r\\n4.(::)\\r\\nTe(d) cor(e)de(f) fi(g)do(eg) qu\\u01fd(f)su(e)mus,(f'_) (,)\\r\\nre(d)ple(e) tu(f)o(g) nos(eg) l\\u00fa(f)mi(e)ne,(ded.) (;)\\r\\nper(e) quod(c) di(e)\\u00e9(gh)rum(hi) c\\u00edr(h)cu(g)lis(h'_) (,)\\r\\nnul(f)lis(h) ru(h)\\u00e1(g)mus(ef) \\u00e1(g)cti(f)bus.(e.) \\r\\n\\r\\n5.(::)\\r\\nPr\\u00e6(d)sta,(e) Pa(f)ter(g) pi(eg)\\u00eds(f)si(e)me,(f'_) (,)\\r\\nPa(d)tr\\u00ed(e)que(f) com(g)par(eg) U(f)ni(e)ce,(ded.) (;)\\r\\ncum(e) Sp\\u00ed(c)ri(e)tu(gh) Pa(hi)r\\u00e1(h)cli(g)to(h'_) (,)\\r\\nre(f)gnans(h) per(h) om(g)ne(ef) s\\u01fd(g)cu(f)lum.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
2122
|
+
office: "hy",
|
|
2123
|
+
mode: "4",
|
|
2124
|
+
pages: [
|
|
2125
|
+
{ page: "203", sequence: 0, extent: 1 }
|
|
2126
|
+
],
|
|
2127
|
+
},
|
|
2128
|
+
{
|
|
2129
|
+
id: "gregobase:15623",
|
|
2130
|
+
incipit: "Adesto Christe (+rhythmic signs)",
|
|
2131
|
+
gabc: "initial-style: 1;\\r\\nname: Adesto Christe;\\r\\nbook: Liber Hymnarius, p. 204;\\r\\noccasion: Tempore Per Annum Feriis VI Hebd. I & III;\\r\\noffice-part: Ad Officium Lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 4;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Ad(d)\\u00e9(e)sto,(f) Chri(g)ste,(eg) c\\u00f3r(f)di(e)bus,(f'_) (,)\\r\\ncel(d)sa(e) re(f)d\\u00e9m(g)ptis(eg) c\\u00e1(f)ri(e)tas;(ded.) (;)\\r\\nin(e)f\\u00fan(c)de(e) no(gh)stris(hi) f\\u00e9r(h)vi(g)dos(h'_) (,)\\r\\nfle(f)tus,(h) ro(h)g\\u00e1(g)mus,(ef) v\\u00f3(g)ci(f)bus.(e.) \\r\\n\\r\\n2.(::)\\r\\nAd(d) te(e) pre(f)ces,(g) pi(eg)\\u00eds(f)si(e)me(f'_) (,)\\r\\nIe(d)su,(e) fi(f)de(g) pro(eg)f\\u00fan(f)di(e)mus;(ded.) (;)\\r\\ndi(e)m\\u00edt(c)te,(e) Chri(gh)ste,(hi) qu\\u01fd(h)su(g)mus,(h'_) (,)\\r\\nfa(f)ctis(h) ma(h)lum(g) quod(ef) f\\u00e9(g)ci(f)mus.(e.) \\r\\n\\r\\n3.(::)\\r\\nSan(d)ct\\u00e6(e) cru(f)cis(g) si(eg)gn\\u00e1(f)cu(e)lo,(f'_) (,)\\r\\ntu(d)o(e) sa(f)cr\\u00e1(g)to(eg) c\\u00f3r(f)po(e)re,(ded.) (;)\\r\\nde(e)f\\u00e9n(c)de(e) nos(gh) ut(hi) f\\u00ed(h)li(g)os(h'_) (,)\\r\\nom(f)nes,(h) ro(h)g\\u00e1(g)mus,(ef) \\u00fan(g)di(f)que.(e.) \\r\\n\\r\\n4.(::)\\r\\nSit,(d) Chri(e)ste,(f) rex(g) pi(eg)\\u00eds(f)si(e)me,(f'_) (,)\\r\\nti(d)bi(e) Pa(f)tr\\u00ed(g)que(eg) gl\\u00f3(f)ri(e)a(ded.) (;)\\r\\ncum(e) Sp\\u00ed(c)ri(e)tu(gh) Pa(hi)r\\u00e1(h)cli(g)to,(h'_) (,)\\r\\nin(f) sem(h)pi(h)t\\u00e9r(g)na(ef) s\\u01fd(g)cu(f)la.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
2132
|
+
office: "hy",
|
|
2133
|
+
mode: "4",
|
|
2134
|
+
pages: [
|
|
2135
|
+
{ page: "204", sequence: 1, extent: 1 }
|
|
2136
|
+
],
|
|
2137
|
+
},
|
|
2138
|
+
{
|
|
2139
|
+
id: "gregobase:15624",
|
|
2140
|
+
incipit: "Auctor perennis",
|
|
2141
|
+
gabc: "initial-style: 1;\\r\\nname: Auctor perennis;\\r\\nbook: Liber Hymnarius, p. 206;\\r\\noccasion: Tempore Per Annum Sabbatis Hebd. I & III;\\r\\noffice-part: Ad Officium Lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 4;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Au(d)ctor(e) pe(f)r\\u00e9n(g)nis(eg) gl\\u00f3(f)ri(e)\\u00e6,(f'_) (,)\\r\\nqui(d) sep(e)ti(f)f\\u00f3r(g)mis(eg) gr\\u00e1(f)ti(e)\\u00e6(ded.) (;)\\r\\ndas(e) Sp\\u00ed(c)ri(e)tum(gh) cre(hi)d\\u00e9n(h)ti(g)bus,(h'_) (,)\\r\\nas(f)s\\u00ed(h)ste(h) mi(g)tis(ef) \\u00f3m(g)ni(f)bus.(e.) \\r\\n\\r\\n2.(::)\\r\\nEx(d)p\\u00e9l(e)le(f) mor(g)bos(eg) c\\u00f3r(f)po(e)rum,(f'_) (,)\\r\\nmen(d)tis(e) re(f)p\\u00e9l(g)le(eg) sc\\u00e1n(f)da(e)lum,(ded.) (;)\\r\\nex(e)sc\\u00edn(c)de(e) vi(gh)res(hi) cr\\u00ed(h)mi(g)num,(h'_) (,)\\r\\nfu(f)ga(h) do(h)l\\u00f3(g)res(ef) c\\u00f3r(g)di(f)um.(e.) \\r\\n\\r\\n3.(::)\\r\\nSe(d)r\\u00e9(e)nas(f) men(g)tes(eg) \\u00e9f(f)fi(e)ce,(f'_) (,)\\r\\no(d)pus(e) ho(f)n\\u00e9(g)stum(eg) p\\u00e9r(f)fi(e)ce,(ded.) (;)\\r\\npre(e)ces(c) o(e)r\\u00e1n(gh)tum(hi) \\u00e1c(h)ci(g)pe,(h'_) (,)\\r\\nvi(f)tam(h) pe(h)r\\u00e9n(g)nem(ef) tr\\u00ed(g)bu(f)e.(e.) \\r\\n\\r\\n4.(::)\\r\\nSep(d)tem(e) di(f)\\u00e9(g)rum(eg) c\\u00far(f)si(e)bus(f'_) (,)\\r\\nnunc(d) tem(e)pus(f) om(g)ne(eg) d\\u00fa(f)ci(e)tur;(ded.) (;)\\r\\no(e)ct\\u00e1(c)vus(e) il(gh)le(hi) \\u00fal(h)ti(g)mus(h'_) (,)\\r\\ndi(f)es(h) e(h)rit(g) iu(ef)d\\u00ed(g)ci(f)i,(e.) \\r\\n\\r\\n5.(::)\\r\\nIn(d) quo,(e) Re(f)d\\u00e9m(g)ptor,(eg) qu\\u01fd(f)su(e)mus,(f'_) (,)\\r\\nne(d) nos(e) in(f) i(g)ra(eg) \\u00e1r(f)gu(e)as,(ded.) (;)\\r\\nsed(e) a(c) si(e)n\\u00ed(gh)stra(hi) l\\u00ed(h)be(g)ra,(h'_) (,)\\r\\nad(f) d\\u00e9x(h)te(h)ram(g) nos(ef) c\\u00f3l(g)lo(f)ca,(e.) \\r\\n\\r\\n6.(::)\\r\\nUt,(d) cum(e) pre(f)ces(g) su(eg)sc\\u00e9(f)pe(e)ris(f'_) (,)\\r\\ncle(d)mens(e) tu(f)\\u00e1(g)rum(eg) pl\\u00e9(f)bi(e)um,(ded.) (;)\\r\\nred(e)d\\u00e1(c)mus(e) om(gh)nes(hi) gl\\u00f3(h)ri(g)am(h'_) (,)\\r\\ntri(f)no(h) De(h)o(g) per(ef) s\\u01fd(g)cu(f)la.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
2142
|
+
office: "hy",
|
|
2143
|
+
mode: "4",
|
|
2144
|
+
pages: [
|
|
2145
|
+
{ page: "206", sequence: 2, extent: 1 }
|
|
2146
|
+
],
|
|
2147
|
+
},
|
|
2148
|
+
{
|
|
2149
|
+
id: "gregobase:15625",
|
|
2150
|
+
incipit: "Summae Deus (+rhythmic signs)",
|
|
2151
|
+
gabc: "initial-style: 1;\\r\\nname: Auctor perennis;\\r\\nbook: Liber Hymnarius, p. 206;\\r\\noccasion: Tempore Per Annum Sabbatis Hebd. I & III;\\r\\noffice-part: Ad Officium Lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 4;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Sum(d)m\\u00e6(e) De(f)us(g) cle(eg)m\\u00e9n(f)ti(e)\\u00e6(f'_) (,)\\r\\nmun(d)d\\u00ed(e)que(f) fa(g)ctor(eg) m\\u00e1(f)chi(e)n\\u00e6,(ded.) (;)\\r\\nqui(e) tri(c)nus(e) al(gh)mo(hi) n\\u00fa(h)mi(g)ne(h'_) (,)\\r\\nu(f)n\\u00fas(h)que(h) fir(g)mas(ef) \\u00f3m(g)ni(f)a,(e.) \\r\\n\\r\\n2.(::)\\r\\nNo(d)stros(e) pi(f)is(g) cum(eg) c\\u00e1n(f)ti(e)cis(f'_) (,)\\r\\nfle(d)tus(e) be(f)n\\u00ed(g)gne(eg) s\\u00fa(f)sci(e)pe,(ded.) (;)\\r\\nquo(e) cor(c)de(e) pu(gh)ro(hi) s\\u00f3r(h)di(g)bus(h'_) (,)\\r\\nte(f) per(h)fru(h)\\u00e1(g)mur(ef) l\\u00e1r(g)gi(f)us.(e.) \\r\\n\\r\\n3.(::)\\r\\nLum(d)bos(e) a(f)d\\u00fa(g)re(eg) c\\u00f3n(f)gru(e)is(f'_) (,)\\r\\ntu(d) ca(e)ri(f)t\\u00e1(g)tis(eg) \\u00ed(f)gni(e)bus,(ded.) (;)\\r\\nac(e)c\\u00edn(c)ct<i>i</i>() ut(e) ad(gh)sint(hi) p\\u00e9r(h)pe(g)tim(h'_) (,)\\r\\ntu(f)\\u00eds(h)que(h) prom(g)pt<i>i</i>() ad(ef)v\\u00e9n(g)ti(f)bus,(e.) \\r\\n\\r\\n4.(::)\\r\\nUt,(d) qui(e)que(f) ho(g)ras(eg) n\\u00f3(f)cti(e)um(f'_) (,)\\r\\nnunc(d) con(e)ci(f)n\\u00e9n(g)do(eg) r\\u00fam(f)pi(e)mus,(ded.) (;)\\r\\ndo(e)nis(c) be(e)\\u00e1(gh)t\\u00e6(hi) p\\u00e1(h)tri(g)\\u00e6(h'_) (,)\\r\\ndi(f)t\\u00e9(h)mur(h) om(g)nes(ef) \\u00e1f(g)fa(f)tim.(e.) \\r\\n\\r\\n5.(::)\\r\\nPr\\u00e6(d)sta,(e) Pa(f)ter(g) pi(eg)\\u00eds(f)si(e)me,(f'_) (,)\\r\\nPa(d)tr\\u00ed(e)que(f) com(g)par(eg) U(f)ni(e)ce,(ded.) (;)\\r\\ncum(e) Sp\\u00ed(c)ri(e)tu(gh) Pa(hi)r\\u00e1(h)cli(g)to(h'_) (,)\\r\\nre(f)gnans(h) per(h) om(g)ne(ef) s\\u01fd(g)cu(f)lum.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
2152
|
+
office: "hy",
|
|
2153
|
+
mode: "4",
|
|
2154
|
+
pages: [
|
|
2155
|
+
{ page: "206", sequence: 1, extent: 1 }
|
|
2156
|
+
],
|
|
2157
|
+
},
|
|
2158
|
+
{
|
|
2159
|
+
id: "gregobase:15627",
|
|
2160
|
+
incipit: "Somno refectis (+rhythmic signs)",
|
|
2161
|
+
gabc: "initial-style: 1;\\r\\nname: Somno refectis;\\r\\nbook: Liber Hymnarius, p. 190;\\r\\noccasion: Tempore Per Annum Feriis II Hebd. I & III;\\r\\noffice-part: Ad Officium Lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 4;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Som(d)no(e) re(f)f\\u00e9(g)ctis(eg) \\u00e1r(f)tu(e)bus,(f'_) (,)\\r\\nspre(d)to(e) cu(f)b\\u00ed(g)li,(eg) s\\u00far(f)gi(e)mus:(ded.) (;)\\r\\nno(e)bis,(c) Pa(e)ter,(gh) ca(hi)n\\u00e9n(h)ti(g)bus(h'_) (,)\\r\\na(f)d\\u00e9s(h)se(h) te(g) de(ef)p\\u00f3(g)sci(f)mus.(e.) \\r\\n\\r\\n2.(::)\\r\\nTe(d) lin(e)gua(f) pri(g)mum(eg) c\\u00f3n(f)ci(e)nat,(f'_) (,)\\r\\nte(d) men(e)tis(f) ar(g)dor(eg) \\u00e1m(f)bi(e)at,(ded.) (;)\\r\\nut(e) \\u00e1(c)ctu(e)um(gh) se(hi)qu\\u00e9n(h)ti(g)um(h'_) (,)\\r\\ntu,(f) san(h)cte,(h) sis(g) e(ef)x\\u00f3r(g)di(f)um.(e.) \\r\\n\\r\\n3.(::)\\r\\nCe(d)dant(e) t\\u00e9(f)ne(g)br\\u00e6(eg) l\\u00fa(f)mi(e)ni(f'_) (,)\\r\\net(d) nox(e) di(f)\\u00far(g)no(eg) s\\u00ed(f)de(e)ri,(ded.) (;)\\r\\nut(e) cul(c)pa,(e) quam(gh) nox(hi) \\u00edn(h)tu(g)lit,(h'_) (,)\\r\\nlu(f)cis(h) la(h)b\\u00e1(g)scat(ef) m\\u00fa(g)ne(f)re.(e.) \\r\\n\\r\\n4.(::)\\r\\nPre(d)c\\u00e1(e)mur(f) i(g)dem(eg) s\\u00fap(f)pli(e)ces(f'_) (,)\\r\\nno(d)xas(e) ut(f) om(g)nes(eg) \\u00e1m(f)pu(e)tes,(ded.) (;)\\r\\net(e) o(c)re(e) te(gh) ca(hi)n\\u00e9n(h)ti(g)um(h'_) (,)\\r\\nlau(f)d\\u00e9(h)ris(h) in(g) per(ef)p\\u00e9(g)tu(f)um.(e.) \\r\\n\\r\\n4,(::)\\r\\nPr\\u00e6(d)sta,(e) Pa(f)ter(g) pi(eg)\\u00eds(f)si(e)me,(f'_) (,)\\r\\nPa(d)tr\\u00ed(e)que(f) com(g)par(eg) U(f)ni(e)ce,(ded.) (;)\\r\\ncum(e) Sp\\u00ed(c)ri(e)tu(gh) Pa(hi)r\\u00e1(h)cli(g)to(h'_) (,)\\r\\nre(f)gnans(h) per(h) om(g)ne(ef) s\\u01fd(g)cu(f)lum.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
2162
|
+
office: "hy",
|
|
2163
|
+
mode: "4",
|
|
2164
|
+
pages: [
|
|
2165
|
+
{ page: "190", sequence: 1, extent: 1 }
|
|
2166
|
+
],
|
|
2167
|
+
},
|
|
2168
|
+
{
|
|
2169
|
+
id: "gregobase:15628",
|
|
2170
|
+
incipit: "Dies aetasque (+rhythmic signs)",
|
|
2171
|
+
gabc: "initial-style: 1;\\r\\nname: Dies aetasque;\\r\\nbook: Liber Hymnarius, p. 183;\\r\\noccasion: Tempore Per Annum Dominicis Hebd. I & III;\\r\\noffice-part: Ad Officium Lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 4;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Di(d)es(e) \\u00e6(f)t\\u00e1s(g)que(eg) c\\u00e9(f)te(e)ris(f'_) (,)\\r\\no(d)ct\\u00e1(e)va(f) splen(g)det(eg) s\\u00e1n(f)cti(e)or(ded.) (;)\\r\\nin(e) te(c) quam,(e) Ie(gh)su,(hi) c\\u00f3n(h)se(g)cras,(h'_) (,)\\r\\npri(f)m\\u00ed(h)ti(h)\\u00e6(g) sur(ef)g\\u00e9n(g)ti(f)um.(e.) \\r\\n\\r\\n2.(::)\\r\\nTu(d) ti(e)bi(f) no(g)stras(eg) \\u00e1(f)ni(e)mas(f'_) (,)\\r\\nnunc(d) pri(e)mo(f) con(g)re(eg)s\\u00fa(f)sci(e)ta;(ded.) (;)\\r\\nti(e)bi(c) con(e)s\\u00far(gh)gant(hi) c\\u00f3r(h)po(g)ra(h'_) (,)\\r\\nse(f)c\\u00fan(h)da(h) mor(g)te(ef) l\\u00ed(g)be(f)ra.(e.) \\r\\n\\r\\n3.(::)\\r\\nTi(d)b\\u00ed(e)que(f) mox(g) in(eg) n\\u00fa(f)bi(e)bus,(f'_) (,)\\r\\nChri(d)ste,(e) fe(f)r\\u00e1(g)mur(eg) \\u00f3b(f)vi(e)am(ded.) (;)\\r\\nte(e)cum(c) vi(e)ct\\u00fa(gh)ri(hi) p\\u00e9r(h)pe(g)tim:(h'_) (,)\\r\\ntu(f) vi(h)ta,(h) re(g)sur(ef)r\\u00e9(g)cti(f)o.(e.) \\r\\n\\r\\n4.(::)\\r\\nCu(d)ius(e) vi(f)d\\u00e9n(g)tes(eg) f\\u00e1(f)ci(e)em,(f'_) (,)\\r\\ncon(d)fi(e)gu(f)r\\u00e9(g)mur(eg) gl\\u00f3(f)ri(e)\\u00e6;(ded.) (;)\\r\\nte(e) co(c)gno(e)sc\\u00e1(gh)mus(hi) si(h)cut(g) es,(h'_) (,)\\r\\nlux(f) ve(h)ra(h) et(g) su(ef)\\u00e1(g)vi(f)tas.(e.) \\r\\n\\r\\n5.(::)\\r\\nRe(d)gnum,(e) cum(f) Pa(g)tri(eg) tr\\u00e1(f)di(e)tos,(f'_) (,)\\r\\nple(d)nos(e) sep(f)t\\u00e9(g)no(eg) chr\\u00eds(f)ma(e)te,(ded.) (;)\\r\\nin(e) te(c)met(e) nos(gh) l\\u00e6(hi)t\\u00ed(h)fi(g)cas,(h'_) (,)\\r\\ncon(f)s\\u00fam(h)met(h) San(g)cta(ef) Tr\\u00ed(g)ni(f)tas.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
2172
|
+
office: "hy",
|
|
2173
|
+
mode: "4",
|
|
2174
|
+
pages: [
|
|
2175
|
+
{ page: "183", sequence: 0, extent: 1 }
|
|
2176
|
+
],
|
|
2177
|
+
},
|
|
2178
|
+
{
|
|
2179
|
+
id: "gregobase:15629",
|
|
2180
|
+
incipit: "Pergrato mundo",
|
|
2181
|
+
gabc: "initial-style: 1;\\r\\nname: Pergrato mundo;\\r\\nbook: Liber Hymnarius, p. 197;\\r\\noccasion: Tempore Per Annum Feriis III Hebd. I & III;\\r\\noffice-part: Ad Laudes matutinas H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 1;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Per(h)gr\\u00e1(h)ta(h) mun(h)do(h) n\\u00fan(hi)ti(h)at(h'_) (,)\\r\\nau(h)r\\u00f3(h)ra(h) so(g)lis(f) sp\\u00ed(gh)cu(g)la,(g.) (;)\\r\\nres(f) et(h) co(h)l\\u00f3(g)re(f) v\\u00e9(g)sti(g)ens(h'_) (,)\\r\\niam(g) cun(g)cta(g) dat(f) ni(d)t\\u00e9(f)sce(e)re.(d.) \\r\\n\\r\\n2.(::)\\r\\nQui(h) sol(h) per(h) \\u00e6(h)vum(h) pr\\u01fd(hi)ni(h)tes,(h'_) (,)\\r\\no(h) Chri(h)ste,(h) no(g)bis(f) v\\u00ed(gh)vi(g)dus,(g.) (;)\\r\\nad(f) te(h) ca(h)n\\u00e9n(g)tes(f) v\\u00e9r(g)ti(g)mur,(h'_) (,)\\r\\nte(g) ge(g)sti(g)\\u00e9n(f)tes(d) p\\u00e9r(f)fru(e)i.(d.) \\r\\n\\r\\n3.(::)\\r\\nTu(h) Pa(h)tris(h) es(h) sci(h)\\u00e9n(hi)ti(h)a(h'_) (,)\\r\\nVer(h)b\\u00fam(h)que(h) per(g) quod(f) \\u00f3m(gh)ni(g)a(g.) (;)\\r\\nmi(f)ro(h) re(h)f\\u00fal(g)gent(f) \\u00f3r(g)di(g)ne(h'_) (,)\\r\\nmen(g)t\\u00e9s(g)que(g) no(f)stras(d) \\u00e1t(f)tra(e)hunt.(d.) \\r\\n\\r\\n4.(::)\\r\\nDa(h) lu(h)cis(h) ut(h) nos(h) f\\u00ed(hi)li(h)i(h'_) (,)\\r\\nsic(h) am(h)bu(h)l\\u00e9(g)mus(f) \\u00edm(gh)pi(g)gri,(g.) (;)\\r\\nut(f) Pa(h)tris(h) us(g)que(f) gr\\u00e1(g)ti(g)am(h'_) (,)\\r\\nmo(g)res(g) et(g) a(f)ctus(d) \\u00e9x(f)pri(e)mant.(d.) \\r\\n\\r\\n5.(::)\\r\\nSin(h)c\\u00e9(h)ra(h) pr\\u00e6(h)st<i>a</i>() ut(h) pr\\u00f3(hi)flu(h)ant(h'_) (,)\\r\\nex(h) o(h)re(h) no(g)stro(f) i\\u00fa(gh)gi(g)ter,(g.) (;)\\r\\net(f) ve(h)ri(h)t\\u00e1(g)tis(f) d\\u00fal(g)ci(g)bus(h'_) (,)\\r\\nut(g) ex(g)ci(g)t\\u00e9(f)mur(d) g\\u00e1u(f)di(e)is.(d.) \\r\\n\\r\\n6.(::)\\r\\nSit,(h) Chri(h)ste,(h) rex(h) pi(h)\\u00eds(hi)si(h)me,(h'_) (,)\\r\\nti(h)bi(h) Pa(h)tr\\u00ed(g)que(f) gl\\u00f3(gh)ri(g)a(g.) (;)\\r\\ncum(f) Sp\\u00ed(h)ri(h)tu(g) Pa(f)r\\u00e1(g)cli(g)to,(h'_) (,)\\r\\nin(g) sem(g)pi(g)t\\u00e9r(f)na(d) s\\u01fd(f)cu(e)la.(d.) (::)\\r\\nA(ded)men.(cd..) (::)\\r\\n",
|
|
2182
|
+
office: "hy",
|
|
2183
|
+
mode: "1",
|
|
2184
|
+
pages: [
|
|
2185
|
+
{ page: "197", sequence: 0, extent: 1 }
|
|
2186
|
+
],
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
id: "gregobase:15630",
|
|
2190
|
+
incipit: "Nox et tenebrae",
|
|
2191
|
+
gabc: "initial-style: 1;\\r\\nname: Nox et tenebrae;\\r\\nbook: Liber Hymnarius, p. 199;\\r\\noccasion: Tempore Per Annum Feriis IV Hebd. I & III;\\r\\noffice-part: Ad Laudes matutinas H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 1;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Nox(h) et(h) t\\u00e9(h)ne(h)br<i>\\u00e6</i>() et(h) n\\u00fa(hi)bi(h)la,(h'_) (,)\\r\\ncon(h)f\\u00fa(h)sa(h) mun(g)d<i>i</i>() et(f) t\\u00far(gh)bi(g)da,(g.) (;)\\r\\nlux(f) in(h)trat,(h) al(g)b\\u00e9(f)scit(g) po(g)lus:(h'_) (,)\\r\\nChri(g)stus(g) ve(g)nit;(f) di(d)sc\\u00e9(f)di(e)te.(d.) \\r\\n\\r\\n2.(::)\\r\\nCa(h)l\\u00ed(h)go(h) ter(h)r\\u00e6(h) sc\\u00edn(hi)di(h)tur(h'_) (,)\\r\\nper(h)c\\u00fas(h)sa(h) so(g)lis(f) sp\\u00ed(gh)cu(g)lo,(g.) (;)\\r\\nre(f)b\\u00fas(h)que(h) iam(g) co(f)lor(g) re(g)dit(h'_) (,)\\r\\nvul(g)tu(g) ni(g)t\\u00e9n(f)tis(d) s\\u00ed(f)de(e)ris.(d.) \\r\\n\\r\\n3.(::)\\r\\nSic(h) no(h)stra(h) mox(h) ob(h)sc\\u00fa(hi)ri(h)tas(h'_) (,)\\r\\nfrau(h)d\\u00eds(h)que(h) pe(g)ctus(f) c\\u00f3n(gh)sci(g)um,(g.) (;)\\r\\nrup(f)tis(h) re(h)t\\u00e9(g)ctum(f) n\\u00fa(g)bi(g)bus,(h'_) (,)\\r\\nre(g)gn\\u00e1n(g)te(g) pal(f)l\\u00e9(d)scet(f) De(e)o.(d.) \\r\\n\\r\\n4.(::)\\r\\nTe,(h) Chri(h)ste,(h) so(h)lum(h) n\\u00f3(hi)vi(h)mus,(h'_) (,)\\r\\nte(h) men(h)te(h) pu(g)r<i>a</i>() et(f) s\\u00edm(gh)pli(g)ci(g.) (;)\\r\\nro(f)g\\u00e1(h)re(h) cur(g)v\\u00e1(f)to(g) ge(g)nu(h'_) (,)\\r\\nflen(g)d<i>o</i>() et(g) ca(g)n\\u00e9n(f)do(d) d\\u00ed(f)sci(e)mus.(d.) \\r\\n\\r\\n5.(::)\\r\\nIn(h)t\\u00e9n(h)de(h) no(h)stris(h) s\\u00e9n(hi)si(h)bus(h'_) (,)\\r\\nvi(h)t\\u00e1m(h)que(h) to(g)tam(f) d\\u00ed(gh)spi(g)ce:(g.) (;)\\r\\nsunt(f) mul(h)ta(h) fu(g)cis(f) \\u00edl(g)li(g)ta(h'_) (,)\\r\\nqu\\u00e6(g) lu(g)ce(g) pur(f)g\\u00e9n(d)tur(f) tu(e)a.(d.) \\r\\n\\r\\n6.(::)\\r\\nSit,(h) Chri(h)ste,(h) rex(h) pi(h)\\u00eds(hi)si(h)me,(h'_) (,)\\r\\nti(h)bi(h) Pa(h)tr\\u00ed(g)que(f) gl\\u00f3(gh)ri(g)a(g.) (;)\\r\\ncum(f) Sp\\u00ed(h)ri(h)tu(g) Pa(f)r\\u00e1(g)cli(g)to,(h'_) (,)\\r\\nin(g) sem(g)pi(g)t\\u00e9r(f)na(d) s\\u01fd(f)cu(e)la.(d.) (::)\\r\\nA(ded)men.(cd..) (::)\\r\\n",
|
|
2192
|
+
office: "hy",
|
|
2193
|
+
mode: "1",
|
|
2194
|
+
pages: [
|
|
2195
|
+
{ page: "199", sequence: 2, extent: 1 }
|
|
2196
|
+
],
|
|
2197
|
+
},
|
|
2198
|
+
{
|
|
2199
|
+
id: "gregobase:15631",
|
|
2200
|
+
incipit: "Sol ecce",
|
|
2201
|
+
gabc: "initial-style: 1;\\r\\nname: Sol ecce;\\r\\nbook: Liber Hymnarius, p. 202;\\r\\noccasion: Tempore Per Annum Feriis V Hebd. I & III;\\r\\noffice-part: Ad Laudes matutinas H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 1;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Sol(h) ec(h)ce(h) sur(h)git(h) \\u00ed(hi)gne(h)us:(h'_) (,)\\r\\npi(h)get,(h) pu(h)d\\u00e9(g)scit,(f) p\\u01fd(gh)ni(g)tet,(g.) (;)\\r\\nnec(f) te(h)ste(h) quis(g)quam(f) l\\u00fa(g)mi(g)ne(h'_) (,)\\r\\npec(g)c\\u00e1(g)re(g) con(f)st\\u00e1n(d)ter(f) po(e)test.(d.) \\r\\n\\r\\n2.(::)\\r\\nTan(h)dem(h) fa(h)c\\u00e9s(h)sat(h) c\\u01fd(hi)ci(h)tas,(h'_) (,)\\r\\nqu\\u00e6(h) nos(h)met(h) in(g) pr\\u00e6(f)ceps(gh) di(g)u(g.) (;)\\r\\nla(f)psos(h) si(h)n\\u00ed(g)stris(f) gr\\u00e9s(g)si(g)bus(h'_) (,)\\r\\ner(g)r\\u00f3(g)re(g) tra(f)xit(d) d\\u00e9(f)vi(e)o.(d.) \\r\\n\\r\\n3.(::)\\r\\nH\\u00e6c(h) lux(h) se(h)r\\u00e9(h)num(h) c\\u00f3n(hi)fe(h)rat(h'_) (,)\\r\\npu(h)r\\u00f3s(h)que(h) nos(g) pr\\u00e6(f)stet(gh) si(g)bi;(g.) (;)\\r\\nni(f)hil(h) lo(h)qu\\u00e1(g)mur(f) s\\u00fab(g)do(g)lum,(h'_) (,)\\r\\nvol(g)v\\u00e1(g)mus(g) ob(f)sc\\u00fa(d)rum(f) ni(e)hil.(d.) \\r\\n\\r\\n4.(::)\\r\\nSic(h) to(h)ta(h) de(h)c\\u00far(h)rat(hi) di(h)es,(h'_) (,)\\r\\nne(h) lin(h)gua(h) men(g)dax,(f) ne(gh) ma(g)nus(g.) (;)\\r\\no(f)c<i>u</i>()l\\u00ed(h)ve(h) pec(g)cent(f) l\\u00fa(g)bri(g)ci,(h'_) (,)\\r\\nne(g) no(g)xa(g) cor(f)pus(d) \\u00edn(f)qui(e)net.(d.) \\r\\n\\r\\n5.(::)\\r\\nSpe(h)c<i>u</i>()l\\u00e1(h)tor(h) a(h)stat(h) d\\u00e9(hi)su(h)per,(h'_) (,)\\r\\nqui(h) nos(h) di(h)\\u00e9(g)bus(f) \\u00f3m(gh)ni(g)bus(g.) (;)\\r\\na(f)ct\\u00fas(h)que(h) no(g)stros(f) pr\\u00f3(g)spi(g)cit(h'_) (,)\\r\\na(g) lu(g)ce(g) pri(f)m<i>a</i>() in(d) v\\u00e9(f)spe(e)rum.(d.) \\r\\n\\r\\n5.(::)\\r\\nDe(h)o(h) Pa(h)tri(h) sit(h) gl\\u00f3(hi)ri(h)a(h'_) (,)\\r\\ne(h)i\\u00fas(h)que(h) so(g)li(f) F\\u00ed(gh)li(g)o(g.) (;)\\r\\ncum(f) Sp\\u00ed(h)ri(h)tu(g) Pa(f)r\\u00e1(g)cli(g)to,(h'_) (,)\\r\\nin(g) sem(g)pi(g)t\\u00e9r(f)na(d) s\\u01fd(f)cu(e)la.(d.) (::)\\r\\nA(ded)men.(cd..) (::)\\r\\n",
|
|
2202
|
+
office: "hy",
|
|
2203
|
+
mode: "1",
|
|
2204
|
+
pages: [
|
|
2205
|
+
{ page: "202", sequence: 1, extent: 1 }
|
|
2206
|
+
],
|
|
2207
|
+
},
|
|
2208
|
+
{
|
|
2209
|
+
id: "gregobase:15632",
|
|
2210
|
+
incipit: "Aeterna caeli gloria",
|
|
2211
|
+
gabc: "initial-style: 1;\\r\\nname: Aeterna caeli gloria;\\r\\nbook: Liber Hymnarius, p. 204;\\r\\noccasion: Tempore Per Annum Feriis VI Hebd. I & III;\\r\\noffice-part: Ad Laudes matutinas H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 1;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)\\u00c6(h)t\\u00e9r(h)na(h) c\\u00e6(h)li(h) gl\\u00f3(hi)ri(h)a,(h'_) (,)\\r\\nbe(h)\\u00e1(h)ta(h) spes(g) mor(f)t\\u00e1(gh)li(g)um,(g.) (;)\\r\\ncel(f)si(h) Pa(h)r\\u00e9n(g)tis(f) U(g)ni(g)ce(h'_) (,)\\r\\nca(g)st\\u01fd(g)que(g) pro(f)les(d) V\\u00edr(f)gi(e)nis,(d.) \\r\\n\\r\\n2.(::)\\r\\nDa(h) d\\u00e9x(h)te(h)ram(h) sur(h)g\\u00e9n(hi)ti(h)bus,(h'_) (,)\\r\\nex(h)s\\u00far(h)gat(h) et(g) mens(f) s\\u00f3(gh)bri(g)a(g.) (;)\\r\\nfla(f)grans(h) et(h) in(g) lau(f)dem(g) De(g)i(h'_) (,)\\r\\ngra(g)tes(g) re(g)p\\u00e9n(f)dat(d) d\\u00e9(f)bi(e)tas.(d.) \\r\\n\\r\\n3.(::)\\r\\nOr(h)tus(h) re(h)f\\u00fal(h)get(h) l\\u00fa(hi)ci(h)fer(h'_) (,)\\r\\ni(h)ps\\u00e1m(h)que(h) lu(g)cem(f) n\\u00fan(gh)ti(g)at,(g.) (;)\\r\\nca(f)dit(h) ca(h)l\\u00ed(g)go(f) n\\u00f3(g)cti(g)um,(h'_) (,)\\r\\nlux(g) san(g)cta(g) nos(f) il(d)l\\u00fa(f)mi(e)net,(d.) \\r\\n\\r\\n4.(::)\\r\\nMa(h)n\\u00e9n(h) s()que(h) no(h)stris(h) s\\u00e9n(hi)si(h)bus(h'_) (,)\\r\\nno(h)ctem(h) re(h)p\\u00e9l(g)lat(f) s\\u01fd(gh)cu(g)li(g.) (;)\\r\\nom(f)n\\u00ed(h)que(h) fi(g)ne(f) t\\u00e9m(g)po(g)ris(h'_) (,)\\r\\npur(g)g\\u00e1(g)ta(g) ser(f)vet(d) p\\u00e9(f)cto(e)ra.(d.) \\r\\n\\r\\n5.(::)\\r\\nQu\\u00e6(h)s\\u00ed(h)ta(h) iam(h) pri(h)mum(hi) fi(h)des(h'_) (,)\\r\\nra(h)d\\u00ed(h)cet(h) al(g)tis(f) s\\u00e9n(gh)si(g)bus,(g.) (;)\\r\\nse(f)c\\u00fan(h)da(h) spes(g) con(f)g\\u00e1u(g)de(g)at;(h'_) (,)\\r\\ntunc(g) ma(g)ior(g) ex(f)stat(d) c\\u00e1(f)ri(e)tas.(d.) \\r\\n\\r\\n6.(::)\\r\\nSit,(h) Chri(h)ste,(h) rex(h) pi(h)\\u00eds(hi)si(h)me,(h'_) (,)\\r\\nti(h)bi(h) Pa(h)tr\\u00ed(g)que(f) gl\\u00f3(gh)ri(g)a(g.) (;)\\r\\ncum(f) Sp\\u00ed(h)ri(h)tu(g) Pa(f)r\\u00e1(g)cli(g)to,(h'_) (,)\\r\\nin(g) sem(g)pi(g)t\\u00e9r(f)na(d) s\\u01fd(f)cu(e)la.(d.) (::)\\r\\nA(ded)men.(cd..) (::)\\r\\n",
|
|
2212
|
+
office: "hy",
|
|
2213
|
+
mode: "1",
|
|
2214
|
+
pages: [
|
|
2215
|
+
{ page: "204", sequence: 2, extent: 1 }
|
|
2216
|
+
],
|
|
2217
|
+
},
|
|
2218
|
+
{
|
|
2219
|
+
id: "gregobase:15633",
|
|
2220
|
+
incipit: "Aurora iam",
|
|
2221
|
+
gabc: "initial-style: 1;\\r\\nname: Aurora iam;\\r\\nbook: Liber Hymnarius, p. 207;\\r\\noccasion: Tempore Per Annum Sabbatis Hebd. I & III;\\r\\noffice-part: Ad Laudes matutinas H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 1;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Au(h)r\\u00f3(h)ra(h) iam(h) spar(h)git(hi) po(h)lum,(h'_) (,)\\r\\nter(h)ris(h) di(h)es(g) il(f)l\\u00e1(gh)bi(g)tur,(g.) (;)\\r\\nlu(f)cis(h) re(h)s\\u00fal(g)tat(f) sp\\u00ed(g)cu(g)lum:(h'_) (,)\\r\\ndi(g)sc\\u00e9(g)dat(g) om(f)ne(d) l\\u00fa(f)bri(e)cum.(d.) \\r\\n\\r\\n2.(::)\\r\\nIam(h) va(h)na(h) no(h)ctis(h) d\\u00e9(hi)ci(h)dant,(h'_) (,)\\r\\nmen(h)tis(h) re(h)\\u00e1(g)tus(f) s\\u00fa(gh)bru(g)at,(g.) (;)\\r\\nquic(f)quid(h) t\\u00e9(h)ne(g)bris(f) h\\u00f3r(g)ri(g)dum(h'_) (,)\\r\\nnox(g) \\u00e1t(g)tu(g)lit(f) cul(d)p\\u00e6,(f) ca(e)dat,(d.) \\r\\n\\r\\n3.(::)\\r\\nUt(h) ma(h)ne(h) il(h)lud(h) \\u00fal(hi)ti(h)mum,(h'_) (,)\\r\\nquod(h) pr\\u00e6(h)sto(h)l\\u00e1(g)mur(f) c\\u00e9r(gh)nu(g)i,(g.) (;)\\r\\nin(f) lu(h)cem(h) no(g)bis(f) \\u00e9f(g)flu(g)at,(h'_) (,)\\r\\ndum(g) hoc(g) ca(g)n\\u00f3(f)re(d) c\\u00f3n(f)cre(e)pat.(d.) \\r\\n\\r\\n4.(::)\\r\\nDe(h)o(h) Pa(h)tri(h) sit(h) gl\\u00f3(hi)ri(h)a(h'_) (,)\\r\\ne(h)i\\u00fas(h)que(h) so(g)li(f) F\\u00ed(gh)li(g)o(g.) (;)\\r\\ncum(f) Sp\\u00ed(h)ri(h)tu(g) Pa(f)r\\u00e1(g)cli(g)to,(h'_) (,)\\r\\nin(g) sem(g)pi(g)t\\u00e9r(f)na(d) s\\u01fd(f)cu(e)la.(d.) (::)\\r\\nA(ded)men.(cd..) (::)\\r\\n",
|
|
2222
|
+
office: "hy",
|
|
2223
|
+
mode: "1",
|
|
2224
|
+
pages: [
|
|
2225
|
+
{ page: "207", sequence: 1, extent: 1 }
|
|
2226
|
+
],
|
|
2227
|
+
},
|
|
2228
|
+
{
|
|
2229
|
+
id: "gregobase:15635",
|
|
2230
|
+
incipit: "Telluris ingens conditor",
|
|
2231
|
+
gabc: "initial-style: 1;\\r\\nname: Telluris ingens conditor;\\r\\nbook: Liber Hymnarius, p. 198;\\r\\noccasion: In Feriis III Per Annum;\\r\\noffice-part: Ad Vesperas H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: D;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Tel(d)l\\u00fa(f)ris(g) in(g)gens(f) c\\u00f3n(h)di(g)tor,(g'_) (,)\\r\\nmun(d)di(f) so(g)lum(g) qui(f) \\u00e9(h)ru(g)ens,(g.) (;)\\r\\npul(h)sis(jk) a(j)qu\\u00e6(j) mo(g)l\\u00e9(h)sti(g)is,(g'_) (,)\\r\\nter(d)ram(f) de(g)d\\u00ed(g)st<i>i</i>() im(f)m\\u00f3(h)bi(g)lem,(g.) \\r\\n\\r\\n2.(::)\\r\\nUt(d) ger(f)men(g) ap(g)tum(f) pr\\u00f3(h)fe(g)rens,(g'_) (,)\\r\\nful(d)vis(f) de(g)c\\u00f3(g)ra(f) fl\\u00f3(h)ri(g)bus,(g.) (;)\\r\\nfe(h)c\\u00fan(jk)da(j) fru(j)ctu(g) s\\u00ed(h)ste(g)ret(g'_) (,)\\r\\npa(d)st\\u00fam(f)que(g) gra(g)tum(f) r\\u00e9d(h)de(g)ret:(g.) \\r\\n\\r\\n3.(::)\\r\\nMen(d)tis(f) per(g)\\u00fas(g)t\\u00e6(f) v\\u00fal(h)ne(g)ra(g'_) (,)\\r\\nmun(d)da(f) vi(g)r\\u00f3(g)re(f) gr\\u00e1(h)ti(g)\\u00e6,(g.) (;)\\r\\nut(h) fa(jk)cta(j) fle(j)tu(g) d\\u00ed(h)lu(g)at(g'_) (,)\\r\\nmo(d)t\\u00fas(f)que(g) pra(g)vos(f) \\u00e1t(h)te(g)rat,(g.) \\r\\n\\r\\n4.(::)\\r\\nIus(d)sis(f) tu(g)is(g) ob(f)t\\u00e9m(h)pe(g)ret,(g'_) (,)\\r\\nnul(d)lis(f) ma(g)lis(g) ap(f)pr\\u00f3(h)xi(g)met,(g.) (;)\\r\\nbo(h)nis(jk) re(j)pl\\u00e9(j)ri(g) g\\u00e1u(h)de(g)at(g'_) (,)\\r\\net(d) mor(f)tis(g) a(g)ctum(f) n\\u00e9(h)sci(g)at.(g.) \\r\\n\\r\\n5.(::)\\r\\nPr\\u00e6(d)sta,(f) Pa(g)ter(g) pi(f)\\u00eds(h)si(g)me,(g'_) (,)\\r\\nPa(d)tr\\u00ed(f)que(g) com(g)par(f) U(h)ni(g)ce,(g.) (;)\\r\\ncum(h) Sp\\u00ed(jk)ri(j)tu(j) Pa(g)r\\u00e1(h)cli(g)to(g'_) (,)\\r\\nre(d)gnans(f) per(g) om(g)ne(f) s\\u01fd(h)cu(g)lum.(g.) (::)\\r\\nA(ghg)men.(fg) (::)\\r\\n",
|
|
2232
|
+
office: "hy",
|
|
2233
|
+
mode: "d",
|
|
2234
|
+
pages: [
|
|
2235
|
+
{ page: "198", sequence: 1, extent: 1 }
|
|
2236
|
+
],
|
|
2237
|
+
},
|
|
2238
|
+
{
|
|
2239
|
+
id: "gregobase:15636",
|
|
2240
|
+
incipit: "Caeli Deus",
|
|
2241
|
+
gabc: "initial-style: 1;\\r\\nname: Caeli Deus;\\r\\nbook: Liber Hymnarius, p. 200;\\r\\noccasion: In Feriis IV Per Annum;\\r\\noffice-part: Ad Vesperas H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: D;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)C\\u00e6(d)li(f) De(g)us(g) San(f)ct\\u00eds(h)si(g)me,(g'_) (,)\\r\\nqui(d) l\\u00fa(f)ci(g)dum(g) cen(f)trum(h) po(g)li(g.) (;)\\r\\ncan(h)d\\u00f3(jk)re(j) pin(j)gis(g) \\u00ed(h)gne(g)o(g'_) (,)\\r\\nau(d)gens(f) de(g)c\\u00f3(g)ro(f) l\\u00fa(h)mi(g)ne,(g.) \\r\\n\\r\\n2.(::)\\r\\nQuar(d)to(f) di(g)e(g) qui(f) fl\\u00e1m(h)me(g)am(g'_) (,)\\r\\nso(d)lis(f) ro(g)tam(g) con(f)st\\u00ed(h)tu(g)ens,(g.) (;)\\r\\nlu(h)n\\u00e6(jk) mi(j)n\\u00ed(j)stras(g) \\u00f3r(h)di(g)ni(g'_) (,)\\r\\nva(d)gos(f) re(g)c\\u00far(g)sus(f) s\\u00ed(h)de(g)rum,(g.) \\r\\n\\r\\n3.(::)\\r\\nUt(d) n\\u00f3(f)cti(g)bus(g) vel(f) l\\u00fa(h)mi(g)ni(g'_) (,)\\r\\ndir(d)emp(f)ti(g)\\u00f3n(g)is(f) t\\u00e9r(h)mi(g)num,(g.) (;)\\r\\npri(h)m\\u00f3r(jk)di(j)is(j) et(g) m\\u00e9n(h)si(g)um(g'_) (,)\\r\\nsi(d)gnum(f) da(g)res(g) no(f)t\\u00eds(h)si(g)mum:(g.) \\r\\n\\r\\n4.(::)\\r\\nIl(d)l\\u00fa(f)mi(g)na(g) cor(f) h\\u00f3(h)mi(g)num,(g'_) (,)\\r\\nab(d)st\\u00e9r(f)ge(g) sor(g)des(f) m\\u00e9n(h)ti(g)um,(g.) (;)\\r\\nre(h)s\\u00f3l(jk)ve(j) cul(j)p\\u00e6(g) v\\u00edn(h)cu(g)lum,(g'_) (,)\\r\\ne(d)v\\u00e9r(f)te(g) mo(g)les(f) cr\\u00ed(h)mi(g)num.(g.) \\r\\n\\r\\n5.(::)\\r\\nPr\\u00e6(d)sta,(f) Pa(g)ter(g) pi(f)\\u00eds(h)si(g)me,(g'_) (,)\\r\\nPa(d)tr\\u00ed(f)que(g) com(g)par(f) U(h)ni(g)ce,(g.) (;)\\r\\ncum(h) Sp\\u00ed(jk)ri(j)tu(j) Pa(g)r\\u00e1(h)cli(g)to(g'_) (,)\\r\\nre(d)gnans(f) per(g) om(g)ne(f) s\\u01fd(h)cu(g)lum.(g.) (::)\\r\\nA(ghg)men.(fg) (::)\\r\\n",
|
|
2242
|
+
office: "hy",
|
|
2243
|
+
mode: "d",
|
|
2244
|
+
pages: [
|
|
2245
|
+
{ page: "200", sequence: 1, extent: 1 }
|
|
2246
|
+
],
|
|
2247
|
+
},
|
|
2248
|
+
{
|
|
2249
|
+
id: "gregobase:15637",
|
|
2250
|
+
incipit: "Magnae Deus potentiae",
|
|
2251
|
+
gabc: "initial-style: 1;\\r\\nname: Magnae Deus potentiae;\\r\\nbook: Liber Hymnarius, p. 202;\\r\\noccasion: In Feriis V Per Annum;\\r\\noffice-part: Ad Vesperas H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: D;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Ma(d)gn\\u00e6(f) De(g)us(g) po(f)t\\u00e9n(h)ti(g)\\u00e6,(g'_) (,)\\r\\nqui(d) ex(f) a(g)quis(g) or(f)tum(h) ge(g)nus(g.) (;)\\r\\npar(h)tim(jk) re(j)m\\u00edt(j)tis(g) g\\u00far(h)gi(g)ti,(g'_) (,)\\r\\npar(d)tim(f) le(g)vas(g) in(f) \\u00e1(h)e(g)ra,(g.) \\r\\n\\r\\n2.(::)\\r\\nDe(d)m\\u00e9r(f)sa(g) lym(g)phis(f) \\u00edm(h)pri(g)mens,(g'_) (,)\\r\\nsub(d)v\\u00e9(f)cta(g) c\\u00e6(g)lis(f) \\u00edr(h)ro(g)gans,(g.) (;)\\r\\nut,(h) stir(jk)pe(j) u(j)na(g) pr\\u00f3(h)di(g)ta,(g'_) (,)\\r\\ndi(d)v\\u00e9r(f)sa(g) r\\u00e9(g)ple(f)ant(h) lo(g)ca:(g.) \\r\\n\\r\\n3.(::)\\r\\nLar(d)g\\u00ed(f)re(g) cun(g)ctis(f) s\\u00e9r(h)vu(g)lis,(g'_) (,)\\r\\nquos(d) mun(f)dat(g) un(g)da(f) s\\u00e1n(h)gui(g)nis,(g.) (;)\\r\\nne(h)sc\\u00ed(jk)re(j) la(j)psus(g) cr\\u00ed(h)mi(g)num(g'_) (,)\\r\\nnec(d) fer(f)re(g) mor(g)tis(f) t\\u01fd(h)di(g)um,(g.) \\r\\n\\r\\n4.(::)\\r\\nUt(d) cul(f)pa(g) nul(g)lum(f) d\\u00e9(h)pri(g)mat,(g'_) (,)\\r\\nnul(d)lum(f) le(g)vet(g) ia(f)ct\\u00e1n(h)ti(g)a,(g.) (;)\\r\\ne(h)l\\u00ed(jk)sa(j) mens(j) ne(g) c\\u00f3n(h)ci(g)dat,(g'_) (,)\\r\\ne(d)l\\u00e1(f)ta(g) mens(g) ne(f) c\\u00f3r(h)ru(g)at.(g.) \\r\\n\\r\\n5.(::)\\r\\nPr\\u00e6(d)sta,(f) Pa(g)ter(g) pi(f)\\u00eds(h)si(g)me,(g'_) (,)\\r\\nPa(d)tr\\u00ed(f)que(g) com(g)par(f) U(h)ni(g)ce,(g.) (;)\\r\\ncum(h) Sp\\u00ed(jk)ri(j)tu(j) Pa(g)r\\u00e1(h)cli(g)to(g'_) (,)\\r\\nre(d)gnans(f) per(g) om(g)ne(f) s\\u01fd(h)cu(g)lum.(g.) (::)\\r\\nA(ghg)men.(fg) (::)\\r\\n",
|
|
2252
|
+
office: "hy",
|
|
2253
|
+
mode: "d",
|
|
2254
|
+
pages: [
|
|
2255
|
+
{ page: "202", sequence: 2, extent: 1 }
|
|
2256
|
+
],
|
|
2257
|
+
},
|
|
2258
|
+
{
|
|
2259
|
+
id: "gregobase:15638",
|
|
2260
|
+
incipit: "Plasmator hominis",
|
|
2261
|
+
gabc: "initial-style: 1;\\r\\nname: Plasmator hominis;\\r\\nbook: Liber Hymnarius, p. 205;\\r\\noccasion: In Feriis VI Per Annum;\\r\\noffice-part: Ad Vesperas H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: D;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)Plas(d)m\\u00e1(f)tor(g) h\\u00f3(g)mi(f)nis,(h) De(g)us,(g'_) (,)\\r\\nqui,(d) cun(f)cta(g) so(g)lus(f) \\u00f3r(h)di(g)nans,(g.) (;)\\r\\nhu(h)mum(jk) iu(j)bes(j) pro(g)d\\u00fa(h)ce(g)re(g'_) (,)\\r\\nrep(d)t\\u00e1n(f)tis(g) et(g) fe(f)r\\u00e6(h) ge(g)nus;(g.) \\r\\n\\r\\n2.(::)\\r\\nQui(d) ma(f)gna(g) re(g)rum(f) c\\u00f3r(h)po(g)ra,(g'_) (,)\\r\\ndi(d)ctu(f) iu(g)b\\u00e9n(g)tis(f) v\\u00ed(h)vi(g)da,(g.) (;)\\r\\nut(h) s\\u00e9r(jk)vi(j)ant(j) per(g) \\u00f3r(h)di(g)nem(g'_) (,)\\r\\nsub(d)dens(f) de(g)d\\u00ed(g)sti(f) h\\u00f3(h)mi(g)ni:(g.) \\r\\n\\r\\n3.(::)\\r\\nRe(d)p\\u00e9l(f)le(g) a(g) ser(f)vis(h) tu(g)is(g'_) (,)\\r\\nquic(d)quid(f) per(g) im(g)mun(f)d\\u00ed(h)ti(g)am(g.) (;)\\r\\naut(h) m\\u00f3(jk)ri(j)bus(j) se(g) s\\u00fag(h)ge(g)rit,(g'_) (,)\\r\\naut(d) \\u00e1(f)cti(g)bus(g) s<i>e</i>() in(f)t\\u00e9r(h)se(g)rit.(g.) \\r\\n\\r\\n4.(::)\\r\\nDa(d) gau(f)di(g)\\u00f3(g)rum(f) pr\\u01fd(h)mi(g)a,(g'_) (,)\\r\\nda(d) gra(f)ti(g)\\u00e1(g)rum(f) m\\u00fa(h)ne(g)ra;(g.) (;)\\r\\ndis(h)s\\u00f3l(jk)ve(j) li(j)tis(g) v\\u00edn(h)cu(g)la,(g'_) (,)\\r\\na(d)str\\u00edn(f)ge(g) pa(g)cis(f) foe(h)de(g)ra.(g.) \\r\\n\\r\\n5.(::)\\r\\nPr\\u00e6(d)sta,(f) Pa(g)ter(g) pi(f)\\u00eds(h)si(g)me,(g'_) (,)\\r\\nPa(d)tr\\u00ed(f)que(g) com(g)par(f) U(h)ni(g)ce,(g.) (;)\\r\\ncum(h) Sp\\u00ed(jk)ri(j)tu(j) Pa(g)r\\u00e1(h)cli(g)to(g'_) (,)\\r\\nre(d)gnans(f) per(g) om(g)ne(f) s\\u01fd(h)cu(g)lum.(g.) (::)\\r\\nA(ghg)men.(fg) (::)\\r\\n",
|
|
2262
|
+
office: "hy",
|
|
2263
|
+
mode: "d",
|
|
2264
|
+
pages: [
|
|
2265
|
+
{ page: "205", sequence: 1, extent: 1 }
|
|
2266
|
+
],
|
|
2267
|
+
},
|
|
2268
|
+
{
|
|
2269
|
+
id: "gregobase:15660",
|
|
2270
|
+
incipit: "Ut queant laxis",
|
|
2271
|
+
gabc: "initial-style: 1;\\r\\nname: Ut queant laxis;\\r\\nbook: Liber Hymnarius, p. 382;\\r\\noccasion: In Nativitate S. Ioannis Baptistae;\\r\\noffice-part: Ad Vesperas H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 2;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(f3)Ut(e_) que(f)ant(h) la(fg)xis(f.) (,) re(f)so(f)n\\u00e1(e)re(f) fi(g.)bris(g.) (;)\\r\\nmi(ghwi)ra(g) ge(f)st\\u00f3(ge)rum(f.) (,) f\\u00e1(h)mu(i)li(j) tu(i)\\u00f3(hf)rum,(f.) (:)\\r\\nsol(iji)ve(g) pol(h)l\\u00fa(ii)ti(f.) (,) l\\u00e1(j)bi(i)i(j) re(h)\\u00e1(ij)tum,(j.) (,)\\r\\nsan(ih)cte(f) Io(e)\\u00e1n(gg)nes.(f.) \\r\\n\\r\\n2.(::)\\r\\nN\\u00fan(e_)ti(f)us(h) c\\u00e6(fg)lo(f.) (,) v\\u00e9(f)ni(f)ens(e) su(f)pr\\u00e9(g.)mo,(g.) (;)\\r\\nte(ghwi) pa(g)tri(f) ma(ge)gnum(f.) (,) fo(h)re(i) na(j)sci(i)t\\u00fa(hf)rum,(f.) (:)\\r\\nno(iji)men(g) et(h) vi(ii)t\\u00e6(f.) (,) s\\u00e9(j)ri(i)em(j) ge(h)r\\u00e9n(ij)d\\u00e6(j.) (,)\\r\\n\\u00f3r(ih)di(f)ne(e) pro(gg)mit.(f.) \\r\\n\\r\\n3.(::)\\r\\nIl(e_)le(f) pro(h)m\\u00eds(fg)si(f.) (,) d\\u00fa(f)bi(f)us(e) su(f)p\\u00e9r(g.)ni(g.) (;)\\r\\np\\u00e9r(ghwi)di(g)dit(f) prom(ge)pt\\u00e61983(f.) (,) m\\u00f3(h)du(i)los(j) lo(i)qu\\u00e9(hf)l\\u00e6;(f.) (:)\\r\\nsed(iji) re(g)for(h)m\\u00e1(ii)sti(f.) (,) g\\u00e9(j)ni(i)tus(j) pe(h)r\\u00e9m(ij)pt\\u00e6(j.) (,)\\r\\n\\u00f3r(ih)ga(f)na(e) vo(gg)cis.(f.) \\r\\n\\r\\n4.(::)\\r\\nVen(e_)tris(f) ob(h)str\\u00fa(fg)so(f.) (,) p\\u00f3(f)si(f)tus(e) cu(f)b\\u00ed(g.)li(g.) (;)\\r\\ns\\u00e9n(ghwi)se(g)ras(f) re(ge)gem(f.) (,) th\\u00e1(h)la(i)mo(j) ma(i)n\\u00e9n(hf)tem;(f.) (:)\\r\\nhinc(iji) pa(g)rens(h) na(ii)ti(f.) (,) m\\u00e9(j)ri(i)tis(j) u(h)t\\u00e9r(ij)que(j.) (,)\\r\\n\\u00e1b(ih)di(f)ta(e) pan(gg)dit.(f.) \\r\\n\\r\\n5.(::)\\r\\nL\\u00e1u(e_)di(f)bus(h) ci(fg)ves(f.) (,) c\\u00e9(f)le(f)brant(e) su(f)p\\u00e9r(g.)ni(g.) (;)\\r\\nte,(ghwi) De(g)us(f) sim(ge)plex(f.) (,) pa(h)ri(i)t\\u00e9r(j)que(i) tri(hf)ne;(f.) (:)\\r\\ns\\u00fap(iji)pli(g)ces(h) ac(ii) nos(f.) (,) v\\u00e9(j)ni(i)am(j) pre(h)c\\u00e1(ij)mur:(j.) (,)\\r\\npar(ih)ce(f) re(e)d\\u00e9m(gg)ptis.(f.) (::)\\r\\nA(fgf)men.(ef..) (::)\\r\\n",
|
|
2272
|
+
office: "hy",
|
|
2273
|
+
mode: "2",
|
|
2274
|
+
pages: [
|
|
2275
|
+
{ page: "382", sequence: 0, extent: 1 }
|
|
2276
|
+
],
|
|
2277
|
+
},
|
|
2278
|
+
{
|
|
2279
|
+
id: "gregobase:15662",
|
|
2280
|
+
incipit: "Antra deserti",
|
|
2281
|
+
gabc: "initial-style: 1;\\r\\nname: Antra deserti;\\r\\nbook: Liber Hymnarius, p. 384;\\r\\noccasion: In Nativitate S. Ioannis Baptistae;\\r\\noffice-part: Ad Officium lectionis H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 4;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)An(e)tra(d) de(efwg)s\\u00e9r(gh)ti(g.) (,) t\\u00e9(h)ne(g)ris(fe) sub(de) an(e.)nis,(e.) (;)\\r\\nc\\u00ed(e_)vi(d)um(e) tur(ed)mas(c.) (,) f\\u00fa(e)gi(f)ens,(gf) pe(de)t\\u00ed(e.)sti,(e.) (:)\\r\\nne(ghwij) le(hg)vi(hi) sal(hg)tem(g_h) ma(h)cu(gf)l\\u00e1(g)re(gf) vi(e)tam(e_h) (,)\\r\\nf\\u00e1(hg)mi(fe)ne(de) pos(e.)ses.(e.) \\r\\n\\r\\n2.(::)\\r\\nPr\\u01fd(e)bu(d)it(efwg) hir(gh)tum(g.) (,) t\\u00e9(h)gi(g)men(fe) ca(de)m\\u00e9(e.)lus(e.) (;)\\r\\n\\u00e1r(e_)tu(d)bus(e) sa(ed)cris,(c.) (,) str\\u00f3(e)phi(f)um(gf) bi(de)d\\u00e9n(e.)tes,(e.) (:)\\r\\nc<i>u</i>()i(ghwij) la(hg)tex(hi) hau(hg)stum,(g_h) so(h)ci(gf)\\u00e1(g)ta(gf) pa(e)stum(e_h) (,)\\r\\nmel(hg)la(fe) lo(de)c\\u00fa(e.)stis.(e.) \\r\\n\\r\\n3.(::)\\r\\nC\\u00e9(e)te(d)ri(efwg) tan(gh)tum(g.) (,) ce(h)ci(g)n\\u00e9(fe)re(de) va(e.)tum(e.) (;)\\r\\ncor(e_)de(d) pr\\u00e6(e)s\\u00e1(ed)go(c.) (,) iu(e)bar(f) af(gf)fu(de)t\\u00fa(e.)rum;(e.) (:)\\r\\ntu(ghwij) qui(hg)dem(hi) mun(hg)di(g_h) sce(h)lus(gf) au(g)fe(gf)r\\u00e9n(e)tem(e_h) (,)\\r\\n\\u00edn(hg)di(fe)ce(de) pro(e.)dis.(e.) \\r\\n\\r\\n4.(::)\\r\\nNon(e) fu(d)it(efwg) va(gh)sti(g.) (,) sp\\u00e1(h)ti(g)um(fe) per(de) or(e.)bis(e.) (;)\\r\\ns\\u00e1n(e_)cti(d)or(e) quis(ed)quam(c.) (,) g\\u00e9(e)ni(f)tus(gf) Io(de)\\u00e1n(e.)ne,(e.) (:)\\r\\nqui(ghwij) ne(hg)fas(hi) s\\u00e6(hg)cli(g_h) m\\u00e9(h)ru(gf)it(g) la(gf)v\\u00e1n(e)tem(e_h) (,)\\r\\nt\\u00edn(hg)ge(fe)re(de) lym(e.)phis.(e.) \\r\\n\\r\\n5.(::)\\r\\nL\\u00e1u(e)di(d)bus(efwg) ci(gh)ves(g.) (,) c\\u00e9(h)le(g)brant(fe) su(de)p\\u00e9r(e.)ni(e.) (;)\\r\\nte,(e_) De(d)us(e) sim(ed)plex(c.) (,) pa(e)ri(f)t\\u00e9r(gf)que(de) tri(e.)ne;(e.) (:)\\r\\ns\\u00fap(ghwij)pli(hg)ces(hi) ac(hg) nos(g_h) v\\u00e9(h)ni(gf)am(g) pre(gf)c\\u00e1(e)mur:(e_h) (,)\\r\\npar(hg)ce(fe) re(de)d\\u00e9m(e.)ptis.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
2282
|
+
office: "hy",
|
|
2283
|
+
mode: "4",
|
|
2284
|
+
pages: [
|
|
2285
|
+
{ page: "384", sequence: 2, extent: 1 }
|
|
2286
|
+
],
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
id: "gregobase:15663",
|
|
2290
|
+
incipit: "O nimis felix",
|
|
2291
|
+
gabc: "initial-style: 1;\\r\\nname: O nimis felix;\\r\\nbook: Liber Hymnarius, p. 386;\\r\\noccasion: In Nativitate S. Ioannis Baptistae;\\r\\noffice-part: Ad Laudes H;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 4;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c4)O(e) ni(d)mis(efwg) fe(gh)lix(g.) (,) me(h)ri(g)t\\u00ed(fe)que(de) cel(e.)si,(e.) (;)\\r\\nn\\u00e9(e_)sci(d)ens(e) la(ed)bem(c.) (,) n\\u00ed(e)ve(f)i(gf) pu(de)d\\u00f3(e.)ris,(e.) (:)\\r\\npr\\u01fd(ghwij)po(hg)tens(hi) mar(hg)tyr(g_h) e(h)re(gf)m\\u00ed(g)que(gf) cul(e)tor,(e_h) (,)\\r\\nm\\u00e1(hg)xi(fe)me(de) va(e.)tum.(e.) \\r\\n\\r\\n2.(::)\\r\\nNunc(e) po(d)tens(efwg) no(gh)stri(g.) (,) m\\u00e9(h)ri(g)tis(fe) o(de)p\\u00ed(e.)mis(e.) (;)\\r\\np\\u00e9(e_)cto(d)ris(e) du(ed)ros(c.) (,) l\\u00e1(e)pi(f)des(gf) re(de)p\\u00e9l(e.)le,(e.) (:)\\r\\n\\u00e1(ghwij)spe(hg)rum(hi) pla(hg)nans(g_h) i(h)ter,(gf) et(g) re(gf)fl\\u00e9(e)xos(e_h) (,)\\r\\nd\\u00ed(hg)ri(fe)ge(de) cal(e.)les,(e.) \\r\\n\\r\\n3.(::)\\r\\nUt(e) pi(d)us(efwg) mun(gh)di(g.) (,) sa(h)tor(g) et(fe) re(de)d\\u00e9m(e.)ptor,(e.) (;)\\r\\nm\\u00e9n(e_)ti(d)bus(e) pul(ed)sa(c.) (,) m\\u00e1(e)cu(f)la(gf) po(de)l\\u00ed(e.)tis,(e.) (:)\\r\\nri(ghwij)te(hg) di(hi)gn\\u00e9(hg)tur(g_h) v\\u00e9(h)ni(gf)ens(g) sa(gf)cr\\u00e1(e)tos(e_h) (,)\\r\\np\\u00f3(hg)ne(fe)re(de) gres(e.)sus.(e.) \\r\\nu\\r\\n4.(::)\\r\\nL\\u00e1u(e)di(d)bus(efwg) ci(gh)ves(g.) (,) c\\u00e9(h)le(g)brant(fe) su(de)p\\u00e9r(e.)ni(e.) (;)\\r\\nte,(e_) De(d)us(e) sim(ed)plex(c.) (,) pa(e)ri(f)t\\u00e9r(gf)que(de) tri(e.)ne;(e.) (:)\\r\\ns\\u00fap(ghwij)pli(hg)ces(hi) ac(hg) nos(g_h) v\\u00e9(h)ni(gf)am(g) pre(gf)c\\u00e1(e)mur:(e_h) (,)\\r\\npar(hg)ce(fe) re(de)d\\u00e9m(e.)ptis.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
2292
|
+
office: "hy",
|
|
2293
|
+
mode: "4",
|
|
2294
|
+
pages: [
|
|
2295
|
+
{ page: "386", sequence: 0, extent: 1 }
|
|
2296
|
+
],
|
|
2297
|
+
},
|
|
2298
|
+
{
|
|
2299
|
+
id: "gregobase:15664",
|
|
2300
|
+
incipit: "Agnum Dei quem laetus;",
|
|
2301
|
+
gabc: "initial-style: 1;\\r\\nname: Agnum Dei quem laetus;\\r\\nbook: Liber Hymnarius, p. 384;\\r\\noccasion: In Nativitate S. Ioannis Baptistae;\\r\\noffice-part: Ad Invitatorium Ant;\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: 7;\\r\\ncentering-scheme: english;\\r\\nfontsize: 12;\\r\\nfont: OFLSortsMillGoudy;\\r\\nheight: 11;\\r\\nwidth: 4.5;\\r\\n%%\\r\\n(c3)A(-ehg)gnum(h) De(i_h_iwjij)i,(ji..) (,) quem(i) l\\u00e6(ijwk_JI)tus(i) mon(h)str\\u00e1(ij)vit(ji) Io(h)\\u00e1n(h!ijh/hg>)nes,(e_f!gw_h_e_fveed.) (;) ve(df)n\\u00ed(h_!i_j_i_/hioj)te(hhg) ad(f)o(fiHG)r\\u00e9(e_f_e_)mus.(e.) (::)\\r\\n",
|
|
2302
|
+
office: "an",
|
|
2303
|
+
mode: "7",
|
|
2304
|
+
pages: [
|
|
2305
|
+
{ page: "384", sequence: 1, extent: 1 }
|
|
2306
|
+
],
|
|
2307
|
+
},
|
|
2308
|
+
{
|
|
2309
|
+
id: "gregobase:15693",
|
|
2310
|
+
incipit: "Horis peractis undecim",
|
|
2311
|
+
gabc: "name:Horis peractis undecim;\\r\\noffice-part:Hymnus;\\r\\nmode:1;\\r\\nannotation: H. 1;\\r\\nbook:Liber Hymnarius, 1983, p. 236;\\r\\ntranscriber:John R. Rose;\\r\\n%%\\r\\n(c4)\\r\\nHO(f)ris(f) per(g)\\u00e1c(h)tis(f) \\u00fan(g)de(f)cim(e'_) (,)\\r\\nru(g)it(f) di(f)es(e) in(d) v\\u00e9s(f)pe(g)rum ;(f.) (;)\\r\\nsol(f)v\\u00e1(f)mus (g)om(h)nes(f) d\\u00e9(g)bi(f)tum(e'_) (,)\\r\\nmen(g)tis(f) li(f)b\\u00e9n(e)ter(d) c\\u00e1n(f)ti(e)cum.(d.) (::)",
|
|
2312
|
+
office: "hy",
|
|
2313
|
+
mode: "1",
|
|
2314
|
+
pages: [
|
|
2315
|
+
{ page: "236", sequence: 2, extent: 2 }
|
|
2316
|
+
],
|
|
2317
|
+
},
|
|
2318
|
+
{
|
|
2319
|
+
id: "gregobase:15699",
|
|
2320
|
+
incipit: "Luminis fons",
|
|
2321
|
+
gabc: "name:Luminis fons, lux;\\r\\noffice-part:Hymnus;\\r\\nauthor:Alcuinus, Flaccus Albinus;\\r\\nmode:1;\\r\\n%%\\r\\n(c4) L\\u00fa(d_)mi(c)nis(d) fons,(fg) lux(f'_) (,)\\r\\net(g) o(h)r\\u00ed(g)go(f) lu(g.)cis,(h.) (;)\\r\\ntu(gh) pi(i)us(h) nos(gf)tris(e'_) (,)\\r\\npr\\u00e9(d)ci(f)bus(e) fa(f)v\\u00e9(d.)to,(c.) (:)\\r\\nlux(d_)que,(c) pec(d)c\\u00e1(fg)ti(f'_) (,)\\r\\nt\\u00e9(g)ne(h)bris(g) fu(f)g\\u00e1(e.)tis,(d.) (,)\\r\\nnos(f_) tu<e>a</e>(e) a(f)d\\u00f3r(dc)net.(d.) (::)",
|
|
2322
|
+
office: "hy",
|
|
2323
|
+
mode: "1",
|
|
2324
|
+
pages: [
|
|
2325
|
+
{ page: "223", sequence: 1, extent: 2 }
|
|
2326
|
+
],
|
|
2327
|
+
},
|
|
2328
|
+
{
|
|
2329
|
+
id: "gregobase:15702",
|
|
2330
|
+
incipit: "Laude te cives",
|
|
2331
|
+
gabc: "annotation: H. 1;\\r\\ntranscriber:John R. Rose;\\r\\noccasion: Die 13 septembris, S. Ioannis Chrysostomi, Episcopi et Ecclesiae Doctoris, Memoria;\\r\\noffice-part: Ad Laudes matutinas et ad vesperas;\\r\\n%%\\r\\n\\r\\n(c4)Lau(h.)de(g) te(h) ci(gf)ves(dc)\\r\\ns\\u00fa(g)pe(g)ri(f) co(g)r\\u00f3(h.)nant,(h.) (;)\\r\\nmag(h.)ne(j) Io(k)\\u00e1n(jIH)nes,(h.) (,)\\r\\nso(i)ci(g)\\u00fas(f)que(g) nos(h.)ter(h.) (:)\\r\\ni\\u00fan(h.)gi(g)tur(h) can(gf)tus,(dc)\\r\\ngen(g)e(g)r\\u00f3(f)se(gh) pr\\u00e6(hGF)sul,(f.) (,)\\r\\ncel(fgwhg)se(e) ma(fe)g\\u00eds(d.)ter.(d.) (::)\\r\\n\\r\\n2. Au(h.)re(g)o(h) pro(gf)fers(dc)\\r\\nve(g)he(g)m\\u00e9n(f)ter(g) o(h.)re(h.) (;)\\r\\nver(h.)ba(j) qu\\u00e6(k) div(jIH)es(h.) (,)\\r\\nfa(i)cil(g)\\u00eds(f)qu<i>e</i>() a(g)m\\u00f3(h.)ris(h.) (:)\\r\\nve(h.)na(g) pro(h)g\\u00edg(gf)nit,(dc)\\r\\nf\\u00e9(g)ri(g)unt(f) vel(gh) ac(hGF)ri(f.) (,)\\r\\nv\\u00fal(fgwhg)ne(e)re(fe) nox(d.)as.(d.) (::)\\r\\n\\r\\n3. Ip(h.)se(g) vir(h)t\\u00fa(gf)tum(dc)\\r\\nsp\\u00e9(g)cu(g)lum(f) ni(g)t\\u00e9s(h.)cis(h.) (;)\\r\\nac(h.) tu(j)\\u00e6(k) ple(jIH)bi(h.) (,)\\r\\nm\\u00e9(i)ri(g)tis(f) co(g)r\\u00fas(h.)cas,(h.) (:)\\r\\n\\u00f3m(h.)ni(g)bus,(h) Pau(gf)li(dc)\\r\\nve(g)lut(g) \\u00e6(f)mu(gh)l\\u00e1(hGF)tor,(f.) (,)\\r\\n\\u00f3m(fgwhg)ni(e)a(fe) fac(d.)tus.(d.) (::)\\r\\n\\r\\n4. Ne(h.)mo(g) te(h) fran(gf)git,(dc)\\r\\nni(g)hil(g) im(f)per(g)\\u00e1n(h.)tum(h.) (;)\\r\\nte(h.) do(j)mant(k) i(jIH)r\\u00e6,(h.) (,)\\r\\nru(i)ti(g)l\\u01fd(f)qu<i>e</i>() ho(g)n\\u00f3(h.)rem(h.) (:)\\r\\n\\u00f3b(h.)ti(g)nes(h) pal(gf)m\\u00e6(dc)\\r\\nve(g)ne(g)r\\u00e1n(f)dus(gh) ex(hGF)sul,(f.) (,)\\r\\np\\u00e9c(fgwhg)to(e)re(fe) mar(d.)tyr.(d.) (::)\\r\\n\\r\\n5. Nunc(h.) tu(g)is(h) val(gf)de(dc)\\r\\npr\\u00e9(g)ci(g)bus(f) iu(g)v\\u00e9(h.)mur,(h.) (;)\\r\\nut(h.) De(j)i(k) se(jIH)dem(h.) (,)\\r\\nc\\u00e9(i)le(g)res(f) pe(g)t\\u00e1(h.)mus,(h.) (:)\\r\\nd\\u00fal(h.)ci(g)bus(h) te(gf)cum(dc)\\r\\nso(g)ni(g)t\\u00far(f)<i>i</i>() a(gh)m\\u00f3(hGF)ris(f.) (,)\\r\\nv\\u00f3(fgwhg)ci(e)bus(fe) hym(d.)nos.(d.) (::)\\r\\n\\r\\nA(ded)men.(cd..) (::)\\r\\n",
|
|
2332
|
+
office: "hy",
|
|
2333
|
+
mode: "1",
|
|
2334
|
+
pages: [
|
|
2335
|
+
{ page: "430", sequence: 0, extent: 1 }
|
|
2336
|
+
],
|
|
2337
|
+
},
|
|
2338
|
+
{
|
|
2339
|
+
id: "gregobase:15727",
|
|
2340
|
+
incipit: "Te pater Ioseph",
|
|
2341
|
+
gabc: "(c4) Te,(h) pa(g)ter(hi) Io(ji)seph,(h.) (,) \\u00f3(i)pi(j)fex(h) co(i)l\\u00e9n(h.)de,(g.) (;)\\r\\nN\\u00e1(ef)za(e)r\\u00e6(d) fe(dh)lix(h.) (,) l\\u00e1(h)ti(g)tans(h) in(i) um(ij)bra,(g.) (:)\\r\\nv\\u00f3(i_)ci(k)bus(j) l\\u00e6(ih)tis(g.) (,) hu(d)mi(e)l\\u00ed(f)que(g) cunc(gh)ti(h_') (,)\\r\\ncor(g_)de(e) ca(f)n\\u00e1(g.)mus.(g.) (::)\\r\\n",
|
|
2342
|
+
office: "hy",
|
|
2343
|
+
mode: "8",
|
|
2344
|
+
pages: [
|
|
2345
|
+
{ page: "370", sequence: 2, extent: 2 }
|
|
2346
|
+
],
|
|
2347
|
+
},
|
|
2348
|
+
{
|
|
2349
|
+
id: "gregobase:15774",
|
|
2350
|
+
incipit: "Venite adoremus Regem",
|
|
2351
|
+
gabc: "(c4)VE(c)n\\u00ed(c!dwefv)te,(e.) a(fe)do(d)r\\u00e9(e_f)mus(gh) Re(gf~)gem(de) re(e_f)gum,(ed..) (;) cu(g)ius(gh) h\\u00f3(hih)di(ghGF)e(ed..) (;) ad(c) \\u00e6(df)th\\u00e9(fe)re(de)um(e.) Vir(ffe)go(d) Ma(dghv)ter(g.) (,) as(gf)s\\u00fam(gh>)pta(gf) est(de) c\\u00e6(e.)lum.(e.) (::)\\r\\n",
|
|
2352
|
+
office: "an",
|
|
2353
|
+
mode: "4",
|
|
2354
|
+
pages: [
|
|
2355
|
+
{ page: "415", sequence: 2, extent: 2 }
|
|
2356
|
+
],
|
|
2357
|
+
},
|
|
2358
|
+
{
|
|
2359
|
+
id: "gregobase:16057",
|
|
2360
|
+
incipit: "Nobilem Christi",
|
|
2361
|
+
gabc: "(f3)NO(c.)bi(f)lem(e) Chris(f.)ti(h.,) f\\u00e1(g)mu(f)lam(g) di(h)s\\u00e9r(g.)ta(f.) (;) vo(ff)ce(f) can(g)t\\u00e9(h.)mus,(e.) (,) de(h)cus(i) \\u00e6(j)mu(kxk)l\\u00e1(i.)tam(j.) (:) f\\u00e9(j.)mi(i)n\\u00e6(h) for(g.)tis,(i.,) sa(f)cra(f) c<i>u</i>i(g) pro(e)fu(d.)dit(c.,) p\\u00e1(h.)gi(f)na(g) lau(e.)des.(f.) (::)",
|
|
2362
|
+
office: "hy",
|
|
2363
|
+
mode: "2",
|
|
2364
|
+
pages: [
|
|
2365
|
+
{ page: "320", sequence: 1, extent: 2 }
|
|
2366
|
+
],
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
id: "gregobase:16058",
|
|
2370
|
+
incipit: "Diei luce reddita",
|
|
2371
|
+
gabc: "(c4)\\r\\nDI(e)\\u00e9(c)i(d) lu(f)ce(ef) r\\u00e9d(g)di(f)ta,(e_,) l\\u00e6(e)tis(c) gra(d)t\\u00eds(f)que(ef) v\\u00f3(g)ci(g)bus(g.;) De(g)i(f) ca(gh)n\\u00e1(g)mus(f) gl\\u00f3(g)ri(f)am,(e_,) Chris(e)ti(c) fa(d)t\\u00e9n(f)tes(ef) gr\\u00e1(g)ti(f)am.(e.) (::)\\r\\n",
|
|
2372
|
+
office: "hy",
|
|
2373
|
+
mode: "4",
|
|
2374
|
+
pages: [
|
|
2375
|
+
{ page: "239", sequence: 1, extent: 1 }
|
|
2376
|
+
],
|
|
2377
|
+
},
|
|
2378
|
+
{
|
|
2379
|
+
id: "gregobase:16079",
|
|
2380
|
+
incipit: "Hodie scietis (ad invitatorium)",
|
|
2381
|
+
gabc: "(f3) HO(fhg)di(g)e(g') sci(g)\\u00e9(gh)tis(g'_) (,)\\r\\nqui(g)a(hs<hs<hs<) v\\u00e9(hf)ni(fhg)et(hi~) D\\u00f3(i)mi(ih__iwjij)nus,(ji..) (;)\\r\\net(g_h) ma(i)ne(h) vi(hg)d\\u00e9(f)bi(fe)tis(fs<hs<hs<iffe.) (,)\\r\\ngl\\u00f3(ggoh)ri(hf)am(h) e(hi~)ius.(g.) (::)",
|
|
2382
|
+
office: "an",
|
|
2383
|
+
mode: null,
|
|
2384
|
+
pages: [
|
|
2385
|
+
{ page: "10", sequence: 2, extent: 2 }
|
|
2386
|
+
],
|
|
2387
|
+
},
|
|
2388
|
+
{
|
|
2389
|
+
id: "gregobase:16103",
|
|
2390
|
+
incipit: "Iesum Christum, regem regum",
|
|
2391
|
+
gabc: "(c3)IE(-ehg)sum(h) Chri(ih@iwjij)stum,(ji) (,) re(i@jwkj>)gem(ih) re(h!ijh/hg)gum,(ef@gwhe) (;) ve(df)n\\u00ed(h!iji/hiOj)te,(hhg) a(f)do(fiHG)r\\u00e9(efe)mus.(e) (::)",
|
|
2392
|
+
office: "an",
|
|
2393
|
+
mode: "7",
|
|
2394
|
+
pages: [
|
|
2395
|
+
{ page: "124", sequence: 0, extent: 1 }
|
|
2396
|
+
],
|
|
2397
|
+
},
|
|
2398
|
+
{
|
|
2399
|
+
id: "gregobase:16104",
|
|
2400
|
+
incipit: "Iesu, rex admirábilis",
|
|
2401
|
+
gabc: "(c4) IE(h)su,(h) rex(h) ad(h)mi(d)r\\u00e1(f)bi(e)lis,(d) (,) et(h) tri(h)um(i)ph\\u00e1(g)tor(h) n\\u00f3(j)bi(i)lis,(h) (;) dul(h)c\\u00e9(i)do(j) in(k)ef(j)f\\u00e1(h)bi(j)lis,(ivHG) (,) to(h)tus(h) de(i)si(g)de(e)r\\u00e1(g)bi(h)lis.(h) (::)\\r\\n\\r\\n2. Rex(h) vir(h)t\\u00fa(h)tum,(h) rex(d) gl\\u00f3(f)ri(e)\\u00e6,(d) (,) rex(h) in(h) s\\u00edg(i)nis(g) vic(h)t\\u00f3(j)ri(i)\\u00e6,(h) (;) Ie(h)su,(i) lar(j)g\\u00ed(k)tor(j) gr\\u00e1(h)ti(j)\\u00e6,(ivHG) (,) ho(h)nor(h) c\\u00e6(i)l\\u00e9s(g)tis(e) c\\u00fa(g)ri(h)\\u00e6.(h) (::)\\r\\n\\r\\n3. Te(h) c\\u00e6(h)li(h) cho(h)rus(d) pra\\u00e9(f)di(e)cat(d) (,) et(h) tu(h)as(i) lau(g)des(h) r\\u00e9(j)pli(i)cat.(h) (;) Ie(h)sus(i) or(j)bem(k) l\\u00e6(j)t\\u00ed(h)fi(j)cat(ivHG) (,) et(h) nos(h) De(i)o(g) pa(e)c\\u00ed(g)fi(h)cat.(h) (::)\\r\\n\\r\\n4. Ie(h)sus(h) in(h) pa(h)ce(d) \\u00edm(f)pe(e)rat,(d) (,) qu\\u00e6(h) om(h)nem(i) sen(g)sum(h) s\\u00fa(j)pe(i)rat,(h) (;) hanc(h) sem(i)per(j) mens(k) de(j)s\\u00ed(h)de(j)rat(ivHG) (,) et(h) il(h)lo(i) fru(g)i(e) pr\\u00f3(g)pe(h)rat.(h) (::)\\r\\n\\r\\n5. Iam(h) pro(h)se(h)qu\\u00e1(h)mur(d) l\\u00e1u(f)di(e)bus(d) (,) Ie(h)sum,(h) hym(i)nis(g) et(h) pr\\u00e9(j)ci(i)bus,(h) (;) ut(h) nos(i) do(j)net(k) c\\u00e6(j)l\\u00e9s(h)ti(j)bus(ivHG) (,) cum(h) ip(h)so(i) fru(g)i(e) s\\u00e9(g)di(h)bus.(h) (::)\\r\\n\\r\\n6. Ie(h)su,(h) flos(h) ma(h)tris(d) v\\u00edr(f)gi(e)nis,(d) (,) a(h)mor(h) nos(i)tr\\u00e6(g) dul(h)c\\u00e9(j)di(i)nis,(h) (;) laus(h) ti(i)bi(j) si(k)ne(j) t\\u00e9r(h)mi(j)nis,(ivHG) (,) reg(h)num(h) be(i)a(g)ti(e)t\\u00fa(g)di(h)nis.(h) (::) A(ded)men.(cd) (::) ",
|
|
2402
|
+
office: "hy",
|
|
2403
|
+
mode: "d",
|
|
2404
|
+
pages: [
|
|
2405
|
+
{ page: "124", sequence: 0, extent: 1 }
|
|
2406
|
+
],
|
|
2407
|
+
},
|
|
2408
|
+
{
|
|
2409
|
+
id: "gregobase:16105",
|
|
2410
|
+
incipit: "Aurora solis nuntia",
|
|
2411
|
+
gabc: "initial-style: 0;\\r\\n%%\\r\\n(c4) AU(g)r\\u00f3(g)ra(f) so(e)lis(d) n\\u00fan(fhg)ti(fg)a(g.) (,) \\r\\nmun(h!iwji)di(h) la(g)b\\u00f3(h)res(ig) \\u00e9x(h)ci(g)tans,(f.) (;) \\r\\nfa(f)bri(g) so(f)n\\u00f3(g)ram(h) m\\u00e1l(j)le(g)o(hih'_15) (,) \\r\\ndo(h)mum(h) sa(g)l\\u00fa(e)tat(f) N\\u00e1(hg)za(fg)r\\u00e6.(g.) (::)",
|
|
2412
|
+
office: "hy",
|
|
2413
|
+
mode: "8",
|
|
2414
|
+
pages: [
|
|
2415
|
+
{ page: "371", sequence: 1, extent: 1 }
|
|
2416
|
+
],
|
|
2417
|
+
},
|
|
2418
|
+
{
|
|
2419
|
+
id: "gregobase:16108",
|
|
2420
|
+
incipit: "Ecce apparebit Dominus",
|
|
2421
|
+
gabc: "(c4)Ec(ixhg/hvGF/ghwiHGhi)ce(h) *(,) ap(f)pa(g)r\\u00e9(g/hjh)bit(ge~) D\\u00f3(fg)mi(gffvED)nus(dfddc) (,) su(d!ewfe/fgf)per(d) nu(c)bem(bxb!cdcd) c\\u00e1n(d)di(de!fvEDe)dam,(ed) *(:) Et(h!iwjjvIG) cum(h) e(jk!lv)o(k) Sanc(j)t\\u00f3(l)rum(ml) m\\u00edl(k)li(jk)a :(klkk/hih) (;) et(h) ha(h)bet(j!kl) in(k) ves(k)ti(k)m\\u00e9n(kw!l>)to,(j) (,) et(j) in(h) f\\u00e9(j)mo(h)re(-ghg) su(h)o(hg/hiHGg) scrip(f!gwh/ivHF/gwh/iv)tum :(hg) (;) Rex(hv//f!goh) re(g/hfg)gum,(fg/ffd) (,) et(d<) D\\u00f3(f)mi(f)nus(dfddc) do(f!goh)mi(hghf/gvFE)n\\u00e1n(d)ti(dewfef)um.(ed) (::)\\r\\n\\r\\n<sp>V/</sp>. Ap(h)pa(h)r\\u00e9(h)bit(hg/hggf) in(g) fi(gh)nem,(g) et(g) non(hf~) men(gh)ti(gh)\\u00e9(h/iih)tur(h) ; (;) si(gf) mo(gh)ram(h) f\\u00e9(hi)ce(h)rit,(h) ex(h)sp\\u00e9(h)cta(h) e(hi)um,(h) (,) qui(h)a(h) v\\u00e9(h)ni(hg/hg)ens(gf) v\\u00e9(fgwhg/hih)ni(hvGFEfwghv)et.(gf) *(::) Et.(h!iwjjvIG) (::)",
|
|
2422
|
+
office: "re",
|
|
2423
|
+
mode: "1",
|
|
2424
|
+
pages: [
|
|
2425
|
+
{ page: "507", sequence: 0, extent: 1 }
|
|
2426
|
+
],
|
|
2427
|
+
},
|
|
2428
|
+
{
|
|
2429
|
+
id: "gregobase:16110",
|
|
2430
|
+
incipit: "Aetérna imágo",
|
|
2431
|
+
gabc: "(c4) \\u00c6(df)t\\u00e9r(ed)n<i>a</i> i(e)m\\u00e1(g)g<i>o</i> Al(g)t\\u00ed(ef)si(ed)mi(d) (,) Lu(e)men,(g) De(h)us,(h) de(g) L\\u00fa(hj)mi(ivHG)ne,(h) (;) ti(g)bi,(fe) Re(d)d\\u00e9mp(ed)tor(c) gl\\u00f3(d)ri(d)a,(e) (,) ho(dh/ig)nor,(h) pot(d)\\u00e9st(e)as(g) r\\u00e9(fe)gi(d)a.(e) (::)\\r\\n\\r\\n2. Tu(df) so(ed)lus(e) an(g)te(g) sa\\u00e9(ef)cu(ed)la(d) (,) spes(e) at(g)que(h) cen(h)trum(g) t\\u00e9m(hj)po(ivHG)rum(h);(;) ti(g)bi(fe) vo(d)l\\u00e9n(ed)tes(c) s\\u00fab(d)di(d)mur,(e) (,) qui(dh/ig) iu(h)re(d) cun(e)ctis(g) \\u00edm(fe)pe(d)ras.(e) (::)\\r\\n\\r\\n3. Tu(df) flos(ed) pu(e)d\\u00ed(g)c\\u00e6(g) V\\u00edr(ef)gi(ed)nis,(d) (,) nos(e)tr\\u00e6(g) ca(h)put(h) pro(g)p\\u00e1(hj)gi(ivHG)nis,(h) (;) la(g)pis(fe) ca(d)d\\u00fa(ed)cus(c) v\\u00e9r(d)ti(d)ce(e) (,) ac(dh/ig) mo(h)le(d) te(e)rras(g) \\u00f3c(fe)cu(d)pans.(e) (::)\\r\\n\\r\\n4. Di(df)ro(ed) ty(e)r\\u00e1(g)nno(g) s\\u00fab(ef)di(ed)ta,(d) (,) dam(e)n\\u00e1(g)ta(h) stirps(h) mor(g)t\\u00e1(hj)li(ivHG)um(h) (;) per(g) te(fe) re(d)fr\\u00e9(ed)git(c) v\\u00edn(d)cu(d)la(e) (,) si(dh/ig)b\\u00ed(h)que(d) c\\u00e6(e)lum(g) v\\u00edn(fe)di(d)cat.(e) (::)\\r\\n\\r\\n5. Doc(df)tor,(ed) sa(e)cer(g)dos,(g) l\\u00e9(ef)gi(ed)fer(d) (,) pr\\u00e6(e)fers(g) no(h)t\\u00e1(h)tum(g) s\\u00e1n(hj)gui(ivHG)ne(h) (;) in(g) ves(fe)te(d) \\u00abPrin(ed)ceps(c) pr\\u00edn(d)ci(d)pum(e) (,) re(dh/ig)g\\u00fam(h)que(d) rex(e) al(g)t\\u00eds(fe)si(d)mus\\u00bb.(e) (::)\\r\\n\\r\\n6. Pa(df)tri,(ed) ti(e)bi,(g) Pa(g)r\\u00e1(ef)cli(ed)to(d) (,) sit,(e) Chris(g)te,(h) per(h)pes(g) gl\\u00f3(hj)ri(ivHG)a,(h) (;) qui(g) nos(fe) re(d)d\\u00e9mp(ed)tos(c) s\\u00e1n(d)gui(d)ne(e) (,) ad(dh/ig) reg(h)na(d) c\\u00e6(e)li(g) p\\u00e9r(fe)tra(d)his.(e) (::) A(efe)men.(de) (::)\\r\\n",
|
|
2432
|
+
office: "hy",
|
|
2433
|
+
mode: "4",
|
|
2434
|
+
pages: [
|
|
2435
|
+
{ page: "125", sequence: 0, extent: 1 }
|
|
2436
|
+
],
|
|
2437
|
+
},
|
|
2438
|
+
{
|
|
2439
|
+
id: "gregobase:16123",
|
|
2440
|
+
incipit: "Praeclara custos vírginum",
|
|
2441
|
+
gabc: "(c4)Pr\\u00e6(h)cl\\u00e1(hhg)ra(ed) cus(g)tos(hj) v\\u00edr(ji)gi(hi)num(i) (,) De(k)\\u00ed(kj)que(i) ma(ji)ter(h) \\u00edn(ih)nu(gh)ba,(h) (;)\\r\\nc\\u00e6(k)l\\u00e9s(k)tis(i) au(k)l\\u00e6(klk) i\\u00e1(j)nu(i)a,(hiHG) (,)\\r\\nspes(i) nos(jk)tra,(i) c\\u00e6(ji)li(h) g\\u00e1u(ih)di(gh)um;(h) (::)\\r\\n\\r\\n2. In(h)ter(hhg) ru(ed)b\\u00e9(g)ta(hj) l\\u00ed(ji)li(hi)um,(i) (,)\\r\\nco(k)l\\u00fam(kj)ba(i) for(ji)mo(h)s\\u00eds(ih)si(gh)ma,(h) (;)\\r\\ne(k) stir(k)pe(i) vir(k)ga(klk) g\\u00e9r(j)mi(i)nans(hiHG) (,)\\r\\nnos(i)tro(jk) me(i)d\\u00e9(ji)lam(h) v\\u00fal(ih)ne(gh)ri;(h) (::)\\r\\n\\r\\n3. Tur(h)ris(hhg) dra(ed)c\\u00f3(g)n<i>i</i>() im(hj)p\\u00e9r(ji)vi(hi)a,(i) (,)\\r\\na(k)m\\u00ed(kj)ca(i) stel(ji)la(h) n\\u00e1u(ih)fra(gh)gis,(h) (;)\\r\\nde(k)f\\u00e9n(k)de(i) nos(k) a(klk) fr\\u00e1u(j)di(i)bus(hiHG) (,)\\r\\ntu(i)\\u00e1(jk)que(i) lu(ji)ce(h) d\\u00ed(ih)ri(gh)ge.(h) (::)\\r\\n\\r\\n4. Er(h)r\\u00f3(hhg)ris(ed) um(g)bras(hj) d\\u00eds(ji)cu(hi)te,(i) (,)\\r\\nsyr(k)tes(kj) do(i)l\\u00f3(ji)sas(h) \\u00e1(ih)mo(gh)ve,(h) (;)\\r\\nfluc(k)tus(k) tot(i) in(k)ter,(klk) d\\u00e9(j)vi(i)is(hiHG) (,)\\r\\ntu(i)tam(jk) re(i)cl\\u00fa(ji)de(h) s\\u00e9(ih)mi(gh)tam.(h) (::)\\r\\n\\r\\n5. Qu\\u00e6(h) la(hhg)be(ed) nos(g)tr<i>\\u00e6</i>() o(hj) r\\u00ed(ji)gi(hi)nis(i) (,) in(k)t\\u00e1c(kj)ta(i) splen(ji)des(h) \\u00fa(ih)ni(gh)ca,(h) (;) ser(k)p\\u00e9n(k)tis(i) ar(k)tes(klk) \\u01fd(j)mu(i)li,(hiHG) (,)\\r\\ne(i)l\\u00fa(jk)de(i) vin(ji)dex(h) \\u00edn(ih)cli(gh)ta.(h) (::)\\r\\n\\r\\n6. Pa(h)tri(hhg) sit(ed) et(g) Pa(hj)r\\u00e1(ji)cli(hi)to,(i) (,)\\r\\ntu(k)\\u00f3(kj)que(i) Na(ji)to(h) gl\\u00f3(ih)ri(gh)a,(h) (;)\\r\\nqui(k) san(k)cti(i)t\\u00e1(k)tis(klk) \\u00fa(j)ni(i)c\\u00e6(hiHG) (,)\\r\\nte(i) mu(jk)ne(i)r\\u00e1(ji)rum(h) gr\\u00e1(ih)ti(gh)a.(h) (::) A(hih)men.(gh) (::)",
|
|
2442
|
+
office: "hy",
|
|
2443
|
+
mode: "2",
|
|
2444
|
+
pages: [
|
|
2445
|
+
{ page: "475", sequence: 0, extent: 1 }
|
|
2446
|
+
],
|
|
2447
|
+
},
|
|
2448
|
+
{
|
|
2449
|
+
id: "gregobase:16130",
|
|
2450
|
+
incipit: "Immaculátam Conceptiónem Vírginis",
|
|
2451
|
+
gabc: "(f3)IM(e)ma(ef)cu(f)l\\u00e1(f!ghf)tam(fe) Con(f)cep(fe)ti(f)\\u00f3(fg)nem(f) (,) V\\u00edr(f)gi(hg)nis(hfgff) Ma(ef)r\\u00ed(f!ghf)\\u00e6(fe) ce(f)le(hg)br\\u00e9(hiHG)mus:(g) (;) Chris(i)tum,(ij) e(kxj/kij>)ius(hg) F\\u00ed(hi)li(hvGF)um,(f!ghf/gf/fe) (,) a(h)do(gf)r\\u00e9(fi/ih)mus(gf) D\\u00f3(ghf)mi(ef)num.(f) (::)",
|
|
2452
|
+
office: "an",
|
|
2453
|
+
mode: "2",
|
|
2454
|
+
pages: [
|
|
2455
|
+
{ page: "476", sequence: 0, extent: 1 }
|
|
2456
|
+
],
|
|
2457
|
+
},
|
|
2458
|
+
{
|
|
2459
|
+
id: "gregobase:16135",
|
|
2460
|
+
incipit: "Nihil inquinatum (Resp)",
|
|
2461
|
+
gabc: "(c4) NI(f!gh)hil(g) *() in(g)qui(ghOiv)n\\u00e1(h)tum(hg/h!iwjg/hvg/gf) (,) in(g) e(ghGFgh)am(g) in(gh!iwjIH/iwjIH)c\\u00far(ghivHGg)rit: (hg) *(:) Can(j>)dor(jk) est(kvJIjvIHGhg) (,) lu(f)cis(gh) ae(h)t\\u00e9r(gf)nae,(fghvGFEfvEDed) (;) et(d) sp\\u00e9(f!gh)cu(g)lum(g//hig/hvg/gf) si(fh!iwjjv)ne(jkJIH/iwjIH) m\\u00e1(g)cu(gh!ivHGh)la(hg) (::)\\r\\n<sp>V/</sp>. Est(j) e(j)nim(ji) h\\u00e6c(jkj/iji/hhg) spe(hi)ci(i)\\u00f3(ih)si(ij)or(hi) so(g!hwih)le(hg) (;) et(g) lu(fg)ci(g) com(g)pa(g)r\\u00e1(gh)ta,(g) in(g)ve(g)n\\u00ed(hiHG/hih)tur(ghf) p\\u00fa(gh)ri(h!iwji/jkJIH)or.(hiHGhg) (::)\\r\\n*() Can(j>)dor.(jk) (::)",
|
|
2462
|
+
office: "re",
|
|
2463
|
+
mode: "8",
|
|
2464
|
+
pages: [
|
|
2465
|
+
{ page: "524", sequence: 0, extent: 0 }
|
|
2466
|
+
],
|
|
2467
|
+
},
|
|
2468
|
+
{
|
|
2469
|
+
id: "gregobase:16139",
|
|
2470
|
+
incipit: "Hodie nobis caelorum (Resp.)",
|
|
2471
|
+
gabc: "(c3)HO(h)di(hsss)e(f) *() no(hvhv)bis(fhe/fveeVd) (,) c\\u00e6(fvED)l\\u00f3(e)rum(f>) Rex(hiih)(,) de(d) V\\u00edr(gx/-efe/fg>)gi(f)ne(f) na(gxhggvFEfg//)sci(f) di(gxfhGFEfwg/FE)gn\\u00e1(d)tus(defvEDe) est,(ed) (;) ut(df) h\\u00f3(h)mi(hi)nem(ihhg~) p\\u00e9r(gf~)di(hi)tum(ihhg) (,)ad(fe~) re(f@gwhffwgfg)gna(gf) c\\u00e6(df@gwhhi)l\\u00e9(h)sti(hg/i!jkh)a(h) (,) re(h@io@jv)vo(ki/jhi)c\\u00e1(ggfg)ret:(gf) (:)Gau(f@gwh/ij>)det(i) ex(i)\\u00e9r(ih@iw@j>)ci(ih)tus(h) an(hhf~)ge(hi)l\\u00f3(hiHGFg)rum:(gf) *(;) Qui(f)a(i) sa(h)lus(gh) \\u00e6(f)t\\u00e9r(es!hss)na(fs!hss//hvGFhe/fveed) (;) hu(f)m\\u00e1(gxd@ewfgv)no(f) g\\u00e9(f)ne(e)ri(hvhv) (,) ap(ivHGFivHGEgxfhFEfwg/FE)p\\u00e1(d)ru(defvEDe)it.(ed) <sp>V/</sp>.(::) Gl\\u00f3(h)ri(h)a(hihshs/fgf) in(h) ex(hf)c\\u00e9l(fi)sis(gh) De(hghwihi)o,(ih) (;) et(d) in(f) ter(hi~)ra(h) pax(h) ho(h)m\\u00ed(hi)ni(h)bus(h) bo(h)n\\u00e6(hg/hg) vo(gf)lun(hi>)t\\u00e1(hg@hwiHGFg)tis.(gf) *(/) (::) Qui(f)a.(i) (::)",
|
|
2472
|
+
office: "re",
|
|
2473
|
+
mode: "5",
|
|
2474
|
+
pages: [
|
|
2475
|
+
{ page: "489", sequence: 0, extent: 1 }
|
|
2476
|
+
],
|
|
2477
|
+
},
|
|
2478
|
+
{
|
|
2479
|
+
id: "gregobase:16157",
|
|
2480
|
+
incipit: "In plausu gratia cárminis",
|
|
2481
|
+
gabc: "(c4) IN(h) plau(hhg)su(ed) gr\\u00e1(g)ti(hj) c\\u00e1r(ji)mi(hi)ni(i) (,) ad(k)sit(kj) no(i)va(ji) l\\u00e6(h)t\\u00ed(ih)ti(gh)a(h) (;) dum(k) De(k)i(i) ma(k)tris(klk) V\\u00edr(j)gi(i)nis(hiHG) (,) su(i)mit(jk) vi(i)ta(ji) prin(h)c\\u00ed(ih)pi(gh)a.(h) (::)\\r\\n\\r\\n2. Ma(h)r\\u00ed(hhg)a,(ed) mun(g)di(hj) gl\\u00f3(ji)ri(hi)a,(i) (,) lu(k)cis(kj) \\u00e6(i)t\\u00e9r(ji)n\\u00e6(h) f\\u00ed(ih)li(gh)a,(h) (;) te(k) pr\\u00e6(k)ser(i)v\\u00e1(k)vit(klk) Fi(j)li(i)us(hiHG) (,) ab(i) om(jk)ni(i) la(ji)be(h) p\\u00e9(ih)ni(gh)tus.(h) (::)\\r\\n\\r\\n3. O(h)ri(hhg)gi(ed)na(g)lis(hj) m\\u00e1(ji)cu(hi)la(i) (,) cun(k)cta(kj) res(i)p\\u00e9r(ji)sit(h) s\\u01fd(ih)cu(gh)la;(h) (;) so(k)la(k) post(i) Na(k)tum(klk) v\\u00ed(j)ti(i)is(hiHG) (,) num(i)quam(jk) con(i)t\\u00e1c(ji)ta(h) d\\u00ed(ih)ce(gh)ris.(h) (::)\\r\\n\\r\\n4. Ca(h)put(hhg) ser(ed)p\\u00e9n(g)tis(hj) c\\u00e1(ji)lli(hi)di(i) (,) tu(k)o(kj) pe(i)de(ji) con(h)t\\u00e9(ih)ri(gh)tur;(h) (;) fas(k)tus(k) gi(i)g\\u00e1n(k)tis(klk) p\\u00e9r(j)fi(i)di(hiHG) (,) Da(i)vid(jk) fun(i)da(ji) de(h)v\\u00edn(ih)ci(gh)tur.(h) (::)\\r\\n\\r\\n5. Co(h)l\\u00fam(hhg)ba(ed) mi(g)tis,(hj) h\\u00fa(ji)mi(hi)lis,(i) (,) fers,(k) ca(kj)rens(i) fel(ji)le(h) cr\\u00ed(ih)mi(gh)nis,(h) (;) sig(k)num(k) De(i)i(k) cle(klk)m\\u00e9n(j)ti(i)\\u00e6,(hiHG) (,) ra(i)mum(jk) vi(i)r\\u00e9n(ji)tis(h) gr\\u00e1(ih)ti(gh)a.(h) (::)\\r\\n\\r\\n6. Pa(h)tri(hhg) sit(ed) et(g) Pa(hj)r\\u00e1(ji)cli(hi)to,(i) (,)\\r\\ntu(k)\\u00f3(kj)que(i) Na(ji)to(h) gl\\u00f3(ih)ri(gh)a,(h) (;)\\r\\nqui(k) san(k)cti(i)t\\u00e1(k)tis(klk) \\u00fa(j)ni(i)c\\u00e6(hiHG) (,)\\r\\nte(i) mu(jk)ne(i)r\\u00e1(ji)runt(h) gr\\u00e1(ih)ti(gh)a.(h) (::) A(hih)men.(gh) (::)",
|
|
2482
|
+
office: "hy",
|
|
2483
|
+
mode: "2",
|
|
2484
|
+
pages: [
|
|
2485
|
+
{ page: "477", sequence: 2, extent: 1 }
|
|
2486
|
+
],
|
|
2487
|
+
},
|
|
2488
|
+
{
|
|
2489
|
+
id: "gregobase:16180",
|
|
2490
|
+
incipit: "Christe redemptor omnium conserva",
|
|
2491
|
+
gabc: "(c4)CHris(ghgg)te,(f) red(hj)\\u00e9mp(ji)tor(g) \\u00f3m(hg)ni(fg)um,(g) (,)\\r\\ncon(gk!lv)s\\u00e9r(k)va(j) tu(ji)os(h) f\\u00e1(ji)mu(hg)los,(ghg) (;)\\r\\nbe(d)\\u00e1(dfe)t\\u00e6(fg) sem(gh)per(gf) V\\u00edr(g)gi(gh)nis(h) (,)\\r\\npla(j)c\\u00e1(jkj)tus(h) sanc(ih)tis(g) pr\\u00e9(hg)ci(fg)bus.(g) (::)\\r\\n\\r\\n2. Be(ghgg)\\u00e1(f)ta(hj) quo(ji)que(g) \\u00e1g(hg)mi(fg)na(g) (,)\\r\\nc\\u00e6(gk!lv)l\\u00e9s(k)ti(j)um(ji) spi(h)r\\u00ed(ji)tu(hg)um,(ghg) (;)\\r\\nPr\\u00e6(d)t\\u00e9r(dfe)i(fg)ta,(gh) pr\\u00e6(gf)s\\u00e9n(g)ti(gh)a,(h) (,)\\r\\nfu(j)t\\u00fa(jkj)ra(h) ma(ih)la(g) p\\u00e9l(hg)li(fg)te.(g) (::)\\r\\n\\r\\n3. Va(ghgg)tes(f) \\u00e6(hj)t\\u00e9r(ji)ni(g) J\\u00fa(hg)di(fg)cis(g) (,)\\r\\nA(gk!lv)pos(k)to(j)l\\u00ed(ji)que(h) D\\u00f3(ji)mi(hg)ni,(ghg) (;)\\r\\nsup(d)pl\\u00ed(dfe)ci(fg)ter(gh) ex(gf)p\\u00f3(g)sci(gh)mus(h) (,)\\r\\nsal(j)v\\u00e1(jkj)ri(h) ves(ih)tris(g) pr\\u00e9(hg)ci(fg)bus.(g) (::)\\r\\n\\r\\n4. M\\u00e1r(ghgg)ty(f)res(hj) De(ji)i(g) \\u00edn(hg)cli(fg)ti(g) (,)\\r\\ncon(gk!lv)fes(k)so(j)r\\u00e9s(ji)que(h) l\\u00fa(ji)ci(hg)di,(ghg) (;)\\r\\nves(d)tris(dfe) o(fg)ra(gh)ti(gf)\\u00f3(g)ni(gh)bus(h) (,)\\r\\nNos(j) fer(jkj)te(h) in(ih) c\\u00e6(g)l\\u00e9s(hg)ti(fg)bus.(g) (::)\\r\\n\\r\\n5. Cho(ghgg)ri(f) sanc(hj)t\\u00e1(ji)rum(g) v\\u00edr(hg)gi(fg)num(g) (,)\\r\\nmo(gk!lv)na(k)cho(j)r\\u00fam(ji)que(h) \\u00f3m(ji)ni(hg)um,(ghg) (;)\\r\\nsi(d)mul(dfe) cum(fg) sanc(gh)tis(gf) \\u00f3m(g)ni(gh)bus(h) (,)\\r\\ncon(j)s\\u00f3r(jkj)tes(h) Chris(ih)ti(g) f\\u00e1(hg)ci(fg)te.(g) (::)\\r\\n\\r\\n6. Sit(ghgg) Tri(f)ni(hj)t\\u00e1(ji)ti(g) glo(hg)ri(fg)a,(g) (,)\\r\\nves(gk!lv)tras(k)que(j) vo(ji)ces(h) i\\u00fan(ji)gi(hg)te(ghg) (;)\\r\\nut(d) il(dfe)li(fg) lau(gh)des(gf) d\\u00e9(g)bi(gh)tas(h) (,)\\r\\nper(j)sol(jkj)v\\u00e1(h)mus(ih) a(g)l\\u00e1(hg)cri(fg)ter.(g) (::)\\r\\nA(ghg)men.(fg) (::)\\r\\n",
|
|
2492
|
+
office: "hy",
|
|
2493
|
+
mode: "8",
|
|
2494
|
+
pages: [
|
|
2495
|
+
{ page: "460", sequence: 0, extent: 1 }
|
|
2496
|
+
],
|
|
2497
|
+
},
|
|
2498
|
+
{
|
|
2499
|
+
id: "gregobase:16185",
|
|
2500
|
+
incipit: "Deum qui glorificatur",
|
|
2501
|
+
gabc: "(c3)De(ef@gwhGFg)um,(fe) (,) qui(e) glo(ef)ri(e)fi(e@foh)c\\u00e1(hvg!hihijv)tur(i) (,) in(i) con(i)c\\u00ed(i@jwk)li(ji)o(ji) sanc(h)t\\u00f3(h!ijhhvg)rum,(ef@gwhefveed) (;) ve(df)n\\u00ed(h!iji/h@io@jv)te,(hhg) a(f)do(fiHG)r\\u00e9(efe)mus.(e) (::)",
|
|
2502
|
+
office: "an",
|
|
2503
|
+
mode: "7",
|
|
2504
|
+
pages: [
|
|
2505
|
+
{ page: "461", sequence: 0, extent: 1 }
|
|
2506
|
+
],
|
|
2507
|
+
},
|
|
2508
|
+
{
|
|
2509
|
+
id: "gregobase:16186",
|
|
2510
|
+
incipit: "Christe, cælorum habitátor alme",
|
|
2511
|
+
gabc: "(c4) CHri(dewfd)ste,(dc) c\\u00e6(cd)l\\u00f3(d.)rum(d.) (,) ha(f)bi(e)t\\u00e1(d)tor(e) al(e.)me,(d.) (;) vi(dh!iv)ta(h) san(h)cto(hg)rum,(gh) vi(f)a,(gh) spes(g) sa(fg)l\\u00fas(gvFE)que,(d) (:) h\\u00f3s(dg)ti(fe)am(dc) cle(dd)mens(c.) (,) ti(fe)bi(fg) quam(fe) li(dc)t\\u00e1(de)mus,(ed) (,) s\\u00fa(dewfd)sci(dc)pe(cd) lau(d.)dis.(d.) 2.(::) Om(dewfd)ni(dc) um(cd) sem(d.)per(d.) (,) cho(f)rus(e) an(d)ge(e)l\\u00f3(e.)rum(d.) (;) in(dh!iv) po(h)lo(h) te(hg)met(gh) be(f)ne(gh)d\\u00ed(g)cit(fg) al(gvFE)to,(d) (:) at(dg)que(fe) te(dc) san(dd)cti(c.) (,) si(fe)mul(fg) u(fe)ni(dc)v\\u00e9r(de)si(ed) (,) l\\u00e1u(dewfd)di(dc)bus(cd) or(d.)nant.(d.) 3.(::) V\\u00edr(dewfd)gi(dc)nis(cd) san(d.)ct\\u00e6(d.) (,) m\\u00e9(f)ri(e)tis(d) Ma(e)r\\u00ed(e.)\\u00e6(d.) (;) at(dh!iv)que(h) cunc(h)t\\u00f3(hg)rum(gh) p\\u00e1(f)ri(gh)ter(g) pi(fg)\\u00f3(gvFE)rum,(d.) (:) c\\u00f3n(dg)ti(fe)ne(dc) p\\u0153(dd)nam(c.) (,) pi(fe)e,(fg) quam(fe) me(dc)r\\u00e9(de)mur(ed) (,) da(dewfd)que(dc) me(cd)de(d.)lam(d.) 4.(::) Hic(dewfd) tu(dc)am(cd) pr\\u00e6(d.)sta(d.) (,) ce(f)le(e)br\\u00e1(d)re(e) lau(e.)dem,(d.) (;) ut(dh!iv) ti(h)bi(h) fi(hg)di(gh) va(f)le(gh)\\u00e1(g)mus(fg) il(gvFE)lam(d.) (:) pr\\u00f3(dg)se(fe)qui(dc) in(dc) c\\u00e6(dd)lis(c.) (,) Tri(fe)\\u00e1(fg)di(fe) ca(dc)n\\u00e9n(de)tes(ed) (,) i\\u00fa(dewfd)gi(dc)ter(cd) hym(d.)nos.(d.) (::) A(ded)men.(cd) (::)",
|
|
2512
|
+
office: "hy",
|
|
2513
|
+
mode: "1",
|
|
2514
|
+
pages: [
|
|
2515
|
+
{ page: "462", sequence: 0, extent: 1 }
|
|
2516
|
+
],
|
|
2517
|
+
},
|
|
2518
|
+
{
|
|
2519
|
+
id: "gregobase:16200",
|
|
2520
|
+
incipit: "Panem vitae, Christum Dóminum",
|
|
2521
|
+
gabc: "(c3)PA(-ehg)nem(h) vi(ih@iwjij)t\\u00e6(ji) (,) Chri(ijIH)stum(h) D\\u00f3(hg/hoi)mi(fe)num,(ef!gwhefveed) (;) \\r\\nve(df)n\\u00ed(h!iji/h!ioj)te,(hhg) a(f)do(fiHG)r\\u00e9(efe)mus.(e) (::)",
|
|
2522
|
+
office: "an",
|
|
2523
|
+
mode: "7",
|
|
2524
|
+
pages: [
|
|
2525
|
+
{ page: "", sequence: 0, extent: 1 }
|
|
2526
|
+
],
|
|
2527
|
+
},
|
|
2528
|
+
{
|
|
2529
|
+
id: "gregobase:16201",
|
|
2530
|
+
incipit: "Sacris Solemnis",
|
|
2531
|
+
gabc: "(c4) Sa(dh!iv)cris(h) so(hg)l\\u00e9m(h!iwj)ni(ivHG)is(h) (,) junc(h)ta(f) sint(g) g\\u00e1u(g)di(f)a,(e) (;) \\r\\net(f) ex(g) pr\\u00e6(f!gh)c\\u00f3r(hg)di(f)is(ed) (,) so(ef)nent(d) pr\\u00e6(c)c\\u00f3(ef)ni(d)a;(d) (;)\\r\\nre(h)c\\u00e9(i)dant(ji) v\\u00e9(g)te(h)ra,(g) no(ih)va(i) sint(ji) \\u00f3(h)mni(gh)a,(h) (,)\\r\\ncor(dh!iv)da,(h) vo(hvGFg)ces(fe) et(d) \\u00f3(f)pe(gf)ra.(ed) (::)\\r\\n\\r\\n2. Noc(dh!iv)tis(h) re(hg)c\\u00f3(h!iwj)li(ivHG)tur(h) (,) c\\u0153(h)na(f) no(g)v\\u00eds(g)si(f)ma,(e) (;)\\r\\nqua(f) Chri(g)stus(f!gh) cr\\u00e9(hg)di(f)tur(ed) (,) a(ef)gnum(d) et(c) \\u00e1(ef)zy(d)ma(d) (;)\\r\\nde(h)d\\u00eds(i)se(ji) fr\\u00e1(g)tri(h)bus,(g) jux(ih)ta(i) le(ji)g\\u00ed(h)ti(gh)ma(h) (,)\\r\\npri(dh!iv)scis(h) in(hvGFg)d\\u00fal(fe)ta(d) p\\u00e1(f)tri(gf)bus.(ed) (::)\\r\\n\\r\\n3. De(dh!iv)dit(h) fra(hg)g\\u00ed(h!iwj)li(ivHG)bus(h) (,) c\\u00f3r(h)por(f)ris(g) f\\u00e9r(g)cu(f)lum,(e) (;)\\r\\nde(f)dit(g) et(f!gh) tr\\u00ed(hg)sti(f)bus(ed) (,) s\\u00e1n(ef)gui(d)nis(c) p\\u00f3(ef)cu(d)lum(d) (;)\\r\\ndi(h)cens:(i) \\u00abAc(ji)c\\u00ed(g)pi(h)te(g) quod(ih) tra(i)do(ji) v\\u00e1(h)scu(gh)lum;(h) (,)\\r\\no(dh!iv)mnes(h) ex(hvGFg)e(fe)o(d) b\\u00ed(f)bi(gf)te.\\u00bb(ed) (::)\\r\\n\\r\\n4. Sic(dh!iv) sa(h)cri(hg) f\\u00ed(h!iwj)ci(ivHG)um(h) (,) i(h)stud(f) in(g)st\\u00ed(g)tu(f)it,(e) (;)\\r\\ncu(f)jus(g) of(f!gh)f\\u00ed(hg)ci(f)um(ed) (,) com(ef)m\\u00edt(d)ti(c) v\\u00f3(ef)lu(d)it(d) (;)\\r\\nso(h)lis(i) pres(ji)by\\u0301(g)te(h)ris,(g) qui(ih)bus(i) sic(ji) c\\u00f3n(h)gru(gh)it,(h) (,)\\r\\nut(dh!iv) su(h)mant,(hvGFg) et(fe) dent(d) c\\u00e9(f)te(gf)ris.(ed) (::)\\r\\n\\r\\n5. Pa(dh!iv)nis(h) an(hg)g\\u00e9(h!iwj)li(ivHG)cus(h) (,) fit(h) pa(f)nis(g) h\\u00f3(g)mi(f)num:(e) (;)\\r\\ndat(f) pa(g)nis(f!gh) c\\u0153\\u0301(hg)li(f)cus(ed) (,) fi(ef)g\\u00fa(d)ris(c) t\\u00e9r(ef)mi(d)num.(d) (;)\\r\\nO(h) res(i) mi(ji)r\\u00e1(g)bi(h)lis:(g) man(ih)d\\u00fa(i)cat(ji) D\\u00f3(h)mi(gh)num(h) (,)\\r\\nser(dh!iv)vus,(h) pau(hvGFg)per(fe) et(d) h\\u00fa(f)mi(gf)lis.(ed) (::)\\r\\n\\r\\n6. Te(dh!iv) tri(h)na(hg) D\\u00e9(h!iwj)i(ivHG)tas(h) (,) \\u00fa(h)na(f)que(g) p\\u00f3(g)sci(f)mus;(e) (;)\\r\\nsic(f) nos(g) tu(f!gh) v\\u00ed(hg)si(f)tas(ed) (,) si(ef)cut(d) te(c) c\\u00f3(ef)li(d)mus:(d) (;)\\r\\nper(h) tu(i)as(ji) s\\u00e9(g)mi(h)tas(g) duc(ih) nos(i) quo(ji) t\\u00e9n(h)di(gh)mus,(h) (,)\\r\\nad(dh!iv) lu(h)cem(hvGFg) quam(fe) in(d)h\\u00e1(f)bi(gf)tas.(ed) (::)\\r\\n\\r\\nA(ded)men.(cd) (::)\\r\\n",
|
|
2532
|
+
office: "hy",
|
|
2533
|
+
mode: "1",
|
|
2534
|
+
pages: [
|
|
2535
|
+
{ page: "113", sequence: 0, extent: 1 }
|
|
2536
|
+
],
|
|
2537
|
+
},
|
|
2538
|
+
{
|
|
2539
|
+
id: "gregobase:16205",
|
|
2540
|
+
incipit: "Comedétis carnes",
|
|
2541
|
+
gabc: "(f3) Co(ffef/ghGFghff)m\\u00e9(ef)de(hvGFgvECgfh)tis(gvFEf) *(,) car(hf/hfg/hiHGh)nes,(gvFEf/ghg) (;) et(gvFEf) sa(ced)tu(ef)ra(f!gwhf/gef/egivHGivHGh)bi(f)mi(gh)ni(g) p\\u00e1(fe)ni(f!gwh)bus:(gf) *(:) I(gi)ste(g) est(hvGFf) pa(e)nis,(fg) (,)\\r\\nquem(gf/hhg) de(gvFE)dit(h) vo(gf)bis(f) D\\u00f3(f)mi(ghivHGh)nus(fg) (;) ad(f) ve(fe)sc\\u00e9n(fhGEfgwhGFgigh/GF)(,)(hjIHijg/hif/hvGEf)(,)(cffvED/ef/ehGFEC/efe~)dum.(fhGEf) (::) ()<sp>V/</sp>. Non(f) Moy(efgwhhi>)ses(h) de(ij)dit(i) vo(hi)bis(h) pa(hg)nem(hi>) de(gh) c\\u00e6(f!gwhg)lo,(gf) (;) \\r\\nsed(fc) Pa(ef)ter(f) me(f)us(fe) dat(fgf) vo(ef)bis(f) (,) pa(hi)nem(f) de(ge) c\\u0153(fg)lo(f) ve(hjIGhvGECefe)rum.(fhGEf) *(::) I(gi)ste.(g) (::)\\r\\n",
|
|
2542
|
+
office: "re",
|
|
2543
|
+
mode: "2",
|
|
2544
|
+
pages: [
|
|
2545
|
+
{ page: "505", sequence: 0, extent: 1 }
|
|
2546
|
+
],
|
|
2547
|
+
},
|
|
2548
|
+
{
|
|
2549
|
+
id: "gregobase:16213",
|
|
2550
|
+
incipit: "Jesu salvator saeculi",
|
|
2551
|
+
gabc: "(c4)IE(ghgg)su,(f) sal(hj)v\\u00e1(ji)tor(g) s\\u01fd(hg)cu(fg)li,(g) (,)\\r\\nred(gk!lv)\\u00e9mp(k)tis(j) o(ji)pe(h) s\\u00fab(ji)ve(hg)ni:(ghg.) (;) \\r\\net,(d) pi(dfe)a(fg) De(gh)i(gf) G\\u00e9(g)ni(gh)trix,(h) (,)\\r\\nsa(j)l\\u00fa(jkj)tem(h) po(ih)sce(g) m\\u00ed(hg)se(fg)ris.(g.) (::)\\r\\n",
|
|
2552
|
+
office: "hy",
|
|
2553
|
+
mode: "8",
|
|
2554
|
+
pages: [
|
|
2555
|
+
{ page: "463", sequence: 0, extent: 1 }
|
|
2556
|
+
],
|
|
2557
|
+
},
|
|
2558
|
+
{
|
|
2559
|
+
id: "gregobase:16324",
|
|
2560
|
+
incipit: "Plausibus Luca",
|
|
2561
|
+
gabc: "(f3)Pl\\u00e1u(ff)si(e)bus,(fgwh) Lu(hg)ca,(fg) c\\u00e1(f)ni(f)mus,(e) tri(f)\\u00fam(h.)phum(h.)(;)\\r\\nquo(ih) ni(i)tes(j) fu(ih)so(hi) r\\u00fa(i)ti(h)lo(f) cru(g)\\u00f3(ff)re,(e.) (:)\\r\\nat(fgwhivHG)que(f) pr\\u00e6(e)c\\u00e9l(h.)sis(h.)(,) m\\u00e9(i)ri(j)tis(i) ad(h)\\u00e9p(ih)tam(fe__)(,)\\r\\nri(h_)te(g) co(h)r\\u00f3(fe)nam.(f.) (::)\\r\\n",
|
|
2562
|
+
office: "hy",
|
|
2563
|
+
mode: "2",
|
|
2564
|
+
pages: [
|
|
2565
|
+
{ page: "457", sequence: 0, extent: 1 }
|
|
2566
|
+
],
|
|
2567
|
+
},
|
|
2568
|
+
{
|
|
2569
|
+
id: "gregobase:16356",
|
|
2570
|
+
incipit: "Venite exsultemus IV**",
|
|
2571
|
+
gabc: "(c4) VE(dh)n\\u00ed(hi)te,(h) ex(h)sul(h)t\\u00e9(h)mus(g) D\\u00f3(gh)mi(g)no;(g) (,) \\r\\nju(g)bi(g)l\\u00e9(g)mus(g) De(gh)o(g) sa(g)lu(f)t\\u00e1(fh)ri(h) no(gh)stro.(g) (;) \\r\\nPr\\u00e6(g)oc(f)cu(h)p\\u00e9(hi)mus(h) f\\u00e1(h)ci(g)em(g) e(gh)jus(g) (,) in(g) con(f)fes(fh)si(h)\\u00f3(gh)ne,(hg) (;)\\r\\net(fe) in(fgf~) psal(gh~)mis(g) ju(g)bi(hghw!ij)l\\u00e9(h)mus(gh) e(hhgh)i.(ffefo@gv) \\r\\n(::/) (Z-)\\r\\nQu\\u00f3(dh!iv)ni(h)am(h) De(h)us(h) mag(h)nus(g) D\\u00f3(gh)mi(g)nus,(g) (,)\\r\\net(g) Rex(gh) mag(h)nus(g) su(g)per(f) om(fh)nes(h) de(gh)os.(g) (;)\\r\\nQu\\u00f3(g)ni(f)am(fh) non(h) re(h)p\\u00e9l(h)let(h) D\\u00f3(hi)mi(h)nus(h) ple(h)bem(g) su(gh)am,(g) (,)\\r\\nqui(g)a(g) in(g) ma(g)nu(g) e(gh)jus(g) sunt(gh) om(g)nes(f) fi(fh)nes(h) ter(gh)r\\u00e6,(hg) (;) \\r\\net(fe) al(fgf~)ti(g)t\\u00fa(g)di(g)nes(g) m\\u00f3n(gh~)ti(g)um(g) (,) i(hghw!ij)pse(h) c\\u00f3n(gh~)spi(hhgh)cit.(ffefo@gv) \\r\\n(::/) (Z-)\\r\\nQu\\u00f3(dh!iv)ni(h)am(h) ip(h)s\\u00ed(h)us(h) est(g) ma(gh)re,(g) (,) et(g) ip(g)se(g) fe(g)cit(h) il(h)lud(g) (,)\\r\\net(g) \\u00e1(gh)ri(g)dam(g) fun(g)da(h)v\\u00e9(g)runt(f) ma(fh)nus(h) e(gh)jus.(g) (;)\\r\\nVe(g)n\\u00ed(f)te,(fh) ad(h)o(h)r\\u00e9(hi)mus,(h) (,) et(h) pro(h)ci(h)d\\u00e1(h)mus(h) an(h)te(g) De(gh)um,(g) (,)\\r\\nplo(fe)r\\u00e9(f)mus(fg) co(g)ram(g) D\\u00f3(gh)mi(g)no,(g) qui(g) fe(gh)cit(g) nos,(g) (,) qui(g)a(g) ip(gh)se(g) est(g) D\\u00f3(h)mi(g)nus(f) De(fh)us(h) no(gh)ster,(hg) (;) \\r\\nnos(fe) au(fgf~)tem(g) p\\u00f3(g)pu(g)lus(g) e(gh~)jus(g) (,) et(g) o(gh)ves(g) p\\u00e1s(hghw!ij)cu(h)\\u00e6(gh) e(hhgh)jus.(ffefo@gv) \\r\\n(::/) (Z-)\\r\\n\\r\\nH\\u00f3(dh!iv)di(h)e,(h) si(h) vo(h)cem(h) e(h)jus(h) au(h)di(g)\\u00e9(gh)ri(g)tis:(g) (,) \\r\\n\\u00abNo(g)l\\u00ed(gh)te(g) ob(g)du(h)r\\u00e1(g)re(f) cor(fh)da(h) ves(gh)tra,(g) (;) si(g)cut(f) in(fh) ex(h)a(h)cer(h)ba(h)ti(h)\\u00f3(hi)ne(h) se(h)c\\u00fan(h)dum(g) di(gh)em(g) ten(fe~)ta(f)ti(fg)\\u00f3(g)nis(gh) in(h) de(g)s\\u00e9r(gh)to,(g) (,) u(g)bi(g) ten(g)ta(g)v\\u00e9(gh)runt(g) me(f) pa(fh)tres(h) ve(gh)stri,(hg) (;) \\r\\npro(fe)ba(fgf)v\\u00e9(g)runt(g) et(g) vi(g)d\\u00e9(gh)runt(g) (,) <nlba>\\u00f3(hghw!ij)pe(h)ra(gh) me(hhgh)a.(ffefo@gv)\\r\\n (::/) (Z-)\\r\\n\\r\\nQua(dh!iv)dra(h)g\\u00edn(h)ta(h) an(h)nis(h) pr\\u00f3(h)xi(g)mus(g) fu(gh)i(g) (,) \\r\\nge(g)ne(g)ra(g)ti(g)\\u00f3(gh)ni(g) hu(g)ic,(g) (,)\\r\\net(g) di(h)xi:(g) (`) Sem(gh~)per(g) hi(f) er(fh)rant(h) cor(gh)de.(g) (;)\\r\\nIp(f)si(h) ve(hi)ro(h) non(h) cog(h)no(hZ)v\\u00e9(h)runt(h) vi(h)as(g) me(gh)as,(g) (,) \\r\\nqui(g)bus(g) ju(g)r\\u00e1(gh)vi(g) in(f) i(fh)ra(h) me(gh)a:(hg) (;)\\r\\nSi(fe) in(fgf~)tro(g)\\u00ed(gh)bunt(g) (,) in(g) r\\u00e9(hghw!ij)qui(h)em(gh~) me(hhgh)am.(ffefo@gv) \\r\\n(::/) (Z-)\\r\\n%\\r\\n\\r\\nGl\\u00f3(dh!iv)ri(h)a(h) Pa(h)tri(g) et(g) F\\u00ed(gh)li(g)o,(g) (,) \\r\\net(h) Spi(g)r\\u00ed(f)tu(fh)i(h) Sanc(gh)to.(g) (;)\\r\\nSi(f)cut(h) e(hi)rat(h) in(h) prin(g)c\\u00ed(gh)pi(g)o,(g) (,)\\r\\net(f) nunc,(fh) et(h) sem(gh)per,(hg) (;)\\r\\net(fe) in(fgf~) s\\u01fd(gh)cu(g)la(g) s\\u00e6(g)cu(hghw!ij)l\\u00f3(h)rum.(gh) <nlba>A(hhgh)men.(ffefo@gv)\\r\\n (::/) \\r\\n",
|
|
2572
|
+
office: "ps",
|
|
2573
|
+
mode: "4",
|
|
2574
|
+
pages: [
|
|
2575
|
+
{ page: "16", sequence: 3, extent: 4 }
|
|
2576
|
+
],
|
|
2577
|
+
},
|
|
2578
|
+
{
|
|
2579
|
+
id: "gregobase:16360",
|
|
2580
|
+
incipit: "Hodie nobis de caelo",
|
|
2581
|
+
gabc: "(c4) HO(g)di(g)e(g) n\\u00f3(g)bis *(gf) de(h!iwj) c\\u00e6(ji!jwkjk)lo(kj) (;) pax(j) v\\u00e9(ji/jvIH/ij)ra(i) de(i!jwk/JIH/!iwjIH)sc\\u00e9n(gh!ivHGh)dit:(hg) (:) * H\\u00f3(ji)di(ji)e(h/ijijg) (,) per(g) t\\u00f3(iji)tum(-ghg) m\\u00fan(hiHF~)dum(gf) (;) mel(g!hji)l\\u00ed(j)flu(hgi)i(i) f\\u00e1(jkj)cti(h!iwj) sunt(i!jwkJIH/!iwjIH) c\\u00e6(gh!ivHGh)li.(hg) (::) <sp>V/</sp>. H\\u00f3(j)di(ji)e(jkj/iji/hhg) il(hi)l\\u00fa(i)xit(ih) n\\u00f3(jk)bis(j) (,) d\\u00ed(jk)es(j) red(j)em(ji~)pti(ih)\\u00f3(ij)nis(hi) n\\u00f3(g!hwih)v\\u00e6,(hg) (;) re(g)pa(fg)ra(g)ti(g)\\u00f3(g)nis(g) an(g)ti(gh)qu\\u00e6,(g) (,) fe(g)li(g)ci(g)t\\u00e1(hiHG/hih)tis(ghf) \\u00e6(gh)t\\u00e9r(h!iwji/jkJIH)n\\u00e6.(hiHG/hg) (::) * H\\u00f3(ji)di(ji)e.(h/ijijg) (::)",
|
|
2582
|
+
office: "re",
|
|
2583
|
+
mode: "8",
|
|
2584
|
+
pages: [
|
|
2585
|
+
{ page: "490", sequence: 0, extent: 1 }
|
|
2586
|
+
],
|
|
2587
|
+
},
|
|
2588
|
+
{
|
|
2589
|
+
id: "gregobase:16389",
|
|
2590
|
+
incipit: "Nunc sancte nobis Spiritus (Tempus Nativitatis)",
|
|
2591
|
+
gabc: "(f3)NUnc,(f) Sanc(f)te,(f) no(e)bis(f) Sp\\u00ed(h)ri(g)tus,(f) (,) \\r\\nu(h)num(i) Pa(i)tri(i) cum(h) F\\u00ed(i)li(i)o,(j) (;) \\r\\ndi(j)gn\\u00e1(j)re(i) promp(j)tus(h) \\u00edn(i)ge(h)ri(f) (,) \\r\\nnos(f)tro(e) re(f)f\\u00fa(h)sus(i) p\\u00e9c(f)to(e)ri.(f) (::)\\r\\n\\r\\n2. Os,(f) lin(f)gua,(f) mens,(e) sen(f)sus,(h) vi(g)gor(f) (,)\\r\\ncon(h)fes(i)si(i)\\u00f3(i)nem(h) p\\u00e9r(i)so(i)nent,(j) (;)\\r\\nflam(j)m\\u00e9s(j)cat(i) i(j)gne(h) c\\u00e1(i)ri(h)tas,(f) (,)\\r\\nac(f)c\\u00e9n(e)dat(f) ar(h)dor(i) pr\\u00f3(f)xi(e)mos.(f) (::)\\r\\n\\r\\n3. Per(f) te(f) sci(f)\\u00e1(e)mus(f) da(h) Pa(g)trem,(f) (,)\\r\\nnos(h)c\\u00e1(i)mus(i) at(i)que(h) F\\u00ed(i)li(i)um,(j) (;)\\r\\nte(j) u(j)tri(i)us(j)que(h) Sp\\u00ed(i)ri(h)tum,(f) (,)\\r\\ncre(f)d\\u00e1(e)mus(f) om(h)ni(i) t\\u00e9m(f)po(e)re.(f) (::)\\r\\nA(fgf)men.(ef) (::)",
|
|
2592
|
+
office: "hy",
|
|
2593
|
+
mode: "2",
|
|
2594
|
+
pages: [
|
|
2595
|
+
{ page: "24", sequence: 1, extent: 2 }
|
|
2596
|
+
],
|
|
2597
|
+
},
|
|
2598
|
+
{
|
|
2599
|
+
id: "gregobase:16390",
|
|
2600
|
+
incipit: "Rector potens (Tempus Nativitatis)",
|
|
2601
|
+
gabc: "(f3)REc(f)tor(f) pot(f)ens,(e) ve(f)rax(h) De(g)us,(f) (,)\\r\\nqui(h) t\\u00e9m(i)pe(i)ras(i) re(h)rum(i) vi(i)ces,(j) (;)\\r\\nsplen(j)d\\u00f3(j)re(i) ma(j)ne(h) \\u00edn(i)stru(h)is(f) (,)\\r\\net(f) \\u00ed(e)gni(f)bus(h) me(i)r\\u00ed(f)di(e)em.(f) (::)\\r\\n\\r\\n2. Ex(f)st\\u00edn(f)gue(f) flam(e)mas(f) l\\u00ed(h)ti(g)um,(f) (,)\\r\\nau(h)fer(i) ca(i)l\\u00f3(i)rem(h) n\\u00f3(i)xi(i)um,(j) (;)\\r\\ncon(j)fer(j) sa(i)l\\u00fa(j)tem(h) c\\u00f3r(i)po(h)rum,(f) (,)\\r\\nve(f)r\\u00e1m(e)que(f) pa(h)cem(i) c\\u00f3r(f)di(e)um.(f) (::)\\r\\n\\r\\n3. Pr\\u00e6s(f)ta,(f) Pa(f)ter(e) pi(f)\\u00eds(h)si(g)me,(f) (,)\\r\\nPa(h)tri(i')que(i) com(i)par(h) U(i)ni(i)ce,(j) (;)\\r\\ncum(j) Sp\\u00ed(j)ri(i)tu(j) Pa(h)r\\u00e1(i)cli(h)to,(f) (,)\\r\\nreg(f)nans(e) per(f) om(h)ne(i) s\\u01fd(f)cu(e)lum.(f) (::)\\r\\nA(fgf)men.(ef) (::)",
|
|
2602
|
+
office: "hy",
|
|
2603
|
+
mode: "2",
|
|
2604
|
+
pages: [
|
|
2605
|
+
{ page: "25", sequence: 0, extent: 1 }
|
|
2606
|
+
],
|
|
2607
|
+
},
|
|
2608
|
+
{
|
|
2609
|
+
id: "gregobase:16418",
|
|
2610
|
+
incipit: "Sacris Solemnis",
|
|
2611
|
+
gabc: "(c4) Sa(dh!iv)cris(h) so(hg)l\\u00e9m(h!iwj)ni(ivHG)is(h) (,) junc(h)ta(f) sint(g) g\\u00e1u(g)di(f)a,(e) (;) \\r\\net(f) ex(g) pr\\u00e6(f!gh)c\\u00f3r(hg)di(f)is(ed) (,) so(ef)nent(d) pr\\u00e6(c)c\\u00f3(ef)ni(d)a;(d) (;)\\r\\nre(h)c\\u00e9(i)dant(ji) v\\u00e9(g)te(h)ra,(g) no(ih)va(i) sint(ji) \\u00f3(h)mni(gh)a,(h) (,)\\r\\ncor(dh!iv)da,(h) vo(hvGFg)ces(fe) et(d) \\u00f3(f)pe(gf)ra.(ed) (::)\\r\\n\\r\\n2. Noc(dh!iv)tis(h) re(hg)c\\u00f3(h!iwj)li(ivHG)tur(h) (,) c\\u0153(h)na(f) no(g)v\\u00eds(g)si(f)ma,(e) (;)\\r\\nqua(f) Chri(g)stus(f!gh) cr\\u00e9(hg)di(f)tur(ed) (,) a(ef)gnum(d) et(c) \\u00e1(ef)zy(d)ma(d) (;)\\r\\nde(h)d\\u00eds(i)se(ji) fr\\u00e1(g)tri(h)bus,(g) jux(ih)ta(i) le(ji)g\\u00ed(h)ti(gh)ma(h) (,)\\r\\npri(dh!iv)scis(h) in(hvGFg)d\\u00fal(fe)ta(d) p\\u00e1(f)tri(gf)bus.(ed) (::)\\r\\n\\r\\n3. De(dh!iv)dit(h) fra(hg)g\\u00ed(h!iwj)li(ivHG)bus(h) (,) c\\u00f3r(h)por(f)ris(g) f\\u00e9r(g)cu(f)lum,(e) (;)\\r\\nde(f)dit(g) et(f!gh) tr\\u00ed(hg)sti(f)bus(ed) (,) s\\u00e1n(ef)gui(d)nis(c) p\\u00f3(ef)cu(d)lum(d) (;)\\r\\ndi(h)cens:(i) \\u00abAc(ji)c\\u00ed(g)pi(h)te(g) quod(ih) tra(i)do(ji) v\\u00e1(h)scu(gh)lum;(h) (,)\\r\\no(dh!iv)mnes(h) ex(hvGFg)e(fe)o(d) b\\u00ed(f)bi(gf)te.\\u00bb(ed) (::)\\r\\n\\r\\n4. Sic(dh!iv) sa(h)cri(hg) f\\u00ed(h!iwj)ci(ivHG)um(h) (,) i(h)stud(f) in(g)st\\u00ed(g)tu(f)it,(e) (;)\\r\\ncu(f)jus(g) of(f!gh)f\\u00ed(hg)ci(f)um(ed) (,) com(ef)m\\u00edt(d)ti(c) v\\u00f3(ef)lu(d)it(d) (;)\\r\\nso(h)lis(i) pres(ji)by\\u0301(g)te(h)ris,(g) qui(ih)bus(i) sic(ji) c\\u00f3n(h)gru(gh)it,(h) (,)\\r\\nut(dh!iv) su(h)mant,(hvGFg) et(fe) dent(d) c\\u00e9(f)te(gf)ris.(ed) (::)\\r\\n\\r\\n5. Pa(dh!iv)nis(h) an(hg)g\\u00e9(h!iwj)li(ivHG)cus(h) (,) fit(h) pa(f)nis(g) h\\u00f3(g)mi(f)num:(e) (;)\\r\\ndat(f) pa(g)nis(f!gh) c\\u0153\\u0301(hg)li(f)cus(ed) (,) fi(ef)g\\u00fa(d)ris(c) t\\u00e9r(ef)mi(d)num.(d) (;)\\r\\nO(h) res(i) mi(ji)r\\u00e1(g)bi(h)lis:(g) man(ih)d\\u00fa(i)cat(ji) D\\u00f3(h)mi(gh)num(h) (,)\\r\\nser(dh!iv)vus,(h) pau(hvGFg)per(fe) et(d) h\\u00fa(f)mi(gf)lis.(ed) (::)\\r\\n\\r\\n6. Te(dh!iv) tri(h)na(hg) D\\u00e9(h!iwj)i(ivHG)tas(h) (,) \\u00fa(h)na(f)que(g) p\\u00f3(g)sci(f)mus;(e) (;)\\r\\nsic(f) nos(g) tu(f!gh) v\\u00ed(hg)si(f)tas(ed) (,) si(ef)cut(d) te(c) c\\u00f3(ef)li(d)mus:(d) (;)\\r\\nper(h) tu(i)as(ji) s\\u00e9(g)mi(h)tas(g) duc(ih) nos(i) quo(ji) t\\u00e9n(h)di(gh)mus,(h) (,)\\r\\nad(dh!iv) lu(h)cem(hvGFg) quam(fe) in(d)h\\u00e1(f)bi(gf)tas.(ed) (::)\\r\\n\\r\\nA(ded)men.(cd) (::)\\r\\n",
|
|
2612
|
+
office: "hy",
|
|
2613
|
+
mode: "1",
|
|
2614
|
+
pages: [
|
|
2615
|
+
{ page: "113", sequence: 0, extent: 1 }
|
|
2616
|
+
],
|
|
2617
|
+
},
|
|
2618
|
+
{
|
|
2619
|
+
id: "gregobase:16423",
|
|
2620
|
+
incipit: "Te lucis ante terminum (Tempus Adventus)",
|
|
2621
|
+
gabc: "(c4)TE(f) lu(e')cis(d) an(e)te(dc) t\\u00e9r(de)mi-(e)num,(e'_) (,)\\r\\nre(g)rum(g!hwih) cre(gf)\\u00e1(g)tor(ghg) p\\u00f3(fe)sci(de)mus,(e.) (;)\\r\\nut(f) so(e')l\\u00ed(d)ta(e) cle(dc)m\\u00e9n(d!ewf)ti(d)a(d'_) (,)\\r\\nsis(d) pr\\u00e6(f')sul(e) ad(g) cus(ghg)t\\u00f3(fe)di(de)am.(e.) (::)\\r\\n\\r\\n2. Te(f) cor(e')da(d) nos(e)tra(dc) s\\u00f3m(de)ni(e)ent,(e'_) (,)\\r\\nte(g) per(g!hwih) so(gf)p\\u00f3(g)rem(ghg) s\\u00e9n(fe)ti(de)ant,(e.) (;)\\r\\ntu(f)\\u00e1m(e')que(d) sem(e)per(dc) gl\\u00f3(d!ewf)ri(d)am(d'_) (,)\\r\\nvi(d)c\\u00ed(f')na(e) lu(g)ce(ghg) c\\u00f3n(fe)ci(de)nant.(e.) (::)\\r\\n\\r\\n3. Vi(f)tam(e') sa(d)l\\u00fa(e)brem(dc) tr\\u00ed(de)bu(e)e,(e'_) (,)\\r\\nnos(g)trum(g!hwih) ca(gf)l\\u00f3(g)rem(ghg) r\\u00e9(fe)fi(de)ce,(e.) (;)\\r\\nt\\u00e6(f)tram(e') noc(d)tis(e) ca(dc)l\\u00ed(d!ewf)gi(d)nem(d'_) (,)\\r\\ntu(d)a(f') col(e)l\\u00fas(g)tret(ghg) cl\\u00e1(fe)ri(de)tas.(e.) (::)\\r\\n\\r\\n4. Pr\\u00e6(f)sta(e') Pa(d)ter(e) om(dc)n\\u00ed(de)pot(e)ens,(e'_) (,)\\r\\nPer(g) Je(g!hwih)sum(gf) Chris(g)tum(ghg) D\\u00f3(fe)mi(de)num(e.) (;)\\r\\nQui(f) te(e')cum(d) in(e) per(dc)p\\u00e9(d!ewf)tu(d)um(d'_) (,)\\r\\nRe(d)gnat(f') cum(e) Sanc(g)to(ghg) Sp\\u00ed(fe)ri(de)tu.(e.) (::)\\r\\nA(efe)men.(de..) (::)",
|
|
2622
|
+
office: "hy",
|
|
2623
|
+
mode: "4",
|
|
2624
|
+
pages: [
|
|
2625
|
+
{ page: "4", sequence: 0, extent: 1 }
|
|
2626
|
+
],
|
|
2627
|
+
},
|
|
2628
|
+
{
|
|
2629
|
+
id: "gregobase:16592",
|
|
2630
|
+
incipit: "Venite exsultemus IV* (ad lib)",
|
|
2631
|
+
gabc: "(c4)VE(d)n\\u00ed(e)te,(f) ex(g)sul(g)t\\u00e9(g)mus(h) D\\u00f3(h)mi(g)no,(g'_) (,) iu(g)bi(g)l\\u00e9(g)mus(h) De(h)o,(g') sa(f)lu(d)t\\u00e1(e)ri(fg) no(e_f)stro.(e.) (;) Pr\\u00e6(d)oc(e)cu(f)p\\u00e9(g)mus(g) f\\u00e1(g)ci(g)em(h) e(h)ius(g'_) (,) in(f) con(d)fes(e)si(f)\\u00f3(ee)ne,(d.) (;) et(c) in(de~) psal(ef~)mis(e'_) (,) iu(f)bi(fg)l\\u00e9(ed)mus(fg) e(fe)i.(e.) (::Z)\\r\\n\\r\\nQu\\u00f3(d)ni(e)am(f) De(g)us(g) ma(g)gnus(h) D\\u00f3(h)mi(g)nus,(g'_) (,) et(g) rex(g_h) ma(h)gnus(g') su(f)per(d) om(e)nes(fg) de(e_f)os.(e_.) (;) Qu\\u00f3(d)ni(e)am(f) non(g) re(g)p\\u00e9l(g)let(g) D\\u00f3(g)mi(g)nus(g) ple(g)bem(h) su(h)am,(g_') (,) qui(e)a(f) in(g) ma(g)nu(h) e(h)ius(g_') (,) sunt(g) om(f)nes(d) fi(e)nes(f) ter(ee)r\\u00e6,(d.) (;) et(c) al(de~)ti(e)t\\u00fa(e)di(e)nes(e) m\\u00f3n(ef~)ti(e)um(e_') (,) i(fg)pse(ed) c\\u00f3n(fg)spi(fe)cit.(e.) (::Z)\\r\\n\\r\\nQu\\u00f3(d)ni(e)am(f) i(g)ps\\u00ed(g)us(g) est(h) ma(h)re,(g_') (,) et(g) i(g)pse(g) fe(g)cit(h) il(h)lud,(g_') (,) et(g) \\u00e1(gh)ri(g)dam(g') fun(g)da(g)v\\u00e9(f)runt(d) ma(e)nus(fg) e(e_f)ius.(e.) (;) Ve(d)n\\u00ed(e)te,(f) a(g)do(g)r\\u00e9(g)mus,(g_') et(g) pro(g)ci(g)d\\u00e1(g)mus(g) an(g)te(h) De(h)um,(g_') (,) plo(e)r\\u00e9(f)mus(g) co(g)ram(h) D\\u00f3(h)mi(g)no,(g') qui(h) fe(h)cit(g) nos,(g_') (,) qui(e)a(f) i(gh)pse(g) est(g') D\\u00f3(g)mi(f)nus,(d) De(e)us(f) no(ee)ster,(d.) (;) nos(c) au(de~)tem(e) p\\u00f3(e)pu(e)lus(e) e(ef~)ius,(e_') (,) et(e) o(ef)ves(e) p\\u00e1(fg)scu(ed)\\u00e6(fg) e(fe~)ius.(e.) (::Z)\\r\\n\\r\\nH\\u00f3(d)di(e)e,(f) si(g) vo(g)cem(g) e(g)ius(g) au(g)di(h)\\u00e9(h)ri(g)tis:(g_') \\u00ab(,)No(g)l\\u00ed(gh)te(g') ob(g)du(g)r\\u00e1(f)re(d) cor(e)da(fg) ve(e_f)stra,(e.) (;) si(d)cut(e) in(f) e(g)xa(g)cer(g)ba(g)ti(g)\\u00f3(g)ne(g_') se(g)c\\u00fan(g)dum(h) di(h)em(g_') (,) ten(e)ta(f)ti(g)\\u00f3(g)nis(g) in(g) de(h)s\\u00e9r(h)to:(g.) (,) u(gh)bi(g') ten(g)ta(g)v\\u00e9(g)runt(f) me(d') pa(e)tres(f) ve(ee)stri:(d.) (;) pro(c)ba(de)v\\u00e9(e)runt(e) et(e) vi(e)d\\u00e9(ef)runt(e_) (,) \\u00f3(fg)pe(ed)ra(fg) me(fe)a.(e.) (::Z)\\r\\n\\r\\nQua(d)dra(e)g\\u00edn(f)ta(g) an(g)nis(g) pr\\u00f3(g)xi(g)mus(h) fu(h)i(g_') (,) ge(g)ne(g)ra(g)ti(h)\\u00f3(h)ni(g') hu(g)ic,(g_') (,) et(g) di(gh)xi:(g') (`) Sem(g)per(f) hi(d) er(e)rant(fg) cor(e_f)de.(e.) (;) I(d)psi(e) ve(f)ro(g) non(g) co(g)gno(g)v\\u00e9(g)runt(g) vi(g)as(h) me(h)as:(g.) (,) qui(gh)bus(g) iu(g)r\\u00e1(g)vi(f) in(d) i(e)ra(f) me(ee)a:(d.) (;) Si(c) in(de~)tro(e)\\u00ed(ef)bunt(e_') (,) in(f) r\\u00e9(fg)qui(ed)em(fg) me(fe)am.\\u00bb(e.) (::Z)\\r\\n\\r\\nGl\\u00f3(d)ri(e)a(f) Pa(g)tri,(g) et(h) F\\u00ed(h)li(g)o,(g_') (,) et(g) Spi(f)r\\u00ed(d)tu(e)i(fg) San(e_f)cto.(e.) (;) Si(d)cut(e) e(f)rat(g) in(g) prin(h)c\\u00ed(h)pi(g)o,(g_') (,) et(d) nunc,(e) et(f) sem(ee)per,(d.) (;) et(c) in(de~) s{<sp>'ae</sp>}(ef)cu(e)la(e') s\\u00e6(f)cu(fg)l\\u00f3(ed)rum.(fg) A(fe)men.(e.) (::)",
|
|
2632
|
+
office: "ps",
|
|
2633
|
+
mode: "4",
|
|
2634
|
+
pages: [
|
|
2635
|
+
{ page: "144", sequence: 1, extent: 3 }
|
|
2636
|
+
],
|
|
2637
|
+
},
|
|
2638
|
+
{
|
|
2639
|
+
id: "gregobase:16620",
|
|
2640
|
+
incipit: "Christum natum",
|
|
2641
|
+
gabc: "(c4) Chri(d)stum(dfd~) na(e)tum,(e/fgf/eeo@fvded.0) (,)\\r\\nqui(dfe) be(fg)\\u00e1(g)tum(g') co(f)ro(ghg)n\\u00e1(h)vit(gf) St\\u00e9(gh)pha(gf)num,(efEDd) (;) ve(c)n\\u00ed(c!dwe!fv)te,(ed__) ad(-dfe)o(fg)r\\u00e9(ghGFg)mus.(fe..) (::)",
|
|
2642
|
+
office: "an",
|
|
2643
|
+
mode: "4",
|
|
2644
|
+
pages: [
|
|
2645
|
+
{ page: "478", sequence: 1, extent: 2 }
|
|
2646
|
+
],
|
|
2647
|
+
},
|
|
2648
|
+
{
|
|
2649
|
+
id: "gregobase:16642",
|
|
2650
|
+
incipit: "Festum celebre martyris",
|
|
2651
|
+
gabc: "(c4) FEs(d)tum(e) ce(f)l\\u00e9(g)bre(gvFE) m\\u00e1r(d)ty(de)ris(e) (,) di(e)gne(e) co(ed)l\\u00e1(g)mus(gh) St\\u00e9(h)pha(gh)ni,(h) (;) qui(hi) pri(j)mus(ivHG) in(h) cer(g)t\\u00e1(h)mi(gvFE)ne(e) (,) pal(e)ma(g) ni(gh)tet(g) vic(g)to(fe)ri(de)\\u00e6.(e) (::)\\r\\n",
|
|
2652
|
+
office: "hy",
|
|
2653
|
+
mode: "4",
|
|
2654
|
+
pages: [
|
|
2655
|
+
{ page: "479", sequence: 0, extent: 1 }
|
|
2656
|
+
],
|
|
2657
|
+
},
|
|
2658
|
+
{
|
|
2659
|
+
id: "gregobase:16675",
|
|
2660
|
+
incipit: "Regem Apostolorum (mode IV*)",
|
|
2661
|
+
gabc: "(c4)Re(c@dwefv)gem(e) A(e)pos(e)to(e)l\\u00f3(e)rum(fg~) D\\u00f3(ge)mi(f)num,(deDC) (;) ve(ce@fwg)n\\u00ed(g)te,(gh) ad(hvGF)\\u00f3(g)re(gvFE)mus.(e) (::)",
|
|
2662
|
+
office: "an",
|
|
2663
|
+
mode: "4",
|
|
2664
|
+
pages: [
|
|
2665
|
+
{ page: "266", sequence: 0, extent: 1 }
|
|
2666
|
+
],
|
|
2667
|
+
},
|
|
2668
|
+
{
|
|
2669
|
+
id: "gregobase:16676",
|
|
2670
|
+
incipit: "Virginis virgo",
|
|
2671
|
+
gabc: "(c4)\\r\\n\\r\\nVIr(e.)gi(d)nis(e!fwg) vir(gh)go(g.) (,) ve(h)ne(g)r\\u00e1n(fe)de(de) cus(e.)tos,(e.) (;) pr\\u00e6(e.)co(d)qui(e) Ver(ed)bi(c.) (,) c\\u00f3(e)le(f)ris(gf) fi(de)d\\u00e9(e.)lis,(e.) (:) ter(g@hw@ij)ge(hg) ser(hi)v\\u00f3(hg)rum(gh) f\\u00e1(h)ci(gf)nus(g) tu(gf)\\u00f3(e.)rum,(eh) (,) san(hg)cte(fe) Io(de)an(e.)nes(e.) (::)\\r\\n\\r\\n\\r\\n2. Fon(e.)te(d) pro(e!fwg)r\\u00fam(gh)pens(g.) (,) fl\\u00fa(h)vi(g)us(fe) per(de)\\u00e9n(e.)ni(e.) (;) cur(e.)ris,(d) a(e)r\\u00e9n(ed)tis(c.) (,) sa(e)ti(f)\\u00e1(gf)tor(de) or(e.)bis;(e.) (:) hau(g@hw@ij)sit(hg) ex(hi) ple(hg)no,(gh) mo(h)do(gf) quod(g) pro(gf)p\\u00ed(e.)nat,(eh) (,) p\\u00e9c(hg)to(fe)re(de) pec(e.)tus.(e.) (::)\\r\\n\\r\\n\\r\\n3. Tu,(e.) de(d)cus(e!fwg) mun(gh)di(g.) (,) iu(h)bar(g) at(fe)que(de) c\\u00e6(e.)li,(e.) (;) \\u00edm(e.)pe(d)tra(e) nos(ed)tris(c.) (,) v\\u00e9(e)ni(f)am(gf) ru(de)\\u00ed(e.)nis;(e.) (:) da(g@hw@ij) sa(hg)cra(hi)men(hg)tum(gh) pe(h)ne(gf)tr\\u00e1(g)re(gf) sum(e.)mum,(eh) (,) quod(hg) do(fe)cu(de)\\u00ed(e.)sti.(e.) (::)\\r\\n\\r\\n\\r\\n4. Pa(e.)tris(d) ar(e!fwg)c\\u00e1(gh)num(g.) (,) spe(h)cu(g)l\\u00e1n(fe)do(de) Ver(e.)bum(e.) (;) gr\\u00e1(e.)ti(d)am(e) fun(ed)dis(c.) (,) f\\u00ed(e)de(f)i(gf) per(de) or(e.)bem;(e.) (:) nos(g@hw@ij) ad(hg) \\u00e6(hi)t\\u00e9r(hg)nam(gh) sp\\u00e9(h)ci(gf)em(g) fru(gf)\\u00e9n(e.)dam,(eh) (,) dux(hg) bo(fe)ne(de) trans(e.)fer(e.) (::)\\r\\n\\r\\n\\r\\n5. Sit(e.) de(d)cus(e!fwg) sum(gh)mo(g.) (,) si(h)ne(g) fi(fe)ne(de) Chri(e.)sto,(e.) (;) san(e.)cta(d) quem(e) vir(ed)go(c.) (,) g\\u00e9(e)nu(f)it(gf) Ma(de)r\\u00ed(e.)a,(e.) (:) qui(g@hw@ij) Pa(hg)tri(hi) com(hg)par(gh) Fla(h)mi(gf)n\\u00ed(g)que(gf)San(e.)cto(eh) (,) re(hg)gnat(fe) in(de) \\u00e6(e.)vum.(e.) (::) A(efe)men.(de) (::)",
|
|
2672
|
+
office: "hy",
|
|
2673
|
+
mode: "4",
|
|
2674
|
+
pages: [
|
|
2675
|
+
{ page: "481", sequence: 0, extent: 1 }
|
|
2676
|
+
],
|
|
2677
|
+
},
|
|
2678
|
+
{
|
|
2679
|
+
id: "gregobase:16685",
|
|
2680
|
+
incipit: "Exsultet caelum laudibus",
|
|
2681
|
+
gabc: "(c4)Ex(ddc)s\\u00fal(cf)tet(ed) c\\u00e6(dh)lum(h) l\\u00e1u(g')di(f)bus,(e./ghd.) (;)\\r\\nre(f)s\\u00fal(ed)tet(de) ter(g)ra(g) g\\u00e1u(g')di(f)is(ed/ffd.) (:)\\r\\nA(d)pos(d')to(d)l\\u00f3(dh)rum(h) gl\\u00f3(h')ri(g)am(hv_GF'/gwhGFED.) (;)\\r\\nsa(e)cra(g') ca(g)nunt(ghg/hvGF'ED) sol(fe)l\\u00e9m(d)ni(cd)a.(d_eD'Cd.) (::)\\r\\n\\r\\n2. Vos,(ddc) s\\u00e6(cf)cli(ed) jus(dh)ti(h) j\\u00fa(g')di(f)ces,(e./ghd.) (;)\\r\\net(f) ve(ed)ra(de) mun(g)di(g) l\\u00fa(g')mi(f)na,(ed/ffd.) (:)\\r\\nvo(d)tis(d') pre(d)c\\u00e1(dh)mur(h) c\\u00f3r(h')di(g)um:(hv_GF'/gwhGFED.) (;)\\r\\nau(e)d\\u00ed(g')te(g) pre(ghg/hvGF'ED)ces(fe) s\\u00fap(d)pli(cd)cum.(d_eD'Cd.) (::)\\r\\n\\r\\n3. Qui(ddc) c\\u00e6(cf)lum(ed) ver(dh)bo(h) cl\\u00e1u(g')di(f)tis,(e./ghd.) (;)\\r\\nse(f)r\\u00e1s(ed)que(de) e(g)jus(g) s\\u00f3l(g')vi(f)tis,(ed/ffd.) (:)\\r\\nnos(d) a(d') pec(d)c\\u00e1(dh)tis(h) \\u00f3m(h')ni(g)bus(hv_GF'/gwhGFED.) (;)\\r\\ns\\u00f3l(e)vi(g')te(g) jus(ghg/hvGF'ED)su,(fe) qu\\u01fd(d)su(cd)mus.(d_eD'Cd.) (::)\\r\\n\\r\\n4. Quo(ddc)rum(cf) pr\\u00e6(ed)c\\u00e9p(dh)to(h) s\\u00fab(g')di(f)tur(e./ghd.) (;)\\r\\nsa(f)lus(ed) et(de) lan(g)guor(g) \\u00f3m(g')ni(f)um,(ed/ffd.) (:)\\r\\nsa(d)n\\u00e1(d')te(d) \\u00e6(dh)gros(h) m\\u00f3(h')ri(g)bus,(hv_GF'/gwhGFED.) (;)\\r\\nnos(e) red(g')d\\u00e9n(g)tes(ghg/hvGF'ED) vir(fe)t\\u00fa(d)ti(cd)bus:(d_eD'Cd.) (::)\\r\\n\\r\\n5. Ut,(ddc) cum(cf) Ju(ed)dex(dh) ad(h)v\\u00e9(g')ne(f)rit(e./ghd.) (;)\\r\\nchris(f)tus(ed) in(de) fi(g)ne(g) s\\u01fd(g')cu(f)li,(ed/ffd.) (:)\\r\\nnos(d) sem(d')pi(d)t\\u00e9r(dh)ni(h) g\\u00e1u(h')di(g)i(hv_GF'/gwhGFED.) (;)\\r\\nf\\u00e1(e)ci(g')at(g) es(ghg/hvGF'ED)se(fe) c\\u00f3m(d)po(cd)tes.(d_eD'Cd.) (::)\\r\\n\\r\\n6. De(ddc)o(cf) sint(ed) lau(dh)des(h) gl\\u00f3(g')ri(f)\\u00e6,(e./ghd.) (;)\\r\\nqui(f) dat(ed) nos(de) e(g)van(g)g\\u00e9(g')li(f)cis(ed/ffd.) (:)\\r\\nper(d) vos(d') doc(d)tr\\u00ed(dh)nis(h) ins(h')tru(g)i(hv_GF'/gwhGFED.) (;)\\r\\net(e) pr\\u00f3(g')se(g)qui(ghg/hvGF'ED) c\\u00e6(fe)l\\u00e9s(d)ti(cd)a.(d_eD'Cd.) (::)\\r\\n\\r\\nA(ded)men.(cd..) (::)",
|
|
2682
|
+
office: "hy",
|
|
2683
|
+
mode: "1",
|
|
2684
|
+
pages: [
|
|
2685
|
+
{ page: "270", sequence: 0, extent: 1 }
|
|
2686
|
+
],
|
|
2687
|
+
},
|
|
2688
|
+
{
|
|
2689
|
+
id: "gregobase:16691",
|
|
2690
|
+
incipit: "Christum natum, qui Innocentes",
|
|
2691
|
+
gabc: "(c4)CHri(d)stum(-dfd~) na(e)tum,(e/fgf/eeo@fv/ded) (,) qui(d) In(-dfe)no(fg)c\\u00e9n(gh)tes(g) co(f)ro(-ghg)n\\u00e1(h)vit(gf) m\\u00e1r(gh)ty(gf)res,(efEDd) (;) ve(c)n\\u00ed(c!dwefv)te,(ed) ad(-dfe)o(fg)r\\u00e9(ghGFg)mus.(fe) (::)",
|
|
2692
|
+
office: "an",
|
|
2693
|
+
mode: "4",
|
|
2694
|
+
pages: [
|
|
2695
|
+
{ page: "484", sequence: 0, extent: 1 }
|
|
2696
|
+
],
|
|
2697
|
+
},
|
|
2698
|
+
{
|
|
2699
|
+
id: "gregobase:16706",
|
|
2700
|
+
incipit: "Christe qui splendor et dies (in sollemnitatibus)",
|
|
2701
|
+
gabc: "(c4) CHris(g)te,(g) qui(e) splen(g)dor(h) et(i) di(j)es(h'_,)\\r\\nnoc(g)tis(i) te(h)n\\u00e9(j)bras(g) d\\u00e9(hi)te(i)git,(i.) (;)\\r\\nlu(h)c\\u00eds(j)que(k) lu(ih)men(j) cr\\u00e9(i)de(j)ris,(hvGF,)\\r\\nlu(h)men(hg) be(j)\\u00e1(ij)tis(h) pr\\u01fd(g)di(fg)cans.(g.) (::)",
|
|
2702
|
+
office: "hy",
|
|
2703
|
+
mode: "8",
|
|
2704
|
+
pages: [
|
|
2705
|
+
{ page: "244", sequence: 2, extent: 1 }
|
|
2706
|
+
],
|
|
2707
|
+
},
|
|
2708
|
+
{
|
|
2709
|
+
id: "gregobase:16710",
|
|
2710
|
+
incipit: "Aeterne lucis conditor",
|
|
2711
|
+
gabc: "(c4)\\u00c6(e)t\\u00e9r(c)ne(d) lu(f)cis(ef) C\\u00f3n(g)di(f)tor,(e'_) (,) \\r\\nlux(e) i(c)pse(d) to(f)tus(ef) et(g) di(g)es,(g.) (;)\\r\\nno(g)ctem(f) nec(g) ul(h)lam(gf) s\\u00e9n(g)ti(f)ens(e'_) (,)\\r\\nna(e)tu(c)ra(d) lu(f)cis(ef) p\\u00e9r(g)pe(f)tis.(e.) (::) ",
|
|
2712
|
+
office: "hy",
|
|
2713
|
+
mode: "4",
|
|
2714
|
+
pages: [
|
|
2715
|
+
{ page: "226", sequence: 0, extent: 1 }
|
|
2716
|
+
],
|
|
2717
|
+
},
|
|
2718
|
+
{
|
|
2719
|
+
id: "gregobase:16712",
|
|
2720
|
+
incipit: "Sator princépsque témporum",
|
|
2721
|
+
gabc: "(c4)SA(f)tor(f) prin(g)c\\u00e9ps(h)que(f) t\\u00e9m(g)po(f)rum,(e_) (,)\\r\\ncla(g)rum(f) di(f)es(e) la(d)b\\u00f3(f)ri(g)bus(f.) (;)\\r\\nnoc(f)t\\u00e9m(f)que(g) qui(h) so(f)p\\u00f3(g)ri(f)bus(e) (,)\\r\\nfi(g)xo(f) di(f)st\\u00edn(e)guis(d) \\u00f3r(f)di(e)ne.(d.) (::)",
|
|
2722
|
+
office: "hy",
|
|
2723
|
+
mode: "1",
|
|
2724
|
+
pages: [
|
|
2725
|
+
{ page: "227", sequence: 0, extent: 1 }
|
|
2726
|
+
],
|
|
2727
|
+
},
|
|
2728
|
+
{
|
|
2729
|
+
id: "gregobase:16745",
|
|
2730
|
+
incipit: "Vita sanctorum",
|
|
2731
|
+
gabc: "(c4)Vi(d_)ta(c) sanc(d)t\\u00f3(fg)rum,(f_') (,) vi(g)a,(h) spes(g) sa(f)l\\u00fas(g.)que,(h.) (;)\\r\\nChris(gh)te,(i) lar(h)g\\u00ed(gf)tor(e'_) (,) pro(d)bi(f)t\\u00e1(e)tis(f) at(d.)que(c.) (:)\\r\\nc\\u00f3n(d_)di(c)tor(d) pa(fg)cis,(f'_) (,) ti(g)bi(h) vo(g)ce,(f) sen(e.)su(d.) (,)\\r\\np\\u00e1n(f_)gi(e)mus(f) hym(dc)num:(d.) (::)",
|
|
2732
|
+
office: "hy",
|
|
2733
|
+
mode: "1",
|
|
2734
|
+
pages: [
|
|
2735
|
+
{ page: "217", sequence: 0, extent: 1 }
|
|
2736
|
+
],
|
|
2737
|
+
},
|
|
2738
|
+
{
|
|
2739
|
+
id: "gregobase:16746",
|
|
2740
|
+
incipit: "Sol, ecce, lentus",
|
|
2741
|
+
gabc: "(c4)Sol,(f) ec(f)ce,(g) len(h)tus(f) \\u00f3c(g)ci(f)dens(e'_) (,)\\r\\nmon(g)tes(f) et(f) ar(e)<i>va</i>() et(d) \\u01fd(f)quo(g)ra(f.) (;)\\r\\nm\\u00e6s(f)tus(f) re(g)l\\u00edn(h)quit,(f) \\u00edn(g)no(f)vat(e'_) (,)\\r\\nsed(g) lu(f)cis(f) o(e)men(d) cr\\u00e1s(f)ti(e)n\\u00e6,(d.) (::)",
|
|
2742
|
+
office: "hy",
|
|
2743
|
+
mode: "1",
|
|
2744
|
+
pages: [
|
|
2745
|
+
{ page: "231", sequence: 0, extent: 1 }
|
|
2746
|
+
],
|
|
2747
|
+
},
|
|
2748
|
+
{
|
|
2749
|
+
id: "gregobase:16747",
|
|
2750
|
+
incipit: "Deus qui claro lúmine",
|
|
2751
|
+
gabc: "(c4)DE(f)us,(f) qui(g) cla(h)ro(f) l\\u00fa(g)mi(f)ne(e'_) (,)\\r\\ndi(g)em(f) fe(f)c\\u00eds(e)ti,(d) D\\u00f3(f)mi(g)ne,(f.) (;)\\r\\ntu(f)am(f) ro(g)g\\u00e1(h)mus(f) gl\\u00f3(g)ri(f)am(e'_) (,)\\r\\ndum(g) pro(f)nus(f) di(e)es(d) v\\u00f3l(f)vi(e)tur.(d.) (::)",
|
|
2752
|
+
office: "hy",
|
|
2753
|
+
mode: "1",
|
|
2754
|
+
pages: [
|
|
2755
|
+
{ page: "233", sequence: 0, extent: 1 }
|
|
2756
|
+
],
|
|
2757
|
+
},
|
|
2758
|
+
{
|
|
2759
|
+
id: "gregobase:16748",
|
|
2760
|
+
incipit: "Deus qui caeli lumen es",
|
|
2761
|
+
gabc: "(c4)DE(e)us,(c) qui(d) c\\u00e6(f)li(ef) lu(g)men(f) es(e'_) (,)\\r\\nsa(e)t\\u00f3r(c)que(d) lu(f)cis,(ef) qui(g) po(g)lum(g.) (;)\\r\\npa(g)t\\u00e9r(f)no(g) ful(h)tum(gf) br\\u00e1(g)chi(f)o(e'_) (,)\\r\\npr\\u00e6(e)cl\\u00e1(c)ra(d) pan(f)dis(ef) d\\u00e9x(g)te(f)ra,(e.) (::)",
|
|
2762
|
+
office: "hy",
|
|
2763
|
+
mode: "4",
|
|
2764
|
+
pages: [
|
|
2765
|
+
{ page: "236", sequence: 0, extent: 1 }
|
|
2766
|
+
],
|
|
2767
|
+
},
|
|
2768
|
+
{
|
|
2769
|
+
id: "gregobase:16749",
|
|
2770
|
+
incipit: "Adesto rerum conditor",
|
|
2771
|
+
gabc: "(f3)Ad(f)\\u00e9s(e)to,(f) re(h)rum(i) c\\u00f3n(h)di(g)tor,(f'_) (,)\\r\\npa(i)t\\u00e9r(i)n\\u00e6(h) lu(i)cis(j) gl\\u00f3(h)ri(g)a,(f.) (;)\\r\\ncu(f)ius(f) a(g)m\\u00f3(e)ta(c) gr\\u00e1(e)ti(f)a(f'_) (,)\\r\\nnos(f)tra(e) pa(f)v\\u00e9s(h)cunt(i) p\\u00e9c(h)to(g)ra,(f.) (::)",
|
|
2772
|
+
office: "hy",
|
|
2773
|
+
mode: "2",
|
|
2774
|
+
pages: [
|
|
2775
|
+
{ page: "235", sequence: 1, extent: 2 }
|
|
2776
|
+
],
|
|
2777
|
+
},
|
|
2778
|
+
{
|
|
2779
|
+
id: "gregobase:16750",
|
|
2780
|
+
incipit: "Deus de nullo veniens",
|
|
2781
|
+
gabc: "(f3)De(f)us(e) de(f) nul(h)lo(i) v\\u00e9(h)ni(g)ens,(f'_) (,)\\r\\nDe(i)us(i) de(h) De(i)o(j) pr\\u00f3d(h)i(g)ens,(f.) (;)\\r\\nDe(f)us(f) ab(g) his(e) pro(c)gr\\u00e9(e)di(f)ens,(f'_) (,)\\r\\nin(f) nos(e) ve(f)ni(h) sub(i)v\\u00e9(h)ni(g)ens.(f.) (::)",
|
|
2782
|
+
office: "hy",
|
|
2783
|
+
mode: "2",
|
|
2784
|
+
pages: [
|
|
2785
|
+
{ page: "238", sequence: 0, extent: 1 }
|
|
2786
|
+
],
|
|
2787
|
+
},
|
|
2788
|
+
{
|
|
2789
|
+
id: "gregobase:16812",
|
|
2790
|
+
incipit: "Certum tenentes (In dominicis per annum)",
|
|
2791
|
+
gabc: "(f3)Cer(f)tum(e) te(f)n\\u00e9n(h)tes(g) \\u00f3r(f)di(f)nem,(e'_) (,)\\r\\npi(f)o(e) pos(f)c\\u00e1(h)mus(g) p\\u00e9c(f)to(e)re(e.h.) (;)\\r\\nho(h)ra(j) di(i)\\u00e9(j)i(h) t\\u00e9r(i)ti(hg)a(f'_) (,)\\r\\ntri(e)n\\u00e6(f) vir(h)t\\u00fa(hi)tis(hg) gl\\u00f3(f)ri(ef)am,(f.) (::)",
|
|
2792
|
+
office: "hy",
|
|
2793
|
+
mode: "2",
|
|
2794
|
+
pages: [
|
|
2795
|
+
{ page: "213", sequence: 0, extent: 1 }
|
|
2796
|
+
],
|
|
2797
|
+
},
|
|
2798
|
+
{
|
|
2799
|
+
id: "gregobase:16813",
|
|
2800
|
+
incipit: "Certum tenentes (In Sollemnitatibus)",
|
|
2801
|
+
gabc: "(c3)CEr(e)tum(e) te(fg)n\\u00e9n(g)tes(fe) \\u00f3r(fgwhg)di(fe)nem,(e.) (;)\\r\\npi(e)o(g) pos(h)c\\u00e1(i)mus(iji) p\\u00e9c(g)to(hi)re(i.) (:)\\r\\nho(g)ra(i) di(ij)\\u00e9(j)i(i) t\\u00e9r(hg)ti(fe)a(fgwhg.) (;)\\r\\ntri(e)n\\u00e6(fh) vir(h)t\\u00fa(hg)tis(fe) gl\\u00f3(fgwhg)ri(fe)am,(e.) (::)",
|
|
2802
|
+
office: "hy",
|
|
2803
|
+
mode: "8",
|
|
2804
|
+
pages: [
|
|
2805
|
+
{ page: "213", sequence: 0, extent: 1 }
|
|
2806
|
+
],
|
|
2807
|
+
},
|
|
2808
|
+
{
|
|
2809
|
+
id: "gregobase:16814",
|
|
2810
|
+
incipit: "Certum tenentes (In feriis per annum)",
|
|
2811
|
+
gabc: "(c4)Cer(h)tum(h) te(h)n\\u00e9n(h)tes(h) \\u00f3r(h)di(g)nem,(g'_) (,)\\r\\npi(h)o(h) pos(h)c\\u00e1(h)mus(g) p\\u00e9c(h)to(h)re(h.) (;)\\r\\nho(h)ra(h) di(h)\\u00e9(g)i(f) t\\u00e9r(g)ti(f)a(e'_) (,)\\r\\ntri(f)n\\u00e6(g) vir(g)t\\u00fa(g)tis(f) gl\\u00f3(h)ri(g)am,(g.) (::)",
|
|
2812
|
+
office: "hy",
|
|
2813
|
+
mode: "d",
|
|
2814
|
+
pages: [
|
|
2815
|
+
{ page: "219", sequence: 0, extent: 1 }
|
|
2816
|
+
],
|
|
2817
|
+
},
|
|
2818
|
+
{
|
|
2819
|
+
id: "gregobase:16815",
|
|
2820
|
+
incipit: "Certum tenentes (In memoriis)",
|
|
2821
|
+
gabc: "(c4)Cer(g)tum(g) te(h)n\\u00e9n(g)tes(f) \\u00f3r(g)di(h)nem,(g_h) (,)\\r\\npi(j)o(j) pos(j)c\\u00e1(jk)mus(ji) p\\u00e9c(h)to(i)re(iji.) (;)\\r\\nho(h)ra(i) di(j)\\u00e9(h)i(g) t\\u00e9r(h)ti(g)a(fef_) (,)\\r\\ntri(d)n\\u00e6(e) vir(f)t\\u00fa(g)tis(f) gl\\u00f3(h)ri(g)am,(g.) (::)",
|
|
2822
|
+
office: "hy",
|
|
2823
|
+
mode: "8",
|
|
2824
|
+
pages: [
|
|
2825
|
+
{ page: "219", sequence: 0, extent: 1 }
|
|
2826
|
+
],
|
|
2827
|
+
},
|
|
2828
|
+
{
|
|
2829
|
+
id: "gregobase:16816",
|
|
2830
|
+
incipit: "Certum tenentes (In festis)",
|
|
2831
|
+
gabc: "(c4)Cer(g)tum(g) te(d)n\\u00e9n(f)tes(g) \\u00f3r(hg)di(fg)nem,(g'_) (,)\\r\\npi(j)o(i) pos(h)c\\u00e1(i)mus(g) p\\u00e9c(hg)to(fg)re(g.) (;)\\r\\nho(j)ra(i) di(h)\\u00e9(j)i(k) t\\u00e9r(j)ti(ivHG)a(g'_) (,)\\r\\ntri(f)n\\u00e6(h) vir(i)t\\u00fa(h)tis(g) gl\\u00f3(hg)ri(fg)am,(g.) (::)",
|
|
2832
|
+
office: "hy",
|
|
2833
|
+
mode: "8",
|
|
2834
|
+
pages: [
|
|
2835
|
+
{ page: "220", sequence: 0, extent: 1 }
|
|
2836
|
+
],
|
|
2837
|
+
},
|
|
2838
|
+
{
|
|
2839
|
+
id: "gregobase:16817",
|
|
2840
|
+
incipit: "Dicamus laudes (In dominicis)",
|
|
2841
|
+
gabc: "(f3)Di(f)c\\u00e1(e)mus(f) lau(h)des(g) D\\u00f3(f)mi(f)no(e'_) (,)\\r\\nfer(f)v\\u00e9n(e)te(f) promp(h)ti(g) sp\\u00ed(f)ri(e)tu;(e.h.) (;)\\r\\nho(h)ra(j) vo(i)l\\u00fa(j)ta(h) s\\u00e9(i)xi(hg)es(f'_) (,)\\r\\nnos(e) ad(f) o(h)r\\u00e1n(hi)dum(hg) pr\\u00f3(f)vo(ef)cat.(f.) (::)",
|
|
2842
|
+
office: "hy",
|
|
2843
|
+
mode: "2",
|
|
2844
|
+
pages: [
|
|
2845
|
+
{ page: "214", sequence: 0, extent: 1 }
|
|
2846
|
+
],
|
|
2847
|
+
},
|
|
2848
|
+
{
|
|
2849
|
+
id: "gregobase:16819",
|
|
2850
|
+
incipit: "Dicamus laudes (In sollemnitatibus)",
|
|
2851
|
+
gabc: "(c3)Di(e)c\\u00e1(e)mus(fg) lau(g)des(fe) D\\u00f3(fgwhg)mi(fe)no(e.) (;)\\r\\nfer(e)v\\u00e9n(g)te(h) promp(i)ti(iji) sp\\u00ed(g)ri(hi)tu;(i.) (:)\\r\\nho(g)ra(i) vo(ij)l\\u00fa(j)ta(i) s\\u00e9(hg)xi(fe)es(fgwhg.) (;)\\r\\nnos(e) ad(fh) o(h)r\\u00e1n(hg)dum(fe) pr\\u00f3(fgwhg)vo(fe)cat.(e.) (::)",
|
|
2852
|
+
office: "hy",
|
|
2853
|
+
mode: "8",
|
|
2854
|
+
pages: [
|
|
2855
|
+
{ page: "214", sequence: 0, extent: 1 }
|
|
2856
|
+
],
|
|
2857
|
+
},
|
|
2858
|
+
{
|
|
2859
|
+
id: "gregobase:16820",
|
|
2860
|
+
incipit: "Dicamus laudes (In feriis)",
|
|
2861
|
+
gabc: "(c4)Di(h)c\\u00e1(h)mus(h) lau(h)des(h) D\\u00f3(h)mi(g)no(g'_) (,)\\r\\nfer(h)v\\u00e9n(h)te(h) promp(h)ti(g) sp\\u00ed(h)ri(h)tu;(h.) (;)\\r\\nho(h)ra(h) vo(h)l\\u00fa(g)ta(f) s\\u00e9(g)xi(f)es(e'_) (,)\\r\\nnos(f) ad(g) o(g)r\\u00e1n(g)dum(f) pr\\u00f3(h)vo(g)cat.(g.) (::)",
|
|
2862
|
+
office: "hy",
|
|
2863
|
+
mode: "d",
|
|
2864
|
+
pages: [
|
|
2865
|
+
{ page: "220", sequence: 0, extent: 1 }
|
|
2866
|
+
],
|
|
2867
|
+
},
|
|
2868
|
+
{
|
|
2869
|
+
id: "gregobase:16824",
|
|
2870
|
+
incipit: "Dicamus laudes (In memoriis)",
|
|
2871
|
+
gabc: "(c4)Di(g)c\\u00e1(g)mus(h) lau(g)des(f) D\\u00f3(g)mi(h)no(g_h) (,)\\r\\nfer(j)v\\u00e9n(j)te(j) promp(jk)ti(ji) sp\\u00ed(h)ri(i)tu;(iji.) (;)\\r\\nho(h)ra(i) vo(j)l\\u00fa(h)ta(g) s\\u00e9(h)xi(g)es(fef_) (,)\\r\\nnos(d) ad(e) o(f)r\\u00e1n(g)dum(f) pr\\u00f3(h)vo(g)cat.(g.) (::)",
|
|
2872
|
+
office: "hy",
|
|
2873
|
+
mode: "8",
|
|
2874
|
+
pages: [
|
|
2875
|
+
{ page: "221", sequence: 0, extent: 1 }
|
|
2876
|
+
],
|
|
2877
|
+
},
|
|
2878
|
+
{
|
|
2879
|
+
id: "gregobase:16825",
|
|
2880
|
+
incipit: "Dicamus laudes (In festis)",
|
|
2881
|
+
gabc: "(c4)Di(g)c\\u00e1(g)mus(d) lau(f)des(g) D\\u00f3(hg)mi(fg)no(g'_) (,)\\r\\nfer(j)v\\u00e9n(i)te(h) promp(i)ti(g) sp\\u00ed(hg)ri(fg)tu;(g.) (;)\\r\\nho(j)ra(i) vo(h)l\\u00fa(j)ta(k) s\\u00e9(j)xi(ivHG)es(g'_) (,)\\r\\nnos(f) ad(h) o(i)r\\u00e1n(h)dum(g) pr\\u00f3(hg)vo(fg)cat.(g.) (::)",
|
|
2882
|
+
office: "hy",
|
|
2883
|
+
mode: "8",
|
|
2884
|
+
pages: [
|
|
2885
|
+
{ page: "221", sequence: 0, extent: 1 }
|
|
2886
|
+
],
|
|
2887
|
+
},
|
|
2888
|
+
{
|
|
2889
|
+
id: "gregobase:16827",
|
|
2890
|
+
incipit: "Ternis horarum (In dominicis per annum)",
|
|
2891
|
+
gabc: "(f3)TEr(f)nis(e) ho(f)r\\u00e1(h)rum(g) t\\u00e9r(f)mi(f)nis(e'_) (,)\\r\\nvo(f)l\\u00fa(e)tis,(f) dan(h)te(g) D\\u00f3(f)mi(e)no,(e.h.) (;)\\r\\ntri(h)num(j) per(i)f\\u00e9c(j)t<i>e</i>() et(h) \\u00fa(i)ni(hg)cum(f'_) (,)\\r\\nip(e)sum(f) de(h)v\\u00f3(hi)ti(hg) ps\\u00e1l(f)li(ef)mus.(f.) (::)",
|
|
2892
|
+
office: "hy",
|
|
2893
|
+
mode: "2",
|
|
2894
|
+
pages: [
|
|
2895
|
+
{ page: "215", sequence: 0, extent: 1 }
|
|
2896
|
+
],
|
|
2897
|
+
},
|
|
2898
|
+
{
|
|
2899
|
+
id: "gregobase:16829",
|
|
2900
|
+
incipit: "Ternis horarum (In sollemnitatibus)",
|
|
2901
|
+
gabc: "(c4)Ter(e)nis(e) ho(fg)r\\u00e1(g)rum(fe) t\\u00e9r(fgwhg)mi(fe)nis(e.) (;)\\r\\nvo(e)l\\u00fa(g)tis,(h) dan(i)te(iji) D\\u00f3(g)mi(hi)no,(i.) (:)\\r\\ntri(h)num(i) per(ij)f\\u00e9c(j)t<i>e</i>() et(i) \\u00fa(hg)ni(fe)cum(fgwhg.) (;)\\r\\nip(e)sum(fh) de(h)v\\u00f3(hg)ti(fe) ps\\u00e1l(fgwhg)li(fe)mus.(e.) (::)",
|
|
2902
|
+
office: "hy",
|
|
2903
|
+
mode: "8",
|
|
2904
|
+
pages: [
|
|
2905
|
+
{ page: "215", sequence: 0, extent: 1 }
|
|
2906
|
+
],
|
|
2907
|
+
},
|
|
2908
|
+
{
|
|
2909
|
+
id: "gregobase:16830",
|
|
2910
|
+
incipit: "Ternis horarum (In feriis per annum)",
|
|
2911
|
+
gabc: "(c4)Ter(h)nis(h) ho(h)r\\u00e1(h)rum(h) t\\u00e9r(h)mi(g)nis(g'_) (,)\\r\\nvo(h)l\\u00fa(h)tis,(h) dan(h)te(g) D\\u00f3(h)mi(h)no,(h.) (;)\\r\\ntri(h)num(h) per(h)f\\u00e9c(g)t<i>e</i>() et(f) \\u00fa(g)ni(f)cum(e'_) (,)\\r\\nip(f)sum(g) de(g)v\\u00f3(g)ti(f) ps\\u00e1l(h)li(g)mus.(g.) (::)",
|
|
2912
|
+
office: "hy",
|
|
2913
|
+
mode: "d",
|
|
2914
|
+
pages: [
|
|
2915
|
+
{ page: "221", sequence: 0, extent: 1 }
|
|
2916
|
+
],
|
|
2917
|
+
},
|
|
2918
|
+
{
|
|
2919
|
+
id: "gregobase:16831",
|
|
2920
|
+
incipit: "Ternis horarum (In memoriis)",
|
|
2921
|
+
gabc: "(c4)Ter(g)nis(g) ho(h)r\\u00e1(g)rum(f) t\\u00e9r(g)mi(h)nis(g_h) (,)\\r\\nvo(j)l\\u00fa(j)tis,(j) dan(jk)te(ji) D\\u00f3(h)mi(i)no,(iji.) (;)\\r\\ntri(h)num(i) per(j)f\\u00e9c(h)t<i>e</i>() et(g) \\u00fa(h)ni(g)cum(fef_) (,)\\r\\nip(d)sum(e) de(f)v\\u00f3(g)ti(f) ps\\u00e1l(h)li(g)mus.(g.) (::)",
|
|
2922
|
+
office: "hy",
|
|
2923
|
+
mode: "8",
|
|
2924
|
+
pages: [
|
|
2925
|
+
{ page: "222", sequence: 0, extent: 1 }
|
|
2926
|
+
],
|
|
2927
|
+
},
|
|
2928
|
+
{
|
|
2929
|
+
id: "gregobase:16832",
|
|
2930
|
+
incipit: "Ternis horarum (In festis)",
|
|
2931
|
+
gabc: "Ter(g)nis(g) ho(d)r\\u00e1(f)rum(g) t\\u00e9r(hg)mi(fg)nis(g'_) (,)\\r\\nvo(j)l\\u00fa(i)tis,(h) dan(i)te(g) D\\u00f3(hg)mi(fg)no,(g.) (;)\\r\\ntri(j)num(i) per(h)f\\u00e9c(j)t<i>e</i>() et(k) \\u00fa(j)ni(ivHG)cum(g'_) (,)\\r\\nip(f)sum(h) de(i)v\\u00f3(h)ti(g) ps\\u00e1l(hg)li(fg)mus.(g.) (::)",
|
|
2932
|
+
office: "hy",
|
|
2933
|
+
mode: "8",
|
|
2934
|
+
pages: [
|
|
2935
|
+
{ page: "222", sequence: 0, extent: 1 }
|
|
2936
|
+
],
|
|
2937
|
+
},
|
|
2938
|
+
{
|
|
2939
|
+
id: "gregobase:16848",
|
|
2940
|
+
incipit: "Quid sum",
|
|
2941
|
+
gabc: "(c4)Quid(f) sum(e) mi(f)ser(d') tunc(e) dic(c)t\\u00fa(d)rus,(d.) (;)\\r\\nquem(f) pa(fg)tr\\u00f3(fe)num(dc) ro(e)ga(f)t\\u00fa(e)rus,(d.;)\\r\\ncum(a) vix(cd) ius(d)tus(dc) sit(e) se(f)c\\u00fa(e)rus?(d.) (::)\\r\\n\\r\\n2. Rex(f) tre(e)m\\u00e9n(f)d\\u00e6(d') ma(e)ies(c)t\\u00e1(d)tis,(d.) (;)\\r\\nqui(f) sal(fg)v\\u00e1n(fe)dos(dc) sal(e)vas(f) gra(e)tis,(d.;)\\r\\nsal(a)va(cd) me,(d) fons(dc) pi(e)e(f)t\\u00e1(e)tis.(d.) (::)\\r\\n3. Re(h)cor(j)d\\u00e1(j)re,(igh) Ie(hvGF)su(g) pi(h)e,(h.d.) (;)\\r\\nquod(f) sum(e) cau(f)sa(d') tu(e)\\u00e6(c) vi(d)\\u00e6,(d.) (;)\\r\\nne(f) me(gh) per(hvGF)das(evDC) il(e)la(f) di(e)e.(d.) (::)\\r\\n\\r\\n4. Qu\\u00e6(h)rens(j) me(j) se(igh)d\\u00eds(hvGF)ti(g) las(h)sus,(h.d.) (;)\\r\\nred(f)e(e)m\\u00eds(f)ti(d') cru(e)cem(c) pas(d)sus;(d.) (;)\\r\\ntan(f)tus(gh) la(hvGF)bor(evDC) non(e) sit(f) cas(e)sus.(d.) (::)\\r\\n5. Ius(h)te(gf) iu(g)dex(hd) ul(dc)ti(a)\\u00f3(cd)nis,(d.) (;)\\r\\ndo(fe)num(d) fac(c) re(a)mis(c)si(d)\\u00f3(f)nis(ecd.) (;)\\r\\nan(h)te(f) di(g)em(d') ra(c)ti(d)\\u00f3(f)nis.(ecd.) (::)\\r\\n\\r\\n6. In(h)ge(gf)m\\u00eds(g)co(hd) tam(dc)quam(a) re(cd)us,(d.) (;)\\r\\ncul(fe)pa(d) ru(c)bet(a) vul(c)tus(d) me(f)us;(ecd.) (;)\\r\\nsup(h)pli(f)c\\u00e1n(g)ti(d') par(c)ce,(d) De(f)us.(ecd.) (::)\\r\\n7. O(f) tu,(e) De(f)us(d) ma(e)ies(c)t\\u00e1(d)tis,(d.) (;)\\r\\nal(f)me(fg) can(fe)dor(dc) Tri(e)ni(f)t\\u00e1(e)tis,(d.) (;)\\r\\nnos(a) con(cd)i\\u00fan(d)ge(dc) cum(e) be(f)\\u00e1(e)tis.(d.) (::)\\r\\nA(cefvED)men.(c.d.) (::)\\r\\n",
|
|
2942
|
+
office: "hy",
|
|
2943
|
+
mode: "1",
|
|
2944
|
+
pages: [
|
|
2945
|
+
{ page: "128", sequence: 0, extent: 1 }
|
|
2946
|
+
],
|
|
2947
|
+
},
|
|
2948
|
+
{
|
|
2949
|
+
id: "gregobase:16849",
|
|
2950
|
+
incipit: "Peccatricem qui solvisti",
|
|
2951
|
+
gabc: "(c4)Pec(f)ca(e)tr\\u00ed(f)cem(d') qui(e) sol(c)v\\u00eds(d)ti(d.) (;)\\r\\net(f) la(fg)tr\\u00f3(fe)nem(dc) ex(e)au(f)d\\u00eds(e)ti,(d.) (;)\\r\\nmi(a)hi(cd) quo(d)que(dc) spem(e) de(f)d\\u00eds(e)ti.(d.) (::)\\r\\n\\r\\n2. Pre(f)ces(e) me(f)\\u00e6(d') non(e) sunt(c) di(d)gn\\u00e6,(d.) (;)\\r\\nsed(f) tu,(fg) bo(fe)nus,(dc) fac(e) be(f)n\\u00ed(e)gne(d.) (;)\\r\\nne(a) per(cd)\\u00e9n(d)ni(dc) cre(e)mer(f) i(e)gne.(d.) (::)\\r\\n3. In(h)ter(j) o(j)ves(igh) lo(hvGF)cum(g) pr\\u00e6(h)sta(h.d.) (;)\\r\\net(f) ab(e) h\\u00e6(f)dis(d') me(e) se(c)qu\\u00e9s(d)tra,(d.) (;)\\r\\nst\\u00e1(f)tu(gh)ens(hvGF) in(evDC) par(e)te(f) dex(e)tra.(d.) (::)\\r\\n\\r\\n4. Con(h)fu(j)t\\u00e1(j)tis(igh) ma(hvGF)le(g)d\\u00edc(h)tis,(h.d.) (;)\\r\\nflam(f)mis(e) \\u00e1(f)cri(d')bus(e) ad(c)d\\u00edc(d)tis,(d.) (;)\\r\\nvo(f)ca(gh) me(hvGF) cum(evDC) be(e)ne(f)d\\u00edc(e)tis.(d.) (::)\\r\\n5. O(h)ro(gf) sup(g)plex(hd) et(dc) ac(a)cl\\u00ed(cd)nis,(d.) (;)\\r\\ncor(fe) con(d)tr\\u00ed(c)tum(a) qua(c)si(d) ci(f)nis,(ecd) (;)\\r\\nge(h)re(f) cu(g)ram(d') me(c)i(d) fi(f)nis.(ecd.) (::)\\r\\n6. La(d)cri(h)m\\u00f3(ixhi)sa(h') di(g)es(fe) il(g)la,(h.) (;)\\r\\nqua(f) re(e)s\\u00far(g)get(h.) ex(dfEDC) fa(f)v\\u00edl(e)la(d.) (::)\\r\\n7. Iu(h)di(j)c\\u00e1n(k)dus(jvIH) ho(hvGF)mo(g) re(h)us:(h.d.) (;)\\r\\nhu(f)ic(e) er(g)go(h.) par(dfEDC)ce,(f) De(e)us.(d.) (::)\\r\\nA(cefvED)men.(c.d.) (::)\\r\\n",
|
|
2952
|
+
office: "hy",
|
|
2953
|
+
mode: "1",
|
|
2954
|
+
pages: [
|
|
2955
|
+
{ page: "129", sequence: 0, extent: 1 }
|
|
2956
|
+
],
|
|
2957
|
+
},
|
|
2958
|
+
{
|
|
2959
|
+
id: "gregobase:16850",
|
|
2960
|
+
incipit: "O virgo mater",
|
|
2961
|
+
gabc: "(c4)O(g) vir(g)go(f) ma(e)ter,(d) f\\u00ed(fhg)li(fg)a(g.) (,)\\r\\ntu(hiwji)i(h) be(g)\\u00e1(h)ta(ig) F\\u00ed(h)li(g)i,(f.) (;)\\r\\nsub(f)l\\u00ed(g)mis(f) et(g) hu(h)m\\u00edl(j)li(g)ma(hih_') (,)\\r\\npr\\u00e6(h) cre(h)a(g)t\\u00fa(e)ris(f) \\u00f3m(hg)ni(fg)bus,(g.) (::)",
|
|
2962
|
+
office: "hy",
|
|
2963
|
+
mode: "8",
|
|
2964
|
+
pages: [
|
|
2965
|
+
{ page: "263", sequence: 0, extent: 1 }
|
|
2966
|
+
],
|
|
2967
|
+
},
|
|
2968
|
+
{
|
|
2969
|
+
id: "gregobase:16851",
|
|
2970
|
+
incipit: "Maria que mortalium",
|
|
2971
|
+
gabc: "(c4)Ma(h)r\\u00ed(hhg)a,(ed) qu\\u00e6(g) mor(hj)t\\u00e1(ji)li(hi)um(i'_) (,)\\r\\npre(k)ces(kj) a(i)m\\u00e1n(ji)ter(h) \\u00e9x(ih)ci(gh)pis,(h.) (;)\\r\\nro(k)g\\u00e1(k)mus(i) ec(k)ce(klk) s\\u00fap(j)pli(i)ces,(hiHG'_) (,)\\r\\nno(i)bis(jk) ad(i)\\u00e9s(ji)to(h) p\\u00e9r(ih)pe(gh)tim.(h.) (::)",
|
|
2972
|
+
office: "hy",
|
|
2973
|
+
mode: "2",
|
|
2974
|
+
pages: [
|
|
2975
|
+
{ page: "253", sequence: 0, extent: 1 }
|
|
2976
|
+
],
|
|
2977
|
+
},
|
|
2978
|
+
{
|
|
2979
|
+
id: "gregobase:16852",
|
|
2980
|
+
incipit: "O gloriosa domina",
|
|
2981
|
+
gabc: "O(h) glo(hhg)ri(ed)\\u00f3(g)sa(hj) d\\u00f3(ji)mi(hi)na,(i'_) (,)\\r\\nex(k)c\\u00e9l(kj)sa(i) su(ji)per(h) s\\u00ed(ih)de(gh)ra,(h.) (;)\\r\\nqui(k) te(k) cre(i)\\u00e1(k)vit(klk) pr\\u00f3(j)vi(i)de,(hiHG_') (,)\\r\\nlac(i)tas(jk) sa(i)cr\\u00e1(ji)to(h) \\u00fa(ih)be(gh)re.(h.) (::)",
|
|
2982
|
+
office: "hy",
|
|
2983
|
+
mode: "2",
|
|
2984
|
+
pages: [
|
|
2985
|
+
{ page: "257", sequence: 0, extent: 1 }
|
|
2986
|
+
],
|
|
2987
|
+
},
|
|
2988
|
+
{
|
|
2989
|
+
id: "gregobase:16931",
|
|
2990
|
+
incipit: "Iesu quadragenariae",
|
|
2991
|
+
gabc: "(c4)Ie(f)su,(e) qua(g)dra(hg)ge(f)n\\u00e1(gh)ri(gvFE)\\u00e6(e'_) (,)\\r\\ndi(d)c\\u00e1(dh)tor(h) abs(h)ti(hg)n\\u00e9n(gi)ti(hg)\\u00e6,(g.h.) (;)\\r\\nqui(h) ob(h) sa(g)l\\u00fa(hg)tem(f) m\\u00e9n(g)ti(fe)um(d'_) (,)\\r\\npr\\u00e6(f)c\\u00e9(e)pe(g)ras(hg) ie(f)i\\u00fa(gh)ni(gvFE)um,(e.) (::)",
|
|
2992
|
+
office: "hy",
|
|
2993
|
+
mode: "4",
|
|
2994
|
+
pages: [
|
|
2995
|
+
{ page: "49", sequence: 0, extent: 1 }
|
|
2996
|
+
],
|
|
2997
|
+
},
|
|
2998
|
+
{
|
|
2999
|
+
id: "gregobase:16932",
|
|
3000
|
+
incipit: "Ex more docti Mystico",
|
|
3001
|
+
gabc: "(c4)Ex(f) mo(gh)re(h) doc(h)ti(gf) m\\u00fds(g)ti(gh)co(h'_) (,)\\r\\nser(g)v\\u00e9(e)mus(f) abs(g)ti(fe)n\\u00e9n(d)ti(ce)am,(e.) (;)\\r\\nde(e)no(g) di(gh)\\u00e9(hg)rum(ed) c\\u00edr(f)cu(ed)lo(d_e) (,)\\r\\nduc(c)to(e) qua(fg)ter(e) no(dc)t\\u00eds(de)si(ed)mo.(d.) (::)",
|
|
3002
|
+
office: "hy",
|
|
3003
|
+
mode: "1",
|
|
3004
|
+
pages: [
|
|
3005
|
+
{ page: "52", sequence: 0, extent: 1 }
|
|
3006
|
+
],
|
|
3007
|
+
},
|
|
3008
|
+
{
|
|
3009
|
+
id: "gregobase:16933",
|
|
3010
|
+
incipit: "Nunc tempus acceptabile",
|
|
3011
|
+
gabc: "(c4)Nunc(f) tem(gh)pus(h) ac(h)cep(gf)t\\u00e1(g)bi(gh)le(h'_) (,)\\r\\nful(g)get(e) da(f)tum(g) di(fe)v\\u00ed(d)ni(ce)tus,(e.) (;)\\r\\nut(e) sa(g)net(gh) or(hg)bem(ed) l\\u00e1n(f)gui(ed)dum(d_e) (,)\\r\\nme(c)d\\u00e9(e)la(fg) par(e)si(dc)m\\u00f3(de)ni(ed)\\u00e6.(d.) (::)",
|
|
3012
|
+
office: "hy",
|
|
3013
|
+
mode: "1",
|
|
3014
|
+
pages: [
|
|
3015
|
+
{ page: "54", sequence: 0, extent: 1 }
|
|
3016
|
+
],
|
|
3017
|
+
},
|
|
3018
|
+
{
|
|
3019
|
+
id: "gregobase:16934",
|
|
3020
|
+
incipit: "Precemur omnes cernui",
|
|
3021
|
+
gabc: "(f3)Pre(ef)c\\u00e9(f)mur(gh) om(i)nes(hg) c\\u00e9r(f)nu(ef)i,(f.) (,)\\r\\ncla(fe)m\\u00e9(h)mus(i) at(ji)que(h) s\\u00edn(ivHG)gu(fg)li,(g.) (;)\\r\\nplo(i)r\\u00e9(ij)mus(i) an(ih)te(fg) i\\u00fa(hih)di(fe)cem,(e.) (,)\\r\\nflec(ef)t\\u00e1(f)mus(gh) i(i)ram(hg) v\\u00edn(fgf)di(ef)cem:(f.) (::)\\r\\n",
|
|
3022
|
+
office: "hy",
|
|
3023
|
+
mode: "2",
|
|
3024
|
+
pages: [
|
|
3025
|
+
{ page: "55", sequence: 0, extent: 1 }
|
|
3026
|
+
],
|
|
3027
|
+
},
|
|
3028
|
+
{
|
|
3029
|
+
id: "gregobase:16975",
|
|
3030
|
+
incipit: "Igne divini radians",
|
|
3031
|
+
gabc: "(c4)I(d_)gne(e) di(f)vi(gh)ni(g.,) ra(fe)di(d)ans(e) a(f)mo(e.)ris(d.) (;)\\r\\ncor(f_)po(e)ris(f) se(gh)xum(g.) (,) su(g)pe(f)ra(h)vit(i) A(h.)gnes,(g.) (:)\\r\\net(h_) su(g)per(f) car(g.)nem(f.) (,) po(fe)tu(d)e(e)re(f) car(e.)nis(d.) (,)\\r\\nclau(f_)stra(e) pu(f)di(gvFE)cae.(e.) (::)\\r\\n\\r\\nSpi(d_)ri(e)tum(f) cel(gh)sae(g.,) ca(fe)pi(d)unt(e) co(f)hor(e.)tes(d.) (;)\\r\\ncan(f_)di(e)dum,(f) cae(gh)li(g.) (,) su(g)per(f) a(h)stra(i) tol(h.)lunt;(g.) (:)\\r\\niun(h_)gi(g)tur(f) Spon(g.)si(f.) (,) tha(fe)la(d)mis(e) pu(f)di(e.)ca(d.) (,)\\r\\nspon(f_)sa(e) be(f)a(gvFE)tis.(e.) (::)\\r\\n\\r\\nVir(d_)go,(e) nunc(f) no(gh)strae(g.,) mi(fe)se(d)re(e)re(f) sor(e.)tis(d.) (;)\\r\\net,(f_) tu(e)um(f) quis(gh)quis(g.) (,) ce(g)le(f)brat(h) tro(i)pae(h.)um,(g.) (:)\\r\\nim(h_)pe(g)tret(f) si(g.)bi(f.) (,) ve(fe)ni(d)am(e) re(f)a(e.)tus(d.) (,)\\r\\nat(f_)que(e) sa(f)lu(gvFE)tem.(e.) (::)\\r\\n\\r\\nRed(d_)de(e) pa(f)ca(gh)tum(g.,) po(fe)pu(d)lo(e) pre(f)can(e.)ti(d.) (;)\\r\\nprin(f_)ci(e)pem(f) cae(gh)li(g.) (,) do(g)mi(f)num(h)que(i) ter(h.)rae(g.) (:)\\r\\ndo(h_)net(g) ut(f) pa(g.)cem(f.) (,) pi(fe)us(d) et(e) qui(f)e(e.)tae(d.) (,)\\r\\ntem(f_)po(e)ra(f) vi(gvFE)tae.(e.) (::)\\r\\n\\r\\nLau(d_)di(e)bus(f) mi(gh)tem(g.,) ce(fe)le(d)bre(e)mus(f) A(e.)gnum,(d.) (;)\\r\\nca(f_)sta(e) quem(f) spon(gh)sum(g.) (,) si(g)bi(f) le(h)git(i) A(h.)gnes,(g.) (:)\\r\\na(h_)stra(g) qui(f) cae(g.)li(f.) (,) mo(fe)de(d)ra(e)tur(f) at(e.)que(d.) (,)\\r\\ncun(f_)cta(e) gu(f)ber(gvFE)nat.(e.) (::)\\r\\nA(efe)men.(d.e.) (::)\\r\\n",
|
|
3032
|
+
office: "hy",
|
|
3033
|
+
mode: "4",
|
|
3034
|
+
pages: [
|
|
3035
|
+
{ page: "340", sequence: 0, extent: 1 }
|
|
3036
|
+
],
|
|
3037
|
+
},
|
|
3038
|
+
{
|
|
3039
|
+
id: "gregobase:17328",
|
|
3040
|
+
incipit: "Beate martyr, prospera",
|
|
3041
|
+
gabc: "(c4)BE(ded)\\u00e1(c)te(d) mar(fe)tyr,(fgFE) pr\\u00f3(d)spe(cd)ra(d_,)\\r\\ndi(c)em(e) tri(d)um(f)ph\\u00e1(fe)lem(d) tu(ce)um,(e.;)\\r\\nquo(d) s\\u00e1n(dh)gui(h)nis(g) mer(fvED)ces(f) ti(gf)bi(e_,)\\r\\nco(c)r\\u00f3(e)na(d) vin(e)c\\u00e9n(fe)ti(d) da(cd)tur.(d.::) \\r\\n2.() Hic(ded) t<i>e</i>() ex(c) te(d)n\\u00e9(fe)bris(fgFE) sa\\u00e9(d)cu(cd)li(d_,)\\r\\ntor(c)t\\u00f3(e)re(d) vict<i>o</i>(f) et(fe) i\\u00fa(d)di(ce)ce,(e.;)\\r\\ne(d)v\\u00e9(dh)xit(h) ad(g) c\\u00e6(fvED)lum(f) di(gf)es(e_,)\\r\\nChri(c)st\\u00f3qu<i>e</i>(e) o(d)v\\u00e1n(e)tem,(fe) r\\u00e9d(d)di(cd)dit.(d.::) \\r\\n3.() Nunc(ded) an(c)ge(d)l\\u00f3(fe)rum(fgFE) p\\u00e1r(d)ti(cd)ceps(d_,)\\r\\ncol(c)l\\u00fa(e)ces(d) in(f)s\\u00ed(fe)gni(d) sto(ce)la,(e.;)\\r\\nquam(d) te(dh)stis(h) in(g)do(fvED)m\\u00e1(f)bi(gf)lis(e_,)\\r\\nri(c)vis(e) cru(d)\\u00f3(e)ris(fe) l\\u00e1(d)ve(cd)ras.(d.::) \\r\\n4.() Ad(ded)\\u00e9(c)sto(d) nunc(fe) et(fgFE) \\u00f3b(d)se(cd)cra,(d_,)\\r\\npla(c)c\\u00e1(e)tus(d) ut(f) Chri(fe)stus(d) su(ce)is(e.;)\\r\\nin(d)cl\\u00ed(dh)net(h) au(g)rem(fvED) pr\\u00f3(f)spe(gf)ram,(e_,)\\r\\nno(c)xas(e) nec(d) om(e)nes(fe) \\u00edm(d)pu(cd)tet.(d.::) \\r\\n5.() Pau(ded)l\\u00ed(c)sper(d) huc(fe) il(fgFE)l\\u00e1(d)be(cd)re(d_,)\\r\\nChri(c)sti(e) fa(d)v\\u00f3(f)rem(fe) d\\u00e9(d)fe(ce)rens,(e.;)\\r\\nsen(d)sus(dh) gra(h)v\\u00e1t<i>i</i>(g) ut(fvED) s\\u00e9n(f)ti(gf)ant(e_,)\\r\\nle(c)v\\u00e1(e)men(d) in(e)dul(fe)g\\u00e9n(d)ti(cd)\\u00e6.(d.::) \\r\\n6.() Ho(ded)nor(c) Pa(d)tri(fe) cum(fgFE) F\\u00ed(d)li(cd)o(d_,)\\r\\net(c) Sp\\u00ed(e)ri(d)tu(f) Pa(fe)r\\u00e1(d)cli(ce)to,(e.;)\\r\\nqui(d) te(dh) co(h)r\\u00f3(g)na(fvED) p\\u00e9r(f)pe(gf)ti(e_,)\\r\\ncin(c)gunt(e) in(d) au(e)la(fe) gl\\u00f3(d)ri(cd)\\u00e6.(d.::) A(ded)men.(cd..) (::)\\r\\n",
|
|
3042
|
+
office: "hy",
|
|
3043
|
+
mode: "1",
|
|
3044
|
+
pages: [
|
|
3045
|
+
{ page: "281", sequence: 0, extent: 1 }
|
|
3046
|
+
],
|
|
3047
|
+
},
|
|
3048
|
+
{
|
|
3049
|
+
id: "gregobase:17500",
|
|
3050
|
+
incipit: "Petrus beatus",
|
|
3051
|
+
gabc: "(c4)\\r\\nPe(f)trus(e) be(d)\\u00e1(c!de)tus(e) (,)\\r\\nca(e)te(f)n\\u00e1(g)rum(fe) l\\u00e1(d)que(cd)os(d) (;)\\r\\nChris(f)to(gh) iu(h)b\\u00e9n(gh)te(dc) (,)\\r\\nru(f)pit(gh) mi(g)ra(fe)b\\u00ed(d)li(e)ter;(e) (:)\\r\\ncus(g)tos(h) o(j)v\\u00ed(j)lis(jh) (,)\\r\\net(h) doc(hi)tor(g) Ec(gf)cl\\u00e9(e)si(fg)\\u00e6,(g) (;)\\r\\npas(g)t\\u00f3r(hi)que(h) gre(gh)gis,(h) (,)\\r\\ncon(h)ser(hi)v\\u00e1(g)tor(ge) \\u00f3(f)vi(ed)um(de) (;)\\r\\nar(c)cet(d) lu(f)p\\u00f3(ef)rum(d) (,)\\r\\ntru(e)cu(f)l\\u00e9n(gh)tam(g) r\\u00e1(fe)bi(de)em.(e) (::)",
|
|
3052
|
+
office: "hy",
|
|
3053
|
+
mode: "4",
|
|
3054
|
+
pages: [
|
|
3055
|
+
{ page: "351", sequence: 0, extent: 0 }
|
|
3056
|
+
],
|
|
3057
|
+
},
|
|
3058
|
+
{
|
|
3059
|
+
id: "gregobase:17810",
|
|
3060
|
+
incipit: "Venite servi (Pentecostes)",
|
|
3061
|
+
gabc: "name: ;Venite, servi, Pentecost\\r\\nuser-notes: ;\\r\\ncommentary: ;\\r\\nannotation: ;\\r\\ncentering-scheme: latin;\\r\\n%fontsize: 12;\\r\\n%spacing: vichi;\\r\\n%font: OFLSortsMillGoudy;\\r\\n%width: 4.5;\\r\\n%height: 11;\\r\\n%%\\r\\n(c4)VE(d)n\\u00ed(d)te,(df) ser(d)vi,(dc) s\\u00fap(f)pli(gh)ces,(h) (,)\\r\\net(hg) men(j)t<i>e</i>() et(jk) o(j)r<i>e</i>() ex(ji)t\\u00f3l(h)li(gh)te(h) (;)\\r\\ndi(d)gnis(h) be(hih)\\u00e1(g)tum(ge) l\\u00e1u(f)di(ed)bus(de) (,)\\r\\nno(c)men(ed) De(g)i(ghg) cum(fe) c\\u00e1n(d)ti(cd)co.(d) (::)\\r\\n2. Hoc(d) nam(d)que(df) tem(d)pus(dc) il(f)lud(gh) est,(h) (,)\\r\\nquo(hg) s\\u00e6(j)cu(jk)l\\u00f3(j)rum(ji) i\\u00fa(h)di(gh)cem(h) (;)\\r\\nin(d)i\\u00fa(h)sta(hih) mor(g)ti(ge) tr\\u00e1(f)di(ed)dit(de) (,)\\r\\nmor(c)t\\u00e1(ed)li(g)um(ghg) sen(fe)t\\u00e9n(d)ti(cd)a.(d) (::)\\r\\n3. Et(d) nos(d) a(df)m\\u00f3(d)re(dc) d\\u00e9(f)bi(gh)to,(h) (,)\\r\\nti(hg)m\\u00f3(j)re(jk) iu(j)sto(ji) s\\u00fab(h)di(gh)ti,(h) (;)\\r\\nad(d)v\\u00e9r(h)sus(hih) om(g)nes(ge) \\u00edm(f)pe(ed)tus(de) (,)\\r\\nquos(c) s\\u00e6(ed)vus(g) ho(ghg)stis(fe) \\u00edn(d)cu(cd)tit,(d) (::)\\r\\n4. U(d)num(d) ro(df)g\\u00e9(d)mus(dc) et(f) Pa(gh)trem(h) (,)\\r\\nDe(hg)um(j) re(jk)g\\u00e9m(j)que(ji) F\\u00ed(h)li(gh)um(h) (;)\\r\\nsi(d)m\\u00fal(h)que(hih) San(g)ctum(ge) Sp\\u00ed(f)ri(ed)tum,(de) (,)\\r\\nin(c) Tri(ed)ni(g)t\\u00e1(ghg)te(fe) D\\u00f3(d)mi(cd)num.(d) (::) A(ded)men.(cd) (::)\\r\\n",
|
|
3062
|
+
office: "hy",
|
|
3063
|
+
mode: "1",
|
|
3064
|
+
pages: [
|
|
3065
|
+
{ page: "103", sequence: 1, extent: 1 }
|
|
3066
|
+
],
|
|
3067
|
+
},
|
|
3068
|
+
{
|
|
3069
|
+
id: "gregobase:17811",
|
|
3070
|
+
incipit: "Haec hora (Pentecostes)",
|
|
3071
|
+
gabc: "(c4)H\\u00c6C(d) ho(d)ra,(df) qu\\u00e6(d) res(dc)pl\\u00e9n(f)du(gh)it(h) (,)\\r\\ncru(hg)c\\u00eds(j)que(jk) sol(j)vit(ji) n\\u00fa(h)bi(gh)la,(h) (;)\\r\\nmun(d)dum(h) te(hih)n\\u00e9(g)bris(ge) \\u00e9(f)xu(ed)ens,(de) (,)\\r\\nred(c)dens(ed) se(g)r\\u00e9(ghg)na(fe) l\\u00fa(d)mi(cd)na.(d) (::)\\r\\n2. H\\u00e6c(d) ho(d)ra,(df) qua(d) re(dc)s\\u00fa(f)sci(gh)tans(h) (,)\\r\\nIe(hg)sus(j) se(jk)p\\u00fal(j)cris(ji) c\\u00f3r(h)po(gh)ra,(h) (;)\\r\\npro(d)d\\u00ed(h)re(hih) mor(g)tis(ge) l\\u00ed(f)be(ed)ra(de) (,)\\r\\nius(c)sit(ed) re(g)f\\u00fa(ghg)so(fe) sp\\u00ed(d)ri(cd)tu.(d) (::)\\r\\n3. No(d)v\\u00e1(d)ta(df) s\\u00e6(d)cla(dc) cr\\u00e9(f)di(gh)mus(h) (,)\\r\\nmor(hg)tis(j) so(jk)l\\u00fa(j)tis(ji) l\\u00e9(h)gi(gh)bus,(h) (;)\\r\\nvi(d)t\\u00e6(h) be(hih)\\u00e1(g)t\\u00e6(ge) m\\u00fa(f)ne(ed)ra(de) (,)\\r\\ncur(c)sum(ed) pe(g)r\\u00e9n(ghg)nem(fe) c\\u00far(d)re(cd)re.(d) (::)\\r\\n4. Ie(d)su,(d) ti(df)bi(d) sit(dc) gl\\u00f3(f)ri(gh)a,(h) (,)\\r\\nqui(hg) mor(j)te(jk) vi(j)cta(ji) pr<sp>'ae</sp>(h)ni(gh)tes,(h) (;)\\r\\ncum(d) Pa(h)tr<i>e</i>() et(hih) al(g)mo(ge) Sp\\u00ed(f)ri(ed)tu,(de) (,)\\r\\nin(c) sem(ed)pi(g)t\\u00e9r(ghg)na(fe) s<sp>'ae</sp>(d)cu(cd)la.(d) (::) A(ded)men.(cd) (::)",
|
|
3072
|
+
office: "hy",
|
|
3073
|
+
mode: "1",
|
|
3074
|
+
pages: [
|
|
3075
|
+
{ page: "104", sequence: 1, extent: 1 }
|
|
3076
|
+
],
|
|
3077
|
+
},
|
|
3078
|
+
{
|
|
3079
|
+
id: "gregobase:17812",
|
|
3080
|
+
incipit: "Jam Christus astra",
|
|
3081
|
+
gabc: "(c4)IAM(d) Chri(d)stus,(df) astr<i>a</i>(d) a(dc)sc\\u00e9n(f)de(gh)rat,(h) (,)\\r\\nre(hg)gr\\u00e9(j)ssus(jk) un(j)de(ji) v\\u00e9(h)ne(gh)rat,(h) (;)\\r\\npro(d)m\\u00ed(h)ssa(hih) Pa(g)tris(ge) m\\u00fa(f)ne(ed)ra,(de) (,)\\r\\nSanc(c)tum(ed) da(g)t\\u00fa(ghg)rus(fe) Sp\\u00ed(d)ri(cd)tum.(d) (::)",
|
|
3082
|
+
office: "hy",
|
|
3083
|
+
mode: null,
|
|
3084
|
+
pages: [
|
|
3085
|
+
{ page: "101", sequence: 1, extent: 2 }
|
|
3086
|
+
],
|
|
3087
|
+
},
|
|
3088
|
+
{
|
|
3089
|
+
id: "gregobase:17817",
|
|
3090
|
+
incipit: "O vir beate",
|
|
3091
|
+
gabc: "(c4) O(e) vir(e) be(ed)\\u00e1t<i>e,</i>(g) A(h)p\\u00f3s(j)to(j)lis(i_h_) (,) co(i)mes(j) la(i)bo(h)rum(g) d\\u00e9(h!iwji)di(hg)te(g.) (;) ad(gh)i\\u00fa(j)tor(i) at(h)que(g) m\\u00fa(i)ne(g)ris,(h_g_) (,) lau(hi)des(g) pre(h)c\\u00e9s(gf)que(d) s\\u00fa(f!gwhg)sci(fe)pe.(e.) (::)",
|
|
3092
|
+
office: "hy",
|
|
3093
|
+
mode: "3",
|
|
3094
|
+
pages: [
|
|
3095
|
+
{ page: "365", sequence: 2, extent: 2 }
|
|
3096
|
+
],
|
|
3097
|
+
},
|
|
3098
|
+
{
|
|
3099
|
+
id: "gregobase:17919",
|
|
3100
|
+
incipit: "Aeterna Christi munera",
|
|
3101
|
+
gabc: "initial-style: 0;\\r\\nannotation: H.VIII;\\r\\n%%\\r\\n(c3)\\u00c6(e)t\\u00e9r(e)na(fg) Chri(g)sti(fe) m\\u00fa(fgwhg)ne(fe)ra(e.) (;)\\r\\net(e) m\\u00e1r(g)ty(h)rum(i) vi(iji)ct\\u00f3(g)ri(hi)as,(i.) (:)\\r\\nlau(g)des(i) fe(ij)r\\u00e9n(j)tes(i) d\\u00e9(hg)bi(fe)tas,(fgwhg.) (;)\\r\\nl\\u00e6(e)tis(fh) ca(h)n\\u00e1(hg)mus(fe) m\\u00e9n(fgwhg)ti(fe)bus.(e.) \\r\\n2.(::) Ec(e)cle(e)si(fg)\\u00e1(g)rum(fe) pr\\u00edn(fgwhg)ci(fe)pes,(e.) (;)\\r\\nbel(e)li(g) tri(h)um(i)ph\\u00e1(iji)les(g) du(hi)ces,(i.) (:)\\r\\nc\\u00e6(g)l\\u00e9(i)stis(ij) au(j)l\\u00e6(i) m\\u00ed(hg)li(fe)tes(fgwhg.) (;)\\r\\net(e) ve(fh)ra(h) mun(hg)di(fe) l\\u00fa(fgwhg)mi(fe)na.(e.) \\r\\n3.(::) Ter(e)r\\u00f3(e)re(fg) vi(g)cto(fe) s\\u01fd(fgwhg)cu(fe)li(e.) (;)\\r\\np\\u0153(e)n\\u00eds(g)que(h) spre(i)tis(iji) c\\u00f3r(g)po(hi)ris,(i.) (:)\\r\\nmor(g)tis(i) sa(ij)cr\\u00e6(j) com(i)p\\u00e9n(hg)di(fe)o(fgwhg.) (;)\\r\\nlu(e)cem(fh) be(h)\\u00e1(hg)tam(fe) p\\u00f3s(fgwhg)si(fe)dent.(e.) \\r\\n4.(::) Tor(e)t\\u00f3(e)ris(fg) in(g)s\\u00e1(fe)ni(fgwhg) ma(fe)nu(e.) (;)\\r\\nsan(e)guis(g) sa(h)cr\\u00e1(i)tus(iji) f\\u00fan(g)di(hi)tur,(i.) (:)\\r\\nsed(g) p\\u00e9r(i)ma(ij)nent(j) im(i)m\\u00f3(hg)bi(fe)les(fgwhg.) (;)\\r\\nvi(e)t\\u00e6(fh) pe(h)r\\u00e9n(hg)nis(fe) gr\\u00e1(fgwhg)ti(fe)a.(e.) \\r\\n5.(::) De(e)v\\u00f3(e)ta(fg) san(g)ct\\u00f3(fe)rum(fgwhg) fi(fe)des,(e.) (;)\\r\\nin(e)v\\u00ed(g)cta(h) spes(i) cre(iji)d\\u00e9n(g)ti(hi)um,(i.) (:)\\r\\nper(g)f\\u00e9(i)cta(ij) Chri(j)sti(i) c\\u00e1(hg)ri(fe)tas(fgwhg.) (;)\\r\\nmun(e)di(fh) tri(h)\\u00fam(hg)phat(fe) pr\\u00edn(fgwhg)ci(fe)pem.(e.) \\r\\n6.(::) In(e) his(e) pa(fg)t\\u00e9r(g)na(fe) gl\\u00f3(fgwhg)ri(fe)a,(e.) (;)\\r\\nin(e) his(g) vo(h)l\\u00fan(i)tas(iji) Sp\\u00ed(g)ri(hi)tus,(i.) (:)\\r\\nex(g)s\\u00fal(i)tat(ij) in(j) his(i) F\\u00ed(hg)li(fe)us,(fgwhg.) (;)\\r\\nc\\u00e6(e)lum(fh) re(h)pl\\u00e9(hg)tur(fe) g\\u00e1u(fgwhg)di(fe)o.(e.) \\r\\n7.(::) Te(e) nunc,(e) Re(fg)d\\u00e9m(g)ptor,(fe) qu\\u01fd(fgwhg)su(fe)mus,(e.) (;)\\r\\nut(e) m\\u00e1r(g)ty(h)rum(i) con(iji)s\\u00f3r(g)ti(hi)o(i.) (:)\\r\\niun(g)gas(i) pre(ij)c\\u00e1n(j)tes(i) s\\u00e9r(hg)vu(fe)los(fgwhg.) (;)\\r\\nin(e) sem(fh)pi(h)t\\u00e9r(hg)na(fe) s\\u01fd(fgwhg)cu(fe)la.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
3102
|
+
office: "hy",
|
|
3103
|
+
mode: "8",
|
|
3104
|
+
pages: [
|
|
3105
|
+
{ page: "275", sequence: 0, extent: 1 }
|
|
3106
|
+
],
|
|
3107
|
+
},
|
|
3108
|
+
{
|
|
3109
|
+
id: "gregobase:17920",
|
|
3110
|
+
incipit: "Christe flos convallium",
|
|
3111
|
+
gabc: "(c4)O(ded) Chri(c)ste,(d) flos(fe) con(fgFE)v\\u00e1l(d)li(cd)um,(d_,)\\r\\nte(c) l\\u00e1u(e)di(d)bus(f) ex(fe)t\\u00f3l(d)li(ce)mus,(e.;)\\r\\nquod(d) hanc(dh) or(h)n\\u00e1(g)sti(fvED) v\\u00edr(f)gi(gf)nem(e_,)\\r\\npal(c)mis(e) quo(d)que(e) mar(fe)t\\u00fd(d)ri(cd)i.(d.::) \\r\\n2.() H\\u00e6c(ded) pru(c)dens,(d) for(fe)tis,(fgFE) s\\u00e1(d)pi(cd)ens,(d_,)\\r\\nfi(c)dem(e) pro(d)f\\u00e9s(f)sa,(fe) l\\u00ed(d)be(ce)re,(e.;)\\r\\npro(d) te(dh) di(h)ra(g) sup(fvED)pl\\u00ed(f)ci(gf)a(e_,)\\r\\nex(c)c\\u00e9(e)pit(d) im(e)per(fe)t\\u00e9r(d)ri(cd)ta.(d.::) \\r\\n3.() Sic(ded) spre(c)to(d) mun(fe)di(fgFE) pr\\u00edn(d)ci(cd)pe,(d_,)\\r\\ntu(c)o(e) di(d)t\\u00e1(f)ta(fe) m\\u00fa(d)ne(ce)re,(e.;)\\r\\ncru(d)\\u00e9n(dh)to(h) par(g)ta(fvED) proe(f)li(gf)o,(e_,)\\r\\n\\u00e6(c)t\\u00e9r(e)na(d) tu(e)lit(fe) pr\\u01fd(d)mi(cd)a.(d.::) \\r\\n4.() Hu(ded)ius,(c) Re(d)d\\u00e9m(fe)ptor,(fgFE) m\\u00e9(d)ri(cd)tis(d_,)\\r\\nnos(c) pi(e)us(d) ad(f)de(fe) s\\u00f3(d)ci(ce)os,(e.;)\\r\\nut,(d) men(dh)te(h) pu(g)ra,(fvED) fr\\u00fa(f)cti(gf)bus(e_,)\\r\\ntu(c)i(e) fru(d)\\u00e1(e)mur(fe) s\\u00e1n(d)gui(cd)nis.(d.::) \\r\\n5.() Ie(ded)su,(c) ti(d)bi(fe) sit(fgFE) gl\\u00f3(d)ri(cd)a,(d_,)\\r\\nqui(c) na(e)tus(d) es(f) de(fe) V\\u00edr(d)gi(ce)ne,(e.;)\\r\\ncum(d) Pa(dh) tr<i>e</i>() et(h) al(g)mo(fvED) Sp\\u00ed(f)ri(gf)tu,(e_,)\\r\\nin(c) sem(e)pi(d)t\\u00e9r(e)na(fe) s\\u01fd(d)cu(cd)la.(d.::)\\r\\nA(ded)men.(cd..) (::)\\r\\n",
|
|
3112
|
+
office: "hy",
|
|
3113
|
+
mode: "1",
|
|
3114
|
+
pages: [
|
|
3115
|
+
{ page: "282", sequence: 0, extent: 0 }
|
|
3116
|
+
],
|
|
3117
|
+
},
|
|
3118
|
+
{
|
|
3119
|
+
id: "gregobase:17929",
|
|
3120
|
+
incipit: "Aeterne rerum... qui mare",
|
|
3121
|
+
gabc: "(c4)\\u00c6(ed)t\\u00e9r(g)ne(hj) re(j)rum(ij) c\\u00f3n(k)di(j)tor,(ih__) (,)\\r\\nqui(g) ma(hj)re,(j) so(i)lum,(ji) \\u01fd(h)the(gi)ra(i.) (;)\\r\\ngu(i)b\\u00e9r(g)nas,(hi) iu(i)stus(hj) r\\u00e9d(g)di(gf)tor(e'_) (,)\\r\\ncun(f)ctis(g) se(f)c\\u00fan(g)dum(ghg) \\u00f3(fe)pe(de)ra,(e.) \\r\\n2.(::) Su(ed)p\\u00e9r(g)bum(hj) qui(j) iam(ij) sp\\u00ed(k)ri(j)tum(ih__) (,)\\r\\ne(g)i\\u00fas(hj)que(j) cun(i)ctos(ji) c\\u00f3m(h)pli(gi)ces(i.) (;)\\r\\ncon(i)d\\u00e9m(g)nans(hi) in(i) in(hj)t\\u00e9r(g)i(gf)tum,(e'_) (,)\\r\\nve(f)ros(g) fir(f)m\\u00e1(g)sti(ghg) s\\u00fap(fe)pli(de)ces,(e.) \\r\\n3.(::) Pre(ed)c\\u00e1(g)mur(hj) te(j) fi(ij)d\\u00e9n(k)ti(j)us,(ih__) (,)\\r\\nhos(g) de(hj)fen(j)s\\u00f3(i)res(ji) d\\u00ed(h)ri(gi)ge,(i.) (;)\\r\\nno(i)bis(g) per(hi) quos(i) pro(hj)p\\u00ed(g)ti(gf)us(e'_) (,)\\r\\nsa(f)l\\u00fa(g)tis(f) do(g)na(ghg) p\\u00f3r(fe)ri(de)ge.(e.) \\r\\n4.(::) Nos(ed) con(g)so(hj)l\\u00e1n(j)do(ij) v\\u00ed(k)si(j)tent,(ih__) (,)\\r\\npur(g)gent,(hj) in(j)fl\\u00e1m(i)ment,(ji) d\\u00f3(h)ce(gi)ant,(i.) (;)\\r\\nad(i) bo(g)na(hi) sem(i)per(hj) \\u00edn(g)ci(gf)tent,(e'_) (,)\\r\\nvim(f) d\\u01fd(g)mo(f)num(g) co(ghg)\\u00e9r(fe)ce(de)ant.(e.) \\r\\n5.(::) O(ed) an(g)ge(hj)l\\u00f3(j)rum(ij) gl\\u00f3(k)ri(j)a,(ih__) (,)\\r\\nse(g)c\\u00fa(hj)ro(j) gres(i)su(ji) p\\u00e9r(h)ge(gi)re(i.) (;)\\r\\nfac(i) ho(g)rum(hi) nos(i) cu(hj)st\\u00f3(g)di(gf)a,(e'_) (,)\\r\\nut(f) te(g) pos(f)s\\u00ed(g)mus(ghg) c\\u00e9r(fe)ne(de)re.(e.) \\r\\n6.(::) Sint,(ed) an(g)ge(hj)l\\u00f3(j)rum(ij) D\\u00f3(k)mi(j)ne,(ih__) (,)\\r\\nho(g)n\\u00f3(hj)ris(j) ti(i)bi(ji) c\\u00e1n(h)ti(gi)ca,(i.) (;)\\r\\nqui(i) mi(g)ro(hi) pr\\u00e6(i)bes(hj) \\u00f3r(g)di(gf)ne(e'_) (,)\\r\\nil(f)lis(g) no(f)b\\u00eds(g)que(ghg) c\\u01fd(fe)li(de)ca.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
3122
|
+
office: "hy",
|
|
3123
|
+
mode: "3",
|
|
3124
|
+
pages: [
|
|
3125
|
+
{ page: "448", sequence: 0, extent: 1 }
|
|
3126
|
+
],
|
|
3127
|
+
},
|
|
3128
|
+
{
|
|
3129
|
+
id: "gregobase:17930",
|
|
3130
|
+
incipit: "Angelum pacis",
|
|
3131
|
+
gabc: "(c4)AN(h_)ge(g)lum(h) pa(gf)cis(e.) (,) M\\u00ed(e)cha(g)el(e) ad(f) i(e.)stam,(d.) (;)\\r\\nChri(d)ste,(d) de(dh)m\\u00edt(h)ti(h_g_j_) ro(i)gi(h)t\\u00e1(g)mus(h) au(gf)lam,(e.) (:)\\r\\ncun(f_)cta(e) quo(g) cre(ghGEf)bro(d.) (,) ve(e)ni(g)\\u00e9n(e)te(f) cre(ed)scant(c'_) (,)\\r\\npr\\u00f3(f_)spe(e)ra(g) no(fe)bis.(d.) \\r\\n2.(::) An(h_)ge(g)lus(h) for(gf)tis(e.) (,) G\\u00e1(e)bri(g)el,(e) ut(f) ho(e.)stem(d.) (;)\\r\\npel(d)lat(d) an(dh)t\\u00ed(h)quum,(h_g_j_) v\\u00f3(i)li(h)tet(g) su(h)p\\u00e9r(gf)ne,(e.) (:)\\r\\ns\\u01fd(f_)pi(e)us(g) tem(ghGEf)plum(d.) (,) c\\u00fa(e)pi(g)ens(e) fa(f)v\\u00e9n(ed)do(c'_) (,)\\r\\nv\\u00ed(f_)se(e)re(g) no(fe)strum.(d.) \\r\\n3.(::) An(h_)ge(g)lum(h) no(gf)bis(e.) (,) m\\u00e9(e)di(g)cum(e) sa(f)l\\u00fa(e.)tis(d.) (;)\\r\\nmit(d)te(d) de(dh) c\\u00e6(h)lis(h_g_j_) R\\u00e1(i)pha(h)el,(g) ut(h) om(gf)nes(e.) (:)\\r\\nsa(f_)net(e) \\u00e6(g)gr\\u00f3(ghGEf)tos(d.) (,) pa(e)ri(g)t\\u00e9r(e)que(f) no(ed)stros(c'_) (,)\\r\\nd\\u00ed(f_)ri(e)gat(g) a(fe)ctus.(d.) \\r\\n4.(::) Chri(h_)ste,(g) san(h)ct\\u00f3(gf)rum(e.) (,) de(e)cus(g) an(e)ge(f)l\\u00f3(e.)rum,(d.) (;)\\r\\nad(d)sit(d) il(dh)l\\u00f3(h)rum(h_g_j_) cho(i)rus(h) us(g)que(h) no(gf)bis,(e.) (:)\\r\\nut(f_) si(e)mul(g) tan(ghGEf)dem(d.) (,) Tr\\u00ed(e)a(g)di(e) per(f) \\u00e6(ed)vum(c'_) (,)\\r\\nc\\u00e1r(f_)mi(e)na(g) de(fe)mus.(d.) (::)\\r\\nA(ded)men.(cd..) (::)\\r\\n",
|
|
3132
|
+
office: "hy",
|
|
3133
|
+
mode: "1",
|
|
3134
|
+
pages: [
|
|
3135
|
+
{ page: "444", sequence: 1, extent: 2 }
|
|
3136
|
+
],
|
|
3137
|
+
},
|
|
3138
|
+
{
|
|
3139
|
+
id: "gregobase:17931",
|
|
3140
|
+
incipit: "Barnabae clarum",
|
|
3141
|
+
gabc: "(c4)B\\u00e1r(ghg)na(f)b\\u00e6(g) cla(gh)rum(gf__) (,) c\\u00f3(h)li(h)mus(h/iwjh) tro(ih)p\\u01fd(g.)um,(g.) (;)\\r\\nquo(j_) mi(i)cat(k) cel(ji)sus(i_j) (,) m\\u00e9(h)ri(g)ta(h) co(i)r\\u00f3(h.)na,(g.) (:)\\r\\nmul(gh)ta(i) pro(h) Chri(ghg)sti(e_f) (,) ve(g)he(h)m\\u00e9n(g)ter(f) us(ef)que(d.) (,)\\r\\npas(ghg)sus(f) a(g)m\\u00f3(gh)re.(g.) \\r\\n2.(::) Ab(ghg)di(f)cans(g) a(gh)gro,(gf__) (,) ge(h)ne(h)r\\u00f3(h/iwjh)sus(ih) ur(g.)get(g.) (;)\\r\\nut,(j_) fi(i)de(k) vi(ji)vax(i_j) (,) o(h)pe(g) ca(h)ri(i)t\\u00e1(h.)tis,(g.) (:)\\r\\nn\\u00f3(gh)mi(i)nis(h) ple(ghg)bes(e_f) (,) no(g)va(h) chri(g)sti(f)\\u00e1(ef)ni(d.) (,)\\r\\nl\\u00e6(ghg)ta(f) vi(g)r\\u00e9(gh)scat.(g.) \\r\\n3.(::) Quam(ghg) li(f)bens(g) no(gh)scit,(gf__) (,) pe(h)tit(h) at(h/iwjh)que(ih) de(g.)fert(g.) (;)\\r\\nm\\u00e1(j_)xi(i)mum(k) Pau(ji)lum,(i_j) (,) s\\u00f3(h)ci(g)o(h) la(i)b\\u00f3(h.)re(g.) (:)\\r\\nSp\\u00ed(gh)ri(i)tus(h) nu(ghg)tu(e_f) (,) p\\u00e9r(g)a(h)grans(g) fi(f)d\\u00e9(ef)lis(d.) (,)\\r\\nl\\u00ed(ghg)to(f)ra(g) mul(gh)ta!(g.) \\r\\n4.(::) Nil(ghg) si(f)bi(g) par(gh)cit(gf__) (,) cu(h)pi(h)d\\u00fas(h/iwjh)que(ih) Chri(g.)sto(g.) (;)\\r\\npl\\u00fa(j_)ri(i)mos(k) af(ji)fert,(i_j) (,) bo(h)nus(g) at(h)que(i) pa(h.)scit,(g.) (:)\\r\\ndo(gh)nec(i) ef(h)f\\u00fa(ghg)so(e_f) (,) r\\u00fa(g)ti(h)la(g) pro(f)b\\u00e1(ef)tur(d.) (,)\\r\\ns\\u00e1n(ghg)gui(f)ne(g) pal(gh)ma.(g.) \\r\\n5.(::) Da,(ghg) De(f)us,(g) tan(gh)to(gf__) (,) f\\u00e1(h)mu(h)lo(h/iwjh) ro(ih)g\\u00e1n(g.)te,(g.) (;)\\r\\nnos(j_) se(i)qui(k) for(ji)tes(i_j) (,) i(h)ter(g) ad(h) sa(i)l\\u00fa(h.)tem,(g.) (:)\\r\\nut(gh) dom<i>o</i>(i) \\u00e6(h)t\\u00e9r(ghg)na(e_f) (,) ti(g)bi(h) con(g)ci(f)n\\u00e1(ef)mus(d.) (,)\\r\\nc\\u00e1n(ghg)ti(f)ca(g) lau(gh)dis.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
3142
|
+
office: "hy",
|
|
3143
|
+
mode: "8",
|
|
3144
|
+
pages: [
|
|
3145
|
+
{ page: "380", sequence: 0, extent: 1 }
|
|
3146
|
+
],
|
|
3147
|
+
},
|
|
3148
|
+
{
|
|
3149
|
+
id: "gregobase:17932",
|
|
3150
|
+
incipit: "Christe cunctorum dominator^^",
|
|
3151
|
+
gabc: "(c4)Chri(ghg)ste,(f) cun(g)ct\\u00f3(gh)rum(gf__) (,) do(h)mi(h)n\\u00e1(hiwjh)tor(ih) al(g.)me,(g.) (;)\\r\\nplebs(j_) ti(i)bi(k) sup(ji)plex(i_j) (,) r\\u00e9(h)so(g)net(h) in(i) au(h.)la,(g.) (:)\\r\\n\\u00e1n(gh)nu(i)o(h) cu(ghg)ius(e_f) (,) r\\u00e9(g)de(h)unt(g) co(f)l\\u00e9n(ef)da(d.) (,)\\r\\nt\\u00e9m(ghg)po(f)re(g) fe(gh)sta.(g.) \\r\\n2.(::) Hic(ghg) lo(f)cus(g) nem(gh)pe(gf__) (,) vo(h)ci(h)t\\u00e1(hiwjh)tur(ih) au(g.)la(g.) (;)\\r\\nre(j_)gis(i) im(k)m\\u00e9n(ji)si(i_j) (,) ni(h)ti(g)d\\u00ed(h)que(i) c\\u00e6(h.)li(g.) (:)\\r\\npor(gh)ta,(i) qu\\u00e6(h) vi(ghg)t\\u00e6(e_f) (,) p\\u00e1(g)tri(h)am(g) pe(f)t\\u00e9n(ef)tes(d.) (,)\\r\\n\\u00e1c(ghg)ci(f)pit(g) om(gh)nes.(g.) \\r\\n3.(::) H\\u00e6c(ghg) tu(f)am(g) ple(gh)bem(gf__) (,) sa(h)cra(h) co(hiwjh)git(ih) \\u00e6(g.)des,(g.) (;)\\r\\nh\\u00e6c(j_) sa(i)cra(k)m\\u00e9n(ji)tis(i_j) (,) pi(h)a(g) di(h)tat(i) us(h.)que,(g.) (:)\\r\\nc\\u01fd(gh)li(i)cis(h) e(ghg)scis(e_f) (,) a(g)lit(h) in(g) pe(f)r\\u00e9n(ef)nis(d.) (,)\\r\\nm\\u00fa(ghg)ne(f)ra(g) vi(gh)t\\u00e6.(g.) \\r\\n4.(::) Qu\\u01fd(ghg)su(f)mus(g) er(gh)go,(gf__) (,) De(h)us,(h) ut(hiwjh) se(ih)r\\u00e9(g.)no(g.) (;)\\r\\n\\u00e1d(j_)nu(i)as(k) vul(ji)tu(i_j) (,) f\\u00e1(h)mu(g)los(h) gu(i)b\\u00e9r(h.)nans,(g.) (:)\\r\\nqui(gh) tu(i)i(h) sum(ghg)mo(e_f) (,) c\\u00e9(g)le(h)brant(g) a(f)m\\u00f3(ef)re(d.) (,)\\r\\ng\\u00e1u(ghg)di(f)a(g) tem(gh)pli.(g.) \\r\\n5.(::) \\u00c6(ghg)qua(f) laus(g) sum(gh)mum(gf__) (,) c\\u00e9(h)le(h)bret(hiwjh) Pa(ih)r\\u00e9n(g.)tem(g.) (;)\\r\\nte(j_)que,(i) Sal(k)v\\u00e1(ji)tor,(i_j) (,) pi(h)e(g) rex,(h) per(i) \\u00e6(h.)vum;(g.) (:)\\r\\nSp\\u00ed(gh)ri(i)tus(h) San(ghg)cti(e_f) (,) r\\u00e9(g)so(h)net(g) per(f) om(ef)nem(d.) (,)\\r\\ngl\\u00f3(ghg)ri(f)a(g) mun(gh)dum.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
3152
|
+
office: "hy",
|
|
3153
|
+
mode: "8",
|
|
3154
|
+
pages: [
|
|
3155
|
+
{ page: "249", sequence: 0, extent: 1 }
|
|
3156
|
+
],
|
|
3157
|
+
},
|
|
3158
|
+
{
|
|
3159
|
+
id: "gregobase:17941",
|
|
3160
|
+
incipit: "Dum tuas",
|
|
3161
|
+
gabc: "(c4)DUM(e) tu(d)as(e) fe(gh)sto, (gvFE'_,) pa(d)ter(efg) o(fe) co(de)l\\u00e9(e.)nde,(e.) (;) c\\u00e1(e)nti(gh)co(h) lau(gh)des(h'_) (,) ha(j)bet(hg) h\\u00e6c(h) co(gvFE)r\\u00f3(de)na, (e.) (:) vo(e)cis(e) ac(ed) men(f)tis(d_c_), (,) I\\u00f3(d)a(ed)chim, (efe) be(fd)n\\u00ed(fgh)gne(h'_)(,) \\u00e1c(g)ci(fe)pe(de) mu(e.)nus.(e.) (::)",
|
|
3162
|
+
office: "hy",
|
|
3163
|
+
mode: "4",
|
|
3164
|
+
pages: [
|
|
3165
|
+
{ page: "402", sequence: 0, extent: 1 }
|
|
3166
|
+
],
|
|
3167
|
+
},
|
|
3168
|
+
{
|
|
3169
|
+
id: "gregobase:17944",
|
|
3170
|
+
incipit: "Vir celse forma fulgida",
|
|
3171
|
+
gabc: "annotation: Hymnus;\\r\\nannotation: IV;\\r\\n%%\\r\\n(c4)Vir(f) cel(fe)se,(d) for(e)ma(g) ful(gh)gi(f)da(e) (,) vir(g)tu(h)tis,(g) hym(hiwji)num(g) su(g)sci(f)pe,(h) (;) qui(h) iu(h)re(g) dum(hiwji) te(gf) pr\\u00e6(h)di(h)cat,(dewfe) (,) De(e)i(c) ca(e)nit(gfh) ma(gf)gna(g)li(fe)a.(f) (::) (z)\\r\\n\\r\\n2. Qui(f) sem(fe)pi(d)ter(e)nus(g) Pon(gh)ti(f)fex(e) (,) stir(g)pem(h) De(g)o(hiwji) mor(g)ta(g)li(f)um(h) (;) re(h)vin(h)xit,(g) at(hiwji)que(gf) red(h)di(h)dit(dewfe) (,) pa(e)ci(c) no(e)vo(gfh) nos(gf) f\\u0153(g)de(fe)re.(f) (::) (z)\\r\\n\\r\\n3. Te(f) fe(fe)cit(d) ip(e)se(g) pro(gh)vi(f)dus(e) (,) su(g)is(h) mi(g)ni(hiwji)strum(g) mu(g)ne(f)ris,(h) (;) Pa(h)tri(h) da(g)tu(hiwji)rum(gf) glo(h)ri(h)am(dewfe) (,) e(e)ius(c)que(e) vi(gfh)tam(gf) ple(g)bi(fe)bus.(f) (::) (Z)\\r\\n\\r\\n[alt:Pro papa:] 4.Tu(f) Pe(fe)tr<i>i</i> o(d)vi(e)le(g) c\\u00e6(gh)li(f)tus(e) (,) sum(g)ptis(h) re(g)ge(hiwji)bas(g) cla(g)vi(f)bus,(h)(;) gre(h)gem(h)que(g) ver(hiwji)bo(gf) gra(h)ti(h)\\u00e6,(dewfe) (,) pu(e)ris(c) fo(e)ve(gfh)as(gf) a(g)cti(fe)bus.(f) (::) (z)\\r\\n\\r\\n\\r\\n[alt:Pro episcopo:] 4. Vir(f)tu(fe)te(d) fac(e)tus(g) di(gh)ti(f)or(e) (,) te(g) con(h)se(g)cran(hiwji)tis(g) Spi(g)ri(f)tus,(h) (;) pr\\u00e6(h)sul,(h) sa(g)lu(hiwji)tis(gf) pin(h)gui(h)a(dewfe) (,) tu(e) tra(c)di(e)dis(gfh)ti(gf) pa(g)bu(fe)la(f) (::) (z)\\r\\n\\r\\n\\r\\n[alt:Pro presbytero:] 4. Re(f)ga(fe)lis(d) hu(e)ius(g) cul(gh)mi(f)nis(e) (,) a(g)dep(h)tus(g) al(hiwji)ti(g)tu(g)di(f)nem,(h) (;) ver(h)bo(h) fu(g)i(hiwji)st<i>i</i> et(gf) mo(h)ri(h)bus(dewfe) (,) doc(e)tor,(c) sa(e)cer(gfh)dos,(gf) hos(g)ti(fe)a.(f) (::) (z)\\r\\n\\r\\n5. Lo(f)ca(fe)tus(d) in(e) c\\u00e6(g)le(gh)sti(f)bus,(e) (,) san(g)ct\\u00e6(h) me(g)men(hiwji)t<i>o</i> Ec(g)cle(g)si(f)\\u00e6,(h) (;) o(h)ves(h) ut(g) om(hiwji)nes(gf) pas(h)cu(h)a(dewfe) (,) Chri(e)sti(c) pe(e)tant(gfh) fe(gf)li(g)ci(fe)a.(f) (::) (z)\\r\\n\\r\\n6. Sit(f) Tri(fe)ni(d)ta(e)ti(g) glo(gh)ri(f)a,(e) (,) qu\\u00e6(g) san(h)ct<i>i</i> ho(g)no(hiwji)ris(g) mu(g)ni(f)a(h) (;) ti(h)bi(h) mi(g)ni(hiwji)stro(gf) se(h)du(h)lo(dewfe) (,) di(e)gnis(c) co(e)ro(gfh)nas(gf) gau(g)di(fe)is.(f) (::) \\r\\n A(efe)men.(de) (::) \\r\\n\\r\\n",
|
|
3172
|
+
office: "hy",
|
|
3173
|
+
mode: "4",
|
|
3174
|
+
pages: [
|
|
3175
|
+
{ page: "298", sequence: 0, extent: 1 }
|
|
3176
|
+
],
|
|
3177
|
+
},
|
|
3178
|
+
{
|
|
3179
|
+
id: "gregobase:17945",
|
|
3180
|
+
incipit: "Vir celse forma fulgida",
|
|
3181
|
+
gabc: "annotation: Hymnus;\\r\\nannotation: IV;\\r\\n%%\\r\\n(c4)Vir(f) cel(ffe)se,(d) for(e)ma(g) ful(gh)gi(f)da(e) (,) vir(g)tu(h)tis,(g) hym(hiwji)num(g) su(g)sci(f)pe,(h) (;) qui(h) iu(h)re(g) dum(hiwji) te(gf) pr\\u00e6(h)di(h)cat,(dewfe) (,) De(e)i(c) ca(e)nit(gfh) ma(gf)gna(g)li(fe)a.(e) (::) \\r\\n\\r\\n2. Qui(f) sem(ffe)pi(d)ter(e)nus(g) Pon(gh)ti(f)fex(e) (,) stir(g)pem(h) De(g)o(hiwji) mor(g)ta(g)li(f)um(h) (;) re(h)vin(h)xit,(g) at(hiwji)que(gf) red(h)di(h)dit(dewfe) (,) pa(e)ci(c) no(e)vo(gfh) nos(gf) f\\u0153(g)de(fe)re.(e) (::) \\r\\n\\r\\n3. Te(f) fe(ffe)cit(d) ip(e)se(g) pro(gh)vi(f)dus(e) (,) su(g)is(h) mi(g)ni(hiwji)strum(g) mu(g)ne(f)ris,(h) (;) Pa(h)tri(h) da(g)tu(hiwji)rum(gf) glo(h)ri(h)am(dewfe) (,) e(e)ius(c)que(e) vi(gfh)tam(gf) ple(g)bi(fe)bus.(e) (::) \\r\\n\\r\\n[alt:Pro papa:] 4.Tu(f) Pe(ffe)tr<i>i</i> o(d)vi(e)le(g) c\\u00e6(gh)li(f)tus(e) (,) sum(g)ptis(h) re(g)ge(hiwji)bas(g) cla(g)vi(f)bus,(h)(;) gre(h)gem(h)que(g) ver(hiwji)bo(gf) gra(h)ti(h)\\u00e6,(dewfe) (,) pu(e)ris(c) fo(e)ve(gfh)as(gf) a(g)cti(fe)bus.(f) (::) \\r\\n\\r\\n[alt:Pro episcopo:] 4. Vir(f)tu(ffe)te(d) fac(e)tus(g) di(gh)ti(f)or(e) (,) te(g) con(h)se(g)cran(hiwji)tis(g) Spi(g)ri(f)tus,(h) (;) pr\\u00e6(h)sul,(h) sa(g)lu(hiwji)tis(gf) pin(h)gui(h)a(dewfe) (,) tu(e) tra(c)di(e)dis(gfh)ti(gf) pa(g)bu(fe)la.(e) (::) \\r\\n\\r\\n\\r\\n[alt:Pro presbytero:] 4. Re(f)ga(ffe)lis(d) hu(e)ius(g) cul(gh)mi(f)nis(e) (,) a(g)dep(h)tus(g) al(hiwji)ti(g)tu(g)di(f)nem,(h) (;) ver(h)bo(h) fu(g)i(hiwji)st<i>i</i> et(gf) mo(h)ri(h)bus(dewfe) (,) doc(e)tor,(c) sa(e)cer(gfh)dos,(gf) hos(g)ti(fe)a.(e) (::) \\r\\n\\r\\n5. Lo(f)ca(ffe)tus(d) in(e) c\\u00e6(g)le(gh)sti(f)bus,(e) (,) san(g)ct\\u00e6(h) me(g)men(hiwji)t<i>o</i> Ec(g)cle(g)si(f)\\u00e6,(h) (;) o(h)ves(h) ut(g) om(hiwji)nes(gf) pas(h)cu(h)a(dewfe) (,) Chri(e)sti(c) pe(e)tant(gfh) fe(gf)li(g)ci(fe)a.(e) (::) \\r\\n\\r\\n6. Sit(f) Tri(ffe)ni(d)ta(e)ti(g) glo(gh)ri(f)a,(e) (,) qu\\u00e6(g) san(h)ct<i>i</i> ho(g)no(hiwji)ris(g) mu(g)ni(f)a(h) (;) ti(h)bi(h) mi(g)ni(hiwji)stro(gf) se(h)du(h)lo(dewfe) (,) di(e)gnis(c) co(e)ro(gfh)nas(gf) gau(g)di(fe)is.(e) (::) \\r\\n A(efe)men.(de) (::) \\r\\n\\r\\n\\r\\n\\r\\n",
|
|
3182
|
+
office: "hy",
|
|
3183
|
+
mode: "4",
|
|
3184
|
+
pages: [
|
|
3185
|
+
{ page: "298", sequence: 0, extent: 1 }
|
|
3186
|
+
],
|
|
3187
|
+
},
|
|
3188
|
+
{
|
|
3189
|
+
id: "gregobase:17946",
|
|
3190
|
+
incipit: "Vir celse forma fulgida",
|
|
3191
|
+
gabc: "%%\\r\\n(c4)VIR(f) cel(ffe)se,(d) for(e)ma(g) f\\u00fal(gh)gi(f)da(e'_) (,) vir(g)t\\u00fa(h)tis,(g) hym(hiwji)num(g) su(g)sci(f.)pe,(h) (;) qui(h) iu(h)re(g) dum(hiwji) te(gf) pr<sp>'ae</sp>(h)di(h)cat,(dewfe.) (,) De(e)i(c) ca(e)nit(gfh) ma(gf)gn\\u00e1(g)li(fe)a.(e.) (::) \\r\\n\\r\\n2. Qui(f) sem(ffe)pi(d)t\\u00e9r(e)nus(g) P\\u00f3n(gh)ti(f)fex(e'_) (,) stir(g)pem(h) De(g)o(hiwji) mor(g)t\\u00e1(g)li(f)um(h.) (;) re(h)v\\u00edn(h)xit,(g) at(hiwji)que(gf) r\\u00e9d(h)di(h)dit(dewfe.) (,) pa(e)ci(c) no(e)vo(gfh) nos(gf) f\\u0153(g)de(fe)re.(e.) (::) \\r\\n\\r\\n3. Te(f) fe(ffe)cit(d) ip(e)se(g) pr\\u00f3(gh)vi(f)dus(e'_) (,) su(g)is(h) mi(g)n\\u00ed(hiwji)strum(g) m\\u00fa(g)ne(f)ris,(h.) (;) Pa(h)tri(h) da(g)t\\u00fa(hiwji)rum(gf) gl\\u00f3(h)ri(h)am(dewfe.) (,) e(e)i\\u00fas(c)que(e) vi(gfh)tam(gf) pl\\u00e9(g)bi(fe)bus.(e.) (::) \\r\\n\\r\\n[alt:Pro papa:] 4.Tu(f) Pe(ffe)tr<i>i</i> o(d)v\\u00ed(e)le(g) c<sp>'ae</sp>(gh)li(f)tus(e'_) (,) sum(g)ptis(h) re(g)g\\u00e9(hiwji)bas(g) cl\\u00e1(g)vi(f)bus,(h.)(;) gre(h)g\\u00e9m(h)que(g) ver(hiwji)bo(gf) gr\\u00e1(h)ti(h)\\u00e6,(dewfe.) (,) pu(e)ris(c) fo(e)v\\u00e9(gfh)as(gf) \\u00e1(g)cti(fe)bus.(f.) (::) \\r\\n\\r\\n[alt:Pro episcopo:] 4. Vir(f)t\\u00fa(ffe)te(d) fa(e)ctus(g) d\\u00ed(gh)ti(f)or(e'_) (,) te(g) con(h)se(g)cr\\u00e1n(hiwji)tis(g) Sp\\u00ed(g)ri(f)tus,(h.) (;) pr\\u00e6(h)sul,(h) sa(g)l\\u00fa(hiwji)tis(gf) p\\u00edn(h)gui(h)a(dewfe.) (,) tu(e) tra(c)di(e)d\\u00ed(gfh)sti(gf) p\\u00e1(g)bu(fe)la.(e.) (::) \\r\\n\\r\\n\\r\\n[alt:Pro presbytero:] 4. Re(f)g\\u00e1(ffe)lis(d) hu(e)ius(g) c\\u00fal(gh)mi(f)nis(e'_) (,) a(g)d\\u00e9p(h)tus(g) al(hiwji)ti(g)t\\u00fa(g)di(f)nem,(h.) (;) ver(h)bo(h) fu(g)\\u00ed(hiwji)st<i>i</i> et(gf) m\\u00f3(h)ri(h)bus(dewfe.) (,) doc(e)tor,(c) sa(e)c\\u00e9r(gfh)dos,(gf) h\\u00f3(g)sti(fe)a.(e.) (::) \\r\\n\\r\\n5. Lo(f)c\\u00e1(ffe)tus(d) in(e) c\\u00e6(g)l\\u00e9(gh)sti(f)bus,(e'_) (,) san(g)ct\\u00e6(h) me(g)m\\u00e9n(hiwji)t<i>o</i> Ec(g)cl\\u00e9(g)si(f)\\u00e6,(h.) (;) o(h)ves(h) ut(g) om(hiwji)nes(gf) p\\u00e1s(h)cu(h)a(dewfe.) (,) Chri(e)sti(c) pe(e)tant(gfh) fe(gf)l\\u00ed(g)ci(fe)a.(e.) (::) \\r\\n\\r\\n6. Sit(f) Tri(ffe)ni(d)t\\u00e1(e)ti(g) gl\\u00f3(gh)ri(f)a,(e'_) (,) qu\\u00e6(g) san(h)ct<i>i</i> ho(g)n\\u00f3(hiwji)ris(g) m\\u00fa(g)ni(f)a(h.) (;) ti(h)bi(h) mi(g)n\\u00ed(hiwji)stro(gf) s\\u00e9(h)du(h)lo(dewfe.) (,) di(e)gnis(c) co(e)r\\u00f3(gfh)nas(gf) g\\u00e1u(g)di(fe)is.(e.) (::) \\r\\n A(efe)men.(de..) (::) \\r\\n\\r\\n\\r\\n\\r\\n",
|
|
3192
|
+
office: "hy",
|
|
3193
|
+
mode: "4",
|
|
3194
|
+
pages: [
|
|
3195
|
+
{ page: "297", sequence: 0, extent: 1 }
|
|
3196
|
+
],
|
|
3197
|
+
},
|
|
3198
|
+
{
|
|
3199
|
+
id: "gregobase:17949",
|
|
3200
|
+
incipit: "Sacrata nobis gaudia",
|
|
3201
|
+
gabc: "(c4)Sa(f)cra(ffe)ta(d) no(e)bis(g) gau(gh)di(f)a(e) (,) di(g)es(h) re(g)du(hiwji)xit(g) an(g)nu(f)a,(h) (;) lau(h)dan(h)tur(g) in(hiwji) qua(gf) de(h)bi(h)to(dewfe) (,) cul(e)tu(c) du(e)ces(gfh) o(gf)vi(g)li(fe)um.(e) (::) \\r\\n\\r\\n2. En(f) pro(ffe) gre(d)gis(e) cus(g)to(gh)di(f)a(e) (,) nul(g)los(h) la(g)bo(hiwji)res(g) ne(g)gle(f)gunt,(h) (;) tu(h)tan(h)tur(g) il(hiwji)lum,(gf) sa(h)ni(h)us(dewfe) (,) im(e)per(c)ti(e)en(gfh)tes(gf) pa(g)bu(fe)lum.(e) (::) \\r\\n\\r\\n3. Ar(f)cen(ffe)tes(d) lu(e)p<i>os</i> e(g) fi(gh)ni(f)bus(e) (,) pro(g)cul(h) la(g)tro(hiwji)nes(g) e(g)xi(f)gunt,(h) (;) re(h)plent(h) o(g)ves(hiwji) pin(gf)gue(h)di(h)ne,(dewfe) (,)o(e)vi(c)le(e) num(gfh)quam(gf) de(g)se(fe)runt.(e) (::) \\r\\n\\r\\n4. Tot(f) nunc(ffe) po(d)ti(e)ti(g) gau(gh)di(f)is,(e) (,) gre(g)gum(h) du(g)ces(hiwji) san(g)ctis(g)si(f)mi,(h) (;) no(h)bis(h) ro(g)ga(hiwji)te(gf) gra(h)ti(h)am(dewfe) (,) a(e)pud(c) tri(e)bu(gfh)nal(gf) iu(g)di(fe)cis.(e) (::) \\r\\n\\r\\n5. \\u00c6(f)ter(ffe)ne,(d) Chri(e)ste,(g) pon(gh)ti(f)fex,(e) (,) ti(g)bi(h) sit(g) \\u00e6(hiwji)qua(g) glo(g)ri(f)a(h) (;) cum(h) Pa(h)tr<i>e</i> et(g) al(hiwji)mo(gf) Spi(h)ri(h)tu(dewfe) (,) in(e) sem(c)pi(e)ter(gfh)na(gf) s\\u00e6(g)cu(fe)la(e) (::) A(efe)men.(de) (::) \\r\\n",
|
|
3202
|
+
office: "hy",
|
|
3203
|
+
mode: "4",
|
|
3204
|
+
pages: [
|
|
3205
|
+
{ page: "299", sequence: 0, extent: 1 }
|
|
3206
|
+
],
|
|
3207
|
+
},
|
|
3208
|
+
{
|
|
3209
|
+
id: "gregobase:17954",
|
|
3210
|
+
incipit: "Christe cunctorum dominator",
|
|
3211
|
+
gabc: "(c4)CHri(ghg)ste,(f) cun(g)ct\\u00f3(gh)rum(gf__) (,) do(h)mi(h)n\\u00e1(h/iwjh)tor(ih) al(g.)me,(g.) (;)\\r\\nplebs(j_) ti(i)bi(k) sup(ji)plex(i_j) (,) r\\u00e9(h)so(g)net(h) in(i) au(h.)la,(g.) (:)\\r\\n\\u00e1n(gh)nu(i)o(h) cu(ghg)ius(e_f) (,) r\\u00e9(g)de(h)unt(g) co(f)l\\u00e9n(ef)da(d.) (,)\\r\\nt\\u00e9m(ghg)po(f)re(g) fe(gh)sta.(g.) \\r\\n2.(::) Hic(ghg) lo(f)cus(g) nem(gh)pe(gf__) (,) vo(h)ci(h)t\\u00e1(h/iwjh)tur(ih) au(g.)la(g.) (;)\\r\\nre(j_)gis(i) im(k)m\\u00e9n(ji)si(i_j) (,) ni(h)ti(g)d\\u00ed(h)que(i) c\\u00e6(h.)li(g.) (:)\\r\\npor(gh)ta,(i) qu\\u00e6(h) vi(ghg)t\\u00e6(e_f) (,) p\\u00e1(g)tri(h)am(g) pe(f)t\\u00e9n(ef)tes(d.) (,)\\r\\n\\u00e1c(ghg)ci(f)pit(g) om(gh)nes.(g.) \\r\\n3.(::) H\\u00e6c(ghg) tu(f)am(g) ple(gh)bem(gf__) (,) sa(h)cra(h) co(h/iwjh)git(ih) \\u00e6(g.)des,(g.) (;)\\r\\nh\\u00e6c(j_) sa(i)cra(k)m\\u00e9n(ji)tis(i_j) (,) pi(h)a(g) di(h)tat(i) us(h.)que,(g.) (:)\\r\\nc\\u01fd(gh)li(i)cis(h) e(ghg)scis(e_f) (,) a(g)lit(h) in(g) pe(f)r\\u00e9n(ef)nis(d.) (,)\\r\\nm\\u00fa(ghg)ne(f)ra(g) vi(gh)t\\u00e6.(g.) \\r\\n4.(::) Qu\\u01fd(ghg)su(f)mus(g) er(gh)go,(gf__) (,) De(h)us,(h) ut(h/iwjh) se(ih)r\\u00e9(g.)no(g.) (;)\\r\\n\\u00e1d(j_)nu(i)as(k) vul(ji)tu(i_j) (,) f\\u00e1(h)mu(g)los(h) gu(i)b\\u00e9r(h.)nans,(g.) (:)\\r\\nqui(gh) tu(i)i(h) sum(ghg)mo(e_f) (,) c\\u00e9(g)le(h)brant(g) a(f)m\\u00f3(ef)re(d.) (,)\\r\\ng\\u00e1u(ghg)di(f)a(g) tem(gh)pli.(g.) \\r\\n5.(::) \\u00c6(ghg)qua(f) laus(g) sum(gh)mum(gf__) (,) c\\u00e9(h)le(h)bret(h/iwjh) Pa(ih)r\\u00e9n(g.)tem(g.) (;)\\r\\nte(j_)que,(i) Sal(k)v\\u00e1(ji)tor,(i_j) (,) pi(h)e(g) rex,(h) per(i) \\u00e6(h.)vum;(g.) (:)\\r\\nSp\\u00ed(gh)ri(i)tus(h) San(ghg)cti(e_f) (,) r\\u00e9(g)so(h)net(g) per(f) om(ef)nem(d.) (,)\\r\\ngl\\u00f3(ghg)ri(f)a(g) mun(gh)dum.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
3212
|
+
office: "hy",
|
|
3213
|
+
mode: "8",
|
|
3214
|
+
pages: [
|
|
3215
|
+
{ page: "249", sequence: 0, extent: 1 }
|
|
3216
|
+
],
|
|
3217
|
+
},
|
|
3218
|
+
{
|
|
3219
|
+
id: "gregobase:17955",
|
|
3220
|
+
incipit: "Christe cunctorum sator",
|
|
3221
|
+
gabc: "(f3)CHri(c.)ste,(f) cun(e)ct\\u00f3(f.)rum(h.) (,) sa(g)tor(f) et(g) re(h)d\\u00e9m(g.)ptor,(f.) (;)\\r\\ns\\u00ed(ff)de(f)rum,(g) ter(h.)r\\u00e6,(e.) (,) ma(h)ris(i) at(j)que(kxk) re(i.)ctor,(j.) (:)\\r\\n\\u00f3m(j.)ni(i)um(h) lau(g.)des(i.) (,) ti(f)bi(f) per(g)so(e)n\\u00e1n(d.)tum(c.) (,)\\r\\nsol(h.)ve(f) re(g)\\u00e1(e.)tum,(f.) \\r\\n2.(::) Va(c.)se(f) qui(e) gem(f.)mas(h.) (,) fr\\u00e1(g)gi(f)li(g) re(h)c\\u00f3n(g.)dis,(f.) (;)\\r\\nv\\u00ed(ff)ri(f)bus(g) flu(h.)xas(e.) (,) \\u00e1(h)ni(i)mo(j) pu(kxk)d\\u00ed(i.)cas(j.) (:)\\r\\nf\\u00e9(j.)mi(i)nas(h) red(g.)dens(i.) (,) fa(f)ci(f)\\u00e9n(g) s()que(e) cla(d.)ros(c.) (,)\\r\\nfer(h.)re(f) tri(g)\\u00fam(e.)phos.(f.) \\r\\n3.(::) Quas(c.) et(f) in(e) sen(f.)su(h.) (,) t\\u00e9(g)ne(f)ras(g) vi(h)d\\u00e9(g.)mus,(f.) (;)\\r\\npr\\u00e6(ff)ro(f)ga(g)t\\u00ed(h.)va(e.) (,) m\\u00e9(h)ri(i)ti(j) co(kxk)r\\u00f3(i.)nas,(j.) (:)\\r\\n\\u00edn(j.)co(i)las(h) re(g.)gni(i.) (,) fa(f)cis(f) et(g) pe(e)r\\u00e9n(d.)nes(c.) (,)\\r\\nes(h.)se(f) su(g)p\\u00e9r(e.)ni.(f.) \\r\\n4.(::) Sit(c.) Pa(f)tri(e) sum(f.)mo(h.) (,) de(g)cus(f) at(g)que(h) vir(g.)tus,(f.) (;)\\r\\nlaus(ff) ti(f)bi(g) Na(h.)to(e.) (,) ce(h)le(i)br\\u00eds(j)que(kxk) cul(i.)tus,(j.) (:)\\r\\nFl\\u00e1(j.)mi(i)ni(h) San(g.)cto(i.) (,) p\\u00e1(f)ri(f)lis(g) po(e)t\\u00e9(d.)stas(c.) (,)\\r\\nnunc(h.) et(f) in(g) \\u00e6(e.)vum.(f.) (::)\\r\\nA(fgf)men.(ef..) (::)\\r\\n",
|
|
3222
|
+
office: "hy",
|
|
3223
|
+
mode: "2",
|
|
3224
|
+
pages: [
|
|
3225
|
+
{ page: "323", sequence: 0, extent: 1 }
|
|
3226
|
+
],
|
|
3227
|
+
},
|
|
3228
|
+
{
|
|
3229
|
+
id: "gregobase:17959",
|
|
3230
|
+
incipit: "Nobiles Christi",
|
|
3231
|
+
gabc: "(f3)NO(c.)bi(f)les(e) Chri(f.)sti(h.) (,) f\\u00e1(g)mu(f)las(g) di(h)s\\u00e9r(g.)ta(f.) (;)\\r\\nvo(ff)ce(f) can(g)t\\u00e9(h.)mus,(e.) (,) de(h)cus(i) \\u00e6(j)mu(kxk)l\\u00e1(i.)tas(j.) (:)\\r\\nf\\u00e9(j.)mi(i)n\\u00e6(h) for(g.)tis,(i.) (,) sa(f)cra(f) cu<i>i</i>(g) pro(e)f\\u00fa(d.)dit(c.) (,)\\r\\np\\u00e1(h.)gi(f)na(g) lau(e.)des.(f.) \\r\\n2.(::) Non(c.) e(f)as(e) mun(f.)dus(h.) (,) l\\u00e1(g)que(f)is(g) re(h)v\\u00edn(g.)cit,(f.) (;)\\r\\nius(ff)sa(f) qu\\u00e6(g) Pa(h.)tris(e.) (,) s\\u00fa(h)be(i)unt(j) vo(kxk)l\\u00e9n(i.)tes,(j.) (:)\\r\\nut(j.) bo(i)num(h) Chri(g.)sti(i.) (,) s\\u00e1t(f)a(f)gant(g) u(e)b\\u00ed(d.)que(c.) (,)\\r\\nsp\\u00e1r(h.)ger<i>e</i>(f) o(g)d\\u00f3(e.)rem.(f.) \\r\\n3.(::) E(c.)do(f)mant(e) cor(f.)pus,(h.) (,) pre(g)ci(f)b\\u00fas(g)que(h) men(g.)tem(f.) (;)\\r\\nn\\u00fa(ff)tri(f)unt(g) san(h.)ctis;(e.) (,) pe(h)ri(i)t\\u00fa(j)ra(kxk) tem(i.)nunt(j.) (:)\\r\\nlucr<i>a</i>,(j.) ut(i) in(h)qu\\u00ed(g.)rant(i.) (,) si(f)bi(f) per(g)ma(e)n\\u00e9n(d.)tis(c.) (,)\\r\\npr\\u01fd(h.)mi(f)a(g) vi(e.)t\\u00e6.(f.) \\r\\n4.(::) Sit(c.) De(f)o(e) so(f.)li(h.) (,) de(g)cus(f) et(g) po(h)t\\u00e9(g.)stas,(f.) (;)\\r\\nlaus(ff) in(f) ex(g)c\\u00e9l(h.)sis(e.) (,) ho(h)nor(i) ac(j) pe(kxk)r\\u00e9n(i.)nis,(j.) (:)\\r\\nqui(j.) su(i)is(h) to(g.)tum(i.) (,) m\\u00f3(f)de(f)rans(g) gu(e)b\\u00e9r(d.)nat(c.) (,)\\r\\nl\\u00e9(h.)gi(f)bus(g) or(e.)bem.(f.) (::)\\r\\nA(fgf)men.(ef..) (::)\\r\\n",
|
|
3232
|
+
office: "hy",
|
|
3233
|
+
mode: "2",
|
|
3234
|
+
pages: [
|
|
3235
|
+
{ page: "321", sequence: 0, extent: 0 }
|
|
3236
|
+
],
|
|
3237
|
+
},
|
|
3238
|
+
{
|
|
3239
|
+
id: "gregobase:17960",
|
|
3240
|
+
incipit: "Novus athleta",
|
|
3241
|
+
gabc: "(c4)NN(g)vus(d) a(g)thl\\u00e9(g)ta(ghg) D\\u00f3(ge)mi(fg)ni(g.) (,)\\r\\ncol(h!iwji)lau(h)d\\u00e9(g)tur(h) Do(gf)m\\u00ed(e)ni(f)cus,(g.) (;)\\r\\nqui(g) rem(i) con(j)f\\u00f3r(k)mat(klk) n\\u00f3(j)mi(i)ni,(hig.) (,)\\r\\nvir(g) fa(d)ctus(g) e(g)van(ghg)g\\u00e9(ge)li(fg)cus.(g.) \\r\\n2.(::) Con(g)s\\u00e9r(d)vans(g) si(g)ne(ghg) m\\u00e1(ge)cu(fg)la(g.) (,)\\r\\nvir(h!iwji)gi(h)ni(g)t\\u00e1(h)tis(gf) l\\u00ed(e)li(f)um,(g.) (;)\\r\\nar(g)d\\u00e9(i)bat(j) qua(k)si(klk) f\\u00e1(j)cu(i)la(hig.) (,)\\r\\npro(g) ze(d)lo(g) per(g)e(ghg)\\u00fan(ge)ti(fg)um.(g.) \\r\\n3.(::) Mun(g)dum(d) cal(g)cans(g) sub(ghg) p\\u00e9(ge)di(fg)bus(g.) (,)\\r\\nac(h!iwji)c\\u00edn(h)xit(g) cor(h) ad(gf) pr\\u0153(e)li(f)a,(g.) (;)\\r\\nnu(g)dus(i) oc(j)c\\u00far(k)rens(klk) h\\u00f3(j)sti(i)bus,(hig.) (,)\\r\\nChri(g)sti(d) suf(g)f\\u00fal(g)tus(ghg) gr\\u00e1(ge)ti(fg)a.(g.) \\r\\n4.(::) Pu(g)gnat(d) ver(g)bo,(g) mi(ghg)r\\u00e1(ge)cu(fg)lis,(g.) (,)\\r\\nmis(h!iwji)sis(h) per(g) or(h)bem(gf) fr\\u00e1(e)tri(f)bus,(g.) (;)\\r\\ncre(g)bros(i) a(j)di(k)\\u00fan(klk)gens(j) s\\u00e9(i)du(hig.)lis(g)\\r\\nfle(d)tus(g) o(g)ra(ghg)ti(ge)\\u00f3(fg)ni(g.)bus.(g) \\r\\n5.() Sit(d) tri(g)no(g) De<i>o</i>(ghg) et(ge) s\\u00edm(fg)pli(g.)ci(h!iwji)\\r\\nlaus,(h) ho(g)nor,(h) de(gf)cus,(e) gl\\u00f3(f)ri(g.)a,(g)\\r\\nqui(i) nos(j) pre(k)ce(klk) Do(j)m\\u00ed(i)ni(hig.)ci(g)\\r\\ndu(d)cat(g) ad(g) c\\u00e6(ghg)li(ge) g\\u00e1u(fg)di(g.)a.(g)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
3242
|
+
office: "hy",
|
|
3243
|
+
mode: "8",
|
|
3244
|
+
pages: [
|
|
3245
|
+
{ page: "410", sequence: 0, extent: 0 }
|
|
3246
|
+
],
|
|
3247
|
+
},
|
|
3248
|
+
{
|
|
3249
|
+
id: "gregobase:17961",
|
|
3250
|
+
incipit: "Commune vos apostoli",
|
|
3251
|
+
gabc: "(c4)COm(f)m\\u00fa(f)ne(f) vos,(fe) a(dc)p\\u00f3(de)sto(e)li,(e'_) (,)\\r\\nex(g)t\\u00f3l(gh)lat(hg) hym(hih)ni(gf) i\\u00fa(g)bi(gf)lum,(e.) (;)\\r\\nquos(f) \\u00e1d(e)vo(fg)cat(gf) par(dc) gr\\u00e1(de)ti(dc)a,(c'_) (,)\\r\\nco(g)r\\u00f3(g)nat(f) u(g)na(ghg) gl\\u00f3(fe)ri(de)a.(e.) \\r\\n2.(::) Ar(f)d\\u00f3(f)re(f) pul(fe)sus(dc) c\\u01fd(de)li(e)co,(e'_) (,)\\r\\nChri(g)sti(gh) pre(hg)mis(hih) ve(gf)st\\u00ed(g)gi(gf)a,(e.) (;)\\r\\nSi(f)mon,(e) et(fg) il(gf)lum(dc) n\\u00fan(de)ti(dc)as(c'_) (,)\\r\\nze(g)lo(g) pe(f)r\\u00e1(g)ctus(ghg) \\u00edm(fe)pi(de)gro.(e.) \\r\\n3.(::) Tu(f) car(f)ne(f) fra(fe)ter,(dc) \\u00e1s(de)se(e)cla(e'_) (,)\\r\\nfra(g)t\\u00e9r(gh)que(hg) Chri(hih)sti(gf) sp\\u00ed(g)ri(gf)tu,(e.) (;)\\r\\nIu(f)da,(e) Ma(fg)g\\u00ed(gf)strum(dc) pr\\u01fd(de)di(dc)cas(c'_) (,)\\r\\nscrip(g)t\\u00eds(g)que(f) fra(g)tres(ghg) \\u00e9(fe)ru(de)dis.(e.) \\r\\n4.(::) Nec(f) per(f)ti(f)m\\u00e9(fe)scit(dc) s\\u00e1n(de)gui(e)nem(e'_) (,)\\r\\nu(g)t\\u00e9r(gh)que(hg) pu(hih)rum(gf) f\\u00fan(g)de(gf)re,(e.) (;)\\r\\nut(f) ve(e)ri(fg)t\\u00e1(gf)tis(dc) \\u00e9(de)ni(dc)tens(c'_) (,)\\r\\nsit(g) te(g)stis(f) at(g)que(ghg) v\\u00ed(fe)cti(de)ma.(e.) \\r\\n5.(::) O(f) sum(f)ma(f) c\\u00e6(fe)li(dc) s\\u00ed(de)de(e)ra,(e'_) (,)\\r\\nnos(g) de(gh)tis(hg) ut(hih) per(gf) \\u00e1(g)spe(gf)ra,(e.) (;)\\r\\nfi(f)de(e) va(fg)l\\u00e9n(gf)tes(dc) \\u00edn(de)te(dc)gra,(c'_) (,)\\r\\nten(g)d\\u00e1(g)mus(f) ad(g) c\\u00e6(ghg)l\\u00e9(fe)sti(de)a.(e.) \\r\\n6.(::) Pa(f)tri(f) per(f) \\u00e6(fe)vum(dc) gl\\u00f3(de)ri(e)a(e'_) (,)\\r\\nNa(g)t\\u00f3(gh)que(hg) cum(hih) Pa(gf)r\\u00e1(g)cli(gf)to,(e.) (;)\\r\\nquo(f)rum(e) su(fg)p\\u00e9r(gf)nis(dc) g\\u00e1u(de)di(dc)is(c'_) (,)\\r\\nsi(g)mul(g) fru(f)\\u00e9(g)mur(ghg) p\\u00e9r(fe)pe(de)tim.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
3252
|
+
office: "hy",
|
|
3253
|
+
mode: "4",
|
|
3254
|
+
pages: [
|
|
3255
|
+
{ page: "459", sequence: 0, extent: 1 }
|
|
3256
|
+
],
|
|
3257
|
+
},
|
|
3258
|
+
{
|
|
3259
|
+
id: "gregobase:17962",
|
|
3260
|
+
incipit: "Concito gressu",
|
|
3261
|
+
gabc: "initial-style: 1;\\r\\n%%\\r\\n(c4)COn(e)ci(d)to(e!fg) gres(gh)su(g.) (,) pe(h)tis(g) al(fe)ta(de) mon(e.)tis,(e.) (;)\\r\\nVir(e_)go,(d) quam(e) ma(ed)trem(c.) (,) De(e)us(f) i(gf)pse(de) fe(e.)cit,(e.) (:)\\r\\nut(g!hw!ij) se(hg)ni(hi) ma(hg)tri(g_h) stu(h)di(gf)\\u00f3s<i>i</i>(g) a(gf)m\\u00f3(e)ris(e_h) (,)\\r\\np\\u00ed(hg)gno(fe)ra(de) pro(e.)mas.(e.) \\r\\n2.(::) Cum(e) sa(d)lu(e!fg)t\\u00e1n(gh)tis(g.) (,) ca(h)pit(g) il(fe)la(de) vo(e.)cem,(e.) (;)\\r\\n\\u00e1b(e_)di(d)tus(e) ge(ed)stit(c.) (,) pu(e)er(f) ex(gf)si(de)l\\u00ed(e.)re,(e.) (:)\\r\\nte(g!hw!ij) pa(hg)rens(hi) di(hg)cit(g_h) d\\u00f3(h)mi(gf)nam,(g) sa(gf)l\\u00fa(e)tat(e_h) (,)\\r\\nte(hg)que(fe) be(de)\\u00e1(e.)tam.(e.) \\r\\n3.(::) I(e)psa(d) pr\\u00e6(e!fg)d\\u00ed(gh)cis(g.) (,) fo(h)re(g) te(fe) be(de)\\u00e1(e.)tam(e.) (;)\\r\\nSp\\u00ed(e_)ri(d)tu(e) fer(ed)vens(c.) (,) p\\u00e9(e)ni(f)tus(gf) lo(de)qu\\u00e9n(e.)te,(e.) (:)\\r\\nac(g!hw!ij) De(hg)um(hi) can(hg)tu(g_h) c\\u00e9(h)le(gf)bras(g) a(gf)moe(e)no(e_h) (,)\\r\\nmagn<i>a</i>(hg) o(fe)pe(de)r\\u00e1n(e.)tem.(e.) \\r\\n4.(::) Te(e)que(d) fe(e!fg)l\\u00ed(gh)cem(g.) (,) p\\u00f3(h)pu(g)li(fe) per(de) or(e.)bem(e.) (;)\\r\\nsem(e_)per,(d) o(e) ma(ed)ter,(c.) (,) r\\u00e9(e)ci(f)tant(gf) o(de)v\\u00e1n(e.)tes(e.) (:)\\r\\nat(g!hw!ij)que(hg) te(hi) cre(hg)dunt(g_h) D\\u00f3(h)mi(gf)ni(g) fa(gf)v\\u00f3(e)rum(e_h) (,)\\r\\nes(hg)se(fe) mi(de)n\\u00ed(e.)stram.(e.) \\r\\n5.(::) Qu\\u00e6,(e) fe(d)rens(e!fg) Chri(gh)stum,(g.) (,) no(h)va(g) sem(fe)per(de) af(e.)fers(e.) (;)\\r\\ndo(e_)na,(d) tu(e) no(ed)bis(c.) (,) fer(e) o(f)pes(gf) sa(de)l\\u00fa(e.)tis,(e.) (:)\\r\\nqui(g!hw!ij) pi(hg)e(hi) te(hg)cum(g_h) Tr\\u00ed(h)a(gf)dem(g) su(gf)p\\u00e9r(e)nam(e_h) (,)\\r\\nma(hg)gni(fe)fi(de)c\\u00e1(e.)mus.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
3262
|
+
office: "hy",
|
|
3263
|
+
mode: "4",
|
|
3264
|
+
pages: [
|
|
3265
|
+
{ page: "377", sequence: 0, extent: 1 }
|
|
3266
|
+
],
|
|
3267
|
+
},
|
|
3268
|
+
{
|
|
3269
|
+
id: "gregobase:17964",
|
|
3270
|
+
incipit: "Doctor æternus",
|
|
3271
|
+
gabc: "(c4)DO(ghg)ctor(e) \\u00e6(f)t\\u00e9r(g.)nus(g.) (,) c\\u00f3(h)le(f)ris(h) pi(j)\\u00fas(ih)que,(g.) (;)\\r\\nChri(j_)ste,(h) qui(j) le(ih)ges(g.) (,) \\u00e1(h)pe(g)ris(e) sa(f)l\\u00fa(g.)tis,(g.) (:)\\r\\nver(gf)ba(e) qui(g) vi(fe)t\\u00e6(dc) m\\u00e9(c)ri(d)to(e) pu(f)t\\u00e1(gh)ris(hg__) (,)\\r\\nso(hiwji)lus(hg) ha(hih)b\\u00e9(g.)re.(g.) \\r\\n2.(::) Te(ghg)que(e) cla(f)m\\u00e1(g.)mus,(g.) (,) bo(h)ne(f) Pa(h)stor(j) or(ih)bis,(g.) (;)\\r\\nc\\u01fd(j_)li(h)tus(j) sem(ih)per(g.) (,) so(h)li(g)d\\u00e1s(e)se(f) Spon(g.)s\\u00e6(g.) (:)\\r\\nver(gf)ba,(e) con(g)st\\u00e1n(fe)ter(dc) qui(c)bus(d) il(e)la(f) mun(gh)do(hg__) (,)\\r\\nlu(hiwji)men(hg) a(hih)d\\u00e9s(g.)set.(g.) \\r\\n3.(::) I(ghg)pse(e) quin(f) pr\\u00e6(g.)bes(g.) (,) f\\u00e1(h)mu(f)los(h) co(j)r\\u00fa(ih)scos,(g.) (;)\\r\\n\\u00e1u(j_)re(h)as(j) stel(ih)las(g.) (,) ve(h)lut(g) e(e)mi(f)c\\u00e1n(g.)tes,(g.) (:)\\r\\ncer(gf)ta(e) qui(g) no(fe)bis(dc) r\\u00e9(c)se(d)rent(e) be(f)\\u00e1(gh)t\\u00e6(hg__) (,)\\r\\nd\\u00f3g(hiwji)ma(hg)ta(hih) vi(g.)t\\u00e6.(g.) \\r\\n4.(::) Un(ghg)de(e) te(f) lau(g.)des(g.) (,) r\\u00e9(h)ci(f)nant,(h) Ma(j)g\\u00ed(ih)ster,(g.) (;)\\r\\nSp\\u00ed(j_)ri(h)tus(j) fun(ih)dis(g.) (,) bo(h)na(g) qui(e) stu(f)p\\u00e9n(g.)da(g.) (:)\\r\\no(gf)re(e) do(g)ct\\u00f3(fe)rum,(dc) tu(c)a(d) quo(e) po(f)t\\u00e9n(gh)ter(hg__) (,)\\r\\nlux(hiwji) pa(hg)tet(hih) al(g.)ma.(g.) \\r\\n5.(::) Qui(ghg)que(e) nunc(f) iu(g.)stus(g.) (,) ce(h)le(f)br\\u00e1(h)tur,(j) in(ih)stet(g.) (;)\\r\\nut(j_) tu(h)am(j) ple(ih)bem(g.) (,) per(h) a(g)moe(e)na(f) lu(g.)cis(g.) (:)\\r\\ndes(gf) gra(e)di,(g) do(fe)nec(dc) ti(c)bi(d) di(e)cat(f) hym(gh)nos(hg__) (,)\\r\\nl\\u00fa(hiwji)mi(hg)ne(hih) ple(g.)no.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
3272
|
+
office: "hy",
|
|
3273
|
+
mode: "8",
|
|
3274
|
+
pages: [
|
|
3275
|
+
{ page: "302", sequence: 0, extent: 1 }
|
|
3276
|
+
],
|
|
3277
|
+
},
|
|
3278
|
+
{
|
|
3279
|
+
id: "gregobase:17965",
|
|
3280
|
+
incipit: "Dum tuas festo",
|
|
3281
|
+
gabc: "(c4)DUM(e) tu(d)as(e) fe(gh)sto,(gvFE'_) (,) pa(d)ter(efg) o(fe) co(de)l\\u00e9n(e.)de,(e.) (;)\\r\\nc\\u00e1n(e)ti(gh)co(h) lau(gh)des(h'_) (,) ha(j)bet(hg) h\\u00e6c(h) co(gvFE)r\\u00f3(de)na,(e.) (:)\\r\\nvo(e)cis(e) ac(ed) men(f)tis,(ed__) (,) I\\u00f3(d)a(ed)chim,(efe) be(fd)n\\u00ed(fgh)gne(h'_) (,)\\r\\n\\u00e1c(g)ci(fe)pe(de) mu(e.)nus.(e.) \\r\\n2.(::) Lon(e)ga(d) te(e) re(gh)gum(gvFE'_) (,) s\\u00e9(d)ri(efg)es(fe) a(de)v\\u00f3(e.)rum(e.) (;)\\r\\nA(e)bra(gh)h\\u00e6(h) pro(gh)lem(h'_) (,) tu(j)lit(hg) at(h)que(gvFE) Da(de)vid;(e.) (:)\\r\\ncl\\u00e1(e)ri(e)or(ed) mun(f)di(ed__) (,) d\\u00f3(d)mi(ed)na(efe) co(fd)r\\u00fa(fgh)scas(h'_) (,)\\r\\npro(g)le(fe) Ma(de)r\\u00ed(e.)a.(e.) \\r\\n3.(::) Sic(e) tu(d)um(e) ger(gh)men(gvFE'_) (,) be(d)ne(efg)d\\u00edct(fe) ab(de) An(e.)na(e.) (;)\\r\\n\\u00e9(e)di(gh)tum,(h) pa(gh)trum(h'_) (,) re(j)pe(hg)t\\u00ed(h)ta(gvFE) vo(de)ta(e.) (:)\\r\\nim(e)plet,(e) et(ed) m\\u00e6(f)sto(ed__) (,) pr\\u00f3(d)pe(ed)rat(efe) re(fd)f\\u00e9r(fgh)re(h'_) (,)\\r\\ng\\u00e1u(g)di(fe)a(de) mun(e.)do.(e.) \\r\\n4.(::) Laus(e) ti(d)bi,(e) Pro(gh)lis(gvFE'_) (,) Pa(d)ter(efg) in(fe)cre(de)\\u00e1(e.)t\\u00e6;(e.) (;)\\r\\nlaus(e) ti(gh)bi,(h) sum(gh)mi(h'_) (,) S\\u00fa(j)bo(hg)les(h) Pa(gvFE)r\\u00e9n(de)tis;(e.) (:)\\r\\nsum(e)ma(e) laus,(ed) com(f)par,(ed__) (,) ti(d)bi(ed) sit(efe) per(fd) om(fgh)ne,(h'_) (,)\\r\\nSp\\u00ed(g)ri(fe)tus,(de) \\u00e6(e.)vum.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
3282
|
+
office: "hy",
|
|
3283
|
+
mode: "4",
|
|
3284
|
+
pages: [
|
|
3285
|
+
{ page: "402", sequence: 0, extent: 1 }
|
|
3286
|
+
],
|
|
3287
|
+
},
|
|
3288
|
+
{
|
|
3289
|
+
id: "gregobase:17969",
|
|
3290
|
+
incipit: "Eia Mater",
|
|
3291
|
+
gabc: "E(f)ia,(g) Ma(h)ter,(g') fons(h) a(j)m\\u00f3(ixi)ris,(h.) (;)\\r\\nme(h) sen(g)t\\u00ed(f)re(e') vim(d) do(e)l\\u00f3(d)ris(c.) (;)\\r\\nfac,(g) ut(f) te(g)cum(h) l\\u00fa(g)ge(f)am.(f.) \\r\\n2.(::)Fac(f) ut(g) \\u00e1r(h)de(g')at(h) cor(j) me(ixi)um(h.) (;)\\r\\nin(h) a(g)m\\u00e1n(f)do(e') Chri(d)stum(e) De(d)um,(c.) (;)\\r\\nut(g) si(f)bi(g) com(h)pl\\u00e1(g)ce(f)am.(f.) \\r\\n3.(::) San(f)cta(g) ma(h)ter,(g') i(h)stud(j) a(ixi)gas,(h.) (;)\\r\\nCru(h)ci(g)f\\u00ed(f)xi(e') fi(d)ge(e) pla(d)gas(c.) (;)\\r\\ncor(g)di(f) me(g)o(h) v\\u00e1(g)li(f)de.(f.) \\r\\n4.(::) Tu(f)i(g) Na(h)ti(g') vul(h)ne(j)r\\u00e1(ixi)ti,(h.) (;)\\r\\ntam(h) di(g)gn\\u00e1(f)ti(e') pro(d) me(e) pa(d)ti(c.) (;)\\r\\npoe(g)nas(f) me(g)cum(h) d\\u00ed(g)vi(f)de.(f.) \\r\\n5.(::) Fac(f) me(g) ve(h)re(g') te(h)cum(j) fle(ixi)re,(h.) (;)\\r\\nCru(h)ci(g)f\\u00ed(f)xo(e') con(d)do(e)l\\u00e9(d)re,(c.) (;)\\r\\ndo(g)nec(f) e(g)go(h) v\\u00ed(g)xe(f)ro.(f.) \\r\\n6.(::) Iux(f)ta(g) cru(h)cem(g') te(h)cum(j) sta(ixi)re(h.) (;)\\r\\nac(h) me(g) ti(f)bi(e') so(d)ci(e)\\u00e1(d)re(c.) (;)\\r\\nin(g) plan(f)ctu(g) de(h)s\\u00ed(g)de(f)ro.(f.) \\r\\n7.(::) Quan(f)do(g) cor(h)pus(g') mo(h)ri(j)\\u00e9(ixi)tur,(h.) (;)\\r\\nfac(h) ut(g) \\u00e1(f)ni(e')m\\u00e6(d) do(e)n\\u00e9(d)tur(c.) (;)\\r\\npa(g)ra(f)d\\u00ed(g)si(h) gl\\u00f3(g)ri(f)a.(f.) (::)\\r\\nA(fgf)men.(ef..) (::)\\r\\n",
|
|
3292
|
+
office: "hy",
|
|
3293
|
+
mode: "6",
|
|
3294
|
+
pages: [
|
|
3295
|
+
{ page: "437", sequence: 0, extent: 1 }
|
|
3296
|
+
],
|
|
3297
|
+
},
|
|
3298
|
+
{
|
|
3299
|
+
id: "gregobase:17970",
|
|
3300
|
+
incipit: "Eia mater",
|
|
3301
|
+
gabc: "initial-style: 1;\\r\\n%%\\r\\n(f3)E(f)ia,(f) ma(h)ter,(hg) fons(f) a(g)m\\u00f3(f)ris,(e.) (;)\\r\\nme(g) sen(g)t\\u00ed(h)re(gf) vim(h) do(i)l\\u00f3(j)ris(j.) (;)\\r\\nfac,(h) ut(h) te(g)cum(f) l\\u00fa(e)ge(f)am.(f.) \\r\\n2.(::)\\r\\n\\r\\nFac(f) ut(f) \\u00e1r(h)de(hg)at(f) cor(g) me(f)um(e.) (;)\\r\\nin(g) a(g)m\\u00e1n(h)do(gf) Chri(h)stum(i) De(j)um,(j.) (;)\\r\\nut(h) si(h)bi(g) com(f)pl\\u00e1(e)ce(f)am.(f.) \\r\\n3.(::)\\r\\n\\r\\nSan(f)cta(f) ma(h)ter,(hg) i(f)stud(g) a(f)gas,(e.) (;)\\r\\nCru(g)ci(g)f\\u00ed(h)xi(gf) fi(h)ge(i) pla(j)gas(j.) (;)\\r\\ncor(h)di(h) me(g)o(f) v\\u00e1(e)li(f)de.(f.) \\r\\n4.(::)\\r\\n\\r\\nTu(f)i(f) Na(h)ti(hg) vul(f)ne(g)r\\u00e1(f)ti,(e.) (;)\\r\\ntam(g) di(g)gn\\u00e1(h)ti(gf) pro(h) me(i) pa(j)ti(j.) (;)\\r\\npoe(h)nas(h) me(g)cum(f) d\\u00ed(e)vi(f)de.(f.) \\r\\n5.(::)\\r\\n\\r\\nFac(f) me(f) ve(h)re(hg) te(f)cum(g) fle(f)re,(e.) (;)\\r\\nCru(g)ci(g)f\\u00ed(h)xo(gf) con(h)do(i)l\\u00e9(j)re,(j.) (;)\\r\\ndo(h)nec(h) e(g)go(f) v\\u00ed(e)xe(f)ro.(f.) \\r\\n6.(::)\\r\\n\\r\\nIux(f)ta(f) cru(h)cem(hg) te(f)cum(g) sta(f)re(e.) (;)\\r\\nac(g) me(g) ti(h)bi(gf) so(h)ci(i)\\u00e1(j)re(j.) (;)\\r\\nin(h) plan(h)ctu(g) de(f)s\\u00ed(e)de(f)ro.(f.) \\r\\n7.(::)\\r\\n\\r\\nQuan(f)do(f) cor(h)pus(hg) mo(f)ri(g)\\u00e9(f)tur,(e.) (;)\\r\\nfac(g) ut(g) \\u00e1(h)ni(gf)m\\u00e6(h) do(i)n\\u00e9(j)tur(j.) (;)\\r\\npa(h)ra(h)d\\u00ed(g)si(f) gl\\u00f3(e)ri(f)a.(f.) (::)\\r\\nA(fgf)men.(ef..) (::)\\r\\n",
|
|
3302
|
+
office: "hy",
|
|
3303
|
+
mode: "2",
|
|
3304
|
+
pages: [
|
|
3305
|
+
{ page: "436", sequence: 0, extent: 1 }
|
|
3306
|
+
],
|
|
3307
|
+
},
|
|
3308
|
+
{
|
|
3309
|
+
id: "gregobase:17971",
|
|
3310
|
+
incipit: "Excelsam Pauli",
|
|
3311
|
+
gabc: "(c4)EX(ddc)c\\u00e9l(cf)sam(ed) Pau(dh)li(h) gl\\u00f3(g)ri(f)am(e/ghd.) (;)\\r\\ncon(f)c\\u00e9(ed)le(de)bret(g) Ec(g)cl\\u00e9(g)si(f)a,(ed/ffd.) (:)\\r\\nquem(d) mir(d) si(d)bi(dh) a(h)p\\u00f3(h)sto(g)lum(hvGFgwhGFED.) (;)\\r\\nex(e) ho(g)ste(g) fe(ghghvGFED)cit(fe) D\\u00f3(d)mi(cd)nus.(deDCd.) \\r\\n2.(::) Qui(ddc)bus(cf) suc(ed)c\\u00e9n(dh)sus(h) \\u01fd(g)sti(f)bus(e/ghd.) (;)\\r\\nin(f) Chri(ed)sti(de) no(g)men(g) s\\u01fd(g)vi(f)it,(ed/ffd.) (:)\\r\\ne(d)x\\u00e1r(d)sit(d) his(dh) im(h)p\\u00e9n(h)si(g)us(hvGFgwhGFED.) (;)\\r\\na(e)m\\u00f3(g)rem(g) Chri(ghghvGFED)sti(fe) pr\\u01fd(d)di(cd)cans.(deDCd.) \\r\\n3.(::) O(ddc) ma(cf)gnum(ed) Pau(dh)li(h) m\\u00e9(g)ri(f)tum!(e/ghd.) (;)\\r\\nC\\u00e6(f)lum(ed) con(de)sc\\u00e9n(g)dit(g) t\\u00e9r(g)ti(f)um,(ed/ffd.) (:)\\r\\nau(d)dit(d) ver(d)ba(dh) my(h)st\\u00e9(h)ri(g)i(hvGFgwhGFED.) (;)\\r\\nqu\\u00e6(e) nul(g)lus(g) au(ghghvGFED)det(fe) \\u00e9(d)lo(cd)qui.(deDCd.) \\r\\n4.(::) Dum(ddc) ver(cf)bi(ed) spar(dh)git(h) s\\u00e9(g)mi(f)na,(e/ghd.) (;)\\r\\nse(f)ges(ed) sur(de)git(g) u(g)b\\u00e9r(g)ri(f)ma;(ed/ffd.) (:)\\r\\nsic(d) c\\u00e6(d)li(d) re(dh)plent(h) h\\u00f3r(h)re(g)um(hvGFgwhGFED.) (;)\\r\\nbo(e)n\\u00f3(g)rum(g) fru(ghghvGFED)ges(fe) \\u00f3(d)pe(cd)rum.(deDCd.) \\r\\n5.(::) Mi(ddc)c\\u00e1n(cf)tis(ed) mo(dh)re(h) l\\u00e1m(g)pa(f)dis(e/ghd.) (;)\\r\\nper(f)f\\u00fan(ed)dit(de) or(g)bem(g) r\\u00e1(g)di(f)is;(ed/ffd.) (:)\\r\\nfu(d)gat(d) er(d)r\\u00f3(dh)rum(h) t\\u00e9(h)ne(g)bras,(hvGFgwhGFED.) (;)\\r\\nut(e) so(g)la(g) re(ghghvGFED)gnet(fe) v\\u00e9(d)ri(cd)tas.(deDCd.) \\r\\n6.(::) Chri(ddc)sto(cf) sit(ed) om(dh)nis(h) gl\\u00f3(g)ri(f)a,(e/ghd.) (;)\\r\\ncum(f) Patr(ed) et(de) al(g)mo(g) Sp\\u00ed(g)ri(f)tu,(ed/ffd.) (:)\\r\\nqui(d) de(d)dit(d) vas(dh) tam(h) f\\u00fal(h)gi(g)dum(hvGFgwhGFED.) (;)\\r\\ne(e)le(g)cti(g)\\u00f3(ghghvGFED)nis(fe) g\\u00e9n(d)ti(cd)bus.(deDCd.) (::)\\r\\nA(ded)men.(cd..) (::)\\r\\n",
|
|
3312
|
+
office: "hy",
|
|
3313
|
+
mode: "1",
|
|
3314
|
+
pages: [
|
|
3315
|
+
{ page: "343", sequence: 0, extent: 1 }
|
|
3316
|
+
],
|
|
3317
|
+
},
|
|
3318
|
+
{
|
|
3319
|
+
id: "gregobase:17972",
|
|
3320
|
+
incipit: "Festiva canimus",
|
|
3321
|
+
gabc: "(c4)FE(g)st\\u00ed(e)va(f) c\\u00e1(d)ni(g)mus(g.) (,) lau(gh)de(g) Hie(fvEDg)r\\u00f3(g)ny(fg)mum,(g.) (;)\\r\\nqui(g) no(hg)bis(hiwji) r\\u00e1(h)di(gh)at(h.) (,) si(h)dus(g) ut(fe) \\u00e9(fg)mi(g)nens(g.) (:)\\r\\ndo(g)ctr\\u00ed(gji)n\\u00e6(jk) m\\u00e9(k)ri(jk)tis(k.) (,) ac(klk) si(ji)mul(h) \\u00e1(g)cti(fg)bus(g.) (;)\\r\\nvi(g)t\\u00e6(g) for(fe)tis(d) et(g) \\u00e1(g)spe(fg)r\\u00e6.(g.) \\r\\n2.(::) Hic(g) ver(e)bum(f) f\\u00ed(d)de(g)i(g.) (,) s\\u00e1n(gh)cta(g)que(fvEDg) d\\u00f3g(g)ma(fg)ta(g.) (;)\\r\\nscru(g)t\\u00e1n(hg)do(hiwji) st\\u00fa(h)du(gh)it(h.) (,) p\\u00e1n(h)de(g)re(fe) l\\u00fa(fg)ci(g)de,(g.) (:)\\r\\naut(g) ho(gji)stes,(jk) v\\u00e9(k)he(jk)mens(k.) (,) ut(klk) le(ji)o,(h) c\\u00f3n(g)ci(fg)tus(g.) (;)\\r\\na(g)cri(g) vo(fe)ce(d) re(g)f\\u00e9l(g)le(fg)re.(g.) \\r\\n3.(::) In(g)s\\u00fa(e)dans(f) \\u00e1(d)la(g)cer(g.) (,) pra(gh)ta(g) vi(fvEDg)r\\u00e9n(g)ti(fg)a(g.) (;)\\r\\nScrip(g)t\\u00fa(hg)r\\u00e6(hiwji) c\\u00f3(h)lu(gh)it(h.) (,) c\\u01fd(h)li(g)tus(fe) \\u00e9(fg)di(g)t\\u00e6;(g.) (:)\\r\\nex(g) his(gji) et(jk) l\\u00f3(k)cu(jk)ples(k.) (,) d\\u00fal(klk)ci(ji)a(h) pr\\u00f3(g)tu(fg)lit(g.) (;)\\r\\ncun(g)ctis(g) p\\u00e1(fe)bu(d)la(g) gr\\u00e1(g)ti(fg)\\u00e6.(g.) \\r\\n4.(::) De(g)s\\u00e9r(e)ti(f) c\\u00fa(d)pi(g)ens(g.) (,) gra(gh)ta(g) si(fvEDg)l\\u00e9n(g)ti(fg)a,(g.) (;)\\r\\nad(g) cu(hg)nas(hiwji) D\\u00f3(h)mi(gh)ni(h.) (,) p\\u00e9r(h)vi(g)gil(fe) \\u00e1(fg)sti(g)tit,(g.) (:)\\r\\nut(g) car(gji)nem(jk) cr\\u00fa(k)ci(jk)ans(k.) (,) se(klk) da(ji)ret(h) \\u00edn(g)ti(fg)me(g.) (;)\\r\\nPa(g)tri(g) mu(fe)nus(d) et(g) h\\u00f3(g)sti(fg)am.(g.) \\r\\n5.(::) Tan(g)ti(e) nos,(f) p\\u00e9(d)ti(g)mus(g.) (,) te,(gh) De(g)us(fvEDg) \\u00f3p(g)ti(fg)me,(g.) (;)\\r\\ndo(g)ct\\u00f3(hg)ris(hiwji) pr\\u00e9(h)ci(gh)bus(h.) (,) d\\u00ed(h)ri(g)ge,(fe) c\\u00f3n(fg)fo(g)ve,(g.) (:)\\r\\nut(g) l\\u00e6(gji)tas(jk) l\\u00ed(k)ce(jk)at(k.) (,) nos(klk) tib<i>i</i>(ji) in(h) \\u00f3m(g)ni(fg)a(g.) (;)\\r\\nlau(g)des(g) p\\u00e1n(fe)ge(d)re(g) s\\u01fd(g)cu(fg)la.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
3322
|
+
office: "hy",
|
|
3323
|
+
mode: "8",
|
|
3324
|
+
pages: [
|
|
3325
|
+
{ page: "446", sequence: 0, extent: 1 }
|
|
3326
|
+
],
|
|
3327
|
+
},
|
|
3328
|
+
{
|
|
3329
|
+
id: "gregobase:17973",
|
|
3330
|
+
incipit: "Fortem piumque",
|
|
3331
|
+
gabc: "(c4)FOr(ed)tem(g) pi(hj)\\u00fam(jji)que(hg) pr\\u01fd(h)su(gf)lem(e.) (,)\\r\\nca(fe)n\\u00e1(d)mus(dh) om(h)nes,(gf) t\\u00far(g)bi(fe)das(e.) (;)\\r\\nqui(dhiv) flu(h)ctu(hg)\\u00e1n(hjji)tis(hg) s\\u01fd(h)cu(gf)li(g_h) (,)\\r\\nter(hg)ris(h) pro(gf)c\\u00e9l(gg)las(d) \\u00e9x(efg)pu(fe)lit.(e.) \\r\\n2.(::) Non(ed) scep(g)tra(hj) con(jji)c\\u00fas(hg)sus(h) ti(gf)met,(e.) (,)\\r\\nnon(fe) im(d)pe(dh)r\\u00e1n(h)tem(gf) f\\u00e9(g)mi(fe)nam,(e.) (;)\\r\\ntem(dhiv)pl\\u00f3(h)que,(hg) clau(hjji)sis(hg) p\\u00f3(h)sti(gf)bus,(g_h) (,)\\r\\nar(hg)cet(h) cru(gf)\\u00e9n(gg)tum(d) c\\u01fd(efg)sa(fe)rem.(e.) \\r\\n3.(::) Ar(ed)c\\u00e1(g)na(hj) sa(jji)cr\\u00e6(hg) p\\u00e1(h)gi(gf)n\\u00e6(e.) (,)\\r\\nal(fe)tus(d) ma(dh)g\\u00ed(h)ster(gf) \\u00e9x(g)pli(fe)cat;(e.) (;)\\r\\ndi(dhiv)v\\u00ed(h)na(hg) pan(hjji)dens(hg) d\\u00f3g(h)ma(gf)ta,(g_h) (,)\\r\\nmi(hg)ra(h) ni(gf)tet(gg) fa(d)c\\u00fan(efg)di(fe)a.(e.) \\r\\n4.(::) Fi(ed)de(g) ci(hj)\\u00e9n(jji)te(hg) sp\\u00ed(h)ri(gf)tum,(e.) (,)\\r\\npr\\u00e6(fe)cl\\u00e1(d)ra(dh) fun(h)dit(gf) c\\u00e1r(g)mi(fe)na;(e.) (;)\\r\\nfi(dhiv)de(h) co(hg)\\u01fd(hjji)quans(hg) m\\u00e1r(h)ty(gf)res,(g_h) (,)\\r\\nde(hg)pr\\u00e9n(h)dit(gf) ar(gg)tus(d) m\\u00e1r(efg)ty(fe)rum.(e.) \\r\\n5.(::) Iam(ed) nunc(g) fu(hj)r\\u00e9n(jji)tem(hg) t\\u00e1r(h)ta(gf)ri(e.) (,)\\r\\nlu(fe)pum(d) fla(dh)g\\u00e9l(h)lo(gf) s\\u00fab(g)mo(fe)ve;(e.) (;)\\r\\nsci(dhiv)\\u00e9n(h)ti(hg)\\u00e6(hjji) nos(hg) l\\u00fa(h)mi(gf)ne(g_h) (,)\\r\\nfo(hg)ve,(h) tu(gf)\\u00e9(gg)re(d) i\\u00fa(efg)gi(fe)ter.(e.) \\r\\n6.(::) Sit(ed) Tri(g)ni(hj)t\\u00e1(jji)ti(hg) gl\\u00f3(h)ri(gf)a,(e.) (,)\\r\\nquam,(fe) te(d) ro(dh)g\\u00e1n(h)te(gf) pr\\u00f3(g)spe(fe)re,(e.) (;)\\r\\nhym(dhiv)nis(h) in(hg) au(hjji)la(hg) c\\u01fd(h)li(gf)ca(g_h) (,)\\r\\nlau(hg)d\\u00e9(h)mus(gf) usqu<i>e</i>(gg) in(d) s\\u01fd(efg)cu(fe)lum.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
3332
|
+
office: "hy",
|
|
3333
|
+
mode: "3",
|
|
3334
|
+
pages: [
|
|
3335
|
+
{ page: "473", sequence: 0, extent: 1 }
|
|
3336
|
+
],
|
|
3337
|
+
},
|
|
3338
|
+
{
|
|
3339
|
+
id: "gregobase:17974",
|
|
3340
|
+
incipit: "Gaudentes festum",
|
|
3341
|
+
gabc: "(c4)GAu(g)d\\u00e9n(hi)tes(j) fe(ih)stum(g) c\\u00f3(h)li(f)mus(g_') (,)\\r\\nsan(i)ct\\u00e1(k)rum(j) Chri(i)sti(k) v\\u00edr(ji)gi(h)num,(g.) (;)\\r\\nqu\\u00e6(g) pu(h)ro(f) cor(g)de(e) D\\u00f3(fe)mi(d)num(c'_) (,)\\r\\nse(g)c\\u00fa(hi)t\\u00e6(j) sunt(ih) in(g) l\\u00e1u(h)di(f)bus.(g.) \\r\\n2.(::) O(g) ca(hi)sti(j)t\\u00e1(ih)tis(g) l\\u00ed(h)li(f)um,(g_') (,)\\r\\nrex(i) v\\u00edr(k)gi(j)num(i) san(k)ct\\u00eds(ji)si(h)me,(g.) (;)\\r\\ntu,(g) cu(h)stos(f) pu(g)di(e)c\\u00ed(fe)ti(d)\\u00e6,(c'_) (,)\\r\\nfrau(g)des(hi) re(j)p\\u00e9l(ih)le(g) d\\u01fd(h)mo(f)num.(g.) \\r\\n3.(::) Qui(g) ca(hi)stis(j) in(ih) vi(g)sc\\u00e9(h)ri(f)bus(g_') (,)\\r\\npla(i)c\\u00e1(k)ris(j) cle(i)men(k)t\\u00eds(ji)si(h)me,(g.) (;)\\r\\nno(g)stros(h) re(f)\\u00e1(g)tus(e) d\\u00ed(fe)lu(d)e,(c'_) (,)\\r\\ndi(g)m\\u00edt(hi)tens(j) qu\\u00e6(ih) pec(g)c\\u00e1(h)vi(f)mus.(g.) \\r\\n4.(::) Gra(g)tes(hi) pre(j)c\\u00e1n(ih)tes(g) \\u00e1(h)gi(f)mus;(g_') (,)\\r\\ner(i)r\\u00e1(k)mus,(j) vi(i)am(k) d\\u00ed(ji)ri(h)ge;(g.) (;)\\r\\ntu,(g) pa(h)ter(f) in(g)dul(e)g\\u00e9n(fe)ti(d)\\u00e6,(c'_) (,)\\r\\nno(g)bis(hi) suc(j)c\\u00far(ih)re,(g) qu\\u01fd(h)su(f)mus.(g.) \\r\\n5.(::) Ie(g)su,(hi) ti(j)bi(ih) sit(g) gl\\u00f3(h)ri(f)a,(g_') (,)\\r\\nqui(i) na(k)tus(j) es(i) de(k) V\\u00edr(ji)gi(h)ne,(g.) (;)\\r\\ncum(g) Patr<i>e</i>(h) et(f) al(g)mo(e) Sp\\u00ed(fe)ri(d)tu(c'_) (,)\\r\\nin(g) sem(hi)pi(j)t\\u00e9r(ih)na(g) s\\u01fd(h)cu(f)la.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
3342
|
+
office: "hy",
|
|
3343
|
+
mode: "8",
|
|
3344
|
+
pages: [
|
|
3345
|
+
{ page: "307", sequence: 0, extent: 0 }
|
|
3346
|
+
],
|
|
3347
|
+
},
|
|
3348
|
+
{
|
|
3349
|
+
id: "gregobase:17984",
|
|
3350
|
+
incipit: "Hae feminae laudabiles",
|
|
3351
|
+
gabc: "(f3)H\\u00c6(f) f\\u00e9(h)mi(hg)n\\u00e6(i) lau(hf)d\\u00e1(g)bi(i)les(h_') (,)\\r\\net(h) ho(f)no(g)r\\u00e1(h)t\\u00e6(gh) m\\u00e9(f)ri(g)tis,(f.) (;)\\r\\nut(f) san(h)ctis(hg) pol(i)lent(ji) m\\u00f3(g)ri(i)bus,(h_') (,)\\r\\ntri(h)\\u00fam(f)phant(g) sic(h) cum(gh) \\u00e1n(f)ge(g)lis.(f.) \\r\\n2.(::) Ex(f) cor(h)de(hg) de(i)vo(hf)t\\u00eds(g)si(i)mo(h_') (,)\\r\\nin(h) flet(f) o(g)r\\u00e1n(h)tes(gh) D\\u00f3(f)mi(g)num,(f.) (;)\\r\\nvi(f)g\\u00ed(h)li(hg)is,(i) ie(ji)i\\u00fa(g)ni(i)is(h_') (,)\\r\\nh\\u00e6(h)r\\u00e9(f)bant(g) ist(h) as(gh)s\\u00ed(f)du(g)is.(f.) \\r\\n3.(::) Sper(f)n\\u00e9n(h)tes(hg) mun(i)di(hf) gl\\u00f3(g)ri(i)am(h_') (,)\\r\\nac(h) men(f)te(g) sem(h)per(gh) \\u00edn(f)te(g)gra,(f.) (;)\\r\\nper(f)f\\u00e9(h)ctam(hg) post(i) iu(ji)st\\u00ed(g)ti(i)am(h_') (,)\\r\\nmi(h)gr\\u00e1(f)runt(g) su(h)per(gh) s\\u00ed(f)de(g)ra.(f.) \\r\\n4.(::) Qu\\u00e6(f) san(h)cti(hg)t\\u00e1(i)tis(hf) \\u00e1(g)cti(i)bus(h_') (,)\\r\\nsu(h)a(f) di(g)t\\u00e1(h)runt(gh) l\\u00ed(f)mi(g)na,(f.) (;)\\r\\nl\\u00e6(f)t\\u00e1n(h)tur(hg) nunc(i) per(ji)p\\u00e9(g)tu(i)is(h_') (,)\\r\\nc\\u00e6(h)l\\u00e9(f)stis(g) \\u00e6(h)dis(gh) pr\\u01fd(f)mi(g)is.(f.) \\r\\n5.(::) Laus(f) un<i>i</i>(h) ac(hg) tri(i)no(hf) D\\u00f3(g)mi(i)no,(h_') (,)\\r\\nqui(h) nos(f) e(g)\\u00e1(h)rum(gh) pr\\u00e9(f)ci(g)bus,(f.) (;)\\r\\npe(f)r\\u00e1(h)cto(hg) vi(i)t\\u00e6(ji) t\\u00e9r(g)mi(i)no,(h_') (,)\\r\\ncon(h)i\\u00fan(f)gat(g) c\\u00e6(h)li(gh) c\\u00ed(f)vi(g)bus.(f.) (::)\\r\\nA(fgf)men.(ef..) (::)\\r\\n",
|
|
3352
|
+
office: "hy",
|
|
3353
|
+
mode: "2",
|
|
3354
|
+
pages: [
|
|
3355
|
+
{ page: "319", sequence: 0, extent: 0 }
|
|
3356
|
+
],
|
|
3357
|
+
},
|
|
3358
|
+
{
|
|
3359
|
+
id: "gregobase:17985",
|
|
3360
|
+
incipit: "Hi sacerdotes",
|
|
3361
|
+
gabc: "(c4)HI(ghg) sa(e)cer(f)d\\u00f3(g.)tes(g.) (,) D\\u00f3(h)mi(f)ni(h) sa(j)cr\\u00e1(ih)ti,(g.) (;)\\r\\ncon(j_)se(h)cra(j)t\\u00f3(ih)res(g.) (,) D\\u00f3(h)mi(g)ni(e) fi(f)d\\u00e9(g.)les(g.) (:)\\r\\nat(gf)que(e) pa(g)st\\u00f3(fe)res(dc) p\\u00f3(c)pu(d)li(e) fu(f)\\u00e9(gh)re(hg__) (,)\\r\\n\\u00edm(hiwji)pigr<i>o</i>(hg) a(hih)m\\u00f3(g.)re.(g.) \\r\\n2.(::) Nam(ghg)que(e) su(f)sc\\u00e9p(g.)t\\u00e6(g.) (,) be(h)ne(f)di(h)cti(j)\\u00f3(ih)nis(g.) (;)\\r\\ndo(j_)na(h) ser(j)v\\u00e1n(ih)tes,(g.) (,) stu(h)du(g)\\u00e9(e)re,(f) lum(g.)bos(g.) (:)\\r\\nf\\u00f3r(gf)ti(e)ter(g) cin(fe)cti,(dc) m\\u00e1(c)ni(d)bus(e) co(f)r\\u00fa(gh)scas(hg__) (,)\\r\\nfer(hiwji)re(hg) lu(hih)c\\u00e9r(g.)nas.(g.) \\r\\n3.(::) Sic(ghg)que(e) su(f)sp\\u00e9n(g.)si(g.) (,) vi(h)gi(f)l\\u00e9s(h)que,(j) quan(ih)do(g.) (;)\\r\\ni\\u00e1(j_)nu(h)am(j) pul(ih)sans(g.) (,) D\\u00f3(h)mi(g)nus(e) ve(f)n\\u00ed(g.)ret,(g.) (:)\\r\\nob(gf)vi(e)a(g)v\\u00e9(fe)runt(dc) pro(c)pe(d)r\\u00e1nt<i>i</i>(e) a(f)l\\u00e1(gh)cres(hg__) (,)\\r\\np\\u00e1n(hiwji)de(hg)re(hih) li(g.)men.(g.) \\r\\n4.(::) Gl\\u00f3(ghg)ri(e)\\u00e6(f) sum(g.)mum(g.) (,) de(h)cus(f) at(h)que(j) lau(ih)dis,(g.) (;)\\r\\nrex,(j_) ti(h)bi,(j) re(ih)gum,(g.) (,) D\\u00e9(h)i(g)tas(e) pe(f)r\\u00e9n(g.)nis,(g.) (:)\\r\\nquic(gf)quid(e) est(g) re(fe)rum(dc) c\\u00e9(c)le(d)bret(e) per(f) om(gh)ne(hg__) (,)\\r\\ntem(hiwji)pus(hg) et(hih) \\u00e6(g.)vum.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
3362
|
+
office: "hy",
|
|
3363
|
+
mode: "8",
|
|
3364
|
+
pages: [
|
|
3365
|
+
{ page: "296", sequence: 0, extent: 1 }
|
|
3366
|
+
],
|
|
3367
|
+
},
|
|
3368
|
+
{
|
|
3369
|
+
id: "gregobase:17989",
|
|
3370
|
+
incipit: "In cælesti collegio",
|
|
3371
|
+
gabc: "(c4)IN(g) c\\u00e6(d)l\\u00e9(g)sti(g) col(ghg)l\\u00e9(ge)gi(fg)o(g.) (,)\\r\\nFran(h!iwji)c\\u00ed(h)scus(g) ful(h)get(gf) gl\\u00f3(e)ri(f)a,(g.) (;)\\r\\nin(g)s\\u00ed(i)gni(j) pri(k)vi(klk)l\\u00e9(j)gi(i)o(hig.) (,)\\r\\nChri(g)sti(d) por(g)tans(g) in(ghg)s\\u00ed(ge)gni(fg)a.(g.) \\r\\n2.(::) Hic(g) coe(d)tus(g) a(g)po(ghg)st\\u00f3(ge)li(fg)ci(g.) (,)\\r\\nest(h!iwji) fa(h)ctus(g) con(h)sors(gf) p\\u00e1u(e)pe(f)ris,(g.) (;)\\r\\ncru(g)cem(i) in(j) se(k) do(klk)m\\u00ed(j)ni(i)ci(hig.) (,)\\r\\nsi(g)gnum(d) re(g)p\\u00f3r(g)tans(ghg) f\\u0153(ge)de(fg)ris.(g.) \\r\\n3.(::) Hic(g) mar(d)tyr(g) de(g)si(ghg)d\\u00e9(ge)ri(fg)o(g.) (,)\\r\\ncru(h!iwji)cem(h) post(g) Ie(h)sum(gf) b\\u00e1(e)iu(f)lat,(g.) (;)\\r\\nquem(g) m\\u00e1r(i)ty(j)rum(k) con(klk)s\\u00f3r(j)ti(i)o(hig.) (,)\\r\\nChri(g)stus(d) in(g) c\\u00e6(g)lis(ghg) c\\u00f3(ge)pu(fg)lat.(g.) \\r\\n4.(::) Cru(g)cem(d) per(g) ab(g)sti(ghg)n\\u00e9n(ge)ti(fg)am(g.) (,)\\r\\nFran(h!iwji)c\\u00ed(h)scus(g) fe(h)rens(gf) i\\u00fa(e)gi(f)ter,(g.) (;)\\r\\niam(g) con(i)fes(j)s\\u00f3(k)rum(klk) gl\\u00f3(j)ri(i)am(hig.) (,)\\r\\na(g)d\\u00e9p(d)tus(g) est(g) fe(ghg)l\\u00ed(ge)ci(fg)ter.(g.) \\r\\n5.(::) Can(g)dens(d) de(g)c\\u00f3(g)re(ghg) n\\u00ed(ge)ve(fg)o,(g.) (,)\\r\\npas(h!iwji)sum(h) hic(g) se(h)quens(gf) D\\u00f3(e)mi(f)num,(g.) (;)\\r\\nnunc(g) ca(i)sti(j)t\\u00e1(k)tis(klk) pr\\u01fd(j)mi(i)o(hig.) (,)\\r\\ngau(g)det(d) in(g) cho(g)ro(ghg) v\\u00edr(ge)gi(fg)num.(g.) \\r\\n6.(::) Pa(g)ter,(d) Na(g)tus(g) cum(ghg) Fl\\u00e1(ge)mi(fg)ne(g.) (,)\\r\\nnos(h!iwji) per(h) Fran(g)c\\u00ed(h)sci(gf) v\\u00fal(e)ne(f)ra(g.) (;)\\r\\nlu(g)strent(i) di(j)v\\u00ed(k)no(klk) l\\u00fa(j)mi(i)ne,(hig.) (,)\\r\\n\\u00e6(g)t\\u00e9r(d)na(g) dan(g)tes(ghg) m\\u00fa(ge)ne(fg)ra.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
3372
|
+
office: "hy",
|
|
3373
|
+
mode: "8",
|
|
3374
|
+
pages: [
|
|
3375
|
+
{ page: "453", sequence: 0, extent: 1 }
|
|
3376
|
+
],
|
|
3377
|
+
},
|
|
3378
|
+
{
|
|
3379
|
+
id: "gregobase:17990",
|
|
3380
|
+
incipit: "Legifer prudens",
|
|
3381
|
+
gabc: "(c4)LE(ghg)gi(e)fer(f) pru(ed)dens,(de) ve(c)ne(e)r\\u00e1n(g)de(h) do(h.)ctor,(g.) (;)\\r\\nqui(ghg) ni(e)tes(f) cel(ed)sis(de) m\\u00e9(c)ri(e)tis(g) per(h) or(h.)bem,(g.) (:)\\r\\nd\\u00e9(ji)nu(h)o(j) com(ih)ple,(gf) Be(h)ne(j)d\\u00ed(i)cte,(h) mun(g)dum(hih_1',)\\r\\nl\\u00fa(g_)mi(e)ne(f) Chri(g.)sti.(g.) \\r\\n2.(::) Fl\\u00f3(ghg)ru(e)it(f) per(ed) te(de) no(c)vus(e) at(g)que(h) mi(h.)ro(g.) (;)\\r\\ng\\u00e9n(ghg)ti(e)um(f) ne(ed)xu(de) so(c)ci(e)\\u00e1(g)tus(h) or(h.)do;(g.) (:)\\r\\ni\\u00fa(ji)ri(h)bus(j) sa(ih)cris(gf) tu(h)a(j) vox(i) su(h)b\\u00e9(g)git(hih_1',)\\r\\nd\\u00fal(g_)ci(e)ter(f) om(g.)nes.(g.) \\r\\n3.(::) L\\u00ed(ghg)be(e)ros(f) Ie(ed)su(de) pa(c)ri(e)t\\u00e9r(g)que(h) ser(h.)vos(g.) (;)\\r\\nr\\u00e9(ghg)gu(e)la(f) ma(ed)gna(de) sta(c)tu(e)\\u00edst<i>i</i>(g) a(h)l\\u00fam(h.)nos,(g.) (:)\\r\\nquos(ji) a(h)mor(j) fo(ih)tus(gf) pr\\u00e9(h)ci(j)bus(i) re(h)v\\u00edn(g)xit(hih_1',)\\r\\net(g_) la(e)bor(f) u(g.)nus.(g.) \\r\\n4.(::) Iam(ghg)que(e) fra(f)t\\u00e9r(ed)ne,(de) du(c)ce(e) te,(g) la(h)b\\u00f3(h.)rent,(g.) (;)\\r\\nm\\u00fa(ghg)tu(e)o(f) cer(ed)tent(de) p\\u00f3(c)pu(e)li(g) fa(h)v\\u00f3(h.)re,(g.) (:)\\r\\ng\\u00e1u(ji)de(h)ant(j) pa(ih)cis(gf) re(h)fo(j)v\\u00e9(i)re(h) sem(g)per(hih_1',)\\r\\ndo(g_)na(e) be(f)\\u00e1(g.)t\\u00e6.(g.) \\r\\n5.(::) Cl\\u00e1(ghg)ri(e)tas(f) Pa(ed)tri(de) ge(c)ni(e)t\\u01fd(g)que(h) Pro(h.)li,(g.) (;)\\r\\nFl\\u00e1(ghg)mi(e)ni(f) San(ed)cto(de) de(c)cus(e) at(g)que(h) cul(h.)tus,(g.) (:)\\r\\ngr\\u00e1(ji)ti(h)a(j) quo(ih)rum(gf) ti(h)bi(j) tan(i)ta(h) lau(g)dis(hih_1',)\\r\\ngl\\u00f3(g_)ri(e)a(f) lu(g.)cet.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
3382
|
+
office: "hy",
|
|
3383
|
+
mode: "8",
|
|
3384
|
+
pages: [
|
|
3385
|
+
{ page: "395", sequence: 0, extent: 0 }
|
|
3386
|
+
],
|
|
3387
|
+
},
|
|
3388
|
+
{
|
|
3389
|
+
id: "gregobase:17991",
|
|
3390
|
+
incipit: "Magnae cohortis principem",
|
|
3391
|
+
gabc: "(c4)MA(g)gn\\u00e6(d) co(g)h\\u00f3r(g)tis(ghg) pr\\u00edn(ge)ci(fg)pem(g.) (,)\\r\\nI(h!iwji)gn\\u00e1(h)ti(g)um(h) laus(gf) c\\u00f3n(e)ci(f)nat,(g.) (;)\\r\\ncla(g)rum(i) lo(j)qu\\u00e9(k)lis,(klk) \\u00e1(j)cti(i)bus(hig.) (,)\\r\\ndu(g)cem(d) ci(g)\\u00e9n(g)tem(ghg) m\\u00ed(ge)li(fg)tes.(g.) \\r\\n2.(::) Re(g)gi(d) su(g)pr\\u00e9(g)mo(ghg) c\\u01fd(ge)li(fg)tum(g.) (,)\\r\\na(h!iwji)m\\u00f3(h)re(g) vin(h)ctus(gf) \\u00fa(e)ni(f)co,(g.) (;)\\r\\ne(g)ius(i) fo(j)v\\u00e9n(k)da(klk) gl\\u00f3(j)ri(i)a(hig.) (,)\\r\\nnil(g) c\\u00e9n(d)su(g)it(g) iu(ghg)c\\u00fan(ge)di(fg)us.(g.) \\r\\n3.(::) Hinc(g) se(d) su(g)\\u00f3s(g)que(ghg) d\\u00e9(ge)vo(fg)vet,(g.) (,)\\r\\nur(h!iwji)g\\u00e9n(h)tis(g) in(h)star(gf) \\u00e1g(e)mi(f)nis,(g.) (;)\\r\\nut(g) iu(i)ra(j) Chri(k)sti(klk) v\\u00edn(j)di(i)cet,(hig.) (,)\\r\\ner(g)r\\u00f3(d)ris(g) um(g)bras(ghg) d\\u00eds(ge)si(fg)pet.(g.) \\r\\n4.(::) San(g)cto(d) mo(g)n\\u00e9n(g)te(ghg) Sp\\u00ed(ge)ri(fg)tu,(g.) (,)\\r\\ncer(h!iwji)tam(h) sa(g)l\\u00fa(h)tis(gf) s\\u00e9(e)mi(f)tam(g.) (;)\\r\\nscru(g)t\\u00e1(i)tor(j) al(k)tus(klk) s\\u01fd(j)cu(i)lis(hig.) (,)\\r\\ndo(g)ct\\u00f3r(d)que(g) pru(g)dens(ghg) d\\u00e9(ge)no(fg)tat.(g.) \\r\\n5.(::) Su(g)is(d) a(g)l\\u00fam(g)nis(ghg) d\\u00eds(ge)si(fg)ta(g.) (,)\\r\\nmis(h!iwji)sis(h) in(g) or(h)bis(gf) l\\u00ed(e)to(f)ra,(g.) (;)\\r\\nEc(g)cl\\u00e9(i)si(j)am(k) quot(klk) \\u00e9x(j)pe(i)tit(hig.) (,)\\r\\nfron(g)d\\u00e9(d)re(g) l\\u00e6(g)tam(ghg) g\\u00e9n(ge)ti(fg)bus!(g.) \\r\\n6.(::) Sit(g) Tri(d)ni(g)t\\u00e1(g)ti(ghg) gl\\u00f3(ge)ri(fg)a,(g.) (,)\\r\\nqu\\u00e6(h!iwji) nos(h) det(g) hu(h)ius(gf) m\\u00ed(e)li(f)tis(g.) (;)\\r\\ne(g)x\\u00e9m(i)pla(j) for(k)tes(klk) p\\u00e9r(j)se(i)qui(hig.) (,)\\r\\nin(g) Christ<i>i</i>(d) ho(g)n\\u00f3(g)rem(ghg) p\\u00e9r(ge)pe(fg)tim.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
3392
|
+
office: "hy",
|
|
3393
|
+
mode: "8",
|
|
3394
|
+
pages: [
|
|
3395
|
+
{ page: "406", sequence: 0, extent: 0 }
|
|
3396
|
+
],
|
|
3397
|
+
},
|
|
3398
|
+
{
|
|
3399
|
+
id: "gregobase:17997",
|
|
3400
|
+
incipit: "Mentibus laetis",
|
|
3401
|
+
gabc: "(c4)MEn(ghg)ti(f)bus(g) l\\u00e6(gh)tis(gf__) (,) tu(h)a(h) fe(h/iwjh)sta,(ih) Mar(g.)ce,(g.) (;)\\r\\nat(j_)que(i) per(k)gr\\u00e1(ji)tis(i_j) (,) ce(h)le(g)br\\u00e1(h)mus(i) om(h.)nes,(g.) (:)\\r\\nma(gh)gna(i) qui(h) Chri(ghg)sti(e_f) (,) tri(g)bu(h)\\u00eds(g)se(f) ple(ef)bi(d.) (,)\\r\\nte(ghg) me(f)mo(g)r\\u00e1(gh)mus.(g.) \\r\\n2.(::) Ma(ghg)tris(f) e(g)x\\u00e9m(gh)plis,(gf__) (,) v\\u00e9(h)ne(h)rans(h/iwjh) a(ih)m\\u00f3(g.)re(g.) (;)\\r\\nf\\u00e9r(j_)vi(i)do(k) Pe(ji)trum,(i_j) (,) s\\u00e9(h)que(g)ris(h) fi(i)d\\u00e9(h.)lis,(g.) (:)\\r\\nver(gh)ba(i) de(h) Chri(ghg)sti(e_f) (,) l\\u00e1(g)bi(h)is(g) ab(f) i(ef)pso(d.) (,)\\r\\nhau(ghg)sta(f) re(g)c\\u00f3n(gh)dis.(g.) \\r\\n3.(::) Sp\\u00ed(ghg)rit<i>u</i>(f) ac(g)c\\u00e9n(gh)sus,(gf__) (,) m\\u00f3(h)di(h)co(h/iwjh) li(ih)b\\u00e9l(g.)lo(g.) (;)\\r\\nmi(j_)ra(i) tu(k) sum(ji)mi(i_j) (,) r\\u00e9(h)se(g)ras(h) Ma(i)g\\u00ed(h.)stri(g.) (:)\\r\\nge(gh)sta,(i) tu(h) nar(ghg)ras(e_f) (,) qui(g)bus(h) et(g) lo(f)qu\\u00e9(ef)lis(d.) (,)\\r\\n\\u00edn(ghg)stru(f)at(g) or(gh)bem.(g.) \\r\\n4.(::) Ca(ghg)rus(f) et(g) Pau(gh)lo,(gf__) (,) stu(h)di(h)\\u00f3(h/iwjh)sus(ih) e(g.)ius(g.) (;)\\r\\ncor(j_)dis(i) ar(k)d\\u00f3(ji)res(i_j) (,) \\u00ed(h)mi(g)tans,(h) la(i)b\\u00f3(h.)ras,(g.) (:)\\r\\nmul(gh)ta(i) pro(h) Ie(ghg)su(e_f) (,) p\\u00e1(g)te(h)ris,(g) cru(f)\\u00f3(ef)rem(d.) (,)\\r\\nfun(ghg)dis(f) a(g)m\\u00e1n(gh)ter.(g.) \\r\\n5.(::) Laus,(ghg) ho(f)nor(g) Chri(gh)sto,(gf__) (,) de(h)cus(h) at(h/iwjh)que(ih) vir(g.)tus,(g.) (;)\\r\\ncu(j_)ius(i) et(k) te(ji)stes(i_j) (,) va(h)le(g)\\u00e1(h)mus(i) es(h.)se,(g.) (:)\\r\\nac,(gh) tu(i)is(h) e(ghg)scis(e_f) (,) re(g)cre(h)\\u00e1t<i>i</i>,(g) in(f) \\u00e6(ef)vum(d.) (,)\\r\\nc\\u00e9r(ghg)ne(f)re(g) vul(gh)tum.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
3402
|
+
office: "hy",
|
|
3403
|
+
mode: "8",
|
|
3404
|
+
pages: [
|
|
3405
|
+
{ page: "366", sequence: 0, extent: 0 }
|
|
3406
|
+
],
|
|
3407
|
+
},
|
|
3408
|
+
{
|
|
3409
|
+
id: "gregobase:17999",
|
|
3410
|
+
incipit: "Maria virgo regia",
|
|
3411
|
+
gabc: "(c4)MA(h)r\\u00ed(hhg)a,(ed) vir(g)go(hj) r\\u00e9(ji)gi(hi)a,(i'_) (,)\\r\\nspon(k)sa(kj) re(i)gis(ji) et(h) f\\u00ed(ih)li(gh)a,(h.) (;)\\r\\nte(k) De(k)i(i) sa(k)pi(klk)\\u00e9n(j)ti(i)a(hiHG'_) (,)\\r\\ne(i)l\\u00e9(jk)git(i) an(ji)te(h) s\\u01fd(ih)cu(gh)la.(h.) \\r\\n2.(::) Pu(h)\\u00e9l(hhg)la(ed) ca(g)rens(hj) m\\u00e1(ji)cu(hi)la,(i'_) (,)\\r\\nDe(k)i(kj) do(i)mus(ji) e(h)b\\u00far(ih)ne(gh)a,(h.) (;)\\r\\nte(k) de(k)di(i)c\\u00e1(k)vit(klk) c\\u01fd(j)li(i)tus(hiHG'_) (,)\\r\\nmis(i)sus(jk) ab(i) e(ji)o(h) Sp\\u00ed(ih)ri(gh)tus.(h.) \\r\\n3.(::) Ca(h)ri(hhg)t\\u00e1(ed)tis(g) si(hj)gn\\u00e1(ji)cu(hi)lum,(i'_) (,)\\r\\nto(k)t\\u00ed(kj)us(i) bo(ji)ni(h) sp\\u00e9(ih)cu(gh)lum,(h.) (;)\\r\\nau(k)r\\u00f3(k)ra(i) ve(k)ri(klk) l\\u00fa(j)mi(i)nis,(hiHG'_) (,)\\r\\nar(i)ca(jk) di(i)v\\u00ed(ji)ni(h) s\\u00e9(ih)mi(gh)nis,(h.) \\r\\n4.(::) In(h) do(hhg)mo(ed) sum(g)mi(hj) pr\\u00edn(ji)ci(hi)pis(i'_) (,)\\r\\ntu(k) \\u00e1f(kj)flu(i)is(ji) de(h)l\\u00ed(ih)ci(gh)is;(h.) (;)\\r\\nvir(k)ga(k) Ies(i)se(k) flo(klk)r\\u00ed(j)ge(i)ra,(hiHG'_) (,)\\r\\nre(i)pl\\u00e9(jk)ris(i) De(ji)i(h) gr\\u00e1(ih)ti(gh)a.(h.) \\r\\n5.(::) O(h) mar(hhg)ga(ed)r\\u00ed(g)ta(hj) c\\u00e1n(ji)di(hi)da(i'_) (,)\\r\\net(k) stel(kj)la(i) mun(ji)di(h) spl\\u00e9n(ih)di(gh)da,(h.) (;)\\r\\nfac(k) pu(k)ris(i) es(k)se(klk) m\\u00f3(j)ri(i)bus(hiHG'_) (,)\\r\\nnos(i) ve(jk)ra(i) tem(ji)pla(h) Sp\\u00ed(ih)ri(gh)tus.(h.) \\r\\n6.(::) Sit(h) Tri(hhg)ni(ed)t\\u00e1(g)ti(hj) gl\\u00f3(ji)ri(hi)a,(i'_) (,)\\r\\no(k) Vir(kj)go(i) no(ji)bi(h)l\\u00eds(ih)si(gh)ma,(h.) (;)\\r\\nqu\\u00e6(k) te(k) su(i)\\u00f3(k)rum(klk) m\\u00fa(j)ne(i)rum(hiHG'_) (,)\\r\\nthe(i)s\\u00e1u(jk)rum(i) dat(ji) ma(h)gn\\u00ed(ih)fi(gh)cum.(h.) (::)\\r\\nA(hih)men.(gh..) (::)\\r\\n",
|
|
3412
|
+
office: "hy",
|
|
3413
|
+
mode: "2",
|
|
3414
|
+
pages: [
|
|
3415
|
+
{ page: "471", sequence: 0, extent: 1 }
|
|
3416
|
+
],
|
|
3417
|
+
},
|
|
3418
|
+
{
|
|
3419
|
+
id: "gregobase:18003",
|
|
3420
|
+
incipit: "Nocti succedit lucifer",
|
|
3421
|
+
gabc: "(c4)NO(ed)cti(g) suc(hj)c\\u00e9(ji)dit(hg) l\\u00fa(h)ci(hi)fer,(i.) (,)\\r\\nquem(i) mox(ijwk) au(j)r\\u00f3(ji)ra(hg) s\\u00e9(hiwji)qui(hg)tur,(g.) (;)\\r\\nso(g)lis(ghWiHG) or(h)tum(gf) pr\\u00e6(efg)n\\u00fan(f)ti(e)ans(d.) (,)\\r\\nmun(hiwj)dum(h) lu(g)str\\u00e1n(fgh)tis(g) l\\u00fa(fe)mi(de)ne.(e.) \\r\\n2.(::) Chri(ed)stus(g) sol(hj) est(ji) iu(hg)st\\u00ed(h)ti(hi)\\u00e6,(i.) (,)\\r\\nau(i)r\\u00f3(ijwk)ra(j) Ma(ji)ter(hg) gr\\u00e1(hiwji)ti(hg)\\u00e6,(g.) (;)\\r\\nquam,(g) An(ghWiHG)na,(h) pr\\u00e6(gf)is(efg) r\\u00fa(f)ti(e)lans(d.) (,)\\r\\nle(hiwj)gis(h) pro(g)p\\u00e9l(fgh)lens(g) t\\u00e9(fe)ne(de)bras.(e.) \\r\\n3.(::) An(ed)na,(g) ra(hj)dix(ji) u(hg)b\\u00e9r(h)ri(hi)ma,(i.) (,)\\r\\nar(i)bor(ijwk) tu(j) sa(ji)lu(hg)t\\u00ed(hiwji)fe(hg)ra,(g.) (;)\\r\\nvir(g)gam(ghWiHG) pro(h)d\\u00fa(gf)cens(efg) fl\\u00f3(f)ri(e)dam(d.) (,)\\r\\nqu\\u00e6(hiwj) Chri(h)stum(g) no(fgh)bis(g) \\u00e1t(fe)tu(de)lit.(e.) \\r\\n4.(::) O(ed) ma(g)tris(hj) Chri(ji)sti(hg) g\\u00e9(h)ne(hi)trix(i.) (,)\\r\\ntu(i)que(ijwk) pa(j)rens(ji) san(hg)ct\\u00eds(hiwji)si(hg)me,(g.) (;)\\r\\nna(g)t\\u00e6(ghWiHG) fa(h)v\\u00e9n(gf)te(efg) m\\u00e9(f)ri(e)to,(d.) (,)\\r\\nno(hiwj)bis(h) ro(g)g\\u00e1(fgh)te(g) v\\u00e9(fe)ni(de)am.(e.) \\r\\n5.(::) Ie(ed)su,(g) ti(hj)bi(ji) sit(hg) gl\\u00f3(h)ri(hi)a,(i.) (,)\\r\\nqui(i) na(ijwk)tus(j) es(ji) de(hg) V\\u00edr(hiwji)gi(hg)ne,(g.) (;)\\r\\ncum(g) Pa(ghWiHG) tr<i>e</i>() et(h) al(gf)mo(efg) Sp\\u00ed(f)ri(e)tu,(d.) (,)\\r\\nin(hiwj) sem(h)pi(g)t\\u00e9r(fgh)na(g) s\\u01fd(fe)cu(de)la.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
3422
|
+
office: "hy",
|
|
3423
|
+
mode: "3",
|
|
3424
|
+
pages: [
|
|
3425
|
+
{ page: "401", sequence: 0, extent: 1 }
|
|
3426
|
+
],
|
|
3427
|
+
},
|
|
3428
|
+
{
|
|
3429
|
+
id: "gregobase:18004",
|
|
3430
|
+
incipit: "Philippe summae",
|
|
3431
|
+
gabc: "(c4)PHi(e)l\\u00edp(e)pe,(ed) summ<i>\\u00e6</i>(g) ho(gh)n\\u00f3(j)ri(j)bus(ih__) (,)\\r\\nvo(i)ca(j)ti(i)\\u00f3(h)nis(g) \\u00e9(h!iwji)ni(hg)tens,(g.) (;)\\r\\ncum(gh) ci(j)ve(i) Pe(h)tro(g) pr\\u00edn(i)ci(g)pe(hg__) (,)\\r\\nqua(hi) men(g)te(h) Chri(gf)stum(d) d\\u00ed(f!gwhg)li(fe)gis!(e.) \\r\\n2.(::) At(e) ips<i>e</i>(e) a(ed)m\\u00f3(g)ris(gh) \\u00edn(j)ti(j)ma(ih__) (,)\\r\\nti(i)bi(j) re(i)p\\u00e9n(h)dit(g) p\\u00ed(h!iwji)gno(hg)ra,(g.) (;)\\r\\nti(gh)b\\u00ed(j)que(i) Pa(h)tris(g) d\\u00eds(i)se(g)rit(hg__) (,)\\r\\nsu(hi)\\u01fd(g)que(h) vi(gf)t\\u00e6(d) d\\u00f3g(f!gwhg)ma(fe)ta.(e.) \\r\\n3.(::) Nec(e) te(e) mi(ed)nus(g) com(gh)pl\\u00e9(j)cti(j)tur,(ih__) (,)\\r\\nIa(i)c\\u00f3(j)be,(i) Chri(h)sti(g) c\\u00e1(h!iwji)ri(hg)tas,(g.) (;)\\r\\nqui(gh) fra(j)ter(i) e(h)ius(g) d\\u00ed(i)ce(g)ris(hg__) (,)\\r\\nsed(hi) et(g) co(h)l\\u00famn<i>a</i>(gf) Ec(d)cl\\u00e9(f!gwhg)si(fe)\\u00e6.(e.) \\r\\n4.(::) Al(e)m\\u00e6(e) Si(ed)on(g) qui(gh) pr\\u01fd(j)si(j)des(ih__) (,)\\r\\npri(i)mus(j) gre(i)gi(h) cla(g)r\\u00eds(h!iwji)si(hg)mo,(g.) (;)\\r\\nnos(gh) us(j)que(i) scrip(h)tis(g) pr\\u00f3(i)vi(g)dis(hg__) (,)\\r\\nver(hi)bum(g) sa(h)l\\u00fa(gf)tis(d) \\u00e9(f!gwhg)do(fe)ces.(e.) \\r\\n5.(::) O(e) vos,(e) be(ed)\\u00e1(g)ti,(gh) n\\u00f3(j)bi(j)li(ih__) (,)\\r\\nIe(i)sum(j) pro(i)f\\u00e9s(h)si(g) s\\u00e1n(h!iwji)gui(hg)ne,(g.) (;)\\r\\nspe(gh) nos(j) fi(i)d\\u00e9(h)que(g) c\\u00far(i)re(g)re(hg__) (,)\\r\\ndat<i>e</i>(hi) in(g) su(h)p\\u00e9r(gf)nam(d) p\\u00e1(f!gwhg)tri(fe)am,(e.) \\r\\n6.(::) Ut,(e) quan(e)do(ed) man(g)si(gh)\\u00f3(j)ni(j)bus(ih__) (,)\\r\\niam(i) Pa(j)tris(i) im(h)mo(g)r\\u00e1(h!iwji)bi(hg)mur,(g.) (;)\\r\\nsi(gh)mul(j) ca(i)n\\u00e1(h)mus(g) p\\u00e9r(i)pe(g)tim(hg__) (,)\\r\\nin(hi) Tri(g)ni(h)t\\u00e1(gf)tis(d) gl\\u00f3(f!gwhg)ri(fe)am.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
3432
|
+
office: "hy",
|
|
3433
|
+
mode: "3",
|
|
3434
|
+
pages: [
|
|
3435
|
+
{ page: "372", sequence: 0, extent: 1 }
|
|
3436
|
+
],
|
|
3437
|
+
},
|
|
3438
|
+
{
|
|
3439
|
+
id: "gregobase:18005",
|
|
3440
|
+
incipit: "Pressi malorum",
|
|
3441
|
+
gabc: "(c4)PRes(e)si(e) ma(ed)l\\u00f3(g)rum(gh) p\\u00f3n(j)de(j)re(ih__) (,)\\r\\nte,(i) Paul<i>e</i>,(j) ad(i)\\u00ed(h)mus(g) s\\u00fap(h!iwji)pli(hg)ces,(g.) (;)\\r\\nqui(gh) cer(j)ta(i) lar(h)gus(g) d\\u00e9(i)su(g)per(hg__) (,)\\r\\nda(hi)bis(g) sa(h)l\\u00fa(gf)tis(d) p\\u00ed(f!gwhg)gno(fe)ra.(e.) \\r\\n2.(::) Nam(e) tu(e) be(ed)\\u00e1(g)to(gh) c\\u00f3n(j)ci(j)tus(ih__) (,)\\r\\ndi(i)v\\u00edn<i>i</i>(j) a(i)m\\u00f3(h)ris(g) \\u00edm(h!iwji)pe(hg)tu,(g.) (;)\\r\\nquos(gh) in(j)se(i)c\\u00fa(h)tor(g) \\u00f3(i)de(g)ras,(hg__) (,)\\r\\nde(hi)f\\u00e9n(g)sor(h) ind<i>e</i>(gf) am(d)pl\\u00e9(f!gwhg)cte(fe)ris.(e.) \\r\\n3.(::) A(e)m\\u00f3(e)ris,(ed) e(g)ia,(gh) pr\\u00ed(j)sti(j)ni(ih__) (,)\\r\\nne(i) sis,(j) pre(i)c\\u00e1(h)mur,(g) \\u00edm(h!iwji)me(hg)mor,(g.) (;)\\r\\net(gh) nos(j) su(i)p\\u00e9r(h)n\\u00e6(g) l\\u00e1n(i)gui(g)dos(hg__) (,)\\r\\nin(hi) spem(g) re(h)d\\u00fa(gf)cas(d) gr\\u00e1(f!gwhg)ti(fe)\\u00e6.(e.) \\r\\n4.(::) Te(e) de(e)pre(ed)c\\u00e1n(g)te(gh) fl\\u00f3(j)re(j)at(ih__) (,)\\r\\ni(i)gn\\u00e1(j)ra(i) dam(h)ni(g) c\\u00e1(h!iwji)ri(hg)tas,(g.) (;)\\r\\nquam(gh) nul(j)la(i) tur(h)bent(g) i\\u00far(i)gi(g)a(hg__) (,)\\r\\nnec(hi) ul(g)lus(h) er(gf)ror(d) s\\u00e1u(f!gwhg)ci(fe)et.(e.) \\r\\n5.(::) O(e) gra(e)ta(ed) c\\u00e6(g)lo(gh) v\\u00ed(j)cti(j)ma,(ih__) (,)\\r\\nte,(i) lux(j) a(i)m\\u00f3r(h)que(g) G\\u00e9n(h!iwji)ti(hg)um,(g.) (;)\\r\\no(gh) Pau(j)le,(i) cla(h)rum(g) v\\u00edn(i)di(g)cem,(hg__) (,)\\r\\nnos(hi) te(g) pa(h)tr\\u00f3(gf)num(d) p\\u00f3(f!gwhg)sci(fe)mus.(e.) \\r\\n6.(::) Laus(e) Tri(e)ni(ed)t\\u00e1(g)ti,(gh) c\\u00e1n(j)ti(j)ca(ih__) (,)\\r\\nsint(i) sem(j)pi(i)t\\u00e9r(h)n\\u00e6(g) gl\\u00f3(h!iwji)ri(hg)\\u00e6,(g.) (;)\\r\\nqu\\u00e6(gh) nos(j) bo(i)ni(h) cer(g)t\\u00e1(i)mi(g)nis(hg__) (,)\\r\\nte(hi)cum(g) co(h)r\\u00f3(gf)net(d) pr\\u01fd(f!gwhg)mi(fe)is.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
3442
|
+
office: "hy",
|
|
3443
|
+
mode: "3",
|
|
3444
|
+
pages: [
|
|
3445
|
+
{ page: "342", sequence: 0, extent: 1 }
|
|
3446
|
+
],
|
|
3447
|
+
},
|
|
3448
|
+
{
|
|
3449
|
+
id: "gregobase:18006",
|
|
3450
|
+
incipit: "Quas tibi laudes",
|
|
3451
|
+
gabc: "(f3)QUas(c.) ti(f)bi(e) lau(f.)des(h.) (,) fe(g)ri(f)m\\u00fas(g)que(h) vo(g.)ta,(f.) (;)\\r\\nnos(ff) tu(f)is(g) pos(h.)sint(e.) (,) m\\u00e9(h)ri(i)tis(j) iu(kxk)v\\u00e1(i.)re,(j.) (:)\\r\\nMar(j.)tha,(i) quam(h) mi(g.)re(i.) (,) si(f)bi(f) cor(g)de(e) iun(d.)git(c.) (,)\\r\\nChri(h.)stus(f) a(g)m\\u00ed(e.)co.(f.) \\r\\n2.(::) Te(c.) fre(f)quens(e) vi(f.)sit(h.) (,) D\\u00f3(g)mi(f)nus(g) tu(h)\\u00e1(g.)que(f.) (;)\\r\\nin(ff) do(f)mo(g) de(h.)git(e.) (,) pl\\u00e1(h)ci(i)da(j) qui(kxk)\\u00e9(i.)te(j.) (:)\\r\\nac(j.) tu(i)is(h) ver(g.)bis(i.) (,) stu(f)di(f)\\u00eds(g)que(e) l\\u00e6(d.)tans(c.) (,)\\r\\nte(h.)que(f) mi(g)n\\u00ed(e.)stra.(f.) \\r\\n3.(::) Tu(c.) pri(f)or(e) fra(f.)trem(h.) (,) qu\\u00e9(g)re(f)ris(g) per(h)\\u00eds(g.)se,(f.) (;)\\r\\ncum(ff)que(f) ger(g)m\\u00e1(h.)na(e.) (,) la(h)cri(i)m\\u00e1(j)ta(kxk) mul(i.)tum,(j.) (:)\\r\\n\\u00e1(j.)spi(i)cis(h) vi(g.)t\\u00e6(i.) (,) s\\u00fa(f)bi(f)ta(g) Ma(e)g\\u00ed(d.)stri(c.) (,)\\r\\nvo(h.)ce(f) re(g)d\\u00ed(e.)re.(f.) \\r\\n4.(::) Qu\\u00e6(c.) fi(f)de(e) prom(f.)pta(h.) (,) st\\u00e1(g)bi(f)lem(g) fa(h)t\\u00e9(g.)ris(f.) (;)\\r\\nspem(ff) re(f)sur(g)g\\u00e9n(h.)di,(e.) (,) D\\u00f3(h)mi(i)no(j) pro(kxk)b\\u00e1n(i.)te,(j.) (:)\\r\\n\\u00edm(j.)pe(i)tra(h) no(g.)bis(i.) (,) c\\u00fa(f)pid<i>e</i>(f) in(g) pe(e)r\\u00e9n(d.)ne(c.) (,)\\r\\np\\u00e9r(h.)ge(f)re(g) re(e.)gnum.(f.) \\r\\n5.(::) Laus(c.) De(f)o(e) Pa(f.)tri,(h.) (,) Ge(g)ni(f)t\\u00f3(g)que(h) vir(g.)tus,(f.) (;)\\r\\nFl\\u00e1(ff)mi(f)ni(g) San(h.)cto(e.) (,) p\\u00e1(h)ri(i)lis(j) po(kxk)t\\u00e9(i.)stas,(j.) (:)\\r\\ngl\\u00f3(j.)ri(i)am(h) quo(g.)rum(i.) (,) p\\u00e9(f)ti(f)mus(g) per(e) \\u00e6(d.)vum(c.) (,)\\r\\nc\\u00e9r(h.)ne(f)re(g) te(e.)cum.(f.) (::)\\r\\nA(fgf)men.(ef..) (::)\\r\\n",
|
|
3452
|
+
office: "hy",
|
|
3453
|
+
mode: "2",
|
|
3454
|
+
pages: [
|
|
3455
|
+
{ page: "404", sequence: 0, extent: 1 }
|
|
3456
|
+
],
|
|
3457
|
+
},
|
|
3458
|
+
{
|
|
3459
|
+
id: "gregobase:18007",
|
|
3460
|
+
incipit: "Qui lacrimatus",
|
|
3461
|
+
gabc: "(c4)QUI(g) la(g)cri(f)m\\u00e1(e)tus(f) L\\u00e1(hg)za(fg)rum(g.) (,)\\r\\nge(gh)m\\u00e9n(i) s()que(j) cum(h) so(i)r\\u00f3(g)ri(fg)bus,(g.) (;)\\r\\ni(j)psum(h) fe(i)c\\u00ed(g)sti(hg) pr\\u01fd(f)po(gh)tens(h.) (,)\\r\\nil(hg)l\\u00e1(e)rum(f) red(h)di(ih) st\\u00fa(g)di(fg)is:(g.) \\r\\n2(::) Qui(g) pe(g)ti(f)v\\u00ed(e)sti(f) s\\u00f3n(hg)ti(fg)bus(g.) (,)\\r\\nbe(gh)n\\u00ed(i)gnus(j) in(h)dul(i)g\\u00e9n(g)ti(fg)am,(g.) (;)\\r\\nac(j) ver(h)ba(i) mi(g)se(hg)r\\u00e1n(f)ti(gh)a(h.) (,)\\r\\ndi(hg)x\\u00ed(e)sti(f) poe(h)n\\u00e6(ih) s\\u00f3(g)ci(fg)o:(g.) \\r\\n3(::) Qui,(g) m\\u00f3(g)ri(f)ens,(e) di(f)sc\\u00ed(hg)pu(fg)lo(g.) (,)\\r\\nma(gh)trem(i) do(j)n\\u00e1(h)sti(i) V\\u00edr(g)gi(fg)nem,(g.) (;)\\r\\ntu(j)\\u00f3(h)rum(i) qu\\u00e6(g) fi(hg)d\\u00e9(f)li(gh)um(h.) (,)\\r\\na(hg)g\\u00f3n<i>i</i>(e) ad(f)\\u00e9s(h)set(ih) \\u00fal(g)ti(fg)mo:(g.) \\r\\n4(::) Da(g) no(g)bis,(f) Chri(e)ste(f) D\\u00f3(hg)mi(fg)ne,(g.) (,)\\r\\ntu(gh)o(i) re(j)d\\u00e9m(h)ptis(i) s\\u00e1n(g)gui(fg)ne,(g.) (;)\\r\\ndu(j)r\\u00e6(h) mor(i)tis(g) tri(hg)st\\u00ed(f)ti(gh)am(h.) (,)\\r\\nin(hg) vi(e)t\\u00e6(f) ver(h)ti(ih) g\\u00e1u(g)di(fg)um.(g.) \\r\\n5(::) Tu(g)\\u00f3s(g)que(f) vo(e)ca(f) f\\u00e1(hg)mu(fg)los,(g.) (,)\\r\\nex(gh) hoc(i) pro(j)f\\u00e9(h)ctos(i) s\\u01fd(g)cu(fg)lo,(g.) (;)\\r\\nut(j) u(h)bi(i) mors(g) iam(hg) d\\u00e9(f)e(gh)rit(h.) (,)\\r\\nte(hg) vi(e)t\\u00e6(f) ca(h)nant(ih) pr\\u00edn(g)ci(fg)pem.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
3462
|
+
office: "hy",
|
|
3463
|
+
mode: "8",
|
|
3464
|
+
pages: [
|
|
3465
|
+
{ page: "333", sequence: 0, extent: 1 }
|
|
3466
|
+
],
|
|
3467
|
+
},
|
|
3468
|
+
{
|
|
3469
|
+
id: "gregobase:18008",
|
|
3470
|
+
incipit: "Qui luce splendes",
|
|
3471
|
+
gabc: "(c4)QUI(f) lu(f)ce(f) splen(fe)des(dc) \\u00f3r(de)di(e)nis(e'_) (,)\\r\\na(g)po(gh)sto(hg)l\\u00f3(hih)rum(gf) m\\u00e1(g)xi(gf)ma,(e.) (;)\\r\\nTho(f)ma,(e) be(fg)n\\u00ed(gf)gnus(dc) \\u00e1c(de)ci(dc)pe(c'_) (,)\\r\\nlau(g)des(g) ti(f)bi(g) quas(ghg) p\\u00e1n(fe)gi(de)mus.(e.) \\r\\n2.(::) Te(f) l\\u00fa(f)ci(f)dis(fe) in(dc) s\\u00e9(de)di(e)bus(e'_) (,)\\r\\na(g)m\\u00f3(gh)re(hg) Chri(hih)stus(gf) c\\u00f3l(g)lo(gf)cat;(e.) (;)\\r\\na(f)m\\u00f3(e)re(fg) prom(gf)ptus(dc) \\u00e9x(de)pe(dc)tis(c'_) (,)\\r\\ntu(g) pro(g) Ma(f)g\\u00ed(g)stro(ghg) c\\u00f3m(fe)mo(de)ri.(e.) \\r\\n3.(::) Te(f) tor(f)quet(f) et(fe) di(dc)l\\u00e9(de)cti(e)o(e'_) (,)\\r\\nnar(g)r\\u00e1n(gh)ti(hg)bus(hih) cum(gf) fr\\u00e1(g)tri(gf)bus(e.) (;)\\r\\nvis(f) cer(e)tus(fg) es(gf)se,(dc) v\\u00ed(de)se(dc)re,(c'_) (,)\\r\\npal(g)p\\u00e1(g)re(f) Ie(g)su(ghg) v\\u00fal(fe)ne(de)ra.(e.) \\r\\n4.(::) Quan(f)t\\u00f3(f)que(f) cor(fe)dis(dc) g\\u00e1u(de)di(e)o(e'_) (,)\\r\\ni(g)psum(gh) mi(hg)s\\u00e9r(hih)tum(gf) c\\u00f3n(g)spi(gf)cis,(e.) (;)\\r\\nDe(f)\\u00fam(e)que(fg) di(gf)cis(dc) cr\\u00e9(de)du(dc)lus,(c'_) (,)\\r\\nfer(g)v\\u00f3r<i>e</i>(g) a(f)d\\u00f3(g)rans(ghg) p\\u00e9(fe)cto(de)ris!(e.) \\r\\n5.(::) No(f)b\\u00eds(f)que(f) qui(fe) non(dc) v\\u00ed(de)di(e)mus(e'_) (,)\\r\\nper(g) te(gh) fi(hg)des(hih) fit(gf) \\u00e1(g)cri(gf)or,(e.) (;)\\r\\nfit(f) \\u00e6(e)stus(fg) et(gf) po(dc)t\\u00e9n(de)ti(dc)or(c'_) (,)\\r\\nquo(g) Christ<i>i</i>(g) a(f)m\\u00f3(g)rem(ghg) qu\\u01fd(fe)ri(de)mus.(e.) \\r\\n6.(::) Chri(f)sto(f) sit(f) om(fe)nis(dc) gl\\u00f3(de)ri(e)a,(e'_) (,)\\r\\nqui(g) te(gh) ro(hg)g\\u00e1n(hih)te(gf) pr\\u01fd(g)be(gf)at(e.) (;)\\r\\nno(f)bis(e) fid<i>e</i>(fg) am(gf)bu(dc)l\\u00e1n(de)ti(dc)bus(c'_) (,)\\r\\ni(g)psum(g) vi(f)d\\u00e9(g)re(ghg) p\\u00e9r(fe)pe(de)tim.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
3472
|
+
office: "hy",
|
|
3473
|
+
mode: "4",
|
|
3474
|
+
pages: [
|
|
3475
|
+
{ page: "394", sequence: 0, extent: 1 }
|
|
3476
|
+
],
|
|
3477
|
+
},
|
|
3478
|
+
{
|
|
3479
|
+
id: "gregobase:18009",
|
|
3480
|
+
incipit: "Qui vivis ante",
|
|
3481
|
+
gabc: "(f3)QUI(e) vi(f)vis(gh) an(g)te(fe) s\\u01fd(f)cu(g)la(f_) (,)\\r\\nvi(f)t\\u01fd(g)que(h) fons(ih) es(g) \\u00fa(fgwh)ni(hg)cus,(g.) (;)\\r\\nnos,(g) De(i)us,(ij) mort<i>i</i>(ji) ob(hg)n\\u00f3(fgwh)xi(hg)os(g_') (,)\\r\\ncul(e)p\\u01fd(f)que(gh) re(g)os(fe) \\u00e1(fg)spi(gf)ce.(f.) \\r\\n2.(::) Pec(e)c\\u00e1n(f)ti,(gh) Pa(g)ter,(fe) h\\u00f3(f)mi(g)ni(f_) (,)\\r\\npoe(f)nam(g) san(h)x\\u00edst<i>i</i>(ih) in(g)t\\u00e9(fgwh)ri(hg)tum,(g.) (;)\\r\\nut,(g) pul(i)vis(ij) da(ji)tus(hg) p\\u00fal(fgwh)ve(hg)ri,(g_') (,)\\r\\nse(e) s\\u00fab(f)de(gh)ret(g) pi(fe)\\u00e1(fg)cu(gf)lum.(f.) \\r\\n3.(::) Vi(e)t\\u00e1(f)le(gh) sed(g) spi(fe)r\\u00e1(f)cu(g)lum(f_) (,)\\r\\nquod(f) in(g)di(h)d\\u00ed(ih)sti(g) pr\\u00f3(fgwh)vi(hg)dus,(g.) (;)\\r\\n\\u00e6(g)ter(i)ni(ij)t\\u00e1(ji)tis(hg) p\\u00e9r(fgwh)ma(hg)net(g_') (,)\\r\\nger(e)men(f) im(gh)mar(g)ce(fe)sc\\u00ed(fg)bi(gf)le.(f.) \\r\\n4.(::) H\\u00e6c(e) spes,(f) hoc(gh) est(g) so(fe)l\\u00e1(f)ci(g)um:(f_) (,)\\r\\nre(f)vi(g)re(h)sc\\u00e9(ih)mus,(g) D\\u00f3(fgwh)mi(hg)ne,(g.) (;)\\r\\npri(g)m\\u00fas(i)que(ij) re(ji)sur(hg)g\\u00e9n(fgwh)ti(hg)um(g_') (,)\\r\\nad(e) te(f) nos(gh) Chri(g)stus(fe) r\\u00e1(fg)pi(gf)et.(f.) \\r\\n5.(::) Hoc(e) vi(f)t\\u00e6(gh) re(g)gno(fe) p\\u00e9r(f)fru(g)i(f_) (,)\\r\\nda(f) fra(g)tres(h) in(ih) te(g) m\\u00f3r(fgwh)tu(hg)os,(g.) (;)\\r\\nquos(g) Chri(i)sti(ij) fi(ji)des(hg) \\u00edm(fgwh)bu(hg)it,(g_') (,)\\r\\nquos(e) al(f)mus(gh) un(g)xit(fe) Sp\\u00ed(fg)ri(gf)tus.(f.) \\r\\n6.(::) Hoc(e) re(f)gnum(gh) no(g)bis(fe) pr\\u00f3(f)pe(g)ra(f_) (,)\\r\\ne(f) ter(g)ris(h) cum(ih) ces(g)s\\u00e9(fgwh)ri(hg)mus,(g.) (;)\\r\\nut(g) con(i)ci(ij)n\\u00e1(ji)mus(hg) \\u00f3m(fgwh)ni(hg)um(g_') (,)\\r\\nte(e) fi(f)nem,(gh) te(g) prin(fe)c\\u00ed(fg)pi(gf)um.(f.) (::)\\r\\nA(fgf)men.(ef..) (::)\\r\\n",
|
|
3482
|
+
office: "hy",
|
|
3483
|
+
mode: "2",
|
|
3484
|
+
pages: [
|
|
3485
|
+
{ page: "328", sequence: 0, extent: 1 }
|
|
3486
|
+
],
|
|
3487
|
+
},
|
|
3488
|
+
{
|
|
3489
|
+
id: "gregobase:18010",
|
|
3490
|
+
incipit: "Nunc sancte (Adv)",
|
|
3491
|
+
gabc: "(c4)NUnc,(f) San(e)cte,(d) no(e)bis,(dc) Sp\\u00ed(de)ri(e)tus,(e'_) (,)\\r\\nu(g)num(ghwih) Pa(gf)tri(g) cum(ghg) F\\u00ed(fe)li(de)o,(e.) (;)\\r\\ndi(f)gn\\u00e1(e)re(d) prom(e)ptus(dc) \\u00edn(dewf)ge(d)ri(d'_) (,)\\r\\nno(d)stro(f) re(e)f\\u00fa(g)sus(ghg) p\\u00e9(fe)cto(de)ri.(e.) \\r\\n2.(::) Os,(f) lin(e)gua,(d) mens,(e) sen(dc)sus,(de) vi(e)gor(e'_) (,)\\r\\ncon(g)fes(ghwih)si(gf)\\u00f3(g)nem(ghg) p\\u00e9r(fe)so(de)nent,(e.) (;)\\r\\nflam(f)m\\u00e9(e)scat(d) i(e)gne(dc) c\\u00e1(dewf)ri(d)tas,(d'_) (,)\\r\\nac(d)c\\u00e9n(f)dat(e) ar(g)dor(ghg) pr\\u00f3(fe)xi(de)mos.(e.) \\r\\n3.(::) Per(f) te(e) sci(d)\\u00e1(e)mus(dc) da(de) Pa(e)trem,(e'_) (,)\\r\\nno(g)sc\\u00e1(ghwih)mus(gf) at(g)que(ghg) F\\u00ed(fe)li(de)um,(e.) (;)\\r\\nte(f) u(e)tri(d)\\u00fas(e)que(dc) Sp\\u00ed(dewf)ri(d)tum(d'_) (,)\\r\\ncre(d)d\\u00e1(f)mus(e) om(g)ni(ghg) t\\u00e9m(fe)po(de)re.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
3492
|
+
office: "hy",
|
|
3493
|
+
mode: "4",
|
|
3494
|
+
pages: [
|
|
3495
|
+
{ page: "7", sequence: 0, extent: 1 }
|
|
3496
|
+
],
|
|
3497
|
+
},
|
|
3498
|
+
{
|
|
3499
|
+
id: "gregobase:18011",
|
|
3500
|
+
incipit: "Nunc Sancte (mem.)",
|
|
3501
|
+
gabc: "(c4)NUnc,(g) San(g)cte,(h) no(g)bis,(f) Sp\\u00ed(g)ri(h)tus,(g_h) (,)\\r\\nu(j)num(j) Pa(j)tri(jk) cum(ji) F\\u00ed(h)li(i)o,(iji.) (;)\\r\\ndi(h)gn\\u00e1(i)re(j) prom(h)ptus(g) \\u00edn(h)ge(g)ri(fef_) (,)\\r\\nno(d)stro(e) re(f)f\\u00fa(g)sus(f) p\\u00e9(h)cto(g)ri.(g.) \\r\\n2.(::) Os,(g) lin(g)gua,(h) mens,(g) sen(f)sus,(g) vi(h)gor(g_h) (,)\\r\\ncon(j)fes(j)si(j)\\u00f3(jk)nem(ji) p\\u00e9r(h)so(i)nent,(iji.) (;)\\r\\nflam(h)m\\u00e9(i)scat(j) i(h)gne(g) c\\u00e1(h)ri(g)tas,(fef_) (,)\\r\\nac(d)c\\u00e9n(e)dat(f) ar(g)dor(f) pr\\u00f3(h)xi(g)mos.(g.) \\r\\n3.(::) Per(g) te(g) sci(h)\\u00e1(g)mus(f) da(g) Pa(h)trem,(g_h) (,)\\r\\nno(j)sc\\u00e1(j)mus(j) at(jk)que(ji) F\\u00ed(h)li(i)um,(iji.) (;)\\r\\nte(h) u(i)tri(j)\\u00fas(h)que(g) Sp\\u00ed(h)ri(g)tum(fef_) (,)\\r\\ncre(d)d\\u00e1(e)mus(f) om(g)ni(f) t\\u00e9m(h)po(g)re.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
3502
|
+
office: "hy",
|
|
3503
|
+
mode: "8",
|
|
3504
|
+
pages: [
|
|
3505
|
+
{ page: "192", sequence: 0, extent: 1 }
|
|
3506
|
+
],
|
|
3507
|
+
},
|
|
3508
|
+
{
|
|
3509
|
+
id: "gregobase:18012",
|
|
3510
|
+
incipit: "Rector potens (Adv.)",
|
|
3511
|
+
gabc: "(c4)RE(f)ctor(e) po(d)tens,(e) ve(dc)rax(de) De(e)us,(e'_) (,)\\r\\nqui(g) t\\u00e9m(ghwih)pe(gf)ras(g) re(ghg)rum(fe) vi(de)ces,(e.) (;)\\r\\nsplen(f)d\\u00f3(e)re(d) ma(e)ne(dc) \\u00edn(dewf)stru(d)is(d'_) (,)\\r\\net(d) \\u00ed(f)gni(e)bus(g) me(ghg)r\\u00ed(fe)di(de)em,(e.) \\r\\n2.(::) Ex(f)st\\u00edn(e)gue(d) flam(e)mas(dc) l\\u00ed(de)ti(e)um,(e'_) (,)\\r\\nau(g)fer(ghwih) ca(gf)l\\u00f3(g)rem(ghg) n\\u00f3(fe)xi(de)um,(e.) (;)\\r\\ncon(f)fer(e) sa(d)l\\u00fa(e)tem(dc) c\\u00f3r(dewf)po(d)rum(d'_) (,)\\r\\nve(d)r\\u00e1m(f)que(e) pa(g)cem(ghg) c\\u00f3r(fe)di(de)um.(e.) \\r\\n3.(::) Pr\\u00e6(f)sta,(e) Pa(d)ter(e) pi(dc)\\u00eds(de)si(e)me,(e'_) (,)\\r\\nPa(g)tr\\u00ed(ghwih)que(gf) com(g)par(ghg) U(fe)ni(de)ce,(e.) (;)\\r\\ncum(f) Sp\\u00ed(e)ri(d)tu(e) Pa(dc)r\\u00e1(dewf)cli(d)to(d'_) (,)\\r\\nre(d)gnans(f) per(e) om(g)ne(ghg) s\\u01fd(fe)cu(de)lum.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
3512
|
+
office: "hy",
|
|
3513
|
+
mode: "4",
|
|
3514
|
+
pages: [
|
|
3515
|
+
{ page: "8", sequence: 0, extent: 1 }
|
|
3516
|
+
],
|
|
3517
|
+
},
|
|
3518
|
+
{
|
|
3519
|
+
id: "gregobase:18013",
|
|
3520
|
+
incipit: "Rector potens (soll.)",
|
|
3521
|
+
gabc: "(c3)RE(e)ctor(e) pot(fg)ens,(g) ve(fe)rax(f!gwhg) De(fe)us,(e.) (;)\\r\\nqui(e) t\\u00e9m(g)pe(h)ras(i) re(iji)rum(g) vi(hi)ces,(i.) (:)\\r\\nsplen(g)d\\u00f3(i)re(ij) ma(j)ne(i) \\u00edn(hg)stru(fe)is(f!gwhg.) (;)\\r\\net(e) \\u00ed(fh)gni(h)bus(hg) me(fe)r\\u00ed(f!gwhg)di(fe)em,(e.) \\r\\n2.(::) Ex(e)st\\u00edn(e)gue(fg) flam(g)mas(fe) l\\u00ed(f!gwhg)ti(fe)um,(e.) (;)\\r\\nau(e)fer(g) ca(h)l\\u00f3(i)rem(iji) n\\u00f3(g)xi(hi)um,(i.) (:)\\r\\ncon(g)fer(i) sa(ij)l\\u00fa(j)tem(i) c\\u00f3r(hg)po(fe)rum(f!gwhg.) (;)\\r\\nve(e)r\\u00e1m(fh)que(h) pa(hg)cem(fe) c\\u00f3r(f!gwhg)di(fe)um.(e.) \\r\\n3.(::) Pr\\u00e6(e)sta,(e) Pa(fg)ter(g) pi(fe)\\u00eds(f!gwhg)si(fe)me,(e.) (;)\\r\\nPa(e)tr\\u00ed(g)que(h) com(i)par(iji) U(g)ni(hi)ce,(i.) (:)\\r\\ncum(g) Sp\\u00ed(i)ri(ij)tu(j) Pa(i)r\\u00e1(hg)cli(fe)to(f!gwhg.) (;)\\r\\nre(e)gnans(fh) per(h) om(hg)ne(fe) s\\u01fd(f!gwhg)cu(fe)lum.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
3522
|
+
office: "hy",
|
|
3523
|
+
mode: "8",
|
|
3524
|
+
pages: [
|
|
3525
|
+
{ page: "187", sequence: 0, extent: 1 }
|
|
3526
|
+
],
|
|
3527
|
+
},
|
|
3528
|
+
{
|
|
3529
|
+
id: "gregobase:18015",
|
|
3530
|
+
incipit: "Rerum Deus tenax (Adv.)",
|
|
3531
|
+
gabc: "(c4)RE(f)rum,(e) De(d)us,(e) te(dc)nax(de) vi(e)gor,(e'_) (,)\\r\\nim(g)m\\u00f3(ghwih)tus(gf) in(g) te(ghg) p\\u00e9r(fe)ma(de)nens,(e.) (;)\\r\\nlu(f)cis(e) di(d)\\u00far(e)n\\u00e6(dc) t\\u00e9m(dewf)po(d)ra(d'_) (,)\\r\\nsuc(d)c\\u00e9s(f)si(e)bus(g) de(ghg)t\\u00e9r(fe)mi(de)nans,(e.) \\r\\n2.(::) Lar(f)g\\u00ed(e)re(d) cla(e)rum(dc) v\\u00e9(de)spe(e)re,(e'_) (,)\\r\\nquo(g) vi(ghwih)ta(gf) num(g)quam(ghg) d\\u00e9(fe)ci(de)dat,(e.) (;)\\r\\nsed(f) pr\\u01fd(e)mi(d)um(e) mor(dc)tis(dewf) sa(d)cr\\u00e6(d'_) (,)\\r\\npe(d)r\\u00e9n(f)nis(e) in(g)stet(ghg) gl\\u00f3(fe)ri(de)a.(e.) \\r\\n3.(::) Pr\\u00e6(f)sta,(e) Pa(d)ter(e) pi(dc)\\u00eds(de)si(e)me,(e'_) (,)\\r\\nPa(g)tr\\u00ed(ghwih)que(gf) com(g)par(ghg) U(fe)ni(de)ce,(e.) (;)\\r\\ncum(f) Sp\\u00ed(e)ri(d)tu(e) Pa(dc)r\\u00e1(dewf)cli(d)to(d'_) (,)\\r\\nre(d)gnans(f) per(e) om(g)ne(ghg) s\\u01fd(fe)cu(de)lum.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
3532
|
+
office: "hy",
|
|
3533
|
+
mode: "4",
|
|
3534
|
+
pages: [
|
|
3535
|
+
{ page: "8", sequence: 0, extent: 1 }
|
|
3536
|
+
],
|
|
3537
|
+
},
|
|
3538
|
+
{
|
|
3539
|
+
id: "gregobase:18016",
|
|
3540
|
+
incipit: "Salve mater",
|
|
3541
|
+
gabc: "(c3)SAl(efee)ve,(d) ma(fh)ter(h) mi(g)se(f)ri(hih)c\\u00f3r(fe)di(de)\\u00e6,(e.) (,)\\r\\nma(i)ter(h) spe(ij)i(j') et(j) ma(h)ter(jlk) v\\u00e9(ji)ni(hi)\\u00e6,(i.) (;)\\r\\nma(i)ter(h) De(ij)i(h') et(h) ma(f)ter(h) gr\\u00e1(g)ti(fe)\\u00e6,(e.) (,)\\r\\nma(efee)ter(d) ple(fh)na(h) san(g)ct\\u00e6(f) l\\u00e6(hih)t\\u00ed(fe)ti(de)\\u00e6.(e.) \\r\\n2.(::) Val(efee)lis(d) ver(fh)nans(h) vir(g)t\\u00fa(f)tum(hih) l\\u00ed(fe)li(de)is,(e.) (,)\\r\\nto(i)ta(h) flu(ij)ens(j') sum(j)mis(h) de(jlk)l\\u00ed(ji)ci(hi)is,(i.) (;)\\r\\nma(i)ter(h) san(ij)cta,(h') tu(h)is(f) suf(h)fr\\u00e1(g)gi(fe)is(e.) (,)\\r\\ncon(efee)de(d)sc\\u00e9n(fh)de(h) no(g)stris(f) mi(hih)s\\u00e9(fe)ri(de)is.(e.) \\r\\n3.(::) Te(efee) cre(d)\\u00e1(fh)vit(h) Pa(g)ter(f) in(hih)g\\u00e9(fe)ni(de)tus,(e.) (,)\\r\\nob(i)um(h)br\\u00e1(ij)vit(j') te(j) U(h)ni(jlk)g\\u00e9(ji)ni(hi)tus,(i.) (;)\\r\\nfe(i)cun(h)d\\u00e1(ij)vit(h') te(h) San(f)ctus(h) Sp\\u00ed(g)ri(fe)tus:(e.) (,)\\r\\ni(efee)psis(d) ho(fh)nor(h) ex(g) cor(f)de(hih) p\\u00e9(fe)ni(de)tus.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
3542
|
+
office: "hy",
|
|
3543
|
+
mode: "8",
|
|
3544
|
+
pages: [
|
|
3545
|
+
{ page: "470", sequence: 0, extent: 1 }
|
|
3546
|
+
],
|
|
3547
|
+
},
|
|
3548
|
+
{
|
|
3549
|
+
id: "gregobase:18017",
|
|
3550
|
+
incipit: "Sanctorum meritis 2",
|
|
3551
|
+
gabc: "(c4)SAn(d)ct\\u00f3(e)rum(f) m\\u00e9(g)ri(h)tis(h_') (,) \\u00edn(h)cli(g)ta(e) g\\u00e1u(f)di(gf)a(e.) (;)\\r\\npan(d)g\\u00e1(e)mus,(f) s\\u00f3(g)ci(h)i,(h_') (,) g\\u00e9(g)sta(e)que(f) f\\u00f3r(g)ti(h)a;(h.) (:)\\r\\nnam(h) gli(hi)scit(ih) \\u00e1(g)ni(h)mus(h'_) (,) pr\\u00f3(h)me(g)re(e) c\\u00e1n(f)ti(ed)bus(d.) (;)\\r\\nvi(g)ct\\u00f3(f)rum(g) ge(e)nus(fe) \\u00f3p(d)ti(e)mum.(e.) \\r\\n2.(::) Hi(d) sunt(e) quos(f) r\\u00e9(g)ti(h)nens(h_') (,) mun(h)dus(g) in(e)h\\u00f3r(f)ru(gf)it,(e.) (;)\\r\\ni(d)psum(e) nam(f) st\\u00e9(g)ri(h)li(h_') (,) flo(g)re(e) per(f)\\u00e1(g)ri(h)dum(h.) (:)\\r\\nspre(h)v\\u00e9(hi)re(ih) p\\u00e9(g)ni(h)tus(h'_) (,) te(h)que(g) se(e)c\\u00fa(f)ti(ed) sunt,(d.) (;)\\r\\nrex,(g) Chri(f)ste,(g) bo(e)ne(fe) c\\u01fd(d)li(e)tum.(e.) \\r\\n3.(::) Hi(d) pro(e) te(f) f\\u00fa(g)ri(h)as(h_') (,) s\\u01fd(h)va(g)que(e) s\\u00fa(f)sti(gf)nent;(e.) (;)\\r\\nnon(d) mur(e)mur(f) r\\u00e9(g)so(h)nat,(h_') (,) non(g) que(e)ri(f)m\\u00f3(g)ni(h)a,(h.) (:)\\r\\nsed(h) cor(hi)de(ih) t\\u00e1(g)ci(h)to(h'_) (,) mens(h) be(g)ne(e) c\\u00f3n(f)sci(ed)a(d.) (;)\\r\\ncon(g)s\\u00e9r(f)vat(g) pa(e)ti(fe)\\u00e9n(d)ti(e)am.(e.) \\r\\n4.(::) Qu\\u00e6(d) vox,(e) qu\\u00e6(f) p\\u00f3(g)te(h)rit(h_') (,) lin(h)gua(g) re(e)t\\u00e9(f)xe(gf)re(e.) (;)\\r\\nqu\\u00e6(d) tu(e) mar(f)t\\u00fd(g)ri(h)bus(h_') (,) m\\u00fa(g)ne(e)ra(f) pr\\u01fd(g)pa(h)ras?(h.) (:)\\r\\nRu(h)bri(hi) nam(ih) fl\\u00fa(g)i(h)do(h'_) (,) s\\u00e1n(h)gui(g)ne(e) l\\u00e1u(f)re(ed)is(d.) (;)\\r\\ndi(g)t\\u00e1n(f)tur(g) be(e)ne(fe) f\\u00fal(d)gi(e)dis.(e.) \\r\\n5.(::) Te,(d) tri(e)na(f) D\\u00e9(g)i(h)tas(h_') (,) \\u00fa(h)na(g)que,(e) p\\u00f3(f)sci(gf)mus,(e.) (;)\\r\\nut(d) cul(e)pas(f) \\u00e1(g)blu(h)as,(h_') (,) n\\u00f3(g)xi(e)a(f) s\\u00fab(g)tra(h)has,(h.) (:)\\r\\ndes(h) pa(hi)cem(ih) f\\u00e1(g)mu(h)lis,(h'_) (,) nos(h) quo(g)que(e) gl\\u00f3(f)ri(ed)am(d.) (;)\\r\\nper(g) cun(f)cta(g) ti(e)bi(fe) s\\u01fd(d)cu(e)la.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
3552
|
+
office: "hy",
|
|
3553
|
+
mode: "4",
|
|
3554
|
+
pages: [
|
|
3555
|
+
{ page: "279", sequence: 0, extent: 1 }
|
|
3556
|
+
],
|
|
3557
|
+
},
|
|
3558
|
+
{
|
|
3559
|
+
id: "gregobase:18018",
|
|
3560
|
+
incipit: "Stabat mater 1",
|
|
3561
|
+
gabc: "(f3)STa(f)bat(e) ma(f)ter(fg) do(i)lo(h)r\\u00f3(g)sa(f.) (;)\\r\\niux(h)ta(g) cru(f)cem(fe) la(f)cri(g)m\\u00f3(f)sa,(e.) (;)\\r\\ndum(g) pen(h)d\\u00e9(g)bat(f) F\\u00ed(e)li(f)us.(f.) \\r\\n2.(::) Cu(f)ius(e) \\u00e1(f)ni(fg)mam(i) ge(h)m\\u00e9n(g)tem,(f.) (;)\\r\\ncon(h)tri(g)st\\u00e1(f)tam(fe) et(f) do(g)l\\u00e9n(f)tem(e.) (;)\\r\\nper(g)trans(h)\\u00ed(g)vit(f) gl\\u00e1(e)di(f)us.(f.) \\r\\n3.(::) O(f) quam(e) tri(f)stis(fg) et(i) af(h)fl\\u00ed(g)cta(f.) (;)\\r\\nfu(h)it(g) il(f)la(fe) be(f)ne(g)d\\u00ed(f)cta(e.) (;)\\r\\nma(g)ter(h) U(g)ni(f)g\\u00e9(e)ni(f)ti!(f.) \\r\\n4.(::) Qu\\u00e6(f) m\\u00e6(e)r\\u00e9(f)bat(fg) et(i) do(h)l\\u00e9(g)bat(f.) (;)\\r\\npi(h)a(g) ma(f)ter,(fe) cum(f) vi(g)d\\u00e9(f)bat(e.) (;)\\r\\nNa(g)ti(h) poe(g)nas(f) \\u00edn(e)cli(f)ti.(f.) \\r\\n5.(::) Quis(f) est(e) ho(f)mo(fg) qui(i) non(h) fle(g)ret,(f.) (;)\\r\\nma(h)trem(g) Chri(f)sti(fe) si(f) vi(g)d\\u00e9(f)ret(e.) (;)\\r\\nin(g) tan(h)to(g) sup(f)pl\\u00ed(e)ci(f)o?(f.) \\r\\n6.(::) Quis(f) non(e) pos(f)set(fg) con(i)tri(h)st\\u00e1(g)ri,(f.) (;)\\r\\npi(h)am(g) ma(f)trem(fe) con(f)tem(g)pl\\u00e1(f)ri(e.) (;)\\r\\ndo(g)l\\u00e9n(h)tem(g) cum(f) F\\u00ed(e)li(f)o?(f.) \\r\\n7.(::) Pro(f) pec(e)c\\u00e1(f)tis(fg) su(i)\\u00e6(h) gen(g)tis(f.) (;)\\r\\nvi(h)dit(g) Ie(f)sum(fe) in(f) tor(g)m\\u00e9n(f)tis(e.) (;)\\r\\net(g) fla(h)g\\u00e9l(g)lis(f) s\\u00fab(e)di(f)tum.(f.) \\r\\n8.(::) Vi(f)dit(e) su(f)um(fg) dul(i)cem(h) Na(g)tum(f.) (;)\\r\\nmo(h)ri(g)\\u00e9n(f)tem(fe) de(f)so(g)l\\u00e1(f)tum,(e.) (;)\\r\\ncum(g) e(h)m\\u00ed(g)sit(f) sp\\u00ed(e)ri(f)tum.(f.) \\r\\n9.(::) Chri(f)ste,(e) cum(f) sit(fg) hinc(i) ex(h)\\u00ed(g)re,(f.) (;)\\r\\nda(h) per(g) ma(f)trem(fe) me(f) ve(g)n\\u00ed(f)re(e.) (;)\\r\\nad(g) pal(h)mam(g) vi(f)ct\\u00f3(e)ri(f)\\u00e6.(f.) (::)\\r\\nA(fgf)men.(ef..) (::)\\r\\n",
|
|
3562
|
+
office: "hy",
|
|
3563
|
+
mode: "2",
|
|
3564
|
+
pages: [
|
|
3565
|
+
{ page: "434", sequence: 0, extent: 1 }
|
|
3566
|
+
],
|
|
3567
|
+
},
|
|
3568
|
+
{
|
|
3569
|
+
id: "gregobase:18019",
|
|
3570
|
+
incipit: "Te gratulantes",
|
|
3571
|
+
gabc: "(c4)TE(g) gra(hi)tu(j)l\\u00e1n(ih)tes(g) p\\u00e1n(h)gi(f)mus,(g'_) (,)\\r\\nMar(i)tha,(k) be(j)\\u00e1(i)ta(k) m\\u00fa(ji)li(h)er,(g.) (;)\\r\\nqu\\u00e6(g) me(h)ru(f)\\u00ed(g)sti(e) s\\u01fd(fe)pi(d)us(c'_) (,)\\r\\nChri(g)stum(hi) do(j)mi(ih) re(g)c\\u00ed(h)pe(f)re.(g.) \\r\\n2.(::) Tan(g)tum(hi) li(j)b\\u00e9n(ih)ter(g) h\\u00f3(h)spi(f)tem(g'_) (,)\\r\\ncu(i)ris(k) or(j)n\\u00e1(i)bas(k) s\\u00e9(ji)du(h)lis,(g.) (;)\\r\\nin(g) pl\\u00fa(h)ri(f)ma(g) sol(e)l\\u00ed(fe)ci(d)ta(c'_) (,)\\r\\na(g)m\\u00f3(hi)ris(j) dul(ih)ci(g) st\\u00ed(h)mu(f)lo.(g.) \\r\\n3.(::) Pa(g)scis(hi) dum(j) l\\u00e6(ih)ta(g) D\\u00f3(h)mi(f)num,(g'_) (,)\\r\\nso(i)ror(k) ac(j) fra(i)ter(k) \\u00e1(ji)vi(h)de(g.) (;)\\r\\npos(g)sunt(h) ab(f) il(g)lo(e) gr\\u00e1(fe)ti(d)\\u00e6(c'_) (,)\\r\\nvi(g)t\\u01fd(hi)que(j) ci(ih)bum(g) s\\u00fa(h)me(f)re.(g.) \\r\\n4.(::) Cap(g)t\\u00fa(hi)ro(j) mor(ih)tis(g) tr\\u00e1(h)mi(f)tem(g'_) (,)\\r\\ndan(i)te(k) so(j)r\\u00f3r<i>e</i>(i) a(k)r\\u00f3(ji)ma(h)ta,(g.) (;)\\r\\nex(g)tr\\u00e9(h)mi(f) tu(g) ser(e)v\\u00ed(fe)ti(d)i(c'_) (,)\\r\\nvi(g)gil(hi) do(j)n\\u00e1(ih)sti(g) m\\u00fa(h)ne(f)ra.(g.) \\r\\n5.(::) Ma(g)g\\u00ed(hi)stri(j) fe(ih)lix(g) h\\u00f3(h)spi(f)ta,(g'_) (,)\\r\\ncor(i)da(k) fac(j) no(i)stra(k) f\\u00e9r(ji)ve(h)ant,(g.) (;)\\r\\nut(g) il(h)li(f) gra(g)t\\u00e6(e) i\\u00fa(fe)gi(d)ter(c'_) (,)\\r\\nsint(g) se(hi)des(j) a(ih)mi(g)c\\u00ed(h)ti(f)\\u00e6.(g.) \\r\\n6.(::) Sit(g) Tri(hi)ni(j)t\\u00e1(ih)ti(g) gl\\u00f3(h)ri(f)a,(g'_) (,)\\r\\nqu\\u00e6(i) nos(k) in(j) do(i)mum(k) c\\u01fd(ji)li(h)cam(g.) (;)\\r\\nad(g)m\\u00edt(h)ti(f) tan(g)dem(e) tr\\u00ed(fe)bu(d)at(c'_) (,)\\r\\nte(g)c\\u00fam(hi)que(j) lau(ih)des(g) c\\u00e1(h)ne(f)re.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
3572
|
+
office: "hy",
|
|
3573
|
+
mode: "8",
|
|
3574
|
+
pages: [
|
|
3575
|
+
{ page: "405", sequence: 0, extent: 1 }
|
|
3576
|
+
],
|
|
3577
|
+
},
|
|
3578
|
+
{
|
|
3579
|
+
id: "gregobase:18023",
|
|
3580
|
+
incipit: "Veni præcelsa",
|
|
3581
|
+
gabc: "(c4)VE(g)ni,(g) pr\\u00e6(f)c\\u00e9l(e)sa(d) D\\u00f3(fhg)mi(fg)na;(g.) (,)\\r\\nMa(hiwji)r\\u00ed(h)a,(g) tu(h) nos(ig) v\\u00ed(h)si(g)ta,(f.) (;)\\r\\nqu\\u00e6(f) iam(g) co(f)gn\\u00e1(g)t\\u00e6(h) d\\u00f3(j)mu(g)i(hih'_15) (,)\\r\\ntan(h)tum(h) por(g)t\\u00e1(e)sti(f) g\\u00e1u(hg)di(fg)i.(g.) \\r\\n2.(::) Ve(g)ni,(g) iu(f)v\\u00e1(e)men(d) s\\u01fd(fhg)cu(fg)li,(g.) (,)\\r\\nsor(hiwji)des(h) au(g)fer(h) pi(ig)\\u00e1(h)cu(g)li,(f.) (;)\\r\\nac(f) vi(g)si(f)t\\u00e1n(g)do(h) p\\u00f3(j)pu(g)lum(hih'_15) (,)\\r\\npoe(h)n\\u00e6(h) tol(g)le(e) pe(f)r\\u00ed(hg)cu(fg)lum.(g.) \\r\\n3.(::) Ve(g)ni,(g) stel(f)la,(e) lux(d) m\\u00e1(fhg)ri(fg)um,(g.) (,)\\r\\nin(hiwji)f\\u00fan(h)de(g) pa(h)cis(ig) r\\u00e1(h)di(g)um;(f.) (;)\\r\\nre(f)ge(g) quod(f)c\\u00fam(g)que(h) d\\u00e9(j)vi(g)um,(hih'_15) (,)\\r\\nda(h) vi(h)tam(g) in(e)no(f)c\\u00e9n(hg)ti(fg)um.(g.) \\r\\n4.(::) Ve(g)ni,(g) pre(f)c\\u00e1(e)mur,(d) v\\u00ed(fhg)si(fg)tes(g.) (,)\\r\\nno(hiwji)b\\u00eds(h)que(g) vi(h)res(ig) r\\u00f3(h)bo(g)res(f.) (;)\\r\\nvir(f)t\\u00fa(g)te(f) sa(g)cri(h) \\u00edm(j)pe(g)tus,(hih'_15) (,)\\r\\nne(h) flu(h)ctu(g)\\u00e9(e)tur(f) \\u00e1(hg)ni(fg)mus.(g.) \\r\\n5.(::) Ve(g)ni,(g) vir(f)ga(e) re(d)g\\u00e1(fhg)li(fg)um,(g.) (,)\\r\\nre(hiwji)duc(h) flu(g)ctus(h) er(ig)r\\u00e1n(h)ti(g)um(f.) (;)\\r\\nad(f) u(g)ni(f)t\\u00e1(g)tem(h) f\\u00ed(j)de(g)i,(hih'_15) (,)\\r\\nin(h) qua(h) sal(g)v\\u00e1n(e)tur(f) c\\u01fd(hg)li(fg)ci.(g.) \\r\\n6.(::) Ve(g)ni,(g) te(f)c\\u00fam(e)que(d) F\\u00ed(fhg)li(fg)um(g.) (,)\\r\\nlau(hiwji)d\\u00e9(h)mus(g) in(h) per(ig)p\\u00e9(h)tu(g)um,(f.) (;)\\r\\ncum(f) Pa(g) tr<i>e</i>() et(f) San(g)cto(h) Sp\\u00ed(j)ri(g)tu,(hih'_15) (,)\\r\\nqui(h) no(h)bis(g) dent(e) au(f)x\\u00ed(hg)li(fg)um.(g.) (::)\\r\\nA(ghg)men.(fg..) (::)\\r\\n",
|
|
3582
|
+
office: "hy",
|
|
3583
|
+
mode: "8",
|
|
3584
|
+
pages: [
|
|
3585
|
+
{ page: "376", sequence: 0, extent: 1 }
|
|
3586
|
+
],
|
|
3587
|
+
},
|
|
3588
|
+
{
|
|
3589
|
+
id: "gregobase:18024",
|
|
3590
|
+
incipit: "Virginis proles",
|
|
3591
|
+
gabc: "(c4)VIr(h_)gi(g)nis(h) Pro(gf)les(e.) (,) o(e)pi(g)f\\u00e9x(e)que(f) Ma(e.)tris,(d.) (;)\\r\\nVir(d)go(d) quem(dh) ges(h)sit(h_g_j_) pe(i)pe(h)r\\u00edt(g)que(h) Vir(gf)go,(e.) (:)\\r\\nv\\u00edr(f_)gi(e)nis(g) fe(ghGEf)stum(d.) (,) c\\u00e1(e)ni(g)mus(e) tro(f)p\\u01fd(ed)um:(c'_) (,)\\r\\n\\u00e1c(f_)ci(e)pe(g) vo(fe)tum.(d.) \\r\\n2.(::) H\\u00e6c(h_) tu(g)a(h) vir(gf)go,(e.) (,) d\\u00fa(e)pli(g)ci(e) be(f)\\u00e1(e.)ta(d.) (;)\\r\\nsor(d)te(d) dum(dh) ge(h)stit(h_g_j_) fr\\u00e1(i)gi(h)lem(g) do(h)m\\u00e1(gf)re(e.) (:)\\r\\nc\\u00f3r(f_)po(e)ris(g) se(ghGEf)xum,(d.) (,) d\\u00f3(e)mu(g)it(e) cru(f)\\u00e9n(ed)tum(c'_) (,)\\r\\nc\\u00f3r(f_)po(e)re(g) s\\u00e6(fe)clum.(d.) \\r\\n3.(::) In(h_)de(g) nec(h) mor(gf)tem(e.) (,) nec(e) a(g)m\\u00ed(e)ca(f) mor(e.)tis(d.) (;)\\r\\ns\\u00e6(d)va(d) p\\u0153(dh)n\\u00e1(h)rum(h_g_j_) g\\u00e9(i)ne(h)ra(g) pa(h)v\\u00e9(gf)scens,(e.) (:)\\r\\ns\\u00e1n(f_)gui(e)ne(g) fu(ghGEf)so(d.) (,) m\\u00e9(e)ru(g)it(e) sa(f)cr\\u00e1(ed)tum(c'_) (,)\\r\\nsc\\u00e1n(f_)de(e)re(g) c\\u00e6(fe)lum.(d.) \\r\\n4.(::) Hu(h_)ius(g) ob(h)t\\u00e9n(gf)tu,(e.) (,) De(e)us(g) al(e)me,(f) no(e.)stris(d.) (;)\\r\\npar(d)ce(d) iam(dh) cul(h)pis,(h_g_j_) v\\u00ed(i)ti(h)is(g) re(h)v\\u00fal(gf)sis,(e.) (:)\\r\\nquo(f_) ti(e)bi(g) pu(ghGEf)ri(d.) (,) r\\u00e9(e)so(g)net(e) per(f) \\u00e6(ed)vum(c'_) (,)\\r\\np\\u00e9(f_)cto(e)ris(g) hym(fe)nus.(d.) (::)\\r\\nA(ded)men.(cd..) (::)\\r\\n",
|
|
3592
|
+
office: "hy",
|
|
3593
|
+
mode: "1",
|
|
3594
|
+
pages: [
|
|
3595
|
+
{ page: "288", sequence: 0, extent: 1 }
|
|
3596
|
+
],
|
|
3597
|
+
},
|
|
3598
|
+
{
|
|
3599
|
+
id: "gregobase:18025",
|
|
3600
|
+
incipit: "Virgo prudentum",
|
|
3601
|
+
gabc: "(c4)VIr(d_)go(e) pru(f)d\\u00e9n(gh)tum(g.) (,) co(fe)mi(d)t\\u00e1(e)ta(f) c\\u0153(e.)tum(d.) (;)\\r\\n\\u00f3b(f_)vi(e)am(f) spon(gh)so(g.) (,) v\\u00e9(g)ni(f)ens(h) pa(i)r\\u00e1(h.)ta,(g.) (:)\\r\\nno(h_)ctis(g) hor(f)r\\u00e9n(g.)d\\u00e6(f.) (,) r\\u00e9(fe)mo(d)vet(e) t\\u00e9(f)ne(e.)bras(d.) (,)\\r\\nl\\u00e1m(f-)pa(e)de(f) pu(gvFE)ra.(e.) \\r\\n2.(::) Il(d_)le(e) ful(f)g\\u00e9n(gh)tem(g.) (,) n\\u00ed(fe)ti(d)dis(e) la(f)p\\u00edl(e.)lis(d.) (;)\\r\\n\\u00e1(f_)nu(e)lum(f) mi(gh)ri(g.) (,) tr\\u00ed(g)bu(f)it(h) de(i)c\\u00f3(h.)ris(g.) (:)\\r\\nv\\u00edr(h_)gi(g)ni(f) di(g.)cens:(f.) \\u00ab(,)Ti(fe)bi(d) tra(e)do(f) san(e.)cti(d.) (,)\\r\\npi(f-)gnus(e) a(f)m\\u00f3(gvFE)ris\\u00bb.(e.) \\r\\n3.(::) Mo(d_)ta(e) fla(f)gr\\u00e1n(gh)tis(g.) (,) st\\u00ed(fe)mu(d)lo(e) ca(f)l\\u00f3(e.)ris(d.) (;)\\r\\nmen(f_)tis(e) ex(f)c\\u00e9s(gh)su(g.) (,) r\\u00e1(g)pi(f)tur(h) fre(i)qu\\u00e9n(h.)ti,(g.) (:)\\r\\nfi(h_)xa(g) dum(f) por(g.)tat(f.) (,) Ca(fe)tha(d)r\\u00ed(e)na(f) mem(e.)bris(d.) (,)\\r\\nv\\u00fal(f-)ne(e)ra(f) Chri(gvFE)sti.(e.) \\r\\n4.(::) Un(d_)de(e) ter(f) fe(gh)lix(g.) (,) qua(fe)ter(d) et(e) be(f)\\u00e1(e.)ta(d.) (;)\\r\\nin(f_) si(e)nu(f) spon(gh)si(g.) (,) re(g)qui(f)\\u00e9(h)vit(i) al(h.)mi,(g.) (:)\\r\\nin(h_)ter(g) il(f)l\\u00fa(g.)stres(f.) (,) \\u00e1(fe)ni(d)mas(e) re(f)l\\u00e1(e.)ta(d.) (,)\\r\\nlux(f-) no(e)va(f) c\\u00e6(gvFE)li.(e.) \\r\\n5.(::) Sit(d_) De(e)us(f) c\\u00e6(gh)li(g.) (,) r\\u00e9(fe)si(d)dens(e) in(f) ar(e.)ce,(d.) (;)\\r\\ntri(f_)nus(e) et(f) sim(gh)plex(g.) (,) be(g)ne(f)d\\u00ed(h)ctus(i) il(h.)le,(g.) (:)\\r\\nqui(h_) po(g)tens(f) to(g.)tum(f.) (,) st\\u00e1(fe)bi(d)li(e) gu(f)b\\u00e9r(e.)nat(d.) (,)\\r\\n\\u00f3r(f-)di(e)ne(f) mun(gvFE)dum.(e.) (::)\\r\\nA(efe)men.(de..) (::)\\r\\n",
|
|
3602
|
+
office: "hy",
|
|
3603
|
+
mode: "4",
|
|
3604
|
+
pages: [
|
|
3605
|
+
{ page: "368", sequence: 0, extent: 1 }
|
|
3606
|
+
],
|
|
3607
|
+
},
|
|
3608
|
+
{
|
|
3609
|
+
id: "gregobase:18100",
|
|
3610
|
+
incipit: "Christus natus est nobis",
|
|
3611
|
+
gabc: "(c4)CHri(@[[uh:m{]d_e_0fW_0g_0h_0][uh}])stus(g) na(h_g_!hw_!i_1j_)tus(h) est(gh~) no(hhgh)bis :(ffe/fog.) (;) ve(d!e!fog)n\\u00ed(g)te,(gh/hg/he__) a(df!gwh)do(g)r\\u00e9(fg!hvhgh)mus.(e.) (::)",
|
|
3612
|
+
office: "an",
|
|
3613
|
+
mode: "4",
|
|
3614
|
+
pages: [
|
|
3615
|
+
{ page: "16", sequence: 0, extent: 1 }
|
|
3616
|
+
],
|
|
3617
|
+
}
|
|
3618
|
+
];
|
|
3619
|
+
//# sourceMappingURL=lh.js.map
|