tpmkms_4wp 8.0.0-beta.4 → 8.0.0-beta.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/animals.instance.json +2855 -1363
- package/common/animals.js +2 -2
- package/common/articles.js +108 -0
- package/common/articles.test.json +310 -0
- package/common/avatar.js +2 -2
- package/common/characters.js +9 -11
- package/common/colors.instance.json +6980 -3523
- package/common/colors.js +2 -2
- package/common/colors.test.json +345 -780
- package/common/comparable.js +2 -15
- package/common/concept.js +17 -11
- package/common/countable.js +5 -5
- package/common/crew.instance.json +13032 -6570
- package/common/crew.js +4 -4
- package/common/crew.test.json +714 -452
- package/common/currency.js +7 -7
- package/common/dialogues.js +117 -238
- package/common/dimension.instance.json +265 -264
- package/common/dimension.js +13 -13
- package/common/dimension.test.json +446 -1640
- package/common/edible.instance.json +19910 -9988
- package/common/edible.js +2 -2
- package/common/emotions.instance.json +146 -128
- package/common/emotions.js +4 -4
- package/common/evaluate.instance.json +2 -0
- package/common/evaluate.js +55 -0
- package/common/evaluate.test.json +574 -0
- package/common/events.js +6 -6
- package/common/fastfood.instance.json +221110 -111293
- package/common/fastfood.js +25 -25
- package/common/formulas.instance.json +241 -255
- package/common/formulas.js +14 -14
- package/common/gdefaults.js +19 -19
- package/common/help.js +4 -4
- package/common/help.test.json +22 -22
- package/common/helpers/concept.js +9 -6
- package/common/helpers/dialogues.js +2 -3
- package/common/helpers/properties.js +48 -58
- package/common/helpers.js +1 -1
- package/common/hierarchy.js +12 -16
- package/common/javascript.js +8 -8
- package/common/kirk.instance.json +583 -289
- package/common/kirk.js +2 -2
- package/common/length.instance.json +5530 -4754
- package/common/length.js +2 -2
- package/common/listener.js +54 -0
- package/common/listener.test.json +104 -0
- package/common/math.instance.json +176 -1168
- package/common/math.js +11 -11
- package/common/meta.js +22 -29
- package/common/nameable.instance.json +2 -0
- package/common/nameable.js +142 -0
- package/common/nameable.test.json +2121 -0
- package/common/negation.instance.json +2 -0
- package/common/negation.js +38 -0
- package/common/negation.test.json +308 -0
- package/common/numbers.js +3 -3
- package/common/ordering.instance.json +340 -228
- package/common/ordering.js +5 -5
- package/common/people.instance.json +2066 -1014
- package/common/people.js +4 -5
- package/common/percentages.instance.json +2 -0
- package/common/percentages.js +57 -0
- package/common/percentages.test.json +751 -0
- package/common/pipboy.instance.json +7974 -6300
- package/common/pipboy.js +29 -32
- package/common/pokemon.instance.json +4207 -2069
- package/common/pokemon.js +4 -4
- package/common/pos.js +1 -1
- package/common/pressure.instance.json +1341 -1189
- package/common/pressure.js +2 -2
- package/common/properties.instance.json +130 -60
- package/common/properties.js +54 -125
- package/common/punctuation.js +2 -2
- package/common/reports.instance.json +595 -557
- package/common/reports.js +58 -76
- package/common/scorekeeper.js +14 -22
- package/common/sdefaults.js +13 -3
- package/common/sizeable.js +2 -2
- package/common/spock.instance.json +583 -289
- package/common/spock.js +2 -2
- package/common/stgame.js +13 -9
- package/common/stm.js +162 -19
- package/common/stm.test.json +1734 -1
- package/common/tell.js +10 -10
- package/common/temperature.instance.json +1484 -1204
- package/common/temperature.js +2 -2
- package/common/tester.js +2 -2
- package/common/testing.js +5 -5
- package/common/time.js +7 -7
- package/common/tokenize.js +1 -1
- package/common/ui.instance.json +257 -258
- package/common/ui.js +9 -9
- package/common/weight.instance.json +5212 -4233
- package/common/weight.js +2 -2
- package/common/yesno.js +1 -1
- package/main.js +59 -46
- package/package.json +27 -6
@@ -43,7 +43,7 @@
|
|
43
43
|
{
|
44
44
|
"where": "/home/dev/code/theprogrammablemind/kms/common/dimension.js:77",
|
45
45
|
"match": "({context}) => context.marker == 'noconversion'",
|
46
|
-
"apply": "({context, gp}) => `there is no conversion between ${gp(context.from)} and ${gp(context.to)}`"
|
46
|
+
"apply": "async ({context, gp}) => `there is no conversion between ${await gp(context.from)} and ${await gp(context.to)}`"
|
47
47
|
}
|
48
48
|
],
|
49
49
|
"bridges": [
|
@@ -75,7 +75,7 @@
|
|
75
75
|
"isA": [
|
76
76
|
"amount"
|
77
77
|
],
|
78
|
-
"generatorp": "({context, g}) => (context.amount) ? `${g(context.amount)} ${context.word}` : context.word",
|
78
|
+
"generatorp": "async ({context, g}) => (context.amount) ? `${await g(context.amount)} ${context.word}` : context.word",
|
79
79
|
"bridge": "{ ...next(operator), value: before[0].value, amount: before[0] }"
|
80
80
|
},
|
81
81
|
{
|
@@ -101,8 +101,8 @@
|
|
101
101
|
1
|
102
102
|
]
|
103
103
|
],
|
104
|
-
"generatorp": "({context, g}) => `${g(context.from)} ${context.word} ${g(context.to)}`",
|
105
|
-
"evaluator": "({context, kms, e, error}) => {\n /*\n error(({context, e}) => {\n context.evalue = 'dont know...'\n })\n */\n const from = context.from;\n const to = context.to;\n let evalue;\n let efrom = from\n if (!from.unit) {\n efrom = e(from).evalue\n }\n if (to.value == efrom.unit.value) {\n evalue = efrom.amount\n } else {\n const formula = kms.formulas.api.get(to, [efrom.unit])\n if (!formula) {\n const reason = { marker: 'reason', focusableForPhrase: true, evalue: { marker: 'noconversion', from: efrom.unit, to } }\n kms.stm.api.mentioned(reason)\n error(reason)\n }\n kms.stm.api.setVariable(efrom.unit.value, efrom.amount)\n evalue = e(formula)\n }\n /*\n '{\n \"marker\":\"dimension\",\n \"unit\":{\"marker\":\"unit\",\"range\":{\"start\":19,\"end\":25},\"word\":\"celcius\",\"text\":\"celcius\",\"value\":\"celcius\",\"unknown\":true,\"types\":[\"unit\",\"unknown\"]},\n \"value\":10,\n \"amount\":{\"word\":\"degrees\",\"number\":\"many\",\"text\":\"10 degrees\",\"marker\":\"degree\",\"range\":{\"start\":8,\"end\":17},\"value\":10,\"amount\":{\"value\":10,\"text\":\"10\",\"marker\":\"number\",\"word\":\"10\",\"range\":{\"start\":8,\"end\":9},\"types\":[\"number\"]}},\n \"text\":\"10 degrees celcius\",\"range\":{\"start\":8,\"end\":25}}'\n */\n context.evalue = { \n paraphrase: true,\n marker: 'dimension',\n level: 1,\n unit: to,\n amount: { evalue, paraphrase: undefined }\n }\n }"
|
104
|
+
"generatorp": "async ({context, g}) => `${await g(context.from)} ${context.word} ${await g(context.to)}`",
|
105
|
+
"evaluator": "async ({context, kms, e, error}) => {\n /*\n error(({context, e}) => {\n context.evalue = 'dont know...'\n })\n */\n const from = context.from;\n const to = context.to;\n let evalue;\n let efrom = from\n if (!from.unit) {\n efrom = (await e(from)).evalue\n }\n if (to.value == efrom.unit.value) {\n evalue = efrom.amount\n } else {\n const formula = kms.formulas.api.get(to, [efrom.unit])\n if (!formula) {\n const reason = { marker: 'reason', focusableForPhrase: true, evalue: { marker: 'noconversion', from: efrom.unit, to } }\n kms.stm.api.mentioned({ context: reason })\n error(reason)\n }\n kms.stm.api.setVariable(efrom.unit.value, efrom.amount)\n evalue = await e(formula)\n }\n /*\n '{\n \"marker\":\"dimension\",\n \"unit\":{\"marker\":\"unit\",\"range\":{\"start\":19,\"end\":25},\"word\":\"celcius\",\"text\":\"celcius\",\"value\":\"celcius\",\"unknown\":true,\"types\":[\"unit\",\"unknown\"]},\n \"value\":10,\n \"amount\":{\"word\":\"degrees\",\"number\":\"many\",\"text\":\"10 degrees\",\"marker\":\"degree\",\"range\":{\"start\":8,\"end\":17},\"value\":10,\"amount\":{\"value\":10,\"text\":\"10\",\"marker\":\"number\",\"word\":\"10\",\"range\":{\"start\":8,\"end\":9},\"types\":[\"number\"]}},\n \"text\":\"10 degrees celcius\",\"range\":{\"start\":8,\"end\":25}}'\n */\n context.evalue = { \n paraphrase: true,\n marker: 'dimension',\n level: 1,\n unit: to,\n amount: { evalue, paraphrase: undefined }\n }\n }"
|
106
106
|
},
|
107
107
|
{
|
108
108
|
"id": "unit"
|
@@ -113,629 +113,630 @@
|
|
113
113
|
"resultss": [
|
114
114
|
{
|
115
115
|
"hierarchy": [
|
116
|
-
[
|
117
|
-
"*",
|
118
|
-
"hierarchyAble"
|
119
|
-
],
|
120
|
-
[
|
121
|
-
"*",
|
122
|
-
"isEdee"
|
123
|
-
],
|
124
|
-
[
|
125
|
-
"*",
|
126
|
-
"isEder"
|
127
|
-
],
|
128
|
-
[
|
129
|
-
"*",
|
130
|
-
"mathematical_operator"
|
131
|
-
],
|
132
|
-
[
|
133
|
-
"*",
|
134
|
-
"object"
|
135
|
-
],
|
136
|
-
[
|
137
|
-
"*",
|
138
|
-
"property"
|
139
|
-
],
|
140
|
-
[
|
141
|
-
"*",
|
142
|
-
"queryable"
|
143
|
-
],
|
144
|
-
[
|
145
|
-
"*",
|
146
|
-
"theAble"
|
147
|
-
],
|
148
|
-
[
|
149
|
-
"+",
|
150
|
-
"hierarchyAble"
|
151
|
-
],
|
152
|
-
[
|
153
|
-
"+",
|
154
|
-
"isEdee"
|
155
|
-
],
|
156
|
-
[
|
157
|
-
"+",
|
158
|
-
"isEder"
|
159
|
-
],
|
160
|
-
[
|
161
|
-
"+",
|
162
|
-
"mathematical_operator"
|
163
|
-
],
|
164
|
-
[
|
165
|
-
"+",
|
166
|
-
"object"
|
167
|
-
],
|
168
|
-
[
|
169
|
-
"+",
|
170
|
-
"property"
|
171
|
-
],
|
172
|
-
[
|
173
|
-
"+",
|
174
|
-
"queryable"
|
175
|
-
],
|
176
|
-
[
|
177
|
-
"+",
|
178
|
-
"theAble"
|
179
|
-
],
|
180
|
-
[
|
181
|
-
"-",
|
182
|
-
"hierarchyAble"
|
183
|
-
],
|
184
|
-
[
|
185
|
-
"-",
|
186
|
-
"isEdee"
|
187
|
-
],
|
188
|
-
[
|
189
|
-
"-",
|
190
|
-
"isEder"
|
191
|
-
],
|
192
|
-
[
|
193
|
-
"-",
|
194
|
-
"mathematical_operator"
|
195
|
-
],
|
196
|
-
[
|
197
|
-
"-",
|
198
|
-
"object"
|
199
|
-
],
|
200
|
-
[
|
201
|
-
"-",
|
202
|
-
"property"
|
203
|
-
],
|
204
|
-
[
|
205
|
-
"-",
|
206
|
-
"queryable"
|
207
|
-
],
|
208
|
-
[
|
209
|
-
"-",
|
210
|
-
"theAble"
|
211
|
-
],
|
212
|
-
[
|
213
|
-
"/",
|
214
|
-
"hierarchyAble"
|
215
|
-
],
|
216
|
-
[
|
217
|
-
"/",
|
218
|
-
"isEdee"
|
219
|
-
],
|
220
|
-
[
|
221
|
-
"/",
|
222
|
-
"isEder"
|
223
|
-
],
|
224
|
-
[
|
225
|
-
"/",
|
226
|
-
"mathematical_operator"
|
227
|
-
],
|
228
|
-
[
|
229
|
-
"/",
|
230
|
-
"object"
|
231
|
-
],
|
232
|
-
[
|
233
|
-
"/",
|
234
|
-
"property"
|
235
|
-
],
|
236
|
-
[
|
237
|
-
"/",
|
238
|
-
"queryable"
|
239
|
-
],
|
240
|
-
[
|
241
|
-
"/",
|
242
|
-
"theAble"
|
243
|
-
],
|
244
116
|
[
|
245
117
|
"a",
|
246
|
-
"articlePOS"
|
118
|
+
"articlePOS",
|
119
|
+
false
|
247
120
|
],
|
248
121
|
[
|
249
122
|
"adjective",
|
250
|
-
"adjective"
|
123
|
+
"adjective",
|
124
|
+
false
|
251
125
|
],
|
252
126
|
[
|
253
127
|
"all",
|
254
|
-
"quantifier"
|
128
|
+
"quantifier",
|
129
|
+
false
|
255
130
|
],
|
256
131
|
[
|
257
132
|
"articlePOS",
|
258
|
-
"articlePOS"
|
133
|
+
"articlePOS",
|
134
|
+
false
|
259
135
|
],
|
260
136
|
[
|
261
137
|
"between",
|
262
|
-
"preposition"
|
138
|
+
"preposition",
|
139
|
+
false
|
263
140
|
],
|
264
141
|
[
|
265
142
|
"calculate",
|
266
|
-
"verby"
|
143
|
+
"verby",
|
144
|
+
false
|
267
145
|
],
|
268
146
|
[
|
269
147
|
"canBeDoQuestion",
|
270
|
-
"canBeDoQuestion"
|
148
|
+
"canBeDoQuestion",
|
149
|
+
false
|
271
150
|
],
|
272
151
|
[
|
273
152
|
"canBeQuestion",
|
274
|
-
"canBeQuestion"
|
153
|
+
"canBeQuestion",
|
154
|
+
false
|
275
155
|
],
|
276
156
|
[
|
277
157
|
"concept",
|
278
|
-
"queryable"
|
158
|
+
"queryable",
|
159
|
+
false
|
279
160
|
],
|
280
161
|
[
|
281
162
|
"concept",
|
282
|
-
"theAble"
|
163
|
+
"theAble",
|
164
|
+
false
|
283
165
|
],
|
284
166
|
[
|
285
167
|
"condition",
|
286
|
-
"condition"
|
168
|
+
"condition",
|
169
|
+
false
|
287
170
|
],
|
288
171
|
[
|
289
172
|
"countable",
|
290
|
-
"hierarchyAble"
|
173
|
+
"hierarchyAble",
|
174
|
+
false
|
291
175
|
],
|
292
176
|
[
|
293
177
|
"divideByExpression",
|
294
|
-
"mathematicalExpression"
|
178
|
+
"mathematicalExpression",
|
179
|
+
false
|
295
180
|
],
|
296
181
|
[
|
297
182
|
"divideByOperator",
|
298
|
-
"
|
183
|
+
"mathematical_operator",
|
184
|
+
false
|
299
185
|
],
|
300
186
|
[
|
301
187
|
"doubleQuote",
|
302
|
-
"queryable"
|
188
|
+
"queryable",
|
189
|
+
false
|
303
190
|
],
|
304
191
|
[
|
192
|
+
"evaluate",
|
193
|
+
"verby",
|
194
|
+
false
|
195
|
+
],
|
196
|
+
[
|
197
|
+
"expression",
|
305
198
|
"expression",
|
306
|
-
|
199
|
+
false
|
307
200
|
],
|
308
201
|
[
|
309
202
|
"forVariable",
|
310
|
-
"preposition"
|
203
|
+
"preposition",
|
204
|
+
false
|
311
205
|
],
|
312
206
|
[
|
313
207
|
"formula",
|
314
|
-
"concept"
|
208
|
+
"concept",
|
209
|
+
false
|
315
210
|
],
|
316
211
|
[
|
317
212
|
"formula",
|
318
|
-
"hierarchyAble"
|
213
|
+
"hierarchyAble",
|
214
|
+
false
|
319
215
|
],
|
320
216
|
[
|
321
217
|
"formula",
|
322
|
-
"isEdee"
|
218
|
+
"isEdee",
|
219
|
+
false
|
323
220
|
],
|
324
221
|
[
|
325
222
|
"formula",
|
326
|
-
"isEder"
|
223
|
+
"isEder",
|
224
|
+
false
|
327
225
|
],
|
328
226
|
[
|
329
227
|
"formula",
|
330
|
-
"object"
|
228
|
+
"object",
|
229
|
+
false
|
331
230
|
],
|
332
231
|
[
|
333
232
|
"formula",
|
334
|
-
"property"
|
233
|
+
"property",
|
234
|
+
false
|
335
235
|
],
|
336
236
|
[
|
337
237
|
"formula",
|
338
|
-
"queryable"
|
238
|
+
"queryable",
|
239
|
+
false
|
339
240
|
],
|
340
241
|
[
|
341
242
|
"formula",
|
342
|
-
"theAble"
|
243
|
+
"theAble",
|
244
|
+
false
|
343
245
|
],
|
344
246
|
[
|
345
247
|
"formulaForVariable",
|
346
|
-
"preposition"
|
248
|
+
"preposition",
|
249
|
+
false
|
347
250
|
],
|
348
251
|
[
|
349
252
|
"formulaForVariable",
|
350
|
-
"queryable"
|
253
|
+
"queryable",
|
254
|
+
false
|
351
255
|
],
|
352
256
|
[
|
353
257
|
"hasCountOfPieces",
|
354
|
-
"countable"
|
258
|
+
"countable",
|
259
|
+
false
|
355
260
|
],
|
356
261
|
[
|
357
262
|
"have",
|
358
|
-
"canBeDoQuestion"
|
263
|
+
"canBeDoQuestion",
|
264
|
+
false
|
359
265
|
],
|
360
266
|
[
|
361
267
|
"have",
|
362
|
-
"canBeQuestion"
|
268
|
+
"canBeQuestion",
|
269
|
+
false
|
363
270
|
],
|
364
271
|
[
|
365
272
|
"hierarchyAble",
|
366
|
-
"queryable"
|
273
|
+
"queryable",
|
274
|
+
false
|
367
275
|
],
|
368
276
|
[
|
369
277
|
"highest",
|
370
|
-
"condition"
|
278
|
+
"condition",
|
279
|
+
false
|
371
280
|
],
|
372
281
|
[
|
373
282
|
"ifAble",
|
374
|
-
"ifAble"
|
283
|
+
"ifAble",
|
284
|
+
false
|
375
285
|
],
|
376
286
|
[
|
377
287
|
"is",
|
378
|
-
"canBeQuestion"
|
288
|
+
"canBeQuestion",
|
289
|
+
false
|
379
290
|
],
|
380
291
|
[
|
381
292
|
"is",
|
382
|
-
"verby"
|
293
|
+
"verby",
|
294
|
+
false
|
383
295
|
],
|
384
296
|
[
|
385
297
|
"isEdee",
|
386
|
-
"isEdee"
|
298
|
+
"isEdee",
|
299
|
+
false
|
387
300
|
],
|
388
301
|
[
|
389
302
|
"isEder",
|
390
|
-
"isEder"
|
303
|
+
"isEder",
|
304
|
+
false
|
391
305
|
],
|
392
306
|
[
|
393
307
|
"it",
|
394
|
-
"pronoun"
|
308
|
+
"pronoun",
|
309
|
+
false
|
395
310
|
],
|
396
311
|
[
|
397
312
|
"it",
|
398
|
-
"queryable"
|
313
|
+
"queryable",
|
314
|
+
false
|
399
315
|
],
|
400
316
|
[
|
401
317
|
"it",
|
402
|
-
"thisitthat"
|
318
|
+
"thisitthat",
|
319
|
+
false
|
403
320
|
],
|
404
321
|
[
|
405
322
|
"it",
|
406
|
-
"toAble"
|
323
|
+
"toAble",
|
324
|
+
false
|
407
325
|
],
|
408
326
|
[
|
409
327
|
"lowest",
|
410
|
-
"condition"
|
328
|
+
"condition",
|
329
|
+
false
|
411
330
|
],
|
412
331
|
[
|
413
332
|
"mathematical",
|
414
|
-
"hierarchyAble"
|
333
|
+
"hierarchyAble",
|
334
|
+
false
|
415
335
|
],
|
416
336
|
[
|
417
337
|
"mathematical",
|
418
|
-
"isEdee"
|
338
|
+
"isEdee",
|
339
|
+
false
|
419
340
|
],
|
420
341
|
[
|
421
342
|
"mathematical",
|
422
|
-
"isEder"
|
343
|
+
"isEder",
|
344
|
+
false
|
423
345
|
],
|
424
346
|
[
|
425
347
|
"mathematical",
|
426
|
-
"object"
|
348
|
+
"object",
|
349
|
+
false
|
427
350
|
],
|
428
351
|
[
|
429
352
|
"mathematical",
|
430
|
-
"operator_modifier"
|
353
|
+
"operator_modifier",
|
354
|
+
false
|
431
355
|
],
|
432
356
|
[
|
433
357
|
"mathematical",
|
434
|
-
"property"
|
358
|
+
"property",
|
359
|
+
false
|
435
360
|
],
|
436
361
|
[
|
437
362
|
"mathematical",
|
438
|
-
"queryable"
|
363
|
+
"queryable",
|
364
|
+
false
|
439
365
|
],
|
440
366
|
[
|
441
367
|
"mathematical",
|
442
|
-
"theAble"
|
368
|
+
"theAble",
|
369
|
+
false
|
443
370
|
],
|
444
371
|
[
|
445
372
|
"mathematicalExpression",
|
446
|
-
"concept"
|
373
|
+
"concept",
|
374
|
+
false
|
447
375
|
],
|
448
376
|
[
|
449
377
|
"mathematicalExpression",
|
450
|
-
"expression"
|
378
|
+
"expression",
|
379
|
+
false
|
451
380
|
],
|
452
381
|
[
|
453
382
|
"mathematicalExpression",
|
454
|
-
"number"
|
383
|
+
"number",
|
384
|
+
false
|
455
385
|
],
|
456
386
|
[
|
457
|
-
"
|
458
|
-
"
|
387
|
+
"mathematical_operator",
|
388
|
+
"adjective",
|
389
|
+
true
|
459
390
|
],
|
460
391
|
[
|
461
392
|
"mathematical_operator",
|
462
|
-
"
|
393
|
+
"concept",
|
394
|
+
false
|
463
395
|
],
|
464
396
|
[
|
465
397
|
"mathematical_operator",
|
466
|
-
"
|
398
|
+
"hierarchyAble",
|
399
|
+
false
|
467
400
|
],
|
468
401
|
[
|
469
402
|
"mathematical_operator",
|
470
|
-
"
|
403
|
+
"isEdee",
|
404
|
+
false
|
471
405
|
],
|
472
406
|
[
|
473
407
|
"mathematical_operator",
|
474
|
-
"
|
408
|
+
"isEder",
|
409
|
+
false
|
475
410
|
],
|
476
411
|
[
|
477
412
|
"mathematical_operator",
|
478
|
-
"
|
413
|
+
"object",
|
414
|
+
false
|
479
415
|
],
|
480
416
|
[
|
481
417
|
"mathematical_operator",
|
482
|
-
"
|
418
|
+
"operator",
|
419
|
+
false
|
483
420
|
],
|
484
421
|
[
|
485
422
|
"mathematical_operator",
|
486
|
-
"
|
423
|
+
"property",
|
424
|
+
false
|
487
425
|
],
|
488
426
|
[
|
489
427
|
"mathematical_operator",
|
490
|
-
"
|
428
|
+
"queryable",
|
429
|
+
false
|
491
430
|
],
|
492
431
|
[
|
493
432
|
"mathematical_operator",
|
494
|
-
"
|
433
|
+
"theAble",
|
434
|
+
false
|
495
435
|
],
|
496
436
|
[
|
497
|
-
"
|
498
|
-
"theAble"
|
437
|
+
"memorable",
|
438
|
+
"theAble",
|
439
|
+
false
|
499
440
|
],
|
500
441
|
[
|
501
442
|
"minusExpression",
|
502
|
-
"mathematicalExpression"
|
443
|
+
"mathematicalExpression",
|
444
|
+
false
|
503
445
|
],
|
504
446
|
[
|
505
447
|
"minusOperator",
|
506
|
-
"
|
448
|
+
"mathematical_operator",
|
449
|
+
false
|
507
450
|
],
|
508
451
|
[
|
509
452
|
"modifies",
|
510
|
-
"verby"
|
511
|
-
|
512
|
-
[
|
513
|
-
"notAble",
|
514
|
-
"notAble"
|
453
|
+
"verby",
|
454
|
+
false
|
515
455
|
],
|
516
456
|
[
|
517
457
|
"noun",
|
518
|
-
"theAble"
|
458
|
+
"theAble",
|
459
|
+
false
|
519
460
|
],
|
520
461
|
[
|
521
462
|
"number",
|
522
|
-
"expression"
|
463
|
+
"expression",
|
464
|
+
false
|
523
465
|
],
|
524
466
|
[
|
525
467
|
"number",
|
526
|
-
"quantifier"
|
468
|
+
"quantifier",
|
469
|
+
false
|
527
470
|
],
|
528
471
|
[
|
529
472
|
"number",
|
530
|
-
"queryable"
|
473
|
+
"queryable",
|
474
|
+
false
|
531
475
|
],
|
532
476
|
[
|
533
477
|
"object",
|
534
|
-
"queryable"
|
478
|
+
"queryable",
|
479
|
+
false
|
535
480
|
],
|
536
481
|
[
|
537
482
|
"object",
|
538
|
-
"theAble"
|
483
|
+
"theAble",
|
484
|
+
false
|
539
485
|
],
|
540
486
|
[
|
541
487
|
"operator",
|
542
|
-
"concept"
|
488
|
+
"concept",
|
489
|
+
false
|
543
490
|
],
|
544
491
|
[
|
545
492
|
"operator",
|
546
|
-
"hierarchyAble"
|
493
|
+
"hierarchyAble",
|
494
|
+
false
|
547
495
|
],
|
548
496
|
[
|
549
497
|
"operator",
|
550
|
-
"isEdee"
|
498
|
+
"isEdee",
|
499
|
+
false
|
551
500
|
],
|
552
501
|
[
|
553
502
|
"operator",
|
554
|
-
"isEder"
|
503
|
+
"isEder",
|
504
|
+
false
|
555
505
|
],
|
556
506
|
[
|
557
507
|
"operator",
|
558
|
-
"object"
|
508
|
+
"object",
|
509
|
+
false
|
559
510
|
],
|
560
511
|
[
|
561
512
|
"operator",
|
562
|
-
"property"
|
513
|
+
"property",
|
514
|
+
false
|
563
515
|
],
|
564
516
|
[
|
565
517
|
"operator",
|
566
|
-
"queryable"
|
518
|
+
"queryable",
|
519
|
+
false
|
567
520
|
],
|
568
521
|
[
|
569
522
|
"operator",
|
570
|
-
"theAble"
|
523
|
+
"theAble",
|
524
|
+
false
|
571
525
|
],
|
572
526
|
[
|
573
527
|
"operator_modifier",
|
574
|
-
"operator_modifier"
|
528
|
+
"operator_modifier",
|
529
|
+
false
|
575
530
|
],
|
576
531
|
[
|
577
532
|
"orAble",
|
578
|
-
"ifAble"
|
533
|
+
"ifAble",
|
534
|
+
false
|
579
535
|
],
|
580
536
|
[
|
581
537
|
"plusExpression",
|
582
|
-
"mathematicalExpression"
|
538
|
+
"mathematicalExpression",
|
539
|
+
false
|
583
540
|
],
|
584
541
|
[
|
585
542
|
"plusOperator",
|
586
|
-
"
|
543
|
+
"mathematical_operator",
|
544
|
+
false
|
587
545
|
],
|
588
546
|
[
|
589
547
|
"preposition",
|
590
|
-
"preposition"
|
548
|
+
"preposition",
|
549
|
+
false
|
591
550
|
],
|
592
551
|
[
|
593
552
|
"pronoun",
|
594
|
-
"pronoun"
|
553
|
+
"pronoun",
|
554
|
+
false
|
595
555
|
],
|
596
556
|
[
|
597
557
|
"property",
|
598
|
-
"queryable"
|
558
|
+
"queryable",
|
559
|
+
false
|
599
560
|
],
|
600
561
|
[
|
601
562
|
"property",
|
602
|
-
"theAble"
|
563
|
+
"theAble",
|
564
|
+
false
|
603
565
|
],
|
604
566
|
[
|
605
567
|
"property",
|
606
|
-
"unknown"
|
568
|
+
"unknown",
|
569
|
+
false
|
607
570
|
],
|
608
571
|
[
|
609
572
|
"punctuation",
|
610
|
-
"punctuation"
|
573
|
+
"punctuation",
|
574
|
+
false
|
611
575
|
],
|
612
576
|
[
|
613
577
|
"quantifier",
|
614
|
-
"quantifier"
|
578
|
+
"quantifier",
|
579
|
+
false
|
615
580
|
],
|
616
581
|
[
|
617
582
|
"queryable",
|
618
|
-
"queryable"
|
583
|
+
"queryable",
|
584
|
+
false
|
619
585
|
],
|
620
586
|
[
|
621
587
|
"questionMark",
|
622
|
-
"punctuation"
|
588
|
+
"punctuation",
|
589
|
+
false
|
623
590
|
],
|
624
591
|
[
|
625
592
|
"readonly",
|
626
|
-
"queryable"
|
593
|
+
"queryable",
|
594
|
+
false
|
627
595
|
],
|
628
596
|
[
|
629
597
|
"reason",
|
630
|
-
"queryable"
|
598
|
+
"queryable",
|
599
|
+
false
|
631
600
|
],
|
632
601
|
[
|
633
602
|
"reason",
|
634
|
-
"theAble"
|
603
|
+
"theAble",
|
604
|
+
false
|
605
|
+
],
|
606
|
+
[
|
607
|
+
"remember",
|
608
|
+
"verby",
|
609
|
+
false
|
610
|
+
],
|
611
|
+
[
|
612
|
+
"stm_before",
|
613
|
+
"adjective",
|
614
|
+
false
|
635
615
|
],
|
636
616
|
[
|
637
617
|
"that",
|
638
|
-
"thisitthat"
|
618
|
+
"thisitthat",
|
619
|
+
false
|
639
620
|
],
|
640
621
|
[
|
641
622
|
"the",
|
642
|
-
"articlePOS"
|
623
|
+
"articlePOS",
|
624
|
+
false
|
643
625
|
],
|
644
626
|
[
|
645
627
|
"theAble",
|
646
|
-
"theAble"
|
628
|
+
"theAble",
|
629
|
+
false
|
647
630
|
],
|
648
631
|
[
|
649
632
|
"this",
|
650
|
-
"pronoun"
|
633
|
+
"pronoun",
|
634
|
+
false
|
651
635
|
],
|
652
636
|
[
|
653
637
|
"this",
|
654
|
-
"queryable"
|
638
|
+
"queryable",
|
639
|
+
false
|
655
640
|
],
|
656
641
|
[
|
657
642
|
"this",
|
658
|
-
"thisitthat"
|
643
|
+
"thisitthat",
|
644
|
+
false
|
659
645
|
],
|
660
646
|
[
|
661
647
|
"thisitthat",
|
662
|
-
"queryable"
|
648
|
+
"queryable",
|
649
|
+
false
|
663
650
|
],
|
664
651
|
[
|
665
652
|
"timesExpression",
|
666
|
-
"mathematicalExpression"
|
653
|
+
"mathematicalExpression",
|
654
|
+
false
|
667
655
|
],
|
668
656
|
[
|
669
657
|
"timesOperator",
|
670
|
-
"
|
658
|
+
"mathematical_operator",
|
659
|
+
false
|
671
660
|
],
|
672
661
|
[
|
673
662
|
"to",
|
674
|
-
"preposition"
|
663
|
+
"preposition",
|
664
|
+
false
|
675
665
|
],
|
676
666
|
[
|
677
667
|
"toAble",
|
678
|
-
"toAble"
|
668
|
+
"toAble",
|
669
|
+
false
|
679
670
|
],
|
680
671
|
[
|
681
672
|
"type",
|
682
|
-
"property"
|
673
|
+
"property",
|
674
|
+
false
|
683
675
|
],
|
684
676
|
[
|
685
677
|
"type",
|
686
|
-
"whatAble"
|
687
|
-
|
688
|
-
[
|
689
|
-
"unknown",
|
690
|
-
"hierarchyAble"
|
678
|
+
"whatAble",
|
679
|
+
false
|
691
680
|
],
|
692
681
|
[
|
693
682
|
"unknown",
|
694
|
-
"
|
683
|
+
"hierarchyAble",
|
684
|
+
false
|
695
685
|
],
|
696
686
|
[
|
697
687
|
"unknown",
|
698
|
-
"object"
|
688
|
+
"object",
|
689
|
+
false
|
699
690
|
],
|
700
691
|
[
|
701
692
|
"unknown",
|
702
|
-
"queryable"
|
693
|
+
"queryable",
|
694
|
+
false
|
703
695
|
],
|
704
696
|
[
|
705
697
|
"unknown",
|
706
|
-
"theAble"
|
698
|
+
"theAble",
|
699
|
+
false
|
707
700
|
],
|
708
701
|
[
|
709
702
|
"verby",
|
710
|
-
"verby"
|
703
|
+
"verby",
|
704
|
+
false
|
711
705
|
],
|
712
706
|
[
|
713
707
|
"what",
|
714
|
-
"object"
|
708
|
+
"object",
|
709
|
+
false
|
715
710
|
],
|
716
711
|
[
|
717
712
|
"what",
|
718
|
-
"queryable"
|
713
|
+
"queryable",
|
714
|
+
false
|
719
715
|
],
|
720
716
|
[
|
721
717
|
"whatAble",
|
722
|
-
"queryable"
|
718
|
+
"queryable",
|
719
|
+
false
|
723
720
|
],
|
724
721
|
[
|
725
722
|
"whose",
|
726
|
-
"object"
|
723
|
+
"object",
|
724
|
+
false
|
727
725
|
],
|
728
726
|
[
|
729
727
|
"x",
|
730
|
-
"number"
|
728
|
+
"number",
|
729
|
+
false
|
731
730
|
],
|
732
731
|
[
|
733
732
|
"xfx",
|
734
|
-
"queryable"
|
733
|
+
"queryable",
|
734
|
+
false
|
735
735
|
],
|
736
736
|
[
|
737
737
|
"y",
|
738
|
-
"number"
|
738
|
+
"number",
|
739
|
+
false
|
739
740
|
]
|
740
741
|
],
|
741
742
|
"metadata": {
|