linguistics_latin 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,3900 @@
1
+ module Linguistics
2
+ module Latin
3
+ module Verb
4
+
5
+ ##
6
+ # --
7
+ # Recognized irregular verbs:
8
+ # ###########################
9
+ #
10
+ # Derived from A&G 197
11
+ #
12
+ # -- Core Irregulars --
13
+ # SUM_ESSE_FUĪ_FUTŪRUS
14
+ # FERŌ_FERRE_TULĪ_LĀTUM
15
+ # EŌ_ĪRE_IVĪ_ITUM
16
+ #
17
+ # -- Verbs of Preference --
18
+ # NŌLŌ_NŌLLE_NŌLUĪ
19
+ # VOLŌ_VELLE_VOLUĪ
20
+ # MALŌ_MĀLLE_MALUĪ
21
+ #
22
+ # DŌ is irregular because its lengths are unusual and because there
23
+ # are no first person, passive forms
24
+ #
25
+ # * EDŌ
26
+ # * QUEŌ
27
+ # * FIŌ
28
+ # * PROSUM
29
+ #
30
+ # ++
31
+ ##
32
+
33
+ # Recognized irregular verb
34
+ SUM_ESSE_FUĪ_FUTŪRUS=<<EOJSON
35
+ {
36
+ "original string":"sum esse fuī futūrus",
37
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
38
+ "participles":{
39
+ "data": {
40
+ "present_active_participle":"ens, entis",
41
+ "future_active_participle":"futūrus",
42
+ "perfect_passive_participle":"",
43
+ "future_passive_participle":""
44
+ }
45
+ },
46
+ "infinitives":{
47
+ "data": {
48
+ "present_active_infinitive": "esse",
49
+ "present_passive_infinitive": "",
50
+
51
+ "perfect_active_infinitive": "fuisse",
52
+ "perfect_passive_infinitive": "",
53
+
54
+ "future_active_infinitive": "futūrum esse",
55
+ "future_passive_infinitive": ""
56
+ }
57
+ },
58
+ "tense_blocks": {
59
+ "active_voice_imperative_mood_present_tense": {
60
+ "data": [
61
+ [],
62
+ "es",
63
+ [],
64
+ [],
65
+ "este",
66
+ []
67
+ ]
68
+ },
69
+ "active_voice_indicative_mood_future_tense": {
70
+ "data": [
71
+ "erō",
72
+ "eris",
73
+ "erit",
74
+ "erimus",
75
+ "eritis",
76
+ "erunt"
77
+ ]
78
+ },
79
+ "active_voice_indicative_mood_futureperfect_tense": {
80
+ "data": [
81
+ "fuerō",
82
+ "fueris",
83
+ "fuerit",
84
+ "fuerimus",
85
+ "fueritis",
86
+ "fuerint"
87
+ ]
88
+ },
89
+ "active_voice_indicative_mood_imperfect_tense": {
90
+ "data": [
91
+ "eram",
92
+ "erās",
93
+ "erat",
94
+ "erāmus",
95
+ "erātis",
96
+ "erant"
97
+ ]
98
+ },
99
+ "active_voice_indicative_mood_pastperfect_tense": {
100
+ "data": [
101
+ "fueram",
102
+ "fuerās",
103
+ "fuerat",
104
+ "fuerāmus",
105
+ "fuerātis",
106
+ "fuerant"
107
+ ]
108
+ },
109
+ "active_voice_indicative_mood_perfect_tense": {
110
+ "data": [
111
+ "fuī",
112
+ "fuistī",
113
+ "fuit",
114
+ "fuimus",
115
+ "fuistis",
116
+ "fuērunt (-ēre)"
117
+ ]
118
+ },
119
+ "active_voice_indicative_mood_present_tense": {
120
+ "data": [
121
+ "sum",
122
+ "es",
123
+ "est",
124
+ "sumus",
125
+ "estis",
126
+ "sunt"
127
+ ]
128
+ },
129
+ "active_voice_subjunctive_mood_imperfect_tense": {
130
+ "data": [
131
+ "essem",
132
+ "essēs",
133
+ "esset",
134
+ "essēmus",
135
+ "essētis",
136
+ "essent"
137
+ ]
138
+ },
139
+ "active_voice_subjunctive_mood_pastperfect_tense": {
140
+ "data": [
141
+ "fuissem",
142
+ "fuissēs",
143
+ "fuisset",
144
+ "fuissēmus",
145
+ "fuissētis",
146
+ "fuissent"
147
+ ]
148
+ },
149
+ "active_voice_subjunctive_mood_perfect_tense": {
150
+ "data": [
151
+ "fuerim",
152
+ "fueris",
153
+ "fuerit",
154
+ "fuerimus",
155
+ "fueritis",
156
+ "fuerint"
157
+ ]
158
+ },
159
+ "active_voice_subjunctive_mood_present_tense": {
160
+ "data": [
161
+ "sim",
162
+ "sīs",
163
+ "sit",
164
+ "sīmus",
165
+ "sītis",
166
+ "sint"
167
+ ]
168
+ },
169
+ "passive_voice_indicative_mood_future_tense": {
170
+ "data": []
171
+ },
172
+ "passive_voice_indicative_mood_futureperfect_tense": {
173
+ "data": []
174
+ },
175
+ "passive_voice_indicative_mood_imperfect_tense": {
176
+ "data": []
177
+ },
178
+ "passive_voice_indicative_mood_pastperfect_tense": {
179
+ "data": []
180
+ },
181
+ "passive_voice_indicative_mood_perfect_tense": {
182
+ "data": []
183
+ },
184
+ "passive_voice_indicative_mood_present_tense": {
185
+ "data": []
186
+ },
187
+ "passive_voice_subjunctive_mood_imperfect_tense": {
188
+ "data": []
189
+ },
190
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
191
+ "data": []
192
+ },
193
+ "passive_voice_subjunctive_mood_perfect_tense": {
194
+ "data": []
195
+ },
196
+ "passive_voice_subjunctive_mood_present_tense": {
197
+ "data": []
198
+ }
199
+ }
200
+ }
201
+ EOJSON
202
+
203
+ # Recognized irregular verb
204
+ FERŌ_FERRE_TULĪ_LĀTUM=<<EOJSON
205
+ {
206
+ "original string":"ferō ferre tulī lātum",
207
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
208
+ "participles":{
209
+ "data": {
210
+ "present_active_participle":"ferēns, ferentis",
211
+ "future_active_participle":"lātūrus",
212
+ "perfect_passive_participle":"lātus",
213
+ "future_passive_participle":"ferendus"
214
+ }
215
+ },
216
+ "infinitives":{
217
+ "data": {
218
+ "present_active_infinitive": "ferre",
219
+ "present_passive_infinitive": "ferrī",
220
+
221
+ "perfect_active_infinitive": "tulisse",
222
+ "perfect_passive_infinitive": "lātus",
223
+
224
+ "future_active_infinitive": "lātūrus esse",
225
+ "future_passive_infinitive": "lātūrus īrī"
226
+ }
227
+ },
228
+ "tense_blocks": {
229
+ "active_voice_imperative_mood_present_tense": {
230
+ "data": [
231
+ [],
232
+ "fer",
233
+ [],
234
+ [],
235
+ "ferte",
236
+ []
237
+ ]
238
+ },
239
+ "active_voice_indicative_mood_future_tense": {
240
+ "data": [
241
+ "feram",
242
+ "ferēs",
243
+ "feret",
244
+ "ferēmus",
245
+ "ferētis",
246
+ "ferent"
247
+ ]
248
+ },
249
+ "active_voice_indicative_mood_futureperfect_tense": {
250
+ "data": [
251
+ "tulerō",
252
+ "tuleris",
253
+ "tulerit",
254
+ "tulerimus",
255
+ "tuleritis",
256
+ "tulerint"
257
+ ]
258
+ },
259
+ "active_voice_indicative_mood_imperfect_tense": {
260
+ "data": [
261
+ "ferēbam",
262
+ "ferēbās",
263
+ "ferēbat",
264
+ "ferēbāmus",
265
+ "ferēbātis",
266
+ "ferēbant"
267
+ ]
268
+ },
269
+ "active_voice_indicative_mood_pastperfect_tense": {
270
+ "data": [
271
+ "tuleram",
272
+ "tulerās",
273
+ "tulerat",
274
+ "tulerāmus",
275
+ "tulerātis",
276
+ "tulerant"
277
+ ]
278
+ },
279
+ "active_voice_indicative_mood_perfect_tense": {
280
+ "data": [
281
+ "tulī",
282
+ "tulistī",
283
+ "tulit",
284
+ "tulimus",
285
+ "tulistis",
286
+ "tulērunt"
287
+ ]
288
+ },
289
+ "active_voice_indicative_mood_present_tense": {
290
+ "data": [
291
+ "ferō",
292
+ "fers",
293
+ "fert",
294
+ "ferimus",
295
+ "feritis",
296
+ "ferunt"
297
+ ]
298
+ },
299
+ "active_voice_subjunctive_mood_imperfect_tense": {
300
+ "data": [
301
+ "ferrem",
302
+ "ferrēs",
303
+ "ferret",
304
+ "ferrēmus",
305
+ "ferrētis",
306
+ "ferrent"
307
+ ]
308
+ },
309
+ "active_voice_subjunctive_mood_pastperfect_tense": {
310
+ "data": [
311
+ "tulissem",
312
+ "tulissēs",
313
+ "tulisset",
314
+ "tulissēmus",
315
+ "tulissētis",
316
+ "tulissent"
317
+ ]
318
+ },
319
+ "active_voice_subjunctive_mood_perfect_tense": {
320
+ "data": [
321
+ "tulerim",
322
+ "tuleris",
323
+ "tulerit",
324
+ "tulerimus",
325
+ "tuleritis",
326
+ "tulerint"
327
+ ]
328
+ },
329
+ "active_voice_subjunctive_mood_present_tense": {
330
+ "data": [
331
+ "feram",
332
+ "ferās",
333
+ "ferat",
334
+ "ferāmus",
335
+ "ferātis",
336
+ "ferant"
337
+ ]
338
+ },
339
+ "passive_voice_indicative_mood_future_tense": {
340
+ "data": [
341
+ "ferar",
342
+ "ferēris",
343
+ "ferētur",
344
+ "ferēmur",
345
+ "ferēminī",
346
+ "ferentur"
347
+ ]
348
+ },
349
+ "passive_voice_indicative_mood_futureperfect_tense": {
350
+ "data": ["lātus erō", "lātus eris", "lātus erit",
351
+ "lātī erimus", "lātī eritis", "lātī erunt"]
352
+ },
353
+ "passive_voice_indicative_mood_imperfect_tense": {
354
+ "data": [
355
+ "ferēbar",
356
+ "ferēbāris",
357
+ "ferēbatur",
358
+ "ferēbāmur",
359
+ "ferēbāminī",
360
+ "ferēbantur"
361
+ ]
362
+ },
363
+ "passive_voice_indicative_mood_pastperfect_tense": {
364
+ "data": ["lātus eram", "lātus erās", "lātus erat",
365
+ "lātī erāmus", "lātī erātis", "lātī erant"]
366
+ },
367
+ "passive_voice_indicative_mood_perfect_tense": {
368
+ "data": ["lātus sum", "lātus es", "lātus est",
369
+ "lātī sumus", "lātī estis", "lātī sunt"]
370
+ },
371
+ "passive_voice_indicative_mood_present_tense": {
372
+ "data": [
373
+ "feror",
374
+ "ferris",
375
+ "fertur",
376
+ "ferimur",
377
+ "feriminī",
378
+ "feruntur"
379
+ ]
380
+ },
381
+ "passive_voice_subjunctive_mood_imperfect_tense": {
382
+ "data": [
383
+ "ferrer",
384
+ "ferrēris",
385
+ "ferrētur",
386
+ "ferrēmur",
387
+ "ferrēminī",
388
+ "ferrentur"
389
+ ]
390
+ },
391
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
392
+ "data": ["lātus essem", "lātus essēs", "lātus esset",
393
+ "lātī essēumus", "lātī essētis", "lātī essent"]
394
+ },
395
+ "passive_voice_subjunctive_mood_perfect_tense": {
396
+ "data": ["lātus sim", "lātus sīs", "lātus sit",
397
+ "lātī sīmus", "lātī sītis", "lātī sint"]
398
+ },
399
+ "passive_voice_subjunctive_mood_present_tense": {
400
+ "data": [
401
+ "ferar",
402
+ "ferāris",
403
+ "ferātur",
404
+ "feamur",
405
+ "feraminī",
406
+ "ferantur"
407
+ ]
408
+ }
409
+ }
410
+ }
411
+ EOJSON
412
+ # Recognized irregular verb
413
+ EŌ_ĪRE_IVĪ_ITUM=<<EOJSON
414
+ {
415
+ "original string":"eō īre ivī itum",
416
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
417
+ "participles":{
418
+ "data": {
419
+ "present_active_participle":"iēns (euntis)",
420
+ "future_active_participle":"itūrus",
421
+ "perfect_passive_participle":"",
422
+ "future_passive_participle":"eundum"
423
+ }
424
+ },
425
+ "infinitives":{
426
+ "data": {
427
+ "present_active_infinitive": "īre",
428
+ "present_passive_infinitive": "īrī",
429
+
430
+ "perfect_active_infinitive": "īsse",
431
+ "perfect_passive_infinitive": "itum esse",
432
+
433
+ "future_active_infinitive": "itūrum esse",
434
+ "future_passive_infinitive": ""
435
+ }
436
+ },
437
+ "tense_blocks": {
438
+ "active voice_imperative_mood_present_tense": {
439
+ "data": [
440
+ [],
441
+ "i",
442
+ [],
443
+ [],
444
+ "ite",
445
+ []
446
+ ]
447
+ },
448
+ "active_voice_indicative_mood_future_tense": {
449
+ "data": [
450
+ "ībō",
451
+ "ībis",
452
+ "ībit",
453
+ "ībimus",
454
+ "ībitis",
455
+ "ībunt"
456
+ ]
457
+ },
458
+ "active_voice_indicative_mood_futureperfect_tense": {
459
+ "data": [
460
+ "ierō",
461
+ "ieris",
462
+ "ierit",
463
+ "ierimus",
464
+ "ieritis",
465
+ "ierint"
466
+ ]
467
+ },
468
+ "active_voice_indicative_mood_imperfect_tense": {
469
+ "data": [
470
+ "ībam",
471
+ "ībās",
472
+ "ībat",
473
+ "ībāmus",
474
+ "ībātis",
475
+ "ībant"
476
+ ]
477
+ },
478
+ "active_voice_indicative_mood_pastperfect_tense": {
479
+ "data": [
480
+ "ieram",
481
+ "ierās",
482
+ "ierat",
483
+ "ierāmus",
484
+ "ierātis",
485
+ "ierant"
486
+ ]
487
+ },
488
+ "active_voice_indicative_mood_perfect_tense": {
489
+ "data": [
490
+ "iī",
491
+ "iistī",
492
+ "iit",
493
+ "iimus",
494
+ "iistis",
495
+ "iērunt"
496
+ ]
497
+ },
498
+ "active_voice_indicative_mood_present_tense": {
499
+ "data": [
500
+ "eō",
501
+ "īs",
502
+ "it",
503
+ "īmus",
504
+ "ītis",
505
+ "eunt"
506
+ ]
507
+ },
508
+ "active_voice_subjunctive_mood_imperfect_tense": {
509
+ "data": [
510
+ "īrem",
511
+ "īrēs",
512
+ "īret",
513
+ "īrēmus",
514
+ "īrētis",
515
+ "īrent"
516
+ ]
517
+ },
518
+ "active_voice_subjunctive_mood_pastperfect_tense": {
519
+ "data": [
520
+ "īssem",
521
+ "īssēs",
522
+ "īsset",
523
+ "īssēmus",
524
+ "īssētis",
525
+ "īssent"
526
+ ]
527
+ },
528
+ "active_voice_subjunctive_mood_perfect_tense": {
529
+ "data": [
530
+ "ierim",
531
+ "ieris",
532
+ "ierit",
533
+ "ierimus",
534
+ "ieritis",
535
+ "ierint"
536
+ ]
537
+ },
538
+ "active_voice_subjunctive_mood_present_tense": {
539
+ "data": [
540
+ "eam",
541
+ "eās",
542
+ "eat",
543
+ "eāmus",
544
+ "eātis",
545
+ "eant"
546
+ ]
547
+ },
548
+ "passive_voice_indicative_mood_future_tense": {
549
+ "data": [
550
+ "",
551
+ "",
552
+ "ītur (Impersonal)",
553
+ "",
554
+ "",
555
+ ""
556
+ ]
557
+ },
558
+ "passive_voice_indicative_mood_futureperfect_tense": {
559
+ "data": ["","","itum erit (Impersonal)","","",""]
560
+ },
561
+ "passive_voice_indicative_mood_imperfect_tense": {
562
+ "data": [
563
+ "",
564
+ "",
565
+ "ībātur",
566
+ "",
567
+ "",
568
+ ""
569
+ ]
570
+ },
571
+ "passive_voice_indicative_mood_pastperfect_tense": {
572
+ "data": ["","","itum erat (Impersonal)","","",""]
573
+ },
574
+ "passive_voice_indicative_mood_perfect_tense": {
575
+ "data": ["","","itum est (Impersonal)","","",""]
576
+ },
577
+ "passive_voice_indicative_mood_present_tense": {
578
+ "data": [
579
+ "",
580
+ "",
581
+ "ītur",
582
+ "",
583
+ "",
584
+ ""
585
+ ]
586
+ },
587
+ "passive_voice_subjunctive_mood_imperfect_tense": {
588
+ "data": [
589
+ "",
590
+ "",
591
+ "irētur (Impersonal)",
592
+ "",
593
+ "",
594
+ ""
595
+ ]
596
+ },
597
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
598
+ "data": ["","","itum esset (Impersonal)","","",""]
599
+ },
600
+ "passive_voice_subjunctive_mood_perfect_tense": {
601
+ "data": ["","","itum sit (Impersonal)","","",""]
602
+ },
603
+ "passive_voice_subjunctive_mood_present_tense": {
604
+ "data": [
605
+ "",
606
+ "",
607
+ "eātur",
608
+ "",
609
+ ""
610
+ ]
611
+ }
612
+ }
613
+ }
614
+ EOJSON
615
+
616
+ # To choose, prefer
617
+ MĀLŌ_MĀLLE_MĀLUĪ=<<EOJSON
618
+ {
619
+ "original string":"mālō mālle māluī",
620
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
621
+ "participles":{
622
+ "data": {
623
+ "present_active_participle":"",
624
+ "future_active_participle":"",
625
+ "perfect_passive_participle":"",
626
+ "future_passive_participle":""
627
+ }
628
+ },
629
+ "infinitives":{
630
+ "data": {
631
+ "present_active_infinitive": "mālle",
632
+ "present_passive_infinitive": "",
633
+
634
+ "perfect_active_infinitive": "māluisse",
635
+ "perfect_passive_infinitive": "",
636
+
637
+ "future_active_infinitive": "",
638
+ "future_passive_infinitive": ""
639
+ }
640
+ },
641
+ "tense_blocks": {
642
+ "active_voice_imperative_mood_present_tense": {
643
+ "data": [
644
+ [],
645
+ "",
646
+ [],
647
+ [],
648
+ "",
649
+ []
650
+ ]
651
+ },
652
+ "active_voice_indicative_mood_future_tense": {
653
+ "data": [
654
+ "mālam",
655
+ "mālēs",
656
+ "mālet",
657
+ "mālēmus",
658
+ "mālētis",
659
+ "mālent"
660
+ ]
661
+ },
662
+ "active_voice_indicative_mood_futureperfect_tense": {
663
+ "data": [
664
+ "māluerō",
665
+ "mālueris",
666
+ "māluerit",
667
+ "māluerimus",
668
+ "mālueritis",
669
+ "māluerint"
670
+ ]
671
+ },
672
+ "active_voice_indicative_mood_imperfect_tense": {
673
+ "data": [
674
+ "mālēbam",
675
+ "mālēbās",
676
+ "mālēbat",
677
+ "mālēbāmus",
678
+ "mālēbātis",
679
+ "mālēbant"
680
+ ]
681
+ },
682
+ "active_voice_indicative_mood_pastperfect_tense": {
683
+ "data": [
684
+ "mālueram",
685
+ "māluerās",
686
+ "māluerat",
687
+ "māluerāmus",
688
+ "māluerātis",
689
+ "māluerant"
690
+ ]
691
+ },
692
+ "active_voice_indicative_mood_perfect_tense": {
693
+ "data": [
694
+ "māluī",
695
+ "māluistī",
696
+ "māluit",
697
+ "māluimus",
698
+ "māluistis",
699
+ "māluērunt"
700
+ ]
701
+ },
702
+ "active_voice_indicative_mood_present_tense": {
703
+ "data": [
704
+ "mālō",
705
+ "māvīs",
706
+ "māvult",
707
+ "mālumus",
708
+ "māvultis",
709
+ "mālunt"
710
+ ]
711
+ },
712
+ "active_voice_subjunctive_mood_imperfect_tense": {
713
+ "data": [
714
+ "māllem",
715
+ "māllēs",
716
+ "māllet",
717
+ "māllēmus",
718
+ "māllētis",
719
+ "māllent"
720
+ ]
721
+ },
722
+ "active_voice_subjunctive_mood_pastperfect_tense": {
723
+ "data": [
724
+ "māluissem",
725
+ "māluissēs",
726
+ "māluisset",
727
+ "māluissēmus",
728
+ "māluissētis",
729
+ "māluissent"
730
+ ]
731
+ },
732
+ "active_voice_subjunctive_mood_perfect_tense": {
733
+ "data": [
734
+ "māluerim",
735
+ "mālueris",
736
+ "māluerit",
737
+ "māluerimus",
738
+ "mālueritis",
739
+ "māluerint"
740
+ ]
741
+ },
742
+ "active_voice_subjunctive_mood_present_tense": {
743
+ "data": [
744
+ "mālim",
745
+ "mālis",
746
+ "mālit",
747
+ "mālimus",
748
+ "mālitis",
749
+ "mālint"
750
+ ]
751
+ },
752
+ "passive_voice_indicative_mood_future_tense": {
753
+ "data": []
754
+ },
755
+ "passive_voice_indicative_mood_futureperfect_tense": {
756
+ "data": []
757
+ },
758
+ "passive_voice_indicative_mood_imperfect_tense": {
759
+ "data": []
760
+ },
761
+ "passive_voice_indicative_mood_pastperfect_tense": {
762
+ "data": []
763
+ },
764
+ "passive_voice_indicative_mood_perfect_tense": {
765
+ "data": []
766
+ },
767
+ "passive_voice_indicative_mood_present_tense": {
768
+ "data": []
769
+ },
770
+ "passive_voice_subjunctive_mood_imperfect_tense": {
771
+ "data": []
772
+ },
773
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
774
+ "data": []
775
+ },
776
+ "passive_voice_subjunctive_mood_perfect_tense": {
777
+ "data": []
778
+ },
779
+ "passive_voice_subjunctive_mood_present_tense": {
780
+ "data": []
781
+ }
782
+ }
783
+ }
784
+ EOJSON
785
+ # Recognized irregular verb
786
+ VOLŌ_VELLE_VOLUĪ=<<EOJSON
787
+ {
788
+ "original string":"volō velle voluī",
789
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
790
+ "participles":{
791
+ "data": {
792
+ "present_active_participle":"volēns, volentis",
793
+ "future_active_participle":"",
794
+ "perfect_passive_participle":"",
795
+ "future_passive_participle":""
796
+ }
797
+ },
798
+ "infinitives":{
799
+ "data": {
800
+ "present_active_infinitive": "velle",
801
+ "present_passive_infinitive": "",
802
+
803
+ "perfect_active_infinitive": "voluisse",
804
+ "perfect_passive_infinitive": "",
805
+
806
+ "future_active_infinitive": "",
807
+ "future_passive_infinitive": ""
808
+ }
809
+ },
810
+ "tense_blocks": {
811
+ "active_voice_imperative_mood_present_tense": {
812
+ "data": []
813
+ },
814
+ "active_voice_indicative_mood_future_tense": {
815
+ "data": [
816
+ "volam",
817
+ "volēs",
818
+ "volet",
819
+ "volēmus",
820
+ "volētis",
821
+ "volent"
822
+ ]
823
+ },
824
+ "active_voice_indicative_mood_futureperfect_tense": {
825
+ "data": [
826
+ "voluerō",
827
+ "volueris",
828
+ "voluerit",
829
+ "voluerimus",
830
+ "volueritis",
831
+ "voluerint"
832
+ ]
833
+ },
834
+ "active_voice_indicative_mood_imperfect_tense": {
835
+ "data": [
836
+ "volēbam",
837
+ "volēbās",
838
+ "volēbat",
839
+ "volēbāmus",
840
+ "volēbātis",
841
+ "volēbant"
842
+ ]
843
+ },
844
+ "active_voice_indicative_mood_pastperfect_tense": {
845
+ "data": [
846
+ "volueram",
847
+ "voluerās",
848
+ "voluerat",
849
+ "voluerāmus",
850
+ "voluerātis",
851
+ "voluerant"
852
+ ]
853
+ },
854
+ "active_voice_indicative_mood_perfect_tense": {
855
+ "data": [
856
+ "voluī",
857
+ "voluistī",
858
+ "voluit",
859
+ "voluimus",
860
+ "voluistis",
861
+ "voluērunt"
862
+ ]
863
+ },
864
+ "active_voice_indicative_mood_present_tense": {
865
+ "data": [
866
+ "volō",
867
+ "vīs",
868
+ "vult",
869
+ "volumus",
870
+ "vultis",
871
+ "volunt"
872
+ ]
873
+ },
874
+ "active_voice_subjunctive_mood_imperfect_tense": {
875
+ "data": [
876
+ "vellem",
877
+ "vellēs",
878
+ "vellet",
879
+ "vellēmus",
880
+ "vellētis",
881
+ "vellent"
882
+ ]
883
+ },
884
+ "active_voice_subjunctive_mood_pastperfect_tense": {
885
+ "data": [
886
+ "voluissem",
887
+ "voluissēs",
888
+ "voluisset",
889
+ "voluissēmus",
890
+ "voluissētis",
891
+ "voluissent"
892
+ ]
893
+ },
894
+ "active_voice_subjunctive_mood_perfect_tense": {
895
+ "data": [
896
+ "voluerim",
897
+ "volueris",
898
+ "voluerit",
899
+ "voluerimus",
900
+ "volueritis",
901
+ "voluerint"
902
+ ]
903
+ },
904
+ "active_voice_subjunctive_mood_present_tense": {
905
+ "data": [
906
+ "velim",
907
+ "velīs",
908
+ "velit",
909
+ "velīmus",
910
+ "velītis",
911
+ "velint"
912
+ ]
913
+ },
914
+ "passive_voice_indicative_mood_future_tense": {
915
+ "data": []
916
+ },
917
+ "passive_voice_indicative_mood_futureperfect_tense": {
918
+ "data": []
919
+ },
920
+ "passive_voice_indicative_mood_imperfect_tense": {
921
+ "data": []
922
+ },
923
+ "passive_voice_indicative_mood_pastperfect_tense": {
924
+ "data": []
925
+ },
926
+ "passive_voice_indicative_mood_perfect_tense": {
927
+ "data": []
928
+ },
929
+ "passive_voice_indicative_mood_present_tense": {
930
+ "data": []
931
+ },
932
+ "passive_voice_subjunctive_mood_imperfect_tense": {
933
+ "data": []
934
+ },
935
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
936
+ "data": []
937
+ },
938
+ "passive_voice_subjunctive_mood_perfect_tense": {
939
+ "data": []
940
+ },
941
+ "passive_voice_subjunctive_mood_present_tense": {
942
+ "data": []
943
+ }
944
+ }
945
+ }
946
+ EOJSON
947
+
948
+
949
+ DŌ_DĀRE_DEDĪ_DATUM=<<EOJSON
950
+ {
951
+ "original string":"dō dāre dedī datum",
952
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
953
+ "participles":{
954
+ "data": {
955
+ "present_active_participle":"dāns, dantis",
956
+ "future_active_participle":"datūrus (-a, -um)",
957
+ "perfect_passive_participle":"datus (-a, -um)",
958
+ "future_passive_participle":"dandus (-a, -um)"
959
+ }
960
+ },
961
+ "infinitives":{
962
+ "data": {
963
+ "present_active_infinitive": "dāre",
964
+ "present_passive_infinitive": "dārī",
965
+
966
+ "perfect_active_infinitive": "dedisse",
967
+ "perfect_passive_infinitive": "datum",
968
+
969
+ "future_active_infinitive": "datūrum esse",
970
+ "future_passive_infinitive": ""
971
+ }
972
+ },
973
+ "tense_blocks": {
974
+ "active_voice_imperative_mood_future_tense": {
975
+ "data": [
976
+ "",
977
+ "",
978
+ "",
979
+ "",
980
+ "",
981
+ ""
982
+ ]
983
+ },
984
+ "active_voice_imperative_mood_present_tense": {
985
+ "data": [
986
+ "",
987
+ "dā",
988
+ "",
989
+ "",
990
+ "dāte",
991
+ ""
992
+ ]
993
+ },
994
+ "active_voice_indicative_mood_future_tense": {
995
+ "data": [
996
+ "dābō",
997
+ "dābis",
998
+ "dābit",
999
+ "dābimus",
1000
+ "dābitis",
1001
+ "dābunt"
1002
+ ]
1003
+ },
1004
+ "active_voice_indicative_mood_futureperfect_tense": {
1005
+ "data": [
1006
+ "dederō",
1007
+ "dederis",
1008
+ "dederit",
1009
+ "dederimus",
1010
+ "dederitis",
1011
+ "dederint"
1012
+ ]
1013
+ },
1014
+ "active_voice_indicative_mood_imperfect_tense": {
1015
+ "data": [
1016
+ "dābam",
1017
+ "dābās",
1018
+ "dābat",
1019
+ "dābāmus",
1020
+ "dābātis",
1021
+ "dābant"
1022
+ ]
1023
+ },
1024
+ "active_voice_indicative_mood_pastperfect_tense": {
1025
+ "data": [
1026
+ "dederam",
1027
+ "dederās",
1028
+ "dederat",
1029
+ "dederāmus",
1030
+ "dederātis",
1031
+ "dederant"
1032
+ ]
1033
+ },
1034
+ "active_voice_indicative_mood_perfect_tense": {
1035
+ "data": [
1036
+ "dedī",
1037
+ "dedistī",
1038
+ "dedit",
1039
+ "dedimus",
1040
+ "dedistis",
1041
+ "dedērunt"
1042
+ ]
1043
+ },
1044
+ "active_voice_indicative_mood_present_tense": {
1045
+ "data": [
1046
+ "dō",
1047
+ "dās",
1048
+ "dat",
1049
+ "dāmus",
1050
+ "dātis",
1051
+ "dant"
1052
+ ]
1053
+ },
1054
+ "active_voice_subjunctive_mood_imperfect_tense": {
1055
+ "data": [
1056
+ "dārem",
1057
+ "dārēs",
1058
+ "dāret",
1059
+ "dārēmus",
1060
+ "dārētis",
1061
+ "dārent"
1062
+ ]
1063
+ },
1064
+ "active_voice_subjunctive_mood_pastperfect_tense": {
1065
+ "data": [
1066
+ "dedissem",
1067
+ "dedissēs",
1068
+ "dedisset",
1069
+ "dedissēmus",
1070
+ "dedissētis",
1071
+ "dedissent"
1072
+ ]
1073
+ },
1074
+ "active_voice_subjunctive_mood_perfect_tense": {
1075
+ "data": [
1076
+ "dederim",
1077
+ "dederis",
1078
+ "dederit",
1079
+ "dederimus",
1080
+ "dederitis",
1081
+ "dederint"
1082
+ ]
1083
+ },
1084
+ "active_voice_subjunctive_mood_present_tense": {
1085
+ "data": [
1086
+ "dem",
1087
+ "dēs",
1088
+ "det",
1089
+ "dēmus",
1090
+ "dētis",
1091
+ "dent"
1092
+ ]
1093
+ },
1094
+ "passive_voice_indicative_mood_future_tense": {
1095
+ "data": [
1096
+ "dābor",
1097
+ "dāberis",
1098
+ "dābitur",
1099
+ "dābimur",
1100
+ "dābiminī",
1101
+ "dābuntur"
1102
+ ]
1103
+ },
1104
+ "passive_voice_indicative_mood_futureperfect_tense": {
1105
+ "data": [
1106
+ "datum erō",
1107
+ "datum eris",
1108
+ "datum erit",
1109
+ "datum erimus",
1110
+ "datum eritis",
1111
+ "datum erint"
1112
+ ]
1113
+ },
1114
+ "passive_voice_indicative_mood_imperfect_tense": {
1115
+ "data": [
1116
+ "dābar",
1117
+ "dābāris",
1118
+ "dābātur",
1119
+ "dābāmur",
1120
+ "dābāminī",
1121
+ "dābantur"
1122
+ ]
1123
+ },
1124
+ "passive_voice_indicative_mood_pastperfect_tense": {
1125
+ "data": [
1126
+ "datum eram",
1127
+ "datum erās",
1128
+ "datum erat",
1129
+ "datum erāmus",
1130
+ "datum erātis",
1131
+ "datum erant"
1132
+ ]
1133
+ },
1134
+ "passive_voice_indicative_mood_perfect_tense": {
1135
+ "data": [
1136
+ "datum sum",
1137
+ "datum es",
1138
+ "datum est",
1139
+ "datum sumus",
1140
+ "datum estis",
1141
+ "datum sunt"
1142
+ ]
1143
+ },
1144
+ "passive_voice_indicative_mood_present_tense": {
1145
+ "data": [
1146
+ "",
1147
+ "dāris",
1148
+ "dātur",
1149
+ "dāmur",
1150
+ "dāminī",
1151
+ "dantur"
1152
+ ]
1153
+ },
1154
+ "passive_voice_subjunctive_mood_imperfect_tense": {
1155
+ "data": [
1156
+ "dārer",
1157
+ "dārēris",
1158
+ "dārētur",
1159
+ "dārēmur",
1160
+ "dārēminī",
1161
+ "dārentur"
1162
+ ]
1163
+ },
1164
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
1165
+ "data": [
1166
+ "[ datus, data, datum ] essem",
1167
+ "[ datus, data, datum ] essēs",
1168
+ "[ datus, data, datum ] esset",
1169
+ "[ datī, datae, data ] essēmus",
1170
+ "[ datī, datae, data ] essētis",
1171
+ "[ datī, datae, data ] essent"
1172
+ ]
1173
+ },
1174
+ "passive_voice_subjunctive_mood_perfect_tense": {
1175
+ "data": [
1176
+ "[ datus, data, datum ] sim",
1177
+ "[ datus, data, datum ] sis",
1178
+ "[ datus, data, datum ] sit",
1179
+ "[ datī, datae, data ] simus",
1180
+ "[ datī, datae, data ] sitis",
1181
+ "[ datī, datae, data ] sint"
1182
+ ]
1183
+ },
1184
+ "passive_voice_subjunctive_mood_present_tense": {
1185
+ "data": [
1186
+ "",
1187
+ "dēris",
1188
+ "dētur",
1189
+ "dēmur",
1190
+ "dēminī",
1191
+ "dentur"
1192
+ ]
1193
+ }
1194
+ }
1195
+ }
1196
+ EOJSON
1197
+
1198
+ # EDŌ : To eat
1199
+
1200
+ EDŌ_ĒSSE_ĒDĪ_ĒSUM=<<EOJSON
1201
+ {
1202
+ "original string":"EDŌ ĒSSE ĒDĪ ĒSUM",
1203
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
1204
+ "participles":{
1205
+ "data": {
1206
+ "present_active_participle":"edēns, edentis",
1207
+ "future_active_participle":"ēsūrus (-a, -um)",
1208
+ "perfect_passive_participle":"",
1209
+ "future_passive_participle":""
1210
+ }
1211
+ },
1212
+ "infinitives":{
1213
+ "data": {
1214
+ "present_active_infinitive": "ēsse",
1215
+ "present_passive_infinitive": "",
1216
+
1217
+ "perfect_active_infinitive": "ēdisse",
1218
+ "perfect_passive_infinitive": "",
1219
+
1220
+ "future_active_infinitive": "ēsūrum esse",
1221
+ "future_passive_infinitive": ""
1222
+ }
1223
+ },
1224
+ "tense_blocks": {
1225
+ "active_voice_imperative_mood_future_tense": {
1226
+ "data": [
1227
+ "",
1228
+ "",
1229
+ "",
1230
+ "",
1231
+ "",
1232
+ ""
1233
+ ]
1234
+ },
1235
+ "active_voice_imperative_mood_present_tense": {
1236
+ "data": [
1237
+ "",
1238
+ "ēs",
1239
+ "",
1240
+ "",
1241
+ "ēste",
1242
+ ""
1243
+ ]
1244
+ },
1245
+ "active_voice_indicative_mood_future_tense": {
1246
+ "data": [
1247
+ "edam",
1248
+ "edēs",
1249
+ "edet",
1250
+ "edēmus",
1251
+ "edētis",
1252
+ "edent"
1253
+ ]
1254
+ },
1255
+ "active_voice_indicative_mood_futureperfect_tense": {
1256
+ "data": [
1257
+ "ēderō",
1258
+ "ēderis",
1259
+ "ēderit",
1260
+ "ēderimus",
1261
+ "ēderiits",
1262
+ "ēderint"
1263
+ ]
1264
+ },
1265
+ "active_voice_indicative_mood_imperfect_tense": {
1266
+ "data": [
1267
+ "edēbam",
1268
+ "edēbās",
1269
+ "edēbat",
1270
+ "edēbāmus",
1271
+ "edēbātis",
1272
+ "edēbant"
1273
+ ]
1274
+ },
1275
+ "active_voice_indicative_mood_pastperfect_tense": {
1276
+ "data": [
1277
+ "ēderam",
1278
+ "ēderās",
1279
+ "ēderat",
1280
+ "ēderāmus",
1281
+ "ēderātis",
1282
+ "ēderant"
1283
+ ]
1284
+ },
1285
+ "active_voice_indicative_mood_perfect_tense": {
1286
+ "data": [
1287
+ "ēdī",
1288
+ "ēdistī",
1289
+ "ēdit",
1290
+ "ēdimus",
1291
+ "ēdistis",
1292
+ "ēdērunt"
1293
+ ]
1294
+ },
1295
+ "active_voice_indicative_mood_present_tense": {
1296
+ "data": [
1297
+ "edō",
1298
+ "ēs (edis)",
1299
+ "ēst (edit)",
1300
+ "edimus",
1301
+ "ēstis (editis)",
1302
+ "edunt"
1303
+ ]
1304
+ },
1305
+ "active_voice_subjunctive_mood_imperfect_tense": {
1306
+ "data": [
1307
+ "ederem",
1308
+ "ēssēs (ederēs)",
1309
+ "ēsset (ederet)",
1310
+ "ēssēmus (ederēmus)",
1311
+ "ēssētis (ederētis)",
1312
+ "ēssent (ederent)"
1313
+ ]
1314
+ },
1315
+ "active_voice_subjunctive_mood_pastperfect_tense": {
1316
+ "data": [
1317
+ "ēdissem",
1318
+ "ēdissēs",
1319
+ "ēdisset",
1320
+ "ēdissēmus",
1321
+ "ēdissētis",
1322
+ "ēdissent"
1323
+ ]
1324
+ },
1325
+ "active_voice_subjunctive_mood_perfect_tense": {
1326
+ "data": [
1327
+ "ēderim",
1328
+ "ēderis",
1329
+ "ēderit",
1330
+ "ēderimus",
1331
+ "ēderitis",
1332
+ "ēderint"
1333
+ ]
1334
+ },
1335
+ "active_voice_subjunctive_mood_present_tense": {
1336
+ "data": [
1337
+ "edam (edim)",
1338
+ "edās (edīs)",
1339
+ "edat (edit)",
1340
+ "edāmus (edīmus)",
1341
+ "edātis (edītis)",
1342
+ "edant (edint)"
1343
+ ]
1344
+ },
1345
+ "passive_voice_indicative_mood_future_tense": {
1346
+ "data": [
1347
+ "",
1348
+ "",
1349
+ "",
1350
+ "",
1351
+ "",
1352
+ ""
1353
+ ]
1354
+ },
1355
+ "passive_voice_indicative_mood_futureperfect_tense": {
1356
+ "data": [
1357
+ "",
1358
+ "",
1359
+ "",
1360
+ "",
1361
+ "",
1362
+ ""
1363
+ ]
1364
+ },
1365
+ "passive_voice_indicative_mood_imperfect_tense": {
1366
+ "data": [
1367
+ "",
1368
+ "",
1369
+ "",
1370
+ "",
1371
+ "",
1372
+ ""
1373
+ ]
1374
+ },
1375
+ "passive_voice_indicative_mood_pastperfect_tense": {
1376
+ "data": [
1377
+ "",
1378
+ "",
1379
+ "",
1380
+ "",
1381
+ "",
1382
+ ""
1383
+ ]
1384
+ },
1385
+ "passive_voice_indicative_mood_perfect_tense": {
1386
+ "data": [
1387
+ "",
1388
+ "",
1389
+ "",
1390
+ "",
1391
+ "",
1392
+ ""
1393
+ ]
1394
+ },
1395
+ "passive_voice_indicative_mood_present_tense": {
1396
+ "data": [
1397
+ "",
1398
+ "",
1399
+ "ēstur",
1400
+ "",
1401
+ "",
1402
+ ""
1403
+ ]
1404
+ },
1405
+ "passive_voice_subjunctive_mood_imperfect_tense": {
1406
+ "data": [
1407
+ "",
1408
+ "",
1409
+ "ēssētur",
1410
+ "",
1411
+ "",
1412
+ ""
1413
+ ]
1414
+ },
1415
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
1416
+ "data": [
1417
+ "",
1418
+ "",
1419
+ "",
1420
+ "",
1421
+ "",
1422
+ ""
1423
+ ]
1424
+ },
1425
+ "passive_voice_subjunctive_mood_perfect_tense": {
1426
+ "data": [
1427
+ "",
1428
+ "",
1429
+ "",
1430
+ "",
1431
+ "",
1432
+ ""
1433
+ ]
1434
+ },
1435
+ "passive_voice_subjunctive_mood_present_tense": {
1436
+ "data": [
1437
+ "",
1438
+ "",
1439
+ "",
1440
+ "",
1441
+ "",
1442
+ ""
1443
+ ]
1444
+ }
1445
+ }
1446
+ }
1447
+ EOJSON
1448
+
1449
+ # QUEŌ: to be able
1450
+
1451
+ QUEŌ_QUĪRE_QUĪVĪ=<<EOJSON
1452
+ {
1453
+ "original string":"queō quīre quivī ",
1454
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
1455
+ "participles":{
1456
+ "data": {
1457
+ "present_active_participle":"quiēns",
1458
+ "future_active_participle":"",
1459
+ "perfect_passive_participle":"",
1460
+ "future_passive_participle":""
1461
+ }
1462
+ },
1463
+ "infinitives":{
1464
+ "data": {
1465
+ "present_active_infinitive": "quīre",
1466
+ "present_passive_infinitive": "",
1467
+
1468
+ "perfect_active_infinitive": "quīsse",
1469
+ "perfect_passive_infinitive": "",
1470
+
1471
+ "future_active_infinitive": "",
1472
+ "future_passive_infinitive": ""
1473
+ }
1474
+ },
1475
+ "tense_blocks": {
1476
+ "active voice_imperative_mood_present_tense": {
1477
+ "data": [
1478
+ [],
1479
+ "",
1480
+ [],
1481
+ [],
1482
+ "",
1483
+ []
1484
+ ]
1485
+ },
1486
+ "active_voice_indicative_mood_future_tense": {
1487
+ "data": [
1488
+ "quībō",
1489
+ "",
1490
+ "",
1491
+ "",
1492
+ "",
1493
+ "quībunt"
1494
+ ]
1495
+ },
1496
+ "active_voice_indicative_mood_futureperfect_tense": {
1497
+ "data": [
1498
+ "",
1499
+ "",
1500
+ "",
1501
+ "",
1502
+ "",
1503
+ ""
1504
+ ]
1505
+ },
1506
+ "active_voice_indicative_mood_imperfect_tense": {
1507
+ "data": [
1508
+ "quībam",
1509
+ "",
1510
+ "quībat",
1511
+ "",
1512
+ "",
1513
+ ""
1514
+ ]
1515
+ },
1516
+ "active_voice_indicative_mood_pastperfect_tense": {
1517
+ "data": [
1518
+ "",
1519
+ "",
1520
+ "",
1521
+ "",
1522
+ "",
1523
+ ""
1524
+ ]
1525
+ },
1526
+ "active_voice_indicative_mood_perfect_tense": {
1527
+ "data": [
1528
+ "quīvī",
1529
+ "",
1530
+ "quīvit",
1531
+ "",
1532
+ "",
1533
+ "quīvērunt"
1534
+ ]
1535
+ },
1536
+ "active_voice_indicative_mood_present_tense": {
1537
+ "data": [
1538
+ "queō",
1539
+ "quīs",
1540
+ "quit",
1541
+ "quīmus",
1542
+ "quītis",
1543
+ "queunt"
1544
+ ]
1545
+ },
1546
+ "active_voice_subjunctive_mood_imperfect_tense": {
1547
+ "data": [
1548
+ "",
1549
+ "",
1550
+ "quīret",
1551
+ "",
1552
+ "",
1553
+ "quīrent"
1554
+ ]
1555
+ },
1556
+ "active_voice_subjunctive_mood_pastperfect_tense": {
1557
+ "data": [
1558
+ "",
1559
+ "",
1560
+ "",
1561
+ "",
1562
+ "",
1563
+ "quīvissent"
1564
+ ]
1565
+ },
1566
+ "active_voice_subjunctive_mood_perfect_tense": {
1567
+ "data": [
1568
+ "",
1569
+ "",
1570
+ "quīverit",
1571
+ "",
1572
+ "",
1573
+ "quīverint"
1574
+ ]
1575
+ },
1576
+ "active_voice_subjunctive_mood_present_tense": {
1577
+ "data": [
1578
+ "queam",
1579
+ "queās",
1580
+ "queat",
1581
+ "queāmus",
1582
+ "",
1583
+ "queant"
1584
+ ]
1585
+ },
1586
+ "passive_voice_indicative_mood_future_tense": {
1587
+ "data": []
1588
+ },
1589
+ "passive_voice_indicative_mood_futureperfect_tense": {
1590
+ "data": []
1591
+ },
1592
+ "passive_voice_indicative_mood_imperfect_tense": {
1593
+ "data": []
1594
+ },
1595
+ "passive_voice_indicative_mood_pastperfect_tense": {
1596
+ "data": []
1597
+ },
1598
+ "passive_voice_indicative_mood_perfect_tense": {
1599
+ "data": []
1600
+ },
1601
+ "passive_voice_indicative_mood_present_tense": {
1602
+ "data": []
1603
+ },
1604
+ "passive_voice_subjunctive_mood_imperfect_tense": {
1605
+ "data": []
1606
+ },
1607
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
1608
+ "data": []
1609
+ },
1610
+ "passive_voice_subjunctive_mood_perfect_tense": {
1611
+ "data": []
1612
+ },
1613
+ "passive_voice_subjunctive_mood_present_tense": {
1614
+ "data": [] }
1615
+ }
1616
+ }
1617
+ EOJSON
1618
+
1619
+ # NEQUEŌ: to be able
1620
+
1621
+ NEQUEŌ_NEQUĪRE_NEQUĪVĪ=<<EOJSON
1622
+ {
1623
+ "original string":"nequeō nequīre qneuivī ",
1624
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
1625
+ "participles":{
1626
+ "data": {
1627
+ "present_active_participle":"nequiēns, nequientis",
1628
+ "future_active_participle":"",
1629
+ "perfect_passive_participle":"",
1630
+ "future_passive_participle":""
1631
+ }
1632
+ },
1633
+ "infinitives":{
1634
+ "data": {
1635
+ "present_active_infinitive": "nequīre",
1636
+ "present_passive_infinitive": "",
1637
+
1638
+ "perfect_active_infinitive": "nequīvisse",
1639
+ "perfect_passive_infinitive": "",
1640
+
1641
+ "future_active_infinitive": "",
1642
+ "future_passive_infinitive": ""
1643
+ }
1644
+ },
1645
+ "tense_blocks": {
1646
+ "active voice_imperative_mood_present_tense": {
1647
+ "data": [
1648
+ [],
1649
+ "",
1650
+ [],
1651
+ [],
1652
+ "",
1653
+ []
1654
+ ]
1655
+ },
1656
+ "active_voice_indicative_mood_future_tense": {
1657
+ "data": [
1658
+ "quībō",
1659
+ "",
1660
+ "",
1661
+ "",
1662
+ "",
1663
+ "quībunt"
1664
+ ]
1665
+ },
1666
+ "active_voice_indicative_mood_futureperfect_tense": {
1667
+ "data": [
1668
+ "",
1669
+ "",
1670
+ "",
1671
+ "",
1672
+ "",
1673
+ ""
1674
+ ]
1675
+ },
1676
+ "active_voice_indicative_mood_imperfect_tense": {
1677
+ "data": [
1678
+ "quībam",
1679
+ "",
1680
+ "quībat",
1681
+ "",
1682
+ "",
1683
+ ""
1684
+ ]
1685
+ },
1686
+ "active_voice_indicative_mood_pastperfect_tense": {
1687
+ "data": [
1688
+ "",
1689
+ "",
1690
+ "",
1691
+ "",
1692
+ "",
1693
+ ""
1694
+ ]
1695
+ },
1696
+ "active_voice_indicative_mood_perfect_tense": {
1697
+ "data": [
1698
+ "quīvī",
1699
+ "",
1700
+ "quīvit",
1701
+ "",
1702
+ "",
1703
+ "quīvērunt"
1704
+ ]
1705
+ },
1706
+ "active_voice_indicative_mood_present_tense": {
1707
+ "data": [
1708
+ "queō",
1709
+ "quīs",
1710
+ "quit",
1711
+ "quīmus",
1712
+ "quītis",
1713
+ "queunt"
1714
+ ]
1715
+ },
1716
+ "active_voice_subjunctive_mood_imperfect_tense": {
1717
+ "data": [
1718
+ "",
1719
+ "",
1720
+ "quīret",
1721
+ "",
1722
+ "",
1723
+ "quīrent"
1724
+ ]
1725
+ },
1726
+ "active_voice_subjunctive_mood_pastperfect_tense": {
1727
+ "data": [
1728
+ "",
1729
+ "",
1730
+ "",
1731
+ "",
1732
+ "",
1733
+ "quīvissent"
1734
+ ]
1735
+ },
1736
+ "active_voice_subjunctive_mood_perfect_tense": {
1737
+ "data": [
1738
+ "",
1739
+ "",
1740
+ "quīverit",
1741
+ "",
1742
+ "",
1743
+ "quīverint"
1744
+ ]
1745
+ },
1746
+ "active_voice_subjunctive_mood_present_tense": {
1747
+ "data": [
1748
+ "queam",
1749
+ "queās",
1750
+ "queat",
1751
+ "queāmus",
1752
+ "",
1753
+ "queant"
1754
+ ]
1755
+ },
1756
+ "passive_voice_indicative_mood_future_tense": {
1757
+ "data": [
1758
+ "",
1759
+ "",
1760
+ "",
1761
+ "",
1762
+ "",
1763
+ ""
1764
+ ]
1765
+ },
1766
+ "passive_voice_indicative_mood_futureperfect_tense": {
1767
+ "data": ["","","","","",""]
1768
+ },
1769
+ "passive_voice_indicative_mood_imperfect_tense": {
1770
+ "data": [
1771
+ "",
1772
+ "",
1773
+ "",
1774
+ "",
1775
+ "",
1776
+ ""
1777
+ ]
1778
+ },
1779
+ "passive_voice_indicative_mood_pastperfect_tense": {
1780
+ "data": ["","","","","",""]
1781
+ },
1782
+ "passive_voice_indicative_mood_perfect_tense": {
1783
+ "data": ["","","","","",""]
1784
+ },
1785
+ "passive_voice_indicative_mood_present_tense": {
1786
+ "data": [
1787
+ "",
1788
+ "",
1789
+ "",
1790
+ "",
1791
+ "",
1792
+ ""
1793
+ ]
1794
+ },
1795
+ "passive_voice_subjunctive_mood_imperfect_tense": {
1796
+ "data": [
1797
+ "",
1798
+ "",
1799
+ "",
1800
+ "",
1801
+ "",
1802
+ ""
1803
+ ]
1804
+ },
1805
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
1806
+ "data": ["","","","","",""]
1807
+ },
1808
+ "passive_voice_subjunctive_mood_perfect_tense": {
1809
+ "data": ["","","","","",""]
1810
+ },
1811
+ "passive_voice_subjunctive_mood_present_tense": {
1812
+ "data": [
1813
+ "",
1814
+ "",
1815
+ "",
1816
+ "",
1817
+ ""
1818
+ ]
1819
+ }
1820
+ }
1821
+ }
1822
+ EOJSON
1823
+ #FIŌ: To be made. No active forms, efectively the passive form to faciō
1824
+ FIŌ_FIĒRĪ_FACTUS=<<EOJSON
1825
+ {
1826
+ "original string":"sum esse fuī futūrus",
1827
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
1828
+ "participles":{
1829
+ "data": {
1830
+ "present_active_participle":"faciēns, facientis",
1831
+ "future_active_participle":"factūrus",
1832
+ "perfect_passive_participle":"factus",
1833
+ "future_passive_participle":"faciendus"
1834
+ }
1835
+ },
1836
+ "infinitives":{
1837
+ "data": {
1838
+ "present_active_infinitive": "facere",
1839
+ "present_passive_infinitive": "fierī",
1840
+
1841
+ "perfect_active_infinitive": "fēcisse",
1842
+ "perfect_passive_infinitive": "factus esse",
1843
+
1844
+ "future_active_infinitive": "factūrum esse",
1845
+ "future_passive_infinitive": ""
1846
+ }
1847
+ },
1848
+ "tense_blocks": {
1849
+
1850
+ "active_voice_imperative_mood_present_tense": {
1851
+ "data": [
1852
+ [],
1853
+ "",
1854
+ [],
1855
+ [],
1856
+ "",
1857
+ []
1858
+ ]
1859
+ },
1860
+ "active_voice_indicative_mood_future_tense": {
1861
+ "data": [
1862
+ "",
1863
+ "",
1864
+ "",
1865
+ "",
1866
+ "",
1867
+ ""
1868
+ ]
1869
+ },
1870
+ "active_voice_indicative_mood_futureperfect_tense": {
1871
+ "data": [
1872
+ "",
1873
+ "",
1874
+ "",
1875
+ "",
1876
+ "",
1877
+ ""
1878
+ ]
1879
+ },
1880
+ "active_voice_indicative_mood_imperfect_tense": {
1881
+ "data": [
1882
+ "",
1883
+ "",
1884
+ "",
1885
+ "",
1886
+ "",
1887
+ ""
1888
+ ]
1889
+ },
1890
+ "active_voice_indicative_mood_pastperfect_tense": {
1891
+ "data": [
1892
+ "",
1893
+ "",
1894
+ "",
1895
+ "",
1896
+ "",
1897
+ ""
1898
+ ]
1899
+ },
1900
+ "active_voice_indicative_mood_perfect_tense": {
1901
+ "data": [
1902
+ "",
1903
+ "",
1904
+ "",
1905
+ "",
1906
+ "",
1907
+ "(-ēre)"
1908
+ ]
1909
+ },
1910
+ "active_voice_indicative_mood_present_tense": {
1911
+ "data": [
1912
+ "",
1913
+ "",
1914
+ "",
1915
+ "",
1916
+ "",
1917
+ ""
1918
+ ]
1919
+ },
1920
+ "active_voice_subjunctive_mood_imperfect_tense": {
1921
+ "data": [
1922
+ "",
1923
+ "",
1924
+ "",
1925
+ "",
1926
+ "",
1927
+ ""
1928
+ ]
1929
+ },
1930
+ "active_voice_subjunctive_mood_pastperfect_tense": {
1931
+ "data": [
1932
+ "",
1933
+ "",
1934
+ "",
1935
+ "",
1936
+ "",
1937
+ ""
1938
+ ]
1939
+ },
1940
+ "active_voice_subjunctive_mood_perfect_tense": {
1941
+ "data": [
1942
+ "",
1943
+ "",
1944
+ "",
1945
+ "",
1946
+ "",
1947
+ ""
1948
+ ]
1949
+ },
1950
+ "active_voice_subjunctive_mood_present_tense": {
1951
+ "data": [
1952
+ "",
1953
+ "",
1954
+ "",
1955
+ "",
1956
+ "",
1957
+ "" ]
1958
+ },
1959
+ "passive_voice_indicative_mood_future_tense": {
1960
+ "data": [
1961
+ "fiam",
1962
+ "fiēs",
1963
+ "fiet",
1964
+ "fiēmus",
1965
+ "fiētis",
1966
+ "fient"]
1967
+ },
1968
+ "passive_voice_indicative_mood_futureperfect_tense": {
1969
+ "data": [
1970
+ "factum erō",
1971
+ "factum eris",
1972
+ "factum erit",
1973
+ "factum erimus",
1974
+ "factum eritis",
1975
+ "factum erint"]
1976
+ },
1977
+
1978
+ "passive_voice_indicative_mood_imperfect_tense": {
1979
+ "data": [
1980
+ "fiēbam",
1981
+ "fiēbās",
1982
+ "fiēbat",
1983
+ "fiēbāmus",
1984
+ "fiēbātis",
1985
+ "fiēbant"
1986
+ ]
1987
+ },
1988
+ "passive_voice_indicative_mood_pastperfect_tense": {
1989
+ "data": [
1990
+ "factum eram",
1991
+ "factum erās",
1992
+ "factum erat",
1993
+ "factum erāmus",
1994
+ "factum erātis",
1995
+ "factum erant"]
1996
+ },
1997
+
1998
+
1999
+ "passive_voice_indicative_mood_perfect_tense": {
2000
+ "data": [
2001
+ "factum sum",
2002
+ "factum es",
2003
+ "factum est",
2004
+ "factum sumus",
2005
+ "factum estis",
2006
+ "factum sunt"]
2007
+ },
2008
+ "passive_voice_indicative_mood_present_tense": {
2009
+ "data": [
2010
+ "fiō",
2011
+ "fīs",
2012
+ "fit",
2013
+ "fīmus",
2014
+ "fītis",
2015
+ "fiunt"]
2016
+ },
2017
+ "passive_voice_subjunctive_mood_imperfect_tense": {
2018
+ "data": [
2019
+ "fierem",
2020
+ "fierēs",
2021
+ "fieret",
2022
+ "fierēmus",
2023
+ "fierētis",
2024
+ "fierent"
2025
+ ]
2026
+ },
2027
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
2028
+ "data": [
2029
+ "factum essem",
2030
+ "factum essēs",
2031
+ "factum esset",
2032
+ "factum essēmus",
2033
+ "factum essētis",
2034
+ "factum essent"
2035
+ ]
2036
+ },
2037
+ "passive_voice_subjunctive_mood_perfect_tense": {
2038
+ "data": [
2039
+ "factum sim",
2040
+ "factum sīs",
2041
+ "factum sit",
2042
+ "factum sīmus",
2043
+ "factum sītis",
2044
+ "factum sint"]
2045
+ },
2046
+ "passive_voice_subjunctive_mood_present_tense": {
2047
+ "data": [
2048
+ "fīam",
2049
+ "fīās",
2050
+ "fīat",
2051
+ "fīāmus",
2052
+ "fīātis",
2053
+ "fīant"]
2054
+ }
2055
+
2056
+
2057
+
2058
+
2059
+
2060
+
2061
+
2062
+ }
2063
+ }
2064
+ EOJSON
2065
+
2066
+ # PROSUM: To be of help, to be useful, benefit, profit
2067
+
2068
+ PRŌSUM_PRŌDESSE_PRŌFUĪ_PRŌFUTŪRUS=<<EOJSON
2069
+ {
2070
+ "original string":"prōsum prōdesse prōfuī prōfutūrus",
2071
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
2072
+ "participles":{
2073
+ "data": {
2074
+ "present_active_participle":"",
2075
+ "future_active_participle":"prōfutūrus",
2076
+ "perfect_passive_participle":"",
2077
+ "future_passive_participle":""
2078
+ }
2079
+ },
2080
+ "infinitives":{
2081
+ "data": {
2082
+ "present_active_infinitive": "prōdesse",
2083
+ "present_passive_infinitive": "",
2084
+
2085
+ "perfect_active_infinitive": "prōfuisse",
2086
+ "perfect_passive_infinitive": "",
2087
+
2088
+ "future_active_infinitive": "prōfutūrum esse",
2089
+ "future_passive_infinitive": ""
2090
+ }
2091
+ },
2092
+ "tense_blocks": {
2093
+ "active_voice_imperative_mood_present_tense": {
2094
+ "data": [
2095
+ [],
2096
+ "prōdēs",
2097
+ [],
2098
+ [],
2099
+ "prōdeste",
2100
+ []
2101
+ ]
2102
+ },
2103
+ "active_voice_imperative_mood_future_tense": {
2104
+ "data": [
2105
+ [],
2106
+ "prōdestō",
2107
+ [],
2108
+ [],
2109
+ "prōdestōte",
2110
+ []
2111
+ ]
2112
+ },
2113
+ "active_voice_indicative_mood_future_tense": {
2114
+ "data": [
2115
+ "prōderō",
2116
+ "prōderis",
2117
+ "prōderit",
2118
+ "prōderimus",
2119
+ "prōderitis",
2120
+ "prōderunt"
2121
+ ]
2122
+ },
2123
+ "active_voice_indicative_mood_futureperfect_tense": {
2124
+ "data": [
2125
+ "prōfuerō",
2126
+ "prōfueris",
2127
+ "prōfuerit",
2128
+ "prōfuerimus",
2129
+ "prōfueritis",
2130
+ "prōfuerint"
2131
+ ]
2132
+ },
2133
+ "active_voice_indicative_mood_imperfect_tense": {
2134
+ "data": [
2135
+ "prōderam",
2136
+ "prōderās",
2137
+ "prōderat",
2138
+ "prōderāmus",
2139
+ "prōderātis",
2140
+ "prōderant"
2141
+ ]
2142
+ },
2143
+ "active_voice_indicative_mood_pastperfect_tense": {
2144
+ "data": [
2145
+ "prōfueram",
2146
+ "prōfuerās",
2147
+ "prōfuerat",
2148
+ "prōfuerāmus",
2149
+ "prōfuerātis",
2150
+ "prōfuerant"
2151
+ ]
2152
+ },
2153
+ "active_voice_indicative_mood_perfect_tense": {
2154
+ "data": [
2155
+ "prōfuī",
2156
+ "prōfuistī",
2157
+ "prōfuit",
2158
+ "prōfuimus",
2159
+ "prōfuistis",
2160
+ "prōfuērunt (-ēre)"
2161
+ ]
2162
+ },
2163
+ "active_voice_indicative_mood_present_tense": {
2164
+ "data": [
2165
+ "prōsum",
2166
+ "prōdēs",
2167
+ "prōdest",
2168
+ "prōsumus",
2169
+ "prōdestis",
2170
+ "prōsunt"
2171
+ ]
2172
+ },
2173
+ "active_voice_subjunctive_mood_imperfect_tense": {
2174
+ "data": [
2175
+ "prōdessem",
2176
+ "prōdessēs",
2177
+ "prōdesset",
2178
+ "prōdessēmus",
2179
+ "prōdessētis",
2180
+ "prōdessent"
2181
+ ]
2182
+ },
2183
+ "active_voice_subjunctive_mood_pastperfect_tense": {
2184
+ "data": [
2185
+ "prōfuissem",
2186
+ "prōfuissēs",
2187
+ "prōfuisset",
2188
+ "prōfuissēmus",
2189
+ "prōfuissētis",
2190
+ "prōfuissent"
2191
+ ]
2192
+ },
2193
+ "active_voice_subjunctive_mood_perfect_tense": {
2194
+ "data": [
2195
+ "prōfuerim",
2196
+ "prōfueris",
2197
+ "prōfuerit",
2198
+ "prōfuerimus",
2199
+ "prōfueritis",
2200
+ "prōfuerint"
2201
+ ]
2202
+ },
2203
+ "active_voice_subjunctive_mood_present_tense": {
2204
+ "data": [
2205
+ "prōsim",
2206
+ "prōsīs",
2207
+ "prōsit",
2208
+ "prōsīmus",
2209
+ "prōsītis",
2210
+ "prōsint"
2211
+ ]
2212
+ },
2213
+ "passive_voice_indicative_mood_future_tense": {
2214
+ "data": []
2215
+ },
2216
+ "passive_voice_indicative_mood_futureperfect_tense": {
2217
+ "data": []
2218
+ },
2219
+ "passive_voice_indicative_mood_imperfect_tense": {
2220
+ "data": []
2221
+ },
2222
+ "passive_voice_indicative_mood_pastperfect_tense": {
2223
+ "data": []
2224
+ },
2225
+ "passive_voice_indicative_mood_perfect_tense": {
2226
+ "data": []
2227
+ },
2228
+ "passive_voice_indicative_mood_present_tense": {
2229
+ "data": []
2230
+ },
2231
+ "passive_voice_subjunctive_mood_imperfect_tense": {
2232
+ "data": []
2233
+ },
2234
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
2235
+ "data": []
2236
+ },
2237
+ "passive_voice_subjunctive_mood_perfect_tense": {
2238
+ "data": []
2239
+ },
2240
+ "passive_voice_subjunctive_mood_present_tense": {
2241
+ "data": []
2242
+ }
2243
+ }
2244
+ }
2245
+ EOJSON
2246
+
2247
+ # A famous one, to be able
2248
+ POSSUM_POSSE_POTUĪ=<<EOJSON
2249
+ {
2250
+ "original string":"possum posse potuī",
2251
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
2252
+ "participles":{
2253
+ "data": {
2254
+ "present_active_participle":"potēns, potentis",
2255
+ "future_active_participle":"",
2256
+ "perfect_passive_participle":"",
2257
+ "future_passive_participle":""
2258
+ }
2259
+ },
2260
+ "infinitives":{
2261
+ "data": {
2262
+ "present_active_infinitive": "posse",
2263
+ "present_passive_infinitive": "",
2264
+
2265
+ "perfect_active_infinitive": "potuisse",
2266
+ "perfect_passive_infinitive": "",
2267
+
2268
+ "future_active_infinitive": "",
2269
+ "future_passive_infinitive": ""
2270
+ }
2271
+ },
2272
+ "tense_blocks": {
2273
+ "active_voice_imperative_mood_present_tense": {
2274
+ "data": [
2275
+ [],
2276
+ "",
2277
+ [],
2278
+ [],
2279
+ "",
2280
+ []
2281
+ ]
2282
+ },
2283
+ "active_voice_indicative_mood_future_tense": {
2284
+ "data": [
2285
+ "poterō",
2286
+ "poteris",
2287
+ "poterit",
2288
+ "poterimus",
2289
+ "poteritis",
2290
+ "poterunt"
2291
+ ]
2292
+ },
2293
+ "active_voice_indicative_mood_futureperfect_tense": {
2294
+ "data": [
2295
+ "potuerō",
2296
+ "potueris",
2297
+ "potuerit",
2298
+ "potuerimus",
2299
+ "potueritis",
2300
+ "potuerint"
2301
+ ]
2302
+ },
2303
+ "active_voice_indicative_mood_imperfect_tense": {
2304
+ "data": [
2305
+ "poteram",
2306
+ "poterās",
2307
+ "poterat",
2308
+ "poterāmus",
2309
+ "poterātis",
2310
+ "poterant"
2311
+ ]
2312
+ },
2313
+ "active_voice_indicative_mood_pastperfect_tense": {
2314
+ "data": [
2315
+ "potueram",
2316
+ "potuerās",
2317
+ "potuerat",
2318
+ "potuerāmus",
2319
+ "potuerātis",
2320
+ "potuerant"
2321
+ ]
2322
+ },
2323
+ "active_voice_indicative_mood_perfect_tense": {
2324
+ "data": [
2325
+ "potuī",
2326
+ "potuistī",
2327
+ "potuit",
2328
+ "potuimus",
2329
+ "potuistis",
2330
+ "potuērunt (-ēre)"
2331
+ ]
2332
+ },
2333
+ "active_voice_indicative_mood_present_tense": {
2334
+ "data": [
2335
+ "possum",
2336
+ "potes",
2337
+ "potest",
2338
+ "possumus",
2339
+ "potestis",
2340
+ "possunt"
2341
+ ]
2342
+ },
2343
+ "active_voice_subjunctive_mood_imperfect_tense": {
2344
+ "data": [
2345
+ "possem",
2346
+ "possēs",
2347
+ "posset",
2348
+ "possēmus",
2349
+ "possētis",
2350
+ "possent"
2351
+ ]
2352
+ },
2353
+ "active_voice_subjunctive_mood_pastperfect_tense": {
2354
+ "data": [
2355
+ "potuissem",
2356
+ "potuissēs",
2357
+ "potuisset",
2358
+ "potuissēmus",
2359
+ "potuissētis",
2360
+ "potuissent"
2361
+ ]
2362
+ },
2363
+ "active_voice_subjunctive_mood_perfect_tense": {
2364
+ "data": [
2365
+ "potuerim",
2366
+ "potueris",
2367
+ "potuerit",
2368
+ "potuerimus",
2369
+ "potueritis",
2370
+ "potuerint"
2371
+ ]
2372
+ },
2373
+ "active_voice_subjunctive_mood_present_tense": {
2374
+ "data": [
2375
+ "possim",
2376
+ "possīs",
2377
+ "possit",
2378
+ "possīmus",
2379
+ "possītis",
2380
+ "possint"
2381
+ ]
2382
+ },
2383
+ "passive_voice_indicative_mood_future_tense": {
2384
+ "data": []
2385
+ },
2386
+ "passive_voice_indicative_mood_futureperfect_tense": {
2387
+ "data": []
2388
+ },
2389
+ "passive_voice_indicative_mood_imperfect_tense": {
2390
+ "data": []
2391
+ },
2392
+ "passive_voice_indicative_mood_pastperfect_tense": {
2393
+ "data": []
2394
+ },
2395
+ "passive_voice_indicative_mood_perfect_tense": {
2396
+ "data": []
2397
+ },
2398
+ "passive_voice_indicative_mood_present_tense": {
2399
+ "data": []
2400
+ },
2401
+ "passive_voice_subjunctive_mood_imperfect_tense": {
2402
+ "data": []
2403
+ },
2404
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
2405
+ "data": []
2406
+ },
2407
+ "passive_voice_subjunctive_mood_perfect_tense": {
2408
+ "data": []
2409
+ },
2410
+ "passive_voice_subjunctive_mood_present_tense": {
2411
+ "data": []
2412
+ }
2413
+ }
2414
+ }
2415
+ EOJSON
2416
+
2417
+ # Recognized irregular verb
2418
+ NŌLŌ_NŌLLE_NŌLUĪ=<<EOJSON
2419
+ {
2420
+ "original string":"nōlō nōlle nōluī",
2421
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
2422
+ "participles":{
2423
+ "data": {
2424
+ "present_active_participle":"nōlēns, nōlentis",
2425
+ "future_active_participle":"",
2426
+ "perfect_passive_participle":"",
2427
+ "future_passive_participle":""
2428
+ }
2429
+ },
2430
+ "infinitives":{
2431
+ "data": {
2432
+ "present_active_infinitive": "nōlle",
2433
+ "present_passive_infinitive": "",
2434
+
2435
+ "perfect_active_infinitive": "nōluisse",
2436
+ "perfect_passive_infinitive": "",
2437
+
2438
+ "future_active_infinitive": "",
2439
+ "future_passive_infinitive": ""
2440
+ }
2441
+ },
2442
+ "tense_blocks": {
2443
+ "active_voice_imperative_mood_present_tense": {
2444
+ "data": [
2445
+ [],
2446
+ "nōli",
2447
+ [],
2448
+ [],
2449
+ "nōlite",
2450
+ []
2451
+ ]
2452
+ },
2453
+ "active_voice_indicative_mood_future_tense": {
2454
+ "data": [
2455
+ "nōlam",
2456
+ "nōlēs",
2457
+ "nōlet",
2458
+ "nōlēmus",
2459
+ "nōlētis",
2460
+ "nōlent"
2461
+ ]
2462
+ },
2463
+ "active_voice_indicative_mood_futureperfect_tense": {
2464
+ "data": [
2465
+ "nōluerō",
2466
+ "nōlueris",
2467
+ "nōluerit",
2468
+ "nōluerimus",
2469
+ "nōlueritis",
2470
+ "nōluerint"
2471
+ ]
2472
+ },
2473
+ "active_voice_indicative_mood_imperfect_tense": {
2474
+ "data": [
2475
+ "nōlēbam",
2476
+ "nōlēbās",
2477
+ "nōlēbat",
2478
+ "nōlēbāmus",
2479
+ "nōlēbātis",
2480
+ "nōlēbant"
2481
+ ]
2482
+ },
2483
+ "active_voice_indicative_mood_pastperfect_tense": {
2484
+ "data": [
2485
+ "nōlueram",
2486
+ "nōluerās",
2487
+ "nōluerat",
2488
+ "nōluerāmus",
2489
+ "nōluerātis",
2490
+ "nōluerant"
2491
+ ]
2492
+ },
2493
+ "active_voice_indicative_mood_perfect_tense": {
2494
+ "data": [
2495
+ "nōluī",
2496
+ "nōluistī",
2497
+ "nōluit",
2498
+ "nōluimus",
2499
+ "nōluistis",
2500
+ "nōluērunt"
2501
+ ]
2502
+ },
2503
+ "active_voice_indicative_mood_present_tense": {
2504
+ "data": [
2505
+ "nōlō",
2506
+ "nōn vīs",
2507
+ "nōn vult",
2508
+ "nōlumus",
2509
+ "nōn vultis",
2510
+ "nōlunt"
2511
+ ]
2512
+ },
2513
+ "active_voice_subjunctive_mood_imperfect_tense": {
2514
+ "data": [
2515
+ "nōllem",
2516
+ "nōllēs",
2517
+ "nōllet",
2518
+ "nōllēmus",
2519
+ "nōllētis",
2520
+ "nōllent"
2521
+ ]
2522
+ },
2523
+ "active_voice_subjunctive_mood_pastperfect_tense": {
2524
+ "data": [
2525
+ "nōluissem",
2526
+ "nōluissēs",
2527
+ "nōluisset",
2528
+ "nōluissēmus",
2529
+ "nōluissētis",
2530
+ "nōluissent"
2531
+ ]
2532
+ },
2533
+ "active_voice_subjunctive_mood_perfect_tense": {
2534
+ "data": [
2535
+ "nōluerim",
2536
+ "nōlueris",
2537
+ "nōluerit",
2538
+ "nōluerimus",
2539
+ "nōlueritis",
2540
+ "nōluerint"
2541
+ ]
2542
+ },
2543
+ "active_voice_subjunctive_mood_present_tense": {
2544
+ "data": [
2545
+ "nōlim",
2546
+ "nōlis",
2547
+ "nōlit",
2548
+ "nōlimus",
2549
+ "nōlitis",
2550
+ "nōlint"
2551
+ ]
2552
+ },
2553
+ "passive_voice_indicative_mood_future_tense": {
2554
+ "data": []
2555
+ },
2556
+ "passive_voice_indicative_mood_futureperfect_tense": {
2557
+ "data": []
2558
+ },
2559
+ "passive_voice_indicative_mood_imperfect_tense": {
2560
+ "data": []
2561
+ },
2562
+ "passive_voice_indicative_mood_pastperfect_tense": {
2563
+ "data": []
2564
+ },
2565
+ "passive_voice_indicative_mood_perfect_tense": {
2566
+ "data": []
2567
+ },
2568
+ "passive_voice_indicative_mood_present_tense": {
2569
+ "data": []
2570
+ },
2571
+ "passive_voice_subjunctive_mood_imperfect_tense": {
2572
+ "data": []
2573
+ },
2574
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
2575
+ "data": []
2576
+ },
2577
+ "passive_voice_subjunctive_mood_perfect_tense": {
2578
+ "data": []
2579
+ },
2580
+ "passive_voice_subjunctive_mood_present_tense": {
2581
+ "data": []
2582
+ }
2583
+ }
2584
+ }
2585
+ EOJSON
2586
+
2587
+ COEPĪ_COEPISSE_COEPTUM=<<EOJSON
2588
+ {
2589
+ "original string":"coepī copeisse copetum",
2590
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
2591
+ "participles":{
2592
+
2593
+ "data": {
2594
+ "present_active_participle":"",
2595
+ "future_active_participle":"coeptūrus",
2596
+ "perfect_passive_participle":"coeptus",
2597
+ "future_passive_participle":""
2598
+ }
2599
+ },
2600
+ "infinitives":{
2601
+ "data": {
2602
+ "present_active_infinitive": "",
2603
+ "present_passive_infinitive": "",
2604
+
2605
+ "perfect_active_infinitive": "coepisse",
2606
+ "perfect_passive_infinitive": "coeptus",
2607
+
2608
+ "future_active_infinitive": "coeptūrus",
2609
+ "future_passive_infinitive": ""
2610
+ }
2611
+ },
2612
+ "tense_blocks": {
2613
+ "active_voice_imperative_mood_present_tense": {
2614
+ "data": [
2615
+ [],
2616
+ "",
2617
+ [],
2618
+ [],
2619
+ "",
2620
+ []
2621
+ ]
2622
+ },
2623
+ "active_voice_indicative_mood_future_tense": {
2624
+ "data": []
2625
+ },
2626
+ "active_voice_indicative_mood_futureperfect_tense": {
2627
+ "data": [
2628
+ "coeperō",
2629
+ "coeperis",
2630
+ "coeperit",
2631
+ "coeperimus",
2632
+ "coeperitis",
2633
+ "coeperint"
2634
+ ]
2635
+ },
2636
+ "active_voice_indicative_mood_imperfect_tense": {
2637
+ "data": []
2638
+ },
2639
+ "active_voice_indicative_mood_pastperfect_tense": {
2640
+ "data": [
2641
+ "coeperam",
2642
+ "coeperās",
2643
+ "coeperat",
2644
+ "coeperāmus",
2645
+ "coeperātis",
2646
+ "coeperant"
2647
+ ]
2648
+ },
2649
+ "active_voice_indicative_mood_perfect_tense": {
2650
+ "data": [
2651
+ "coepī",
2652
+ "coepistī",
2653
+ "coepit",
2654
+ "coepimus",
2655
+ "coepistis",
2656
+ "coepērunt"
2657
+ ]
2658
+ },
2659
+ "active_voice_indicative_mood_present_tense": {
2660
+ "data": []
2661
+ },
2662
+ "active_voice_subjunctive_mood_imperfect_tense": {
2663
+ "data": []
2664
+ },
2665
+ "active_voice_subjunctive_mood_pastperfect_tense": {
2666
+ "data": [
2667
+ "coepissem",
2668
+ "coepissēs",
2669
+ "coepisset",
2670
+ "coepissēmus",
2671
+ "coepissētis",
2672
+ "coepissent"
2673
+ ]
2674
+ },
2675
+ "active_voice_subjunctive_mood_perfect_tense": {
2676
+ "data": [
2677
+ "coeperim",
2678
+ "coeperis",
2679
+ "coeperit",
2680
+ "coeperimus",
2681
+ "coeperitis",
2682
+ "coeperint"
2683
+ ]
2684
+ },
2685
+ "active_voice_subjunctive_mood_present_tense": {
2686
+ "data": []
2687
+ },
2688
+ "passive_voice_indicative_mood_future_tense": {
2689
+ "data": []
2690
+ },
2691
+ "passive_voice_indicative_mood_futureperfect_tense": {
2692
+ "data": [
2693
+ "coeptus erō",
2694
+ "coeptus eris",
2695
+ "coeptus erit",
2696
+ "coeptus erimus",
2697
+ "coeptus eritis",
2698
+ "coeptus erunt"
2699
+ ]
2700
+ },
2701
+ "passive_voice_indicative_mood_imperfect_tense": {
2702
+ "data": []
2703
+ },
2704
+ "passive_voice_indicative_mood_pastperfect_tense": {
2705
+ "data": [
2706
+ "coeptus eram",
2707
+ "coeptus erās",
2708
+ "coeptus erat",
2709
+ "coeptus erāmus",
2710
+ "coeptus erātis",
2711
+ "coeptus erant"
2712
+ ]
2713
+ },
2714
+ "passive_voice_indicative_mood_perfect_tense": {
2715
+ "data": [
2716
+ "coeptus sum",
2717
+ "coeptus es",
2718
+ "coeptus est",
2719
+ "coeptus sumus",
2720
+ "coeptus estis",
2721
+ "coeptus sunt"
2722
+ ]
2723
+ },
2724
+ "passive_voice_indicative_mood_present_tense": {
2725
+ "data": []
2726
+ },
2727
+ "passive_voice_subjunctive_mood_imperfect_tense": {
2728
+ "data": []
2729
+ },
2730
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
2731
+ "data": [
2732
+ "coeptus essem",
2733
+ "coeptus essēs",
2734
+ "coeptus esset",
2735
+ "coeptus essēmus",
2736
+ "coeptus essētis",
2737
+ "coeptus essent"
2738
+ ]
2739
+ },
2740
+ "passive_voice_subjunctive_mood_perfect_tense": {
2741
+ "data": [
2742
+ "coeptus sim",
2743
+ "coeptus sīs",
2744
+ "coeptus sit",
2745
+ "coeptus sīmus",
2746
+ "coeptus sītis",
2747
+ "coeptus sint"
2748
+ ]
2749
+ },
2750
+ "passive_voice_subjunctive_mood_present_tense": {
2751
+ "data": []
2752
+ }
2753
+ }
2754
+ }
2755
+ EOJSON
2756
+ ODĪ_ŌDISSE=<<EOJSON
2757
+ {
2758
+ "original string":"ōdī_ōdisse",
2759
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
2760
+ "participles":{
2761
+ "data": {
2762
+ "present_active_participle":"",
2763
+ "future_active_participle":"",
2764
+ "perfect_passive_participle":"",
2765
+ "future_passive_participle":""
2766
+ }
2767
+ },
2768
+ "infinitives":{
2769
+ "data": {
2770
+ "present_active_infinitive": "",
2771
+ "present_passive_infinitive": "",
2772
+
2773
+ "perfect_active_infinitive": "ōdisse",
2774
+ "perfect_passive_infinitive": "",
2775
+
2776
+ "future_active_infinitive": "",
2777
+ "future_passive_infinitive": ""
2778
+ }
2779
+ },
2780
+ "tense_blocks": {
2781
+ "active_voice_imperative_mood_present_tense": {
2782
+ "data": [
2783
+ [],
2784
+ "",
2785
+ [],
2786
+ [],
2787
+ "",
2788
+ []
2789
+ ]
2790
+ },
2791
+ "active_voice_indicative_mood_future_tense": {
2792
+ "data": [
2793
+ "",
2794
+ "",
2795
+ "",
2796
+ "",
2797
+ "",
2798
+ ""
2799
+ ]
2800
+ },
2801
+ "active_voice_indicative_mood_futureperfect_tense": {
2802
+ "data": [
2803
+ "ōderō",
2804
+ "ōderis",
2805
+ "ōderit",
2806
+ "ōderimus",
2807
+ "ōderitis",
2808
+ "ōderint"
2809
+ ]
2810
+ },
2811
+ "active_voice_indicative_mood_imperfect_tense": {
2812
+ "data": [
2813
+ "",
2814
+ "",
2815
+ "",
2816
+ "",
2817
+ "",
2818
+ ""
2819
+ ]
2820
+ },
2821
+ "active_voice_indicative_mood_pastperfect_tense": {
2822
+ "data": [
2823
+ "ōderam",
2824
+ "ōderās",
2825
+ "ōderat",
2826
+ "ōderāmus",
2827
+ "ōderātis",
2828
+ "ōderant"
2829
+ ]
2830
+ },
2831
+ "active_voice_indicative_mood_perfect_tense": {
2832
+ "data": [
2833
+ "ōdī",
2834
+ "ōdistī",
2835
+ "ōdit",
2836
+ "ōdimus",
2837
+ "ōdistis",
2838
+ "ōdērunt"
2839
+ ]
2840
+ },
2841
+ "active_voice_indicative_mood_present_tense": {
2842
+ "data": [
2843
+ "",
2844
+ "",
2845
+ "",
2846
+ "",
2847
+ "",
2848
+ ""
2849
+ ]
2850
+ },
2851
+ "active_voice_subjunctive_mood_imperfect_tense": {
2852
+ "data": [
2853
+ "",
2854
+ "",
2855
+ "",
2856
+ "",
2857
+ "",
2858
+ ""
2859
+ ]
2860
+ },
2861
+ "active_voice_subjunctive_mood_pastperfect_tense": {
2862
+ "data": [
2863
+ "ōdissem",
2864
+ "ōdissēs",
2865
+ "ōdisset",
2866
+ "ōdissēmus",
2867
+ "ōdissētis",
2868
+ "ōdissent"
2869
+ ]
2870
+ },
2871
+ "active_voice_subjunctive_mood_perfect_tense": {
2872
+ "data": [
2873
+ "ōderim",
2874
+ "ōderis",
2875
+ "ōderit",
2876
+ "ōderimus",
2877
+ "ōderitis",
2878
+ "ōderint"
2879
+ ]
2880
+ },
2881
+ "active_voice_subjunctive_mood_present_tense": {
2882
+ "data": []
2883
+ },
2884
+ "passive_voice_indicative_mood_future_tense": {
2885
+ "data": []
2886
+ },
2887
+ "passive_voice_indicative_mood_futureperfect_tense": {
2888
+ "data": []
2889
+ },
2890
+ "passive_voice_indicative_mood_imperfect_tense": {
2891
+ "data": []
2892
+ },
2893
+ "passive_voice_indicative_mood_pastperfect_tense": {
2894
+ "data": []
2895
+ },
2896
+ "passive_voice_indicative_mood_perfect_tense": {
2897
+ "data": []
2898
+ },
2899
+ "passive_voice_indicative_mood_present_tense": {
2900
+ "data": []
2901
+ },
2902
+ "passive_voice_subjunctive_mood_imperfect_tense": {
2903
+ "data": []
2904
+ },
2905
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
2906
+ "data": []
2907
+ },
2908
+ "passive_voice_subjunctive_mood_perfect_tense": {
2909
+ "data": []
2910
+ },
2911
+ "passive_voice_subjunctive_mood_present_tense": {
2912
+ "data": []
2913
+ }
2914
+ }
2915
+ }
2916
+ EOJSON
2917
+
2918
+
2919
+ # To remember
2920
+
2921
+ MEMINĪ_MEMINISSE=<<EOJSON
2922
+ {
2923
+ "original string":"meminī meminisse",
2924
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
2925
+ "participles":{
2926
+ "data": {
2927
+ "present_active_participle":"",
2928
+ "future_active_participle":"",
2929
+ "perfect_passive_participle":"",
2930
+ "future_passive_participle":""
2931
+ }
2932
+ },
2933
+ "infinitives":{
2934
+ "data": {
2935
+ "present_active_infinitive": "",
2936
+ "present_passive_infinitive": "",
2937
+
2938
+ "perfect_active_infinitive": "meminisse",
2939
+ "perfect_passive_infinitive": "",
2940
+
2941
+ "future_active_infinitive": "",
2942
+ "future_passive_infinitive": ""
2943
+ }
2944
+ },
2945
+ "tense_blocks": {
2946
+ "active_voice_imperative_mood_future_tense": {
2947
+ "data": [
2948
+ [],
2949
+ "mementō",
2950
+ [],
2951
+ [],
2952
+ "mementōte",
2953
+ []
2954
+ ]
2955
+ },
2956
+ "active_voice_imperative_mood_present_tense": {
2957
+ "data": [
2958
+ [],
2959
+ "",
2960
+ [],
2961
+ [],
2962
+ "",
2963
+ []
2964
+ ]
2965
+ },
2966
+ "active_voice_indicative_mood_future_tense": {
2967
+ "data": []
2968
+ },
2969
+ "active_voice_indicative_mood_futureperfect_tense": {
2970
+ "data": [
2971
+ "meminerō",
2972
+ "memineris",
2973
+ "meminerit",
2974
+ "meminerimus",
2975
+ "memineritis",
2976
+ "meminerint"
2977
+ ]
2978
+ },
2979
+ "active_voice_indicative_mood_imperfect_tense": {
2980
+ "data": []
2981
+ },
2982
+ "active_voice_indicative_mood_pastperfect_tense": {
2983
+ "data": [
2984
+ "memineram",
2985
+ "meminerās",
2986
+ "meminerat",
2987
+ "meminerāmus",
2988
+ "meminerātis",
2989
+ "meminerant"
2990
+ ]
2991
+ },
2992
+ "active_voice_indicative_mood_perfect_tense": {
2993
+ "data": [
2994
+ "meminī",
2995
+ "meministī",
2996
+ "meminit",
2997
+ "meminimus",
2998
+ "meministis",
2999
+ "meminērunt"
3000
+ ]
3001
+ },
3002
+ "active_voice_indicative_mood_present_tense": {
3003
+ "data": []
3004
+ },
3005
+ "active_voice_subjunctive_mood_imperfect_tense": {
3006
+ "data": []
3007
+ },
3008
+ "active_voice_subjunctive_mood_pastperfect_tense": {
3009
+ "data": [
3010
+ "meminissem",
3011
+ "meminissēs",
3012
+ "meminisset",
3013
+ "meminissēmus",
3014
+ "meminissētis",
3015
+ "meminissent"
3016
+ ]
3017
+ },
3018
+ "active_voice_subjunctive_mood_perfect_tense": {
3019
+ "data": [
3020
+ "meminerim",
3021
+ "memineris",
3022
+ "meminerit",
3023
+ "meminerimus",
3024
+ "memineritis",
3025
+ "meminerint"
3026
+ ]
3027
+ },
3028
+ "active_voice_subjunctive_mood_present_tense": {
3029
+ "data": []
3030
+ },
3031
+ "passive_voice_indicative_mood_future_tense": {
3032
+ "data": []
3033
+ },
3034
+ "passive_voice_indicative_mood_futureperfect_tense": {
3035
+ "data": []
3036
+ },
3037
+ "passive_voice_indicative_mood_imperfect_tense": {
3038
+ "data": []
3039
+ },
3040
+ "passive_voice_indicative_mood_pastperfect_tense": {
3041
+ "data": []
3042
+ },
3043
+ "passive_voice_indicative_mood_perfect_tense": {
3044
+ "data": []
3045
+ },
3046
+ "passive_voice_indicative_mood_present_tense": {
3047
+ "data": []
3048
+ },
3049
+ "passive_voice_subjunctive_mood_imperfect_tense": {
3050
+ "data": []
3051
+ },
3052
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
3053
+ "data": []
3054
+ },
3055
+ "passive_voice_subjunctive_mood_perfect_tense": {
3056
+ "data": []
3057
+ },
3058
+ "passive_voice_subjunctive_mood_present_tense": {
3059
+ "data": []
3060
+ }
3061
+ }
3062
+ }
3063
+ EOJSON
3064
+
3065
+ # "I say"
3066
+ # A&G206,a
3067
+
3068
+ AIŌ=<<EOJSON
3069
+ {
3070
+ "original string":"aiō",
3071
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
3072
+ "participles":{
3073
+ "data": {
3074
+ "present_active_participle":"aiēns",
3075
+ "future_active_participle":"",
3076
+ "perfect_passive_participle":"",
3077
+ "future_passive_participle":""
3078
+ }
3079
+ },
3080
+ "infinitives":{
3081
+ "data": {
3082
+ "present_active_infinitive": "",
3083
+ "present_passive_infinitive": "",
3084
+
3085
+ "perfect_active_infinitive": "",
3086
+ "perfect_passive_infinitive": "",
3087
+
3088
+ "future_active_infinitive": "",
3089
+ "future_passive_infinitive": ""
3090
+ }
3091
+ },
3092
+ "tense_blocks": {
3093
+ "active_voice_imperative_mood_future_tense": {
3094
+ "data": [
3095
+ [],
3096
+ "",
3097
+ [],
3098
+ [],
3099
+ "",
3100
+ []
3101
+ ]
3102
+ },
3103
+ "active_voice_imperative_mood_present_tense": {
3104
+ "data": [
3105
+ [],
3106
+ "aī",
3107
+ [],
3108
+ [],
3109
+ "",
3110
+ []
3111
+ ]
3112
+ },
3113
+ "active_voice_indicative_mood_future_tense": {
3114
+ "data": []
3115
+ },
3116
+ "active_voice_indicative_mood_futureperfect_tense": {
3117
+ "data": [
3118
+ "",
3119
+ "",
3120
+ "",
3121
+ "",
3122
+ "",
3123
+ ""
3124
+ ]
3125
+ },
3126
+ "active_voice_indicative_mood_imperfect_tense": {
3127
+ "data": [
3128
+ "aiēbam",
3129
+ "aiēbās",
3130
+ "aiēbat",
3131
+ "aiēbāmus",
3132
+ "aiēbātis",
3133
+ "aiēbant"
3134
+ ]
3135
+ },
3136
+ "active_voice_indicative_mood_pastperfect_tense": {
3137
+ "data": [
3138
+ "",
3139
+ "",
3140
+ "",
3141
+ "",
3142
+ "",
3143
+ ""
3144
+ ]
3145
+ },
3146
+ "active_voice_indicative_mood_perfect_tense": {
3147
+ "data": [
3148
+ "",
3149
+ "",
3150
+ "",
3151
+ "",
3152
+ "",
3153
+ ""
3154
+ ]
3155
+ },
3156
+ "active_voice_indicative_mood_present_tense": {
3157
+ "data": [
3158
+ "aiō",
3159
+ "ais",
3160
+ "ait",
3161
+ "",
3162
+ "",
3163
+ "aiunt"]
3164
+ },
3165
+ "active_voice_subjunctive_mood_imperfect_tense": {
3166
+ "data": []
3167
+ },
3168
+ "active_voice_subjunctive_mood_pastperfect_tense": {
3169
+ "data": [
3170
+ "",
3171
+ "",
3172
+ "",
3173
+ "",
3174
+ "",
3175
+ ""
3176
+ ]
3177
+ },
3178
+ "active_voice_subjunctive_mood_perfect_tense": {
3179
+ "data": [
3180
+ "",
3181
+ "",
3182
+ "",
3183
+ "",
3184
+ "",
3185
+ ""
3186
+ ]
3187
+ },
3188
+ "active_voice_subjunctive_mood_present_tense": {
3189
+ "data": [
3190
+ "",
3191
+ "aiās",
3192
+ "aiat",
3193
+ "",
3194
+ "",
3195
+ "aiant"
3196
+ ]
3197
+ },
3198
+ "passive_voice_indicative_mood_future_tense": {
3199
+ "data": []
3200
+ },
3201
+ "passive_voice_indicative_mood_futureperfect_tense": {
3202
+ "data": []
3203
+ },
3204
+ "passive_voice_indicative_mood_imperfect_tense": {
3205
+ "data": []
3206
+ },
3207
+ "passive_voice_indicative_mood_pastperfect_tense": {
3208
+ "data": []
3209
+ },
3210
+ "passive_voice_indicative_mood_perfect_tense": {
3211
+ "data": []
3212
+ },
3213
+ "passive_voice_indicative_mood_present_tense": {
3214
+ "data": []
3215
+ },
3216
+ "passive_voice_subjunctive_mood_imperfect_tense": {
3217
+ "data": []
3218
+ },
3219
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
3220
+ "data": []
3221
+ },
3222
+ "passive_voice_subjunctive_mood_perfect_tense": {
3223
+ "data": []
3224
+ },
3225
+ "passive_voice_subjunctive_mood_present_tense": {
3226
+ "data": []
3227
+ }
3228
+ }
3229
+ }
3230
+ EOJSON
3231
+
3232
+ # Inquam
3233
+ # I say
3234
+ INQUAM=<<EOJSON
3235
+ {
3236
+ "original string":"inquam",
3237
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
3238
+ "participles":{
3239
+ "data": {
3240
+ "present_active_participle":"",
3241
+ "future_active_participle":"",
3242
+ "perfect_passive_participle":"",
3243
+ "future_passive_participle":""
3244
+ }
3245
+ },
3246
+ "infinitives":{
3247
+ "data": {
3248
+ "present_active_infinitive": "",
3249
+ "present_passive_infinitive": "",
3250
+
3251
+ "perfect_active_infinitive": "",
3252
+ "perfect_passive_infinitive": "",
3253
+
3254
+ "future_active_infinitive": "",
3255
+ "future_passive_infinitive": ""
3256
+ }
3257
+ },
3258
+ "tense_blocks": {
3259
+ "active_voice_imperative_mood_future_tense": {
3260
+ "data": [
3261
+ [],
3262
+ "inquitō",
3263
+ [],
3264
+ [],
3265
+ "",
3266
+ []
3267
+ ]
3268
+ },
3269
+ "active_voice_imperative_mood_present_tense": {
3270
+ "data": [
3271
+ [],
3272
+ "inque",
3273
+ [],
3274
+ [],
3275
+ "",
3276
+ []
3277
+ ]
3278
+ },
3279
+ "active_voice_indicative_mood_present_tense": {
3280
+ "data": [
3281
+ "inquam",
3282
+ "inquis",
3283
+ "inquit",
3284
+ "inquimus",
3285
+ "inquitis",
3286
+ "inquiunt"
3287
+ ]
3288
+ },
3289
+ "active_voice_indicative_mood_futureperfect_tense": {
3290
+ "data": [
3291
+ "",
3292
+ "",
3293
+ "",
3294
+ "",
3295
+ "",
3296
+ ""
3297
+ ]
3298
+ },
3299
+ "active_voice_indicative_mood_imperfect_tense": {
3300
+ "data": [
3301
+ "",
3302
+ "",
3303
+ "inquiēbat",
3304
+ "",
3305
+ "",
3306
+ ""
3307
+ ]
3308
+ },
3309
+ "active_voice_indicative_mood_pastperfect_tense": {
3310
+ "data": [
3311
+ "",
3312
+ "",
3313
+ "",
3314
+ "",
3315
+ "",
3316
+ ""
3317
+ ]
3318
+ },
3319
+ "active_voice_indicative_mood_perfect_tense": {
3320
+ "data": [
3321
+ "inquiī",
3322
+ "inquīstī",
3323
+ "",
3324
+ "",
3325
+ "",
3326
+ ""
3327
+ ]
3328
+ },
3329
+ "active_voice_indicative_mood_future_tense": {
3330
+ "data": [
3331
+ "",
3332
+ "inquiēs",
3333
+ "inquiet",
3334
+ "",
3335
+ "",
3336
+ ""
3337
+ ]
3338
+ },
3339
+ "active_voice_subjunctive_mood_imperfect_tense": {
3340
+ "data": [
3341
+ "",
3342
+ "",
3343
+ "inquiēbat",
3344
+ "",
3345
+ "",
3346
+ ""
3347
+ ]
3348
+ },
3349
+ "active_voice_subjunctive_mood_pastperfect_tense": {
3350
+ "data": [
3351
+ "",
3352
+ "",
3353
+ "",
3354
+ "",
3355
+ "",
3356
+ ""
3357
+ ]
3358
+ },
3359
+ "active_voice_subjunctive_mood_perfect_tense": {
3360
+ "data": [
3361
+ "",
3362
+ "",
3363
+ "",
3364
+ "",
3365
+ "",
3366
+ ""
3367
+ ]
3368
+ },
3369
+ "active_voice_subjunctive_mood_present_tense": {
3370
+ "data": [
3371
+ "",
3372
+ "",
3373
+ "",
3374
+ "",
3375
+ "",
3376
+ ""
3377
+ ]
3378
+ },
3379
+ "passive_voice_indicative_mood_future_tense": {
3380
+ "data": []
3381
+ },
3382
+ "passive_voice_indicative_mood_futureperfect_tense": {
3383
+ "data": []
3384
+ },
3385
+ "passive_voice_indicative_mood_imperfect_tense": {
3386
+ "data": []
3387
+ },
3388
+ "passive_voice_indicative_mood_pastperfect_tense": {
3389
+ "data": []
3390
+ },
3391
+ "passive_voice_indicative_mood_perfect_tense": {
3392
+ "data": []
3393
+ },
3394
+ "passive_voice_indicative_mood_present_tense": {
3395
+ "data": []
3396
+ },
3397
+ "passive_voice_subjunctive_mood_imperfect_tense": {
3398
+ "data": []
3399
+ },
3400
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
3401
+ "data": []
3402
+ },
3403
+ "passive_voice_subjunctive_mood_perfect_tense": {
3404
+ "data": []
3405
+ },
3406
+ "passive_voice_subjunctive_mood_present_tense": {
3407
+ "data": []
3408
+ }
3409
+ }
3410
+
3411
+
3412
+ EOJSON
3413
+
3414
+ # For/fari: To speak, pronounce
3415
+ #
3416
+ FOR_FĀRĪ=<<EOJSON
3417
+ {
3418
+ "original string":"for fārī",
3419
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
3420
+ "participles":{
3421
+ "data": {
3422
+ "present_active_participle":"fāns, fantis",
3423
+ "future_active_participle":"",
3424
+ "perfect_passive_participle":"fātus",
3425
+ "future_passive_participle":""
3426
+ }
3427
+ },
3428
+ "infinitives":{
3429
+ "data": {
3430
+ "present_active_infinitive": "fārī",
3431
+ "present_passive_infinitive": "",
3432
+
3433
+ "perfect_active_infinitive": "",
3434
+ "perfect_passive_infinitive": "",
3435
+
3436
+ "future_active_infinitive": "",
3437
+ "future_passive_infinitive": ""
3438
+ }
3439
+ },
3440
+ "tense_blocks": {
3441
+ "active_voice_imperative_mood_present_tense": {
3442
+ "data": [
3443
+ "",
3444
+ ""
3445
+ "fāre",
3446
+ ""
3447
+ ""
3448
+ ""]
3449
+ },
3450
+ "active_voice_indicative_mood_future_tense": {
3451
+ "data": [
3452
+ "fābor",
3453
+ "",
3454
+ "fābitur",
3455
+ "",
3456
+ "",
3457
+ ""
3458
+ ]
3459
+ },
3460
+ "active_voice_indicative_mood_futureperfect_tense": {
3461
+ "data": [
3462
+ "",
3463
+ "",
3464
+ "",
3465
+ "",
3466
+ "",
3467
+ ""
3468
+ ]
3469
+ },
3470
+ "active_voice_indicative_mood_imperfect_tense": {
3471
+ "data": [
3472
+ "",
3473
+ "",
3474
+ "",
3475
+ "",
3476
+ "",
3477
+ ""
3478
+ ]
3479
+ },
3480
+ "active_voice_indicative_mood_pastperfect_tense": {
3481
+ "data": [
3482
+ "fātus eram",
3483
+ "",
3484
+ "fātus erat",
3485
+ "",
3486
+ "",
3487
+ ""
3488
+ ]
3489
+ },
3490
+ "active_voice_indicative_mood_perfect_tense": {
3491
+ "data": [
3492
+ "",
3493
+ "",
3494
+ "fātus est",
3495
+ "",
3496
+ "",
3497
+ "fātus sunt"
3498
+ ]
3499
+ },
3500
+ "active_voice_indicative_mood_present_tense": {
3501
+ "data": [
3502
+ "",
3503
+ "",
3504
+ "fātur",
3505
+ "",
3506
+ "",
3507
+ "fantur"
3508
+ ]
3509
+ },
3510
+ "active_voice_subjunctive_mood_imperfect_tense": {
3511
+ "data": [
3512
+ "",
3513
+ "",
3514
+ "",
3515
+ "",
3516
+ "",
3517
+ ""
3518
+ ]
3519
+ },
3520
+ "active_voice_subjunctive_mood_pastperfect_tense": {
3521
+ "data": [
3522
+ "",
3523
+ "",
3524
+ "",
3525
+ "",
3526
+ "",
3527
+ ""
3528
+ ]
3529
+ },
3530
+ "active_voice_subjunctive_mood_perfect_tense": {
3531
+ "data": [
3532
+ "",
3533
+ "",
3534
+ "",
3535
+ "",
3536
+ "",
3537
+ ""
3538
+ ]
3539
+ },
3540
+ "active_voice_subjunctive_mood_present_tense": {
3541
+ "data": [
3542
+ "",
3543
+ "",
3544
+ "",
3545
+ "",
3546
+ "",
3547
+ ""
3548
+ ]
3549
+ },
3550
+ "passive_voice_indicative_mood_future_tense": {
3551
+ "data": []
3552
+ },
3553
+ "passive_voice_indicative_mood_futureperfect_tense": {
3554
+ "data": []
3555
+ },
3556
+ "passive_voice_indicative_mood_imperfect_tense": {
3557
+ "data": []
3558
+ },
3559
+ "passive_voice_indicative_mood_pastperfect_tense": {
3560
+ "data": []
3561
+ },
3562
+ "passive_voice_indicative_mood_perfect_tense": {
3563
+ "data": []
3564
+ },
3565
+ "passive_voice_indicative_mood_present_tense": {
3566
+ "data": []
3567
+ },
3568
+ "passive_voice_subjunctive_mood_imperfect_tense": {
3569
+ "data": []
3570
+ },
3571
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
3572
+ "data": []
3573
+ },
3574
+ "passive_voice_subjunctive_mood_perfect_tense": {
3575
+ "data": []
3576
+ },
3577
+ "passive_voice_subjunctive_mood_present_tense": {
3578
+ "data": []
3579
+ }
3580
+ }
3581
+ }
3582
+ EOJSON
3583
+
3584
+ # Quaesō: To beg, request
3585
+ QUAESŌ=<<EOJSON
3586
+ {
3587
+ "original string":"quaesō",
3588
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
3589
+ "participles":{
3590
+ "data": {
3591
+ "present_active_participle":"",
3592
+ "future_active_participle":"",
3593
+ "perfect_passive_participle":"",
3594
+ "future_passive_participle":""
3595
+ }
3596
+ },
3597
+ "infinitives":{
3598
+ "data": {
3599
+ "present_active_infinitive": "",
3600
+ "present_passive_infinitive": "",
3601
+
3602
+ "perfect_active_infinitive": "",
3603
+ "perfect_passive_infinitive": "",
3604
+
3605
+ "future_active_infinitive": "",
3606
+ "future_passive_infinitive": ""
3607
+ }
3608
+ },
3609
+ "tense_blocks": {
3610
+ "active_voice_imperative_mood_future_tense": {
3611
+ "data": [
3612
+ [],
3613
+ "",
3614
+ [],
3615
+ [],
3616
+ "",
3617
+ []
3618
+ ]
3619
+ },
3620
+ "active_voice_imperative_mood_present_tense": {
3621
+ "data": [
3622
+ [],
3623
+ "",
3624
+ [],
3625
+ [],
3626
+ "",
3627
+ []
3628
+ ]
3629
+ },
3630
+ "active_voice_indicative_mood_future_tense": {
3631
+ "data": []
3632
+ },
3633
+ "active_voice_indicative_mood_futureperfect_tense": {
3634
+ "data": [
3635
+ "",
3636
+ "",
3637
+ "",
3638
+ "",
3639
+ "",
3640
+ ""
3641
+ ]
3642
+ },
3643
+ "active_voice_indicative_mood_imperfect_tense": {
3644
+ "data": []
3645
+ },
3646
+ "active_voice_indicative_mood_pastperfect_tense": {
3647
+ "data": [
3648
+ "",
3649
+ "",
3650
+ "",
3651
+ "",
3652
+ "",
3653
+ ""
3654
+ ]
3655
+ },
3656
+ "active_voice_indicative_mood_perfect_tense": {
3657
+ "data": [
3658
+ "",
3659
+ "",
3660
+ "",
3661
+ "",
3662
+ "",
3663
+ ""
3664
+ ]
3665
+ },
3666
+ "active_voice_indicative_mood_present_tense": {
3667
+ "data": [
3668
+ "quaesō",
3669
+ "",
3670
+ "",
3671
+ "quaesumus",
3672
+ "",
3673
+ ""]
3674
+ },
3675
+ "active_voice_subjunctive_mood_imperfect_tense": {
3676
+ "data": []
3677
+ },
3678
+ "active_voice_subjunctive_mood_pastperfect_tense": {
3679
+ "data": [
3680
+ "",
3681
+ "",
3682
+ "",
3683
+ "",
3684
+ "",
3685
+ ""
3686
+ ]
3687
+ },
3688
+ "active_voice_subjunctive_mood_perfect_tense": {
3689
+ "data": [
3690
+ "",
3691
+ "",
3692
+ "",
3693
+ "",
3694
+ "",
3695
+ ""
3696
+ ]
3697
+ },
3698
+ "active_voice_subjunctive_mood_present_tense": {
3699
+ "data": []
3700
+ },
3701
+ "passive_voice_indicative_mood_future_tense": {
3702
+ "data": []
3703
+ },
3704
+ "passive_voice_indicative_mood_futureperfect_tense": {
3705
+ "data": []
3706
+ },
3707
+ "passive_voice_indicative_mood_imperfect_tense": {
3708
+ "data": []
3709
+ },
3710
+ "passive_voice_indicative_mood_pastperfect_tense": {
3711
+ "data": []
3712
+ },
3713
+ "passive_voice_indicative_mood_perfect_tense": {
3714
+ "data": []
3715
+ },
3716
+ "passive_voice_indicative_mood_present_tense": {
3717
+ "data": []
3718
+ },
3719
+ "passive_voice_subjunctive_mood_imperfect_tense": {
3720
+ "data": []
3721
+ },
3722
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
3723
+ "data": []
3724
+ },
3725
+ "passive_voice_subjunctive_mood_perfect_tense": {
3726
+ "data": []
3727
+ },
3728
+ "passive_voice_subjunctive_mood_present_tense": {
3729
+ "data": []
3730
+ }
3731
+ }
3732
+ }
3733
+ EOJSON
3734
+
3735
+ OVĀRE=<<EOJSON
3736
+ {
3737
+ "original string":"ovāre",
3738
+ "classification": "Linguistics::Latin::Verb::VerbTypes::Irregular",
3739
+ "participles":{
3740
+ "data": {
3741
+ "present_active_participle":"ovāns, ovantis",
3742
+ "future_active_participle":"ovātūrus",
3743
+ "perfect_passive_participle":"",
3744
+ "future_passive_participle":"ovandum"
3745
+ }
3746
+ },
3747
+ "infinitives":{
3748
+ "data": {
3749
+ "present_active_infinitive": "",
3750
+ "present_passive_infinitive": "",
3751
+
3752
+ "perfect_active_infinitive": "",
3753
+ "perfect_passive_infinitive": "",
3754
+
3755
+ "future_active_infinitive": "",
3756
+ "future_passive_infinitive": ""
3757
+ }
3758
+ },
3759
+ "tense_blocks": {
3760
+ "active_voice_imperative_mood_future_tense": {
3761
+ "data": [
3762
+ [],
3763
+ "",
3764
+ [],
3765
+ [],
3766
+ "",
3767
+ []
3768
+ ]
3769
+ },
3770
+ "active_voice_imperative_mood_present_tense": {
3771
+ "data": [
3772
+ [],
3773
+ "",
3774
+ [],
3775
+ [],
3776
+ "",
3777
+ []
3778
+ ]
3779
+ },
3780
+ "active_voice_indicative_mood_future_tense": {
3781
+ "data": []
3782
+ },
3783
+ "active_voice_indicative_mood_futureperfect_tense": {
3784
+ "data": [
3785
+ "",
3786
+ "",
3787
+ "",
3788
+ "",
3789
+ "",
3790
+ ""
3791
+ ]
3792
+ },
3793
+ "active_voice_indicative_mood_imperfect_tense": {
3794
+ "data": []
3795
+ },
3796
+ "active_voice_indicative_mood_pastperfect_tense": {
3797
+ "data": [
3798
+ "",
3799
+ "",
3800
+ "",
3801
+ "",
3802
+ "",
3803
+ ""
3804
+ ]
3805
+ },
3806
+ "active_voice_indicative_mood_perfect_tense": {
3807
+ "data": [
3808
+ "",
3809
+ "",
3810
+ "",
3811
+ "",
3812
+ "",
3813
+ ""
3814
+ ]
3815
+ },
3816
+ "active_voice_indicative_mood_present_tense": {
3817
+ "data": [
3818
+ "",
3819
+ "ovās",
3820
+ "ovāt",
3821
+ "",
3822
+ "",
3823
+ ""]
3824
+ },
3825
+ "active_voice_subjunctive_mood_imperfect_tense": {
3826
+ "data": [
3827
+ "",
3828
+ "",
3829
+ "ovaret",
3830
+ "",
3831
+ "",
3832
+ ""
3833
+ ]
3834
+ },
3835
+ "active_voice_subjunctive_mood_pastperfect_tense": {
3836
+ "data": [
3837
+ "",
3838
+ "",
3839
+ "",
3840
+ "",
3841
+ "",
3842
+ ""
3843
+ ]
3844
+ },
3845
+ "active_voice_subjunctive_mood_perfect_tense": {
3846
+ "data": [
3847
+ "",
3848
+ "",
3849
+ "",
3850
+ "",
3851
+ "",
3852
+ ""
3853
+ ]
3854
+ },
3855
+ "active_voice_subjunctive_mood_present_tense": {
3856
+ "data": [
3857
+ "",
3858
+ "",
3859
+ "ovet",
3860
+ "",
3861
+ "",
3862
+ ""
3863
+ ]
3864
+ },
3865
+ "passive_voice_indicative_mood_future_tense": {
3866
+ "data": []
3867
+ },
3868
+ "passive_voice_indicative_mood_futureperfect_tense": {
3869
+ "data": []
3870
+ },
3871
+ "passive_voice_indicative_mood_imperfect_tense": {
3872
+ "data": []
3873
+ },
3874
+ "passive_voice_indicative_mood_pastperfect_tense": {
3875
+ "data": []
3876
+ },
3877
+ "passive_voice_indicative_mood_perfect_tense": {
3878
+ "data": []
3879
+ },
3880
+ "passive_voice_indicative_mood_present_tense": {
3881
+ "data": []
3882
+ },
3883
+ "passive_voice_subjunctive_mood_imperfect_tense": {
3884
+ "data": []
3885
+ },
3886
+ "passive_voice_subjunctive_mood_pastperfect_tense": {
3887
+ "data": []
3888
+ },
3889
+ "passive_voice_subjunctive_mood_perfect_tense": {
3890
+ "data": []
3891
+ },
3892
+ "passive_voice_subjunctive_mood_present_tense": {
3893
+ "data": []
3894
+ }
3895
+ }
3896
+ }
3897
+ EOJSON
3898
+ end
3899
+ end
3900
+ end