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