codexparser 0.1.94 → 0.1.97
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/.trunk/configs/.markdownlint.yaml +2 -0
- package/.trunk/trunk.yaml +32 -0
- package/package.json +1 -1
- package/src/CodexParser.js +30 -27
- package/src/versifications/daniel.js +495 -40
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# This file controls the behavior of Trunk: https://docs.trunk.io/cli
|
|
2
|
+
# To learn more about the format of this file, see https://docs.trunk.io/reference/trunk-yaml
|
|
3
|
+
version: 0.1
|
|
4
|
+
cli:
|
|
5
|
+
version: 1.25.0
|
|
6
|
+
# Trunk provides extensibility via plugins. (https://docs.trunk.io/plugins)
|
|
7
|
+
plugins:
|
|
8
|
+
sources:
|
|
9
|
+
- id: trunk
|
|
10
|
+
ref: v1.7.2
|
|
11
|
+
uri: https://github.com/trunk-io/plugins
|
|
12
|
+
# Many linters and tools depend on runtimes - configure them here. (https://docs.trunk.io/runtimes)
|
|
13
|
+
runtimes:
|
|
14
|
+
enabled:
|
|
15
|
+
- node@22.16.0
|
|
16
|
+
- python@3.10.8
|
|
17
|
+
# This is the section where you manage your linters. (https://docs.trunk.io/check/configuration)
|
|
18
|
+
lint:
|
|
19
|
+
enabled:
|
|
20
|
+
- checkov@3.2.464
|
|
21
|
+
- git-diff-check
|
|
22
|
+
- markdownlint@0.45.0
|
|
23
|
+
- osv-scanner@2.2.1
|
|
24
|
+
- prettier@3.6.2
|
|
25
|
+
- trufflehog@3.90.5
|
|
26
|
+
actions:
|
|
27
|
+
disabled:
|
|
28
|
+
- trunk-announce
|
|
29
|
+
- trunk-check-pre-push
|
|
30
|
+
- trunk-fmt-pre-commit
|
|
31
|
+
enabled:
|
|
32
|
+
- trunk-upgrade-available
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codexparser",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.97",
|
|
4
4
|
"description": "This is a Javascript Bible parser and text scanner. It will search through texts and collate all scripture references into an array and parse them into objects, and it will parse passages into objects by book, chapter, verse, and testament. ",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
package/src/CodexParser.js
CHANGED
|
@@ -1141,6 +1141,11 @@ class CodexParser {
|
|
|
1141
1141
|
throw new Error("Passages must be from the same book to join.")
|
|
1142
1142
|
}
|
|
1143
1143
|
|
|
1144
|
+
const versions = new Set(passages.map((p) => p.version.abbreviation))
|
|
1145
|
+
if (versions.size > 1) {
|
|
1146
|
+
throw new Error("Cannot combine passages from different versions.")
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1144
1149
|
const combined = {
|
|
1145
1150
|
...passages[0],
|
|
1146
1151
|
verses: [],
|
|
@@ -1160,35 +1165,30 @@ class CodexParser {
|
|
|
1160
1165
|
|
|
1161
1166
|
passages.forEach((passage) => {
|
|
1162
1167
|
passage.passages.forEach((p) => {
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
if (
|
|
1166
|
-
|
|
1167
|
-
normChapter = c
|
|
1168
|
-
normVerse = v
|
|
1169
|
-
}
|
|
1170
|
-
if (!chapterVerses[normChapter]) {
|
|
1171
|
-
chapterVerses[normChapter] = new Set()
|
|
1168
|
+
const chapter = p.chapter
|
|
1169
|
+
const verse = p.verse
|
|
1170
|
+
if (!chapterVerses[chapter]) {
|
|
1171
|
+
chapterVerses[chapter] = new Set()
|
|
1172
1172
|
}
|
|
1173
|
-
chapterVerses[
|
|
1173
|
+
chapterVerses[chapter].add(verse)
|
|
1174
1174
|
combined.passages.push({
|
|
1175
1175
|
book: p.book,
|
|
1176
|
-
chapter:
|
|
1177
|
-
verse:
|
|
1176
|
+
chapter: p.chapter,
|
|
1177
|
+
verse: p.verse,
|
|
1178
1178
|
versification: p.versification,
|
|
1179
1179
|
})
|
|
1180
1180
|
|
|
1181
|
-
if (firstChapter === null ||
|
|
1182
|
-
firstChapter =
|
|
1183
|
-
firstVerse =
|
|
1184
|
-
} else if (
|
|
1185
|
-
firstVerse =
|
|
1181
|
+
if (firstChapter === null || chapter < firstChapter) {
|
|
1182
|
+
firstChapter = chapter
|
|
1183
|
+
firstVerse = verse
|
|
1184
|
+
} else if (chapter === firstChapter && (firstVerse === null || verse < firstVerse)) {
|
|
1185
|
+
firstVerse = verse
|
|
1186
1186
|
}
|
|
1187
|
-
if (lastChapter === null ||
|
|
1188
|
-
lastChapter =
|
|
1189
|
-
lastVerse =
|
|
1190
|
-
} else if (
|
|
1191
|
-
lastVerse =
|
|
1187
|
+
if (lastChapter === null || chapter > lastChapter) {
|
|
1188
|
+
lastChapter = chapter
|
|
1189
|
+
lastVerse = verse
|
|
1190
|
+
} else if (chapter === lastChapter && (lastVerse === null || verse > lastVerse)) {
|
|
1191
|
+
lastVerse = verse
|
|
1192
1192
|
}
|
|
1193
1193
|
})
|
|
1194
1194
|
})
|
|
@@ -1272,18 +1272,21 @@ class CodexParser {
|
|
|
1272
1272
|
delete combined.to
|
|
1273
1273
|
}
|
|
1274
1274
|
|
|
1275
|
-
//
|
|
1276
|
-
combined.version =
|
|
1275
|
+
// Respect the common version
|
|
1276
|
+
combined.version = passages[0].version
|
|
1277
1277
|
|
|
1278
|
-
// Set abbr
|
|
1278
|
+
// Set abbr with version suffix if not ENG
|
|
1279
1279
|
const sblEntry = Object.entries(this.sblAbbreviations).find(
|
|
1280
1280
|
([key]) => key.toLowerCase() === combined.book.toLowerCase()
|
|
1281
1281
|
)
|
|
1282
|
+
const suffix = combined.version.abbreviation === "eng" ? "" : ` ${combined.version.value}`
|
|
1282
1283
|
if (sblEntry) {
|
|
1283
1284
|
const { value, abbr } = sblEntry[1]
|
|
1284
|
-
combined.abbr = abbr
|
|
1285
|
+
combined.abbr = abbr
|
|
1286
|
+
? `${value}. ${combined.scripture.cv}${suffix}`
|
|
1287
|
+
: `${value} ${combined.scripture.cv}${suffix}`
|
|
1285
1288
|
} else {
|
|
1286
|
-
combined.abbr = `${combined.book} ${combined.scripture.cv}`
|
|
1289
|
+
combined.abbr = `${combined.book} ${combined.scripture.cv}${suffix}`
|
|
1287
1290
|
}
|
|
1288
1291
|
|
|
1289
1292
|
const self = this
|
|
@@ -1,4 +1,120 @@
|
|
|
1
1
|
module.exports = {
|
|
2
|
+
// Chapter 3: Include all LXX verses, with mt/eng set to null where no correspondence exists
|
|
3
|
+
"3:1": {
|
|
4
|
+
lxx: "3:1",
|
|
5
|
+
mt: "3:1",
|
|
6
|
+
eng: "3:1",
|
|
7
|
+
},
|
|
8
|
+
"3:2": {
|
|
9
|
+
lxx: "3:2",
|
|
10
|
+
mt: "3:2",
|
|
11
|
+
eng: "3:2",
|
|
12
|
+
},
|
|
13
|
+
"3:3": {
|
|
14
|
+
lxx: "3:3",
|
|
15
|
+
mt: "3:3",
|
|
16
|
+
eng: "3:3",
|
|
17
|
+
},
|
|
18
|
+
"3:4": {
|
|
19
|
+
lxx: "3:4",
|
|
20
|
+
mt: "3:4",
|
|
21
|
+
eng: "3:4",
|
|
22
|
+
},
|
|
23
|
+
"3:5": {
|
|
24
|
+
lxx: "3:5",
|
|
25
|
+
mt: "3:5",
|
|
26
|
+
eng: "3:5",
|
|
27
|
+
},
|
|
28
|
+
"3:6": {
|
|
29
|
+
lxx: "3:6",
|
|
30
|
+
mt: "3:6",
|
|
31
|
+
eng: "3:6",
|
|
32
|
+
},
|
|
33
|
+
"3:7": {
|
|
34
|
+
lxx: "3:7",
|
|
35
|
+
mt: "3:7",
|
|
36
|
+
eng: "3:7",
|
|
37
|
+
},
|
|
38
|
+
"3:8": {
|
|
39
|
+
lxx: "3:8",
|
|
40
|
+
mt: "3:8",
|
|
41
|
+
eng: "3:8",
|
|
42
|
+
},
|
|
43
|
+
"3:9": {
|
|
44
|
+
lxx: "3:9",
|
|
45
|
+
mt: "3:9",
|
|
46
|
+
eng: "3:9",
|
|
47
|
+
},
|
|
48
|
+
"3:10": {
|
|
49
|
+
lxx: "3:10",
|
|
50
|
+
mt: "3:10",
|
|
51
|
+
eng: "3:10",
|
|
52
|
+
},
|
|
53
|
+
"3:11": {
|
|
54
|
+
lxx: "3:11",
|
|
55
|
+
mt: "3:11",
|
|
56
|
+
eng: "3:11",
|
|
57
|
+
},
|
|
58
|
+
"3:12": {
|
|
59
|
+
lxx: "3:12",
|
|
60
|
+
mt: "3:12",
|
|
61
|
+
eng: "3:12",
|
|
62
|
+
},
|
|
63
|
+
"3:13": {
|
|
64
|
+
lxx: "3:13",
|
|
65
|
+
mt: "3:13",
|
|
66
|
+
eng: "3:13",
|
|
67
|
+
},
|
|
68
|
+
"3:14": {
|
|
69
|
+
lxx: "3:14",
|
|
70
|
+
mt: "3:14",
|
|
71
|
+
eng: "3:14",
|
|
72
|
+
},
|
|
73
|
+
"3:15": {
|
|
74
|
+
lxx: "3:15",
|
|
75
|
+
mt: "3:15",
|
|
76
|
+
eng: "3:15",
|
|
77
|
+
},
|
|
78
|
+
"3:16": {
|
|
79
|
+
lxx: "3:16",
|
|
80
|
+
mt: "3:16",
|
|
81
|
+
eng: "3:16",
|
|
82
|
+
},
|
|
83
|
+
"3:17": {
|
|
84
|
+
lxx: "3:17",
|
|
85
|
+
mt: "3:17",
|
|
86
|
+
eng: "3:17",
|
|
87
|
+
},
|
|
88
|
+
"3:18": {
|
|
89
|
+
lxx: "3:18",
|
|
90
|
+
mt: "3:18",
|
|
91
|
+
eng: "3:18",
|
|
92
|
+
},
|
|
93
|
+
"3:19": {
|
|
94
|
+
lxx: "3:19",
|
|
95
|
+
mt: "3:19",
|
|
96
|
+
eng: "3:19",
|
|
97
|
+
},
|
|
98
|
+
"3:20": {
|
|
99
|
+
lxx: "3:20",
|
|
100
|
+
mt: "3:20",
|
|
101
|
+
eng: "3:20",
|
|
102
|
+
},
|
|
103
|
+
"3:21": {
|
|
104
|
+
lxx: "3:21",
|
|
105
|
+
mt: "3:21",
|
|
106
|
+
eng: "3:21",
|
|
107
|
+
},
|
|
108
|
+
"3:22": {
|
|
109
|
+
lxx: "3:22",
|
|
110
|
+
mt: "3:22",
|
|
111
|
+
eng: "3:22",
|
|
112
|
+
},
|
|
113
|
+
"3:23": {
|
|
114
|
+
lxx: "3:23",
|
|
115
|
+
mt: "3:23",
|
|
116
|
+
eng: "3:23",
|
|
117
|
+
},
|
|
2
118
|
"3:24": {
|
|
3
119
|
lxx: "3:91",
|
|
4
120
|
mt: "3:24",
|
|
@@ -34,211 +150,550 @@ module.exports = {
|
|
|
34
150
|
mt: "3:30",
|
|
35
151
|
eng: "3:30",
|
|
36
152
|
},
|
|
37
|
-
|
|
153
|
+
// Additional LXX verses in Chapter 3 (Prayer of Azariah and Song of the Three Young Men)
|
|
154
|
+
"3:24a": {
|
|
155
|
+
lxx: "3:24",
|
|
156
|
+
mt: null,
|
|
157
|
+
eng: null,
|
|
158
|
+
},
|
|
159
|
+
"3:25a": {
|
|
160
|
+
lxx: "3:25",
|
|
161
|
+
mt: null,
|
|
162
|
+
eng: null,
|
|
163
|
+
},
|
|
164
|
+
"3:26a": {
|
|
165
|
+
lxx: "3:26",
|
|
166
|
+
mt: null,
|
|
167
|
+
eng: null,
|
|
168
|
+
},
|
|
169
|
+
"3:27a": {
|
|
170
|
+
lxx: "3:27",
|
|
171
|
+
mt: null,
|
|
172
|
+
eng: null,
|
|
173
|
+
},
|
|
174
|
+
"3:28a": {
|
|
175
|
+
lxx: "3:28",
|
|
176
|
+
mt: null,
|
|
177
|
+
eng: null,
|
|
178
|
+
},
|
|
179
|
+
"3:29a": {
|
|
180
|
+
lxx: "3:29",
|
|
181
|
+
mt: null,
|
|
182
|
+
eng: null,
|
|
183
|
+
},
|
|
184
|
+
"3:30a": {
|
|
185
|
+
lxx: "3:30",
|
|
186
|
+
mt: null,
|
|
187
|
+
eng: null,
|
|
188
|
+
},
|
|
189
|
+
"3:31a": {
|
|
38
190
|
lxx: "3:31",
|
|
191
|
+
mt: null,
|
|
192
|
+
eng: null,
|
|
193
|
+
},
|
|
194
|
+
"3:32a": {
|
|
195
|
+
lxx: "3:32",
|
|
196
|
+
mt: null,
|
|
197
|
+
eng: null,
|
|
198
|
+
},
|
|
199
|
+
"3:33a": {
|
|
200
|
+
lxx: "3:33",
|
|
201
|
+
mt: null,
|
|
202
|
+
eng: null,
|
|
203
|
+
},
|
|
204
|
+
"3:34": {
|
|
205
|
+
lxx: "3:34",
|
|
206
|
+
mt: null,
|
|
207
|
+
eng: null,
|
|
208
|
+
},
|
|
209
|
+
"3:35": {
|
|
210
|
+
lxx: "3:35",
|
|
211
|
+
mt: null,
|
|
212
|
+
eng: null,
|
|
213
|
+
},
|
|
214
|
+
"3:36": {
|
|
215
|
+
lxx: "3:36",
|
|
216
|
+
mt: null,
|
|
217
|
+
eng: null,
|
|
218
|
+
},
|
|
219
|
+
"3:37": {
|
|
220
|
+
lxx: "3:37",
|
|
221
|
+
mt: null,
|
|
222
|
+
eng: null,
|
|
223
|
+
},
|
|
224
|
+
"3:38": {
|
|
225
|
+
lxx: "3:38",
|
|
226
|
+
mt: null,
|
|
227
|
+
eng: null,
|
|
228
|
+
},
|
|
229
|
+
"3:39": {
|
|
230
|
+
lxx: "3:39",
|
|
231
|
+
mt: null,
|
|
232
|
+
eng: null,
|
|
233
|
+
},
|
|
234
|
+
"3:40": {
|
|
235
|
+
lxx: "3:40",
|
|
236
|
+
mt: null,
|
|
237
|
+
eng: null,
|
|
238
|
+
},
|
|
239
|
+
"3:41": {
|
|
240
|
+
lxx: "3:41",
|
|
241
|
+
mt: null,
|
|
242
|
+
eng: null,
|
|
243
|
+
},
|
|
244
|
+
"3:42": {
|
|
245
|
+
lxx: "3:42",
|
|
246
|
+
mt: null,
|
|
247
|
+
eng: null,
|
|
248
|
+
},
|
|
249
|
+
"3:43": {
|
|
250
|
+
lxx: "3:43",
|
|
251
|
+
mt: null,
|
|
252
|
+
eng: null,
|
|
253
|
+
},
|
|
254
|
+
"3:44": {
|
|
255
|
+
lxx: "3:44",
|
|
256
|
+
mt: null,
|
|
257
|
+
eng: null,
|
|
258
|
+
},
|
|
259
|
+
"3:45": {
|
|
260
|
+
lxx: "3:45",
|
|
261
|
+
mt: null,
|
|
262
|
+
eng: null,
|
|
263
|
+
},
|
|
264
|
+
"3:46": {
|
|
265
|
+
lxx: "3:46",
|
|
266
|
+
mt: null,
|
|
267
|
+
eng: null,
|
|
268
|
+
},
|
|
269
|
+
"3:47": {
|
|
270
|
+
lxx: "3:47",
|
|
271
|
+
mt: null,
|
|
272
|
+
eng: null,
|
|
273
|
+
},
|
|
274
|
+
"3:48": {
|
|
275
|
+
lxx: "3:48",
|
|
276
|
+
mt: null,
|
|
277
|
+
eng: null,
|
|
278
|
+
},
|
|
279
|
+
"3:49": {
|
|
280
|
+
lxx: "3:49",
|
|
281
|
+
mt: null,
|
|
282
|
+
eng: null,
|
|
283
|
+
},
|
|
284
|
+
"3:50": {
|
|
285
|
+
lxx: "3:50",
|
|
286
|
+
mt: null,
|
|
287
|
+
eng: null,
|
|
288
|
+
},
|
|
289
|
+
"3:51": {
|
|
290
|
+
lxx: "3:51",
|
|
291
|
+
mt: null,
|
|
292
|
+
eng: null,
|
|
293
|
+
},
|
|
294
|
+
"3:52": {
|
|
295
|
+
lxx: "3:52",
|
|
296
|
+
mt: null,
|
|
297
|
+
eng: null,
|
|
298
|
+
},
|
|
299
|
+
"3:53": {
|
|
300
|
+
lxx: "3:53",
|
|
301
|
+
mt: null,
|
|
302
|
+
eng: null,
|
|
303
|
+
},
|
|
304
|
+
"3:54": {
|
|
305
|
+
lxx: "3:54",
|
|
306
|
+
mt: null,
|
|
307
|
+
eng: null,
|
|
308
|
+
},
|
|
309
|
+
"3:55": {
|
|
310
|
+
lxx: "3:55",
|
|
311
|
+
mt: null,
|
|
312
|
+
eng: null,
|
|
313
|
+
},
|
|
314
|
+
"3:56": {
|
|
315
|
+
lxx: "3:56",
|
|
316
|
+
mt: null,
|
|
317
|
+
eng: null,
|
|
318
|
+
},
|
|
319
|
+
"3:57": {
|
|
320
|
+
lxx: "3:57",
|
|
321
|
+
mt: null,
|
|
322
|
+
eng: null,
|
|
323
|
+
},
|
|
324
|
+
"3:58": {
|
|
325
|
+
lxx: "3:58",
|
|
326
|
+
mt: null,
|
|
327
|
+
eng: null,
|
|
328
|
+
},
|
|
329
|
+
"3:59": {
|
|
330
|
+
lxx: "3:59",
|
|
331
|
+
mt: null,
|
|
332
|
+
eng: null,
|
|
333
|
+
},
|
|
334
|
+
"3:60": {
|
|
335
|
+
lxx: "3:60",
|
|
336
|
+
mt: null,
|
|
337
|
+
eng: null,
|
|
338
|
+
},
|
|
339
|
+
"3:61": {
|
|
340
|
+
lxx: "3:61",
|
|
341
|
+
mt: null,
|
|
342
|
+
eng: null,
|
|
343
|
+
},
|
|
344
|
+
"3:62": {
|
|
345
|
+
lxx: "3:62",
|
|
346
|
+
mt: null,
|
|
347
|
+
eng: null,
|
|
348
|
+
},
|
|
349
|
+
"3:63": {
|
|
350
|
+
lxx: "3:63",
|
|
351
|
+
mt: null,
|
|
352
|
+
eng: null,
|
|
353
|
+
},
|
|
354
|
+
"3:64": {
|
|
355
|
+
lxx: "3:64",
|
|
356
|
+
mt: null,
|
|
357
|
+
eng: null,
|
|
358
|
+
},
|
|
359
|
+
"3:65": {
|
|
360
|
+
lxx: "3:65",
|
|
361
|
+
mt: null,
|
|
362
|
+
eng: null,
|
|
363
|
+
},
|
|
364
|
+
"3:66": {
|
|
365
|
+
lxx: "3:66",
|
|
366
|
+
mt: null,
|
|
367
|
+
eng: null,
|
|
368
|
+
},
|
|
369
|
+
"3:67": {
|
|
370
|
+
lxx: "3:67",
|
|
371
|
+
mt: null,
|
|
372
|
+
eng: null,
|
|
373
|
+
},
|
|
374
|
+
"3:68": {
|
|
375
|
+
lxx: "3:68",
|
|
376
|
+
mt: null,
|
|
377
|
+
eng: null,
|
|
378
|
+
},
|
|
379
|
+
"3:69": {
|
|
380
|
+
lxx: "3:69",
|
|
381
|
+
mt: null,
|
|
382
|
+
eng: null,
|
|
383
|
+
},
|
|
384
|
+
"3:70": {
|
|
385
|
+
lxx: "3:70",
|
|
386
|
+
mt: null,
|
|
387
|
+
eng: null,
|
|
388
|
+
},
|
|
389
|
+
"3:71": {
|
|
390
|
+
lxx: "3:71",
|
|
391
|
+
mt: null,
|
|
392
|
+
eng: null,
|
|
393
|
+
},
|
|
394
|
+
"3:72": {
|
|
395
|
+
lxx: "3:72",
|
|
396
|
+
mt: null,
|
|
397
|
+
eng: null,
|
|
398
|
+
},
|
|
399
|
+
"3:73": {
|
|
400
|
+
lxx: "3:73",
|
|
401
|
+
mt: null,
|
|
402
|
+
eng: null,
|
|
403
|
+
},
|
|
404
|
+
"3:74": {
|
|
405
|
+
lxx: "3:74",
|
|
406
|
+
mt: null,
|
|
407
|
+
eng: null,
|
|
408
|
+
},
|
|
409
|
+
"3:75": {
|
|
410
|
+
lxx: "3:75",
|
|
411
|
+
mt: null,
|
|
412
|
+
eng: null,
|
|
413
|
+
},
|
|
414
|
+
"3:76": {
|
|
415
|
+
lxx: "3:76",
|
|
416
|
+
mt: null,
|
|
417
|
+
eng: null,
|
|
418
|
+
},
|
|
419
|
+
"3:77": {
|
|
420
|
+
lxx: "3:77",
|
|
421
|
+
mt: null,
|
|
422
|
+
eng: null,
|
|
423
|
+
},
|
|
424
|
+
"3:78": {
|
|
425
|
+
lxx: "3:78",
|
|
426
|
+
mt: null,
|
|
427
|
+
eng: null,
|
|
428
|
+
},
|
|
429
|
+
"3:79": {
|
|
430
|
+
lxx: "3:79",
|
|
431
|
+
mt: null,
|
|
432
|
+
eng: null,
|
|
433
|
+
},
|
|
434
|
+
"3:80": {
|
|
435
|
+
lxx: "3:80",
|
|
436
|
+
mt: null,
|
|
437
|
+
eng: null,
|
|
438
|
+
},
|
|
439
|
+
"3:81": {
|
|
440
|
+
lxx: "3:81",
|
|
441
|
+
mt: null,
|
|
442
|
+
eng: null,
|
|
443
|
+
},
|
|
444
|
+
"3:82": {
|
|
445
|
+
lxx: "3:82",
|
|
446
|
+
mt: null,
|
|
447
|
+
eng: null,
|
|
448
|
+
},
|
|
449
|
+
"3:83": {
|
|
450
|
+
lxx: "3:83",
|
|
451
|
+
mt: null,
|
|
452
|
+
eng: null,
|
|
453
|
+
},
|
|
454
|
+
"3:84": {
|
|
455
|
+
lxx: "3:84",
|
|
456
|
+
mt: null,
|
|
457
|
+
eng: null,
|
|
458
|
+
},
|
|
459
|
+
"3:85": {
|
|
460
|
+
lxx: "3:85",
|
|
461
|
+
mt: null,
|
|
462
|
+
eng: null,
|
|
463
|
+
},
|
|
464
|
+
"3:86": {
|
|
465
|
+
lxx: "3:86",
|
|
466
|
+
mt: null,
|
|
467
|
+
eng: null,
|
|
468
|
+
},
|
|
469
|
+
"3:87": {
|
|
470
|
+
lxx: "3:87",
|
|
471
|
+
mt: null,
|
|
472
|
+
eng: null,
|
|
473
|
+
},
|
|
474
|
+
"3:88": {
|
|
475
|
+
lxx: "3:88",
|
|
476
|
+
mt: null,
|
|
477
|
+
eng: null,
|
|
478
|
+
},
|
|
479
|
+
"3:89": {
|
|
480
|
+
lxx: "3:89",
|
|
481
|
+
mt: null,
|
|
482
|
+
eng: null,
|
|
483
|
+
},
|
|
484
|
+
"3:90": {
|
|
485
|
+
lxx: "3:90",
|
|
486
|
+
mt: null,
|
|
487
|
+
eng: null,
|
|
488
|
+
},
|
|
489
|
+
// Chapter 4
|
|
490
|
+
"3:31": {
|
|
491
|
+
lxx: "4:34a",
|
|
39
492
|
mt: "3:31",
|
|
40
493
|
eng: "4:1",
|
|
41
494
|
},
|
|
42
495
|
"3:32": {
|
|
43
|
-
lxx: "
|
|
496
|
+
lxx: "4:34b",
|
|
44
497
|
mt: "3:32",
|
|
45
498
|
eng: "4:2",
|
|
46
499
|
},
|
|
47
500
|
"3:33": {
|
|
48
|
-
lxx: "
|
|
501
|
+
lxx: "4:34c",
|
|
49
502
|
mt: "3:33",
|
|
50
503
|
eng: "4:3",
|
|
51
504
|
},
|
|
52
505
|
"4:1": {
|
|
53
|
-
lxx: "
|
|
506
|
+
lxx: "4:34a",
|
|
54
507
|
mt: "3:31",
|
|
55
508
|
eng: "4:1",
|
|
56
509
|
},
|
|
57
510
|
"4:2": {
|
|
58
|
-
lxx: "
|
|
511
|
+
lxx: "4:34b",
|
|
59
512
|
mt: "3:32",
|
|
60
513
|
eng: "4:2",
|
|
61
514
|
},
|
|
62
515
|
"4:3": {
|
|
63
|
-
lxx: "
|
|
516
|
+
lxx: "4:34c",
|
|
64
517
|
mt: "3:33",
|
|
65
518
|
eng: "4:3",
|
|
66
519
|
},
|
|
67
520
|
"4:4": {
|
|
68
|
-
lxx: "4:
|
|
521
|
+
lxx: "4:1",
|
|
69
522
|
mt: "4:1",
|
|
70
523
|
eng: "4:4",
|
|
71
524
|
},
|
|
72
525
|
"4:5": {
|
|
73
|
-
lxx: "4:
|
|
526
|
+
lxx: "4:2",
|
|
74
527
|
mt: "4:2",
|
|
75
528
|
eng: "4:5",
|
|
76
529
|
},
|
|
77
530
|
"4:6": {
|
|
78
|
-
lxx: "4:
|
|
531
|
+
lxx: "4:3",
|
|
79
532
|
mt: "4:3",
|
|
80
533
|
eng: "4:6",
|
|
81
534
|
},
|
|
82
535
|
"4:7": {
|
|
83
|
-
lxx: "4:
|
|
536
|
+
lxx: "4:4",
|
|
84
537
|
mt: "4:4",
|
|
85
538
|
eng: "4:7",
|
|
86
539
|
},
|
|
87
540
|
"4:8": {
|
|
88
|
-
lxx: "4:
|
|
541
|
+
lxx: "4:5",
|
|
89
542
|
mt: "4:5",
|
|
90
543
|
eng: "4:8",
|
|
91
544
|
},
|
|
92
545
|
"4:9": {
|
|
93
|
-
lxx: "4:
|
|
546
|
+
lxx: "4:6",
|
|
94
547
|
mt: "4:6",
|
|
95
548
|
eng: "4:9",
|
|
96
549
|
},
|
|
97
550
|
"4:10": {
|
|
98
|
-
lxx: "4:
|
|
551
|
+
lxx: "4:7",
|
|
99
552
|
mt: "4:7",
|
|
100
553
|
eng: "4:10",
|
|
101
554
|
},
|
|
102
555
|
"4:11": {
|
|
103
|
-
lxx: "4:
|
|
556
|
+
lxx: "4:8",
|
|
104
557
|
mt: "4:8",
|
|
105
558
|
eng: "4:11",
|
|
106
559
|
},
|
|
107
560
|
"4:12": {
|
|
108
|
-
lxx: "4:
|
|
561
|
+
lxx: "4:9",
|
|
109
562
|
mt: "4:9",
|
|
110
563
|
eng: "4:12",
|
|
111
564
|
},
|
|
112
565
|
"4:13": {
|
|
113
|
-
lxx: "4:
|
|
566
|
+
lxx: "4:10",
|
|
114
567
|
mt: "4:10",
|
|
115
568
|
eng: "4:13",
|
|
116
569
|
},
|
|
117
570
|
"4:14": {
|
|
118
|
-
lxx: "4:
|
|
571
|
+
lxx: "4:11",
|
|
119
572
|
mt: "4:11",
|
|
120
573
|
eng: "4:14",
|
|
121
574
|
},
|
|
122
575
|
"4:15": {
|
|
123
|
-
lxx: "4:
|
|
576
|
+
lxx: "4:12",
|
|
124
577
|
mt: "4:12",
|
|
125
578
|
eng: "4:15",
|
|
126
579
|
},
|
|
127
580
|
"4:16": {
|
|
128
|
-
lxx: "4:
|
|
581
|
+
lxx: "4:13",
|
|
129
582
|
mt: "4:13",
|
|
130
583
|
eng: "4:16",
|
|
131
584
|
},
|
|
132
585
|
"4:17": {
|
|
133
|
-
lxx: "4:
|
|
586
|
+
lxx: "4:14",
|
|
134
587
|
mt: "4:14",
|
|
135
588
|
eng: "4:17",
|
|
136
589
|
},
|
|
137
590
|
"4:18": {
|
|
138
|
-
lxx: "4:
|
|
591
|
+
lxx: "4:15",
|
|
139
592
|
mt: "4:15",
|
|
140
593
|
eng: "4:18",
|
|
141
594
|
},
|
|
142
595
|
"4:19": {
|
|
143
|
-
lxx: "4:
|
|
596
|
+
lxx: "4:16",
|
|
144
597
|
mt: "4:16",
|
|
145
598
|
eng: "4:19",
|
|
146
599
|
},
|
|
147
600
|
"4:20": {
|
|
148
|
-
lxx: "4:
|
|
601
|
+
lxx: "4:17",
|
|
149
602
|
mt: "4:17",
|
|
150
603
|
eng: "4:20",
|
|
151
604
|
},
|
|
152
605
|
"4:21": {
|
|
153
|
-
lxx: "4:
|
|
606
|
+
lxx: "4:18",
|
|
154
607
|
mt: "4:18",
|
|
155
608
|
eng: "4:21",
|
|
156
609
|
},
|
|
157
610
|
"4:22": {
|
|
158
|
-
lxx: "4:
|
|
611
|
+
lxx: "4:19",
|
|
159
612
|
mt: "4:19",
|
|
160
613
|
eng: "4:22",
|
|
161
614
|
},
|
|
162
615
|
"4:23": {
|
|
163
|
-
lxx: "4:
|
|
616
|
+
lxx: "4:20",
|
|
164
617
|
mt: "4:20",
|
|
165
618
|
eng: "4:23",
|
|
166
619
|
},
|
|
167
620
|
"4:24": {
|
|
168
|
-
lxx: "4:
|
|
621
|
+
lxx: "4:21",
|
|
169
622
|
mt: "4:21",
|
|
170
623
|
eng: "4:24",
|
|
171
624
|
},
|
|
172
625
|
"4:25": {
|
|
173
|
-
lxx: "4:
|
|
626
|
+
lxx: "4:22",
|
|
174
627
|
mt: "4:22",
|
|
175
628
|
eng: "4:25",
|
|
176
629
|
},
|
|
177
630
|
"4:26": {
|
|
178
|
-
lxx: "4:
|
|
631
|
+
lxx: "4:23",
|
|
179
632
|
mt: "4:23",
|
|
180
633
|
eng: "4:26",
|
|
181
634
|
},
|
|
182
635
|
"4:27": {
|
|
183
|
-
lxx: "4:
|
|
636
|
+
lxx: "4:24",
|
|
184
637
|
mt: "4:24",
|
|
185
638
|
eng: "4:27",
|
|
186
639
|
},
|
|
187
640
|
"4:28": {
|
|
188
|
-
lxx: "4:
|
|
641
|
+
lxx: "4:25",
|
|
189
642
|
mt: "4:25",
|
|
190
643
|
eng: "4:28",
|
|
191
644
|
},
|
|
192
645
|
"4:29": {
|
|
193
|
-
lxx: "4:
|
|
646
|
+
lxx: "4:26",
|
|
194
647
|
mt: "4:26",
|
|
195
648
|
eng: "4:29",
|
|
196
649
|
},
|
|
197
650
|
"4:30": {
|
|
198
|
-
lxx: "4:
|
|
651
|
+
lxx: "4:27",
|
|
199
652
|
mt: "4:27",
|
|
200
653
|
eng: "4:30",
|
|
201
654
|
},
|
|
202
655
|
"4:31": {
|
|
203
|
-
lxx: "4:
|
|
656
|
+
lxx: "4:28",
|
|
204
657
|
mt: "4:28",
|
|
205
658
|
eng: "4:31",
|
|
206
659
|
},
|
|
207
660
|
"4:32": {
|
|
208
|
-
lxx: "4:
|
|
661
|
+
lxx: "4:29",
|
|
209
662
|
mt: "4:29",
|
|
210
663
|
eng: "4:32",
|
|
211
664
|
},
|
|
212
665
|
"4:33": {
|
|
213
|
-
lxx: "4:
|
|
666
|
+
lxx: "4:30",
|
|
214
667
|
mt: "4:30",
|
|
215
668
|
eng: "4:33",
|
|
216
669
|
},
|
|
217
670
|
"4:34": {
|
|
218
|
-
lxx: "4:
|
|
671
|
+
lxx: "4:31",
|
|
219
672
|
mt: "4:31",
|
|
220
673
|
eng: "4:34",
|
|
221
674
|
},
|
|
222
675
|
"4:35": {
|
|
223
|
-
lxx: "4:
|
|
676
|
+
lxx: "4:32",
|
|
224
677
|
mt: "4:32",
|
|
225
678
|
eng: "4:35",
|
|
226
679
|
},
|
|
227
680
|
"4:36": {
|
|
228
|
-
lxx: "4:
|
|
681
|
+
lxx: "4:33",
|
|
229
682
|
mt: "4:33",
|
|
230
683
|
eng: "4:36",
|
|
231
684
|
},
|
|
232
685
|
"4:37": {
|
|
233
|
-
lxx: "4:
|
|
686
|
+
lxx: "4:34",
|
|
234
687
|
mt: "4:34",
|
|
235
688
|
eng: "4:37",
|
|
236
689
|
},
|
|
690
|
+
// Chapter 5
|
|
237
691
|
"5:31": {
|
|
238
692
|
lxx: "6:1",
|
|
239
693
|
mt: "6:1",
|
|
240
694
|
eng: "5:31",
|
|
241
695
|
},
|
|
696
|
+
// Chapter 6
|
|
242
697
|
"6:1": {
|
|
243
698
|
lxx: "6:2",
|
|
244
699
|
mt: "6:2",
|