ekms 9.7.1-beta.11 → 9.7.1-beta.13
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/actions.instance.json +11 -1
- package/common/actions.js +1 -1
- package/common/angle.instance.json +27 -0
- package/common/articles.js +38 -4
- package/common/can.instance.json +1 -1
- package/common/comparable.instance.json +12 -6
- package/common/conjunction.js +2 -2
- package/common/countable.js +39 -5
- package/common/crew.instance.json +1005 -158
- package/common/crew.js +3 -3
- package/common/dialogues.js +3 -4
- package/common/dimension.instance.json +136 -10
- package/common/dimension.js +5 -5
- package/common/drone.instance.json +406 -369
- package/common/drone.js +38 -8
- package/common/drone_v1.instance.json +105 -0
- package/common/edible.instance.json +72 -0
- package/common/emotions.instance.json +143 -4
- package/common/fastfood.instance.json +456 -313
- package/common/fastfood.js +7 -0
- package/common/gdefaults.js +12 -121
- package/common/hierarchy.js +0 -1
- package/common/length.instance.json +27 -0
- package/common/ordering.instance.json +2 -1
- package/common/ordinals.js +9 -3
- package/common/pipboy.instance.json +2 -2
- package/common/pipboy.js +3 -3
- package/common/pressure.instance.json +27 -0
- package/common/properties.instance.json +322 -37
- package/common/properties.js +38 -31
- package/common/reports.instance.json +5 -3
- package/common/stm.js +15 -9
- package/common/temperature.instance.json +27 -0
- package/common/time.instance.json +167 -0
- package/common/weight.instance.json +27 -0
- package/common/wp.instance.json +21 -21
- package/common/wp.js +62 -10
- package/package.json +2 -2
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"paths are nameable and memorable",
|
|
6
6
|
"start and end are properties of path",
|
|
7
7
|
{
|
|
8
|
-
"apply": "({apis}) => {\n apis('properties').addHierarchyWatcher({\n match: ({childId}) => childId == 'point',\n apply: ({config, childId}) => {\n config.updateBridge(childId, ({ bridge }) => {\n if (!bridge.
|
|
8
|
+
"apply": "({apis}) => {\n apis('properties').addHierarchyWatcher({\n match: ({childId}) => childId == 'point',\n apply: ({config, childId}) => {\n config.updateBridge(childId, ({ bridge }) => {\n if (!bridge.initial) {\n bridge.initial = {}\n }\n bridge.initial['notConjunctableWith'] = ['quantity', 'number']\n })\n }\n })\n }"
|
|
9
9
|
},
|
|
10
10
|
"start and end are points",
|
|
11
11
|
"rest and remaining are concepts",
|
|
@@ -823,7 +823,7 @@
|
|
|
823
823
|
"semantics": [
|
|
824
824
|
{
|
|
825
825
|
"match": "({context}) => context.marker == 'doAction'",
|
|
826
|
-
"apply": "async ({context, fragments, e, s, toEValue, toFinalValue, objects}) => {\n await s({ ...context, marker: 'patrol', path: context.action})\n }"
|
|
826
|
+
"apply": "async ({context, fragments, e, s, toEValue, toFinalValue, namespaced, objects}) => {\n const updated = { ...context, marker: 'patrol', path: context.action }\n namespaced.set('actions', updated, 'logged', true)\n await s(updated)\n // await s({ ...context, marker: 'patrol', path: context.action })\n }"
|
|
827
827
|
},
|
|
828
828
|
{
|
|
829
829
|
"match": "({context, contextHierarchy}) => {\n if (!context.pullFromContext || !context.evaluate || contextHierarchy.under(['doAction', 'evaluate', 'patrol']) || context.instance) {\n return false\n }\n \n if (context.marker == 'path' || context.marker == 'this' || context.marker == 'that') {\n return true\n }\n }",
|
|
@@ -842,11 +842,11 @@
|
|
|
842
842
|
"apply": "async ({gp, s, toArray, context, objects, fragments, resolveEvaluate, api, recall}) => {\n const path = await recall({ context: { marker: 'path' } })\n if (!path?.points) {\n return\n }\n \n if (context.marker == 'start') {\n resolveEvaluate(context, path?.points[0])\n } else if (context.marker == 'end') {\n resolveEvaluate(context, path?.points[path?.points.length-1])\n } else {\n const points = await recall({ context, frameOfReference: path })\n resolveEvaluate(context, toArray(points)[0])\n }\n }"
|
|
843
843
|
},
|
|
844
844
|
{
|
|
845
|
-
"match": "({context}) => context.marker == 'speed' && context.evaluate",
|
|
846
|
-
"apply": "async ({gp, s, context, objects, fragments, resolveEvaluate, api}) => {\n let value = objects.current.speed\n if (context.condition) {\n if (['highest', 'maximum'].includes(context.condition.marker)) {\n value = api.maximumSpeedDrone()\n } else if (['lowest', 'minimum'].includes(context.condition.marker)) {\n value = api.minimumSpeedDrone()\n }\n }\n const speed = await fragments(\"number meters per second\", { number: { marker: 'integer', value, word: undefined} })\n const preferred = await s({ marker: 'preferredUnits', quantity: speed }) \n resolveEvaluate(
|
|
845
|
+
"match": "({context}) => {\n // from stm lookup\n if (context.marker == 'mentions' && context.evaluate && context.args.context.marker == 'speed') {\n return true\n }\n // from property directly\n if (context.marker == 'speed' && context.evaluate) {\n return true\n }\n }",
|
|
846
|
+
"apply": "async ({gp, s, context, objects, fragments, resolveEvaluate, api}) => {\n let return_context = context\n if (context.marker == 'speed') {\n // okay\n } else {\n // stm lookup\n return_context = context\n context = context.args.context\n }\n let value = objects.current.speed\n if (context.condition) {\n if (['highest', 'maximum'].includes(context.condition.marker)) {\n value = api.maximumSpeedDrone()\n } else if (['lowest', 'minimum'].includes(context.condition.marker)) {\n value = api.minimumSpeedDrone()\n }\n }\n const speed = await fragments(\"number meters per second\", { number: { marker: 'integer', value, word: undefined} })\n const preferred = await s({ marker: 'preferredUnits', quantity: speed }) \n resolveEvaluate(return_context, preferred.response || speed)\n }"
|
|
847
847
|
},
|
|
848
848
|
{
|
|
849
|
-
"match": "({context}) => ['direction', 'drone_direction'].includes(context.marker) && context.evaluate",
|
|
849
|
+
"match": "({context}) => {\n if (context.marker == 'mentions' && context.evaluate && ['direction', 'drone_direction'].includes(context.args.context.marker)) {\n return true\n }\n if (['direction', 'drone_direction'].includes(context.marker) && context.evaluate) {\n return true\n }\n }",
|
|
850
850
|
"apply": "async ({gp, s, context, objects, fragments, resolveEvaluate, api}) => {\n const value = objects.current.angleInRadians\n const fi = await fragments(\"number radians\")\n const direction = await fi.instantiate([\n { \n match: ({path, pathEquals}) => pathEquals(path, ['0', 'amount']),\n apply: ({context}) => {\n Object.assign(context, { marker: 'number', value: value, word: undefined })\n }\n }\n ])\n const preferred = await s({ marker: 'preferredUnits', quantity: direction }) \n resolveEvaluate(context, preferred.response || direction)\n }"
|
|
851
851
|
},
|
|
852
852
|
{
|
|
@@ -913,6 +913,11 @@
|
|
|
913
913
|
"adjective",
|
|
914
914
|
false
|
|
915
915
|
],
|
|
916
|
+
[
|
|
917
|
+
"ageMarker",
|
|
918
|
+
"propertyMarker",
|
|
919
|
+
false
|
|
920
|
+
],
|
|
916
921
|
[
|
|
917
922
|
"all",
|
|
918
923
|
"quantifier",
|
|
@@ -1823,6 +1828,11 @@
|
|
|
1823
1828
|
"adjective",
|
|
1824
1829
|
false
|
|
1825
1830
|
],
|
|
1831
|
+
[
|
|
1832
|
+
"heightMarker",
|
|
1833
|
+
"propertyMarker",
|
|
1834
|
+
false
|
|
1835
|
+
],
|
|
1826
1836
|
[
|
|
1827
1837
|
"hierarchyAble",
|
|
1828
1838
|
"queryable",
|
|
@@ -3383,6 +3393,11 @@
|
|
|
3383
3393
|
"thisAble",
|
|
3384
3394
|
false
|
|
3385
3395
|
],
|
|
3396
|
+
[
|
|
3397
|
+
"propertyMarker",
|
|
3398
|
+
"propertyMarker",
|
|
3399
|
+
false
|
|
3400
|
+
],
|
|
3386
3401
|
[
|
|
3387
3402
|
"propertyOf",
|
|
3388
3403
|
"preposition",
|
|
@@ -5293,6 +5308,11 @@
|
|
|
5293
5308
|
"adjective",
|
|
5294
5309
|
false
|
|
5295
5310
|
],
|
|
5311
|
+
[
|
|
5312
|
+
"ageMarker",
|
|
5313
|
+
"propertyMarker",
|
|
5314
|
+
false
|
|
5315
|
+
],
|
|
5296
5316
|
[
|
|
5297
5317
|
"all",
|
|
5298
5318
|
"quantifier",
|
|
@@ -6338,6 +6358,11 @@
|
|
|
6338
6358
|
"adjective",
|
|
6339
6359
|
false
|
|
6340
6360
|
],
|
|
6361
|
+
[
|
|
6362
|
+
"heightMarker",
|
|
6363
|
+
"propertyMarker",
|
|
6364
|
+
false
|
|
6365
|
+
],
|
|
6341
6366
|
[
|
|
6342
6367
|
"hierarchyAble",
|
|
6343
6368
|
"queryable",
|
|
@@ -7898,6 +7923,11 @@
|
|
|
7898
7923
|
"thisAble",
|
|
7899
7924
|
false
|
|
7900
7925
|
],
|
|
7926
|
+
[
|
|
7927
|
+
"propertyMarker",
|
|
7928
|
+
"propertyMarker",
|
|
7929
|
+
false
|
|
7930
|
+
],
|
|
7901
7931
|
[
|
|
7902
7932
|
"propertyOf",
|
|
7903
7933
|
"preposition",
|
|
@@ -12196,6 +12226,11 @@
|
|
|
12196
12226
|
"adjective",
|
|
12197
12227
|
false
|
|
12198
12228
|
],
|
|
12229
|
+
[
|
|
12230
|
+
"ageMarker",
|
|
12231
|
+
"propertyMarker",
|
|
12232
|
+
false
|
|
12233
|
+
],
|
|
12199
12234
|
[
|
|
12200
12235
|
"all",
|
|
12201
12236
|
"quantifier",
|
|
@@ -13466,6 +13501,11 @@
|
|
|
13466
13501
|
"adjective",
|
|
13467
13502
|
false
|
|
13468
13503
|
],
|
|
13504
|
+
[
|
|
13505
|
+
"heightMarker",
|
|
13506
|
+
"propertyMarker",
|
|
13507
|
+
false
|
|
13508
|
+
],
|
|
13469
13509
|
[
|
|
13470
13510
|
"hierarchyAble",
|
|
13471
13511
|
"queryable",
|
|
@@ -15071,6 +15111,11 @@
|
|
|
15071
15111
|
"thisAble",
|
|
15072
15112
|
false
|
|
15073
15113
|
],
|
|
15114
|
+
[
|
|
15115
|
+
"propertyMarker",
|
|
15116
|
+
"propertyMarker",
|
|
15117
|
+
false
|
|
15118
|
+
],
|
|
15074
15119
|
[
|
|
15075
15120
|
"propertyOf",
|
|
15076
15121
|
"preposition",
|
|
@@ -16545,6 +16590,11 @@
|
|
|
16545
16590
|
"adjective",
|
|
16546
16591
|
false
|
|
16547
16592
|
],
|
|
16593
|
+
[
|
|
16594
|
+
"ageMarker",
|
|
16595
|
+
"propertyMarker",
|
|
16596
|
+
false
|
|
16597
|
+
],
|
|
16548
16598
|
[
|
|
16549
16599
|
"all",
|
|
16550
16600
|
"quantifier",
|
|
@@ -17815,6 +17865,11 @@
|
|
|
17815
17865
|
"adjective",
|
|
17816
17866
|
false
|
|
17817
17867
|
],
|
|
17868
|
+
[
|
|
17869
|
+
"heightMarker",
|
|
17870
|
+
"propertyMarker",
|
|
17871
|
+
false
|
|
17872
|
+
],
|
|
17818
17873
|
[
|
|
17819
17874
|
"hierarchyAble",
|
|
17820
17875
|
"queryable",
|
|
@@ -19470,6 +19525,11 @@
|
|
|
19470
19525
|
"thisAble",
|
|
19471
19526
|
false
|
|
19472
19527
|
],
|
|
19528
|
+
[
|
|
19529
|
+
"propertyMarker",
|
|
19530
|
+
"propertyMarker",
|
|
19531
|
+
false
|
|
19532
|
+
],
|
|
19473
19533
|
[
|
|
19474
19534
|
"propertyOf",
|
|
19475
19535
|
"preposition",
|
|
@@ -20713,6 +20773,33 @@
|
|
|
20713
20773
|
"property"
|
|
20714
20774
|
],
|
|
20715
20775
|
"propertyOf": true,
|
|
20776
|
+
"interpolate": [
|
|
20777
|
+
{
|
|
20778
|
+
"property": "property"
|
|
20779
|
+
},
|
|
20780
|
+
{
|
|
20781
|
+
"word": "of"
|
|
20782
|
+
},
|
|
20783
|
+
{
|
|
20784
|
+
"property": "object"
|
|
20785
|
+
}
|
|
20786
|
+
],
|
|
20787
|
+
"property": {
|
|
20788
|
+
"value": "property",
|
|
20789
|
+
"number": "many",
|
|
20790
|
+
"text": "properties",
|
|
20791
|
+
"marker": "property",
|
|
20792
|
+
"word": "properties",
|
|
20793
|
+
"range": {
|
|
20794
|
+
"start": 18,
|
|
20795
|
+
"end": 27
|
|
20796
|
+
},
|
|
20797
|
+
"dead": true,
|
|
20798
|
+
"types": [
|
|
20799
|
+
"property"
|
|
20800
|
+
],
|
|
20801
|
+
"level": 0
|
|
20802
|
+
},
|
|
20716
20803
|
"object": {
|
|
20717
20804
|
"value": "path",
|
|
20718
20805
|
"number": "one",
|
|
@@ -21384,7 +21471,7 @@
|
|
|
21384
21471
|
}
|
|
21385
21472
|
},
|
|
21386
21473
|
{
|
|
21387
|
-
"apply": "({apis}) => {\n apis('properties').addHierarchyWatcher({\n match: ({childId}) => childId == 'point',\n apply: ({config, childId}) => {\n config.updateBridge(childId, ({ bridge }) => {\n if (!bridge.
|
|
21474
|
+
"apply": "({apis}) => {\n apis('properties').addHierarchyWatcher({\n match: ({childId}) => childId == 'point',\n apply: ({config, childId}) => {\n config.updateBridge(childId, ({ bridge }) => {\n if (!bridge.initial) {\n bridge.initial = {}\n }\n bridge.initial['notConjunctableWith'] = ['quantity', 'number']\n })\n }\n })\n }"
|
|
21388
21475
|
},
|
|
21389
21476
|
{
|
|
21390
21477
|
"hierarchy": [
|
|
@@ -21438,6 +21525,11 @@
|
|
|
21438
21525
|
"adjective",
|
|
21439
21526
|
false
|
|
21440
21527
|
],
|
|
21528
|
+
[
|
|
21529
|
+
"ageMarker",
|
|
21530
|
+
"propertyMarker",
|
|
21531
|
+
false
|
|
21532
|
+
],
|
|
21441
21533
|
[
|
|
21442
21534
|
"all",
|
|
21443
21535
|
"quantifier",
|
|
@@ -22748,6 +22840,11 @@
|
|
|
22748
22840
|
"adjective",
|
|
22749
22841
|
false
|
|
22750
22842
|
],
|
|
22843
|
+
[
|
|
22844
|
+
"heightMarker",
|
|
22845
|
+
"propertyMarker",
|
|
22846
|
+
false
|
|
22847
|
+
],
|
|
22751
22848
|
[
|
|
22752
22849
|
"hierarchyAble",
|
|
22753
22850
|
"queryable",
|
|
@@ -24403,6 +24500,11 @@
|
|
|
24403
24500
|
"thisAble",
|
|
24404
24501
|
false
|
|
24405
24502
|
],
|
|
24503
|
+
[
|
|
24504
|
+
"propertyMarker",
|
|
24505
|
+
"propertyMarker",
|
|
24506
|
+
false
|
|
24507
|
+
],
|
|
24406
24508
|
[
|
|
24407
24509
|
"propertyOf",
|
|
24408
24510
|
"preposition",
|
|
@@ -25933,6 +26035,11 @@
|
|
|
25933
26035
|
"adjective",
|
|
25934
26036
|
false
|
|
25935
26037
|
],
|
|
26038
|
+
[
|
|
26039
|
+
"ageMarker",
|
|
26040
|
+
"propertyMarker",
|
|
26041
|
+
false
|
|
26042
|
+
],
|
|
25936
26043
|
[
|
|
25937
26044
|
"all",
|
|
25938
26045
|
"quantifier",
|
|
@@ -27248,6 +27355,11 @@
|
|
|
27248
27355
|
"adjective",
|
|
27249
27356
|
false
|
|
27250
27357
|
],
|
|
27358
|
+
[
|
|
27359
|
+
"heightMarker",
|
|
27360
|
+
"propertyMarker",
|
|
27361
|
+
false
|
|
27362
|
+
],
|
|
27251
27363
|
[
|
|
27252
27364
|
"hierarchyAble",
|
|
27253
27365
|
"queryable",
|
|
@@ -28943,6 +29055,11 @@
|
|
|
28943
29055
|
"thisAble",
|
|
28944
29056
|
false
|
|
28945
29057
|
],
|
|
29058
|
+
[
|
|
29059
|
+
"propertyMarker",
|
|
29060
|
+
"propertyMarker",
|
|
29061
|
+
false
|
|
29062
|
+
],
|
|
28946
29063
|
[
|
|
28947
29064
|
"propertyOf",
|
|
28948
29065
|
"preposition",
|
|
@@ -30565,6 +30682,11 @@
|
|
|
30565
30682
|
"adjective",
|
|
30566
30683
|
false
|
|
30567
30684
|
],
|
|
30685
|
+
[
|
|
30686
|
+
"ageMarker",
|
|
30687
|
+
"propertyMarker",
|
|
30688
|
+
false
|
|
30689
|
+
],
|
|
30568
30690
|
[
|
|
30569
30691
|
"all",
|
|
30570
30692
|
"quantifier",
|
|
@@ -31880,6 +32002,11 @@
|
|
|
31880
32002
|
"adjective",
|
|
31881
32003
|
false
|
|
31882
32004
|
],
|
|
32005
|
+
[
|
|
32006
|
+
"heightMarker",
|
|
32007
|
+
"propertyMarker",
|
|
32008
|
+
false
|
|
32009
|
+
],
|
|
31883
32010
|
[
|
|
31884
32011
|
"hierarchyAble",
|
|
31885
32012
|
"queryable",
|
|
@@ -33585,6 +33712,11 @@
|
|
|
33585
33712
|
"thisAble",
|
|
33586
33713
|
false
|
|
33587
33714
|
],
|
|
33715
|
+
[
|
|
33716
|
+
"propertyMarker",
|
|
33717
|
+
"propertyMarker",
|
|
33718
|
+
false
|
|
33719
|
+
],
|
|
33588
33720
|
[
|
|
33589
33721
|
"propertyOf",
|
|
33590
33722
|
"preposition",
|
|
@@ -35269,6 +35401,11 @@
|
|
|
35269
35401
|
"adjective",
|
|
35270
35402
|
false
|
|
35271
35403
|
],
|
|
35404
|
+
[
|
|
35405
|
+
"ageMarker",
|
|
35406
|
+
"propertyMarker",
|
|
35407
|
+
false
|
|
35408
|
+
],
|
|
35272
35409
|
[
|
|
35273
35410
|
"all",
|
|
35274
35411
|
"quantifier",
|
|
@@ -36584,6 +36721,11 @@
|
|
|
36584
36721
|
"adjective",
|
|
36585
36722
|
false
|
|
36586
36723
|
],
|
|
36724
|
+
[
|
|
36725
|
+
"heightMarker",
|
|
36726
|
+
"propertyMarker",
|
|
36727
|
+
false
|
|
36728
|
+
],
|
|
36587
36729
|
[
|
|
36588
36730
|
"hierarchyAble",
|
|
36589
36731
|
"queryable",
|
|
@@ -38329,6 +38471,11 @@
|
|
|
38329
38471
|
"thisAble",
|
|
38330
38472
|
false
|
|
38331
38473
|
],
|
|
38474
|
+
[
|
|
38475
|
+
"propertyMarker",
|
|
38476
|
+
"propertyMarker",
|
|
38477
|
+
false
|
|
38478
|
+
],
|
|
38332
38479
|
[
|
|
38333
38480
|
"propertyOf",
|
|
38334
38481
|
"preposition",
|
|
@@ -39915,6 +40062,11 @@
|
|
|
39915
40062
|
"adjective",
|
|
39916
40063
|
false
|
|
39917
40064
|
],
|
|
40065
|
+
[
|
|
40066
|
+
"ageMarker",
|
|
40067
|
+
"propertyMarker",
|
|
40068
|
+
false
|
|
40069
|
+
],
|
|
39918
40070
|
[
|
|
39919
40071
|
"all",
|
|
39920
40072
|
"quantifier",
|
|
@@ -41230,6 +41382,11 @@
|
|
|
41230
41382
|
"adjective",
|
|
41231
41383
|
false
|
|
41232
41384
|
],
|
|
41385
|
+
[
|
|
41386
|
+
"heightMarker",
|
|
41387
|
+
"propertyMarker",
|
|
41388
|
+
false
|
|
41389
|
+
],
|
|
41233
41390
|
[
|
|
41234
41391
|
"hierarchyAble",
|
|
41235
41392
|
"queryable",
|
|
@@ -42980,6 +43137,11 @@
|
|
|
42980
43137
|
"thisAble",
|
|
42981
43138
|
false
|
|
42982
43139
|
],
|
|
43140
|
+
[
|
|
43141
|
+
"propertyMarker",
|
|
43142
|
+
"propertyMarker",
|
|
43143
|
+
false
|
|
43144
|
+
],
|
|
42983
43145
|
[
|
|
42984
43146
|
"propertyOf",
|
|
42985
43147
|
"preposition",
|
|
@@ -44526,6 +44688,11 @@
|
|
|
44526
44688
|
"adjective",
|
|
44527
44689
|
false
|
|
44528
44690
|
],
|
|
44691
|
+
[
|
|
44692
|
+
"ageMarker",
|
|
44693
|
+
"propertyMarker",
|
|
44694
|
+
false
|
|
44695
|
+
],
|
|
44529
44696
|
[
|
|
44530
44697
|
"all",
|
|
44531
44698
|
"quantifier",
|
|
@@ -45841,6 +46008,11 @@
|
|
|
45841
46008
|
"adjective",
|
|
45842
46009
|
false
|
|
45843
46010
|
],
|
|
46011
|
+
[
|
|
46012
|
+
"heightMarker",
|
|
46013
|
+
"propertyMarker",
|
|
46014
|
+
false
|
|
46015
|
+
],
|
|
45844
46016
|
[
|
|
45845
46017
|
"hierarchyAble",
|
|
45846
46018
|
"queryable",
|
|
@@ -47591,6 +47763,11 @@
|
|
|
47591
47763
|
"thisAble",
|
|
47592
47764
|
false
|
|
47593
47765
|
],
|
|
47766
|
+
[
|
|
47767
|
+
"propertyMarker",
|
|
47768
|
+
"propertyMarker",
|
|
47769
|
+
false
|
|
47770
|
+
],
|
|
47594
47771
|
[
|
|
47595
47772
|
"propertyOf",
|
|
47596
47773
|
"preposition",
|
|
@@ -49142,6 +49319,11 @@
|
|
|
49142
49319
|
"adjective",
|
|
49143
49320
|
false
|
|
49144
49321
|
],
|
|
49322
|
+
[
|
|
49323
|
+
"ageMarker",
|
|
49324
|
+
"propertyMarker",
|
|
49325
|
+
false
|
|
49326
|
+
],
|
|
49145
49327
|
[
|
|
49146
49328
|
"all",
|
|
49147
49329
|
"quantifier",
|
|
@@ -50457,6 +50639,11 @@
|
|
|
50457
50639
|
"adjective",
|
|
50458
50640
|
false
|
|
50459
50641
|
],
|
|
50642
|
+
[
|
|
50643
|
+
"heightMarker",
|
|
50644
|
+
"propertyMarker",
|
|
50645
|
+
false
|
|
50646
|
+
],
|
|
50460
50647
|
[
|
|
50461
50648
|
"hierarchyAble",
|
|
50462
50649
|
"queryable",
|
|
@@ -52212,6 +52399,11 @@
|
|
|
52212
52399
|
"thisAble",
|
|
52213
52400
|
false
|
|
52214
52401
|
],
|
|
52402
|
+
[
|
|
52403
|
+
"propertyMarker",
|
|
52404
|
+
"propertyMarker",
|
|
52405
|
+
false
|
|
52406
|
+
],
|
|
52215
52407
|
[
|
|
52216
52408
|
"propertyOf",
|
|
52217
52409
|
"preposition",
|
|
@@ -53538,7 +53730,8 @@
|
|
|
53538
53730
|
"value": "point",
|
|
53539
53731
|
"text": "points",
|
|
53540
53732
|
"notConjunctableWith": [
|
|
53541
|
-
"quantity"
|
|
53733
|
+
"quantity",
|
|
53734
|
+
"number"
|
|
53542
53735
|
],
|
|
53543
53736
|
"marker": "point",
|
|
53544
53737
|
"word": "points",
|
|
@@ -54227,6 +54420,11 @@
|
|
|
54227
54420
|
"adjective",
|
|
54228
54421
|
false
|
|
54229
54422
|
],
|
|
54423
|
+
[
|
|
54424
|
+
"ageMarker",
|
|
54425
|
+
"propertyMarker",
|
|
54426
|
+
false
|
|
54427
|
+
],
|
|
54230
54428
|
[
|
|
54231
54429
|
"all",
|
|
54232
54430
|
"quantifier",
|
|
@@ -55542,6 +55740,11 @@
|
|
|
55542
55740
|
"adjective",
|
|
55543
55741
|
false
|
|
55544
55742
|
],
|
|
55743
|
+
[
|
|
55744
|
+
"heightMarker",
|
|
55745
|
+
"propertyMarker",
|
|
55746
|
+
false
|
|
55747
|
+
],
|
|
55545
55748
|
[
|
|
55546
55749
|
"hierarchyAble",
|
|
55547
55750
|
"queryable",
|
|
@@ -57317,6 +57520,11 @@
|
|
|
57317
57520
|
"thisAble",
|
|
57318
57521
|
false
|
|
57319
57522
|
],
|
|
57523
|
+
[
|
|
57524
|
+
"propertyMarker",
|
|
57525
|
+
"propertyMarker",
|
|
57526
|
+
false
|
|
57527
|
+
],
|
|
57320
57528
|
[
|
|
57321
57529
|
"propertyOf",
|
|
57322
57530
|
"preposition",
|
|
@@ -59516,22 +59724,26 @@
|
|
|
59516
59724
|
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:1352"
|
|
59517
59725
|
},
|
|
59518
59726
|
{
|
|
59519
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:
|
|
59727
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:1362"
|
|
59520
59728
|
},
|
|
59521
59729
|
{
|
|
59522
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:
|
|
59730
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:1389"
|
|
59523
59731
|
},
|
|
59524
59732
|
{
|
|
59525
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:
|
|
59733
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:1424"
|
|
59526
59734
|
},
|
|
59527
59735
|
{},
|
|
59528
|
-
{},
|
|
59529
|
-
{},
|
|
59530
59736
|
{
|
|
59531
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:
|
|
59737
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:1462"
|
|
59738
|
+
},
|
|
59739
|
+
{
|
|
59740
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:1496"
|
|
59741
|
+
},
|
|
59742
|
+
{
|
|
59743
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:1522"
|
|
59532
59744
|
},
|
|
59533
59745
|
{
|
|
59534
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:
|
|
59746
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:1529"
|
|
59535
59747
|
}
|
|
59536
59748
|
]
|
|
59537
59749
|
}
|
|
@@ -59589,6 +59801,11 @@
|
|
|
59589
59801
|
"adjective",
|
|
59590
59802
|
false
|
|
59591
59803
|
],
|
|
59804
|
+
[
|
|
59805
|
+
"ageMarker",
|
|
59806
|
+
"propertyMarker",
|
|
59807
|
+
false
|
|
59808
|
+
],
|
|
59592
59809
|
[
|
|
59593
59810
|
"all",
|
|
59594
59811
|
"quantifier",
|
|
@@ -60994,6 +61211,11 @@
|
|
|
60994
61211
|
"adjective",
|
|
60995
61212
|
false
|
|
60996
61213
|
],
|
|
61214
|
+
[
|
|
61215
|
+
"heightMarker",
|
|
61216
|
+
"propertyMarker",
|
|
61217
|
+
false
|
|
61218
|
+
],
|
|
60997
61219
|
[
|
|
60998
61220
|
"hierarchyAble",
|
|
60999
61221
|
"queryable",
|
|
@@ -62819,6 +63041,11 @@
|
|
|
62819
63041
|
"thisAble",
|
|
62820
63042
|
false
|
|
62821
63043
|
],
|
|
63044
|
+
[
|
|
63045
|
+
"propertyMarker",
|
|
63046
|
+
"propertyMarker",
|
|
63047
|
+
false
|
|
63048
|
+
],
|
|
62822
63049
|
[
|
|
62823
63050
|
"propertyOf",
|
|
62824
63051
|
"preposition",
|
|
@@ -64264,6 +64491,11 @@
|
|
|
64264
64491
|
"adjective",
|
|
64265
64492
|
false
|
|
64266
64493
|
],
|
|
64494
|
+
[
|
|
64495
|
+
"ageMarker",
|
|
64496
|
+
"propertyMarker",
|
|
64497
|
+
false
|
|
64498
|
+
],
|
|
64267
64499
|
[
|
|
64268
64500
|
"all",
|
|
64269
64501
|
"quantifier",
|
|
@@ -65669,6 +65901,11 @@
|
|
|
65669
65901
|
"adjective",
|
|
65670
65902
|
false
|
|
65671
65903
|
],
|
|
65904
|
+
[
|
|
65905
|
+
"heightMarker",
|
|
65906
|
+
"propertyMarker",
|
|
65907
|
+
false
|
|
65908
|
+
],
|
|
65672
65909
|
[
|
|
65673
65910
|
"hierarchyAble",
|
|
65674
65911
|
"queryable",
|
|
@@ -67494,6 +67731,11 @@
|
|
|
67494
67731
|
"thisAble",
|
|
67495
67732
|
false
|
|
67496
67733
|
],
|
|
67734
|
+
[
|
|
67735
|
+
"propertyMarker",
|
|
67736
|
+
"propertyMarker",
|
|
67737
|
+
false
|
|
67738
|
+
],
|
|
67497
67739
|
[
|
|
67498
67740
|
"propertyOf",
|
|
67499
67741
|
"preposition",
|
|
@@ -68939,6 +69181,11 @@
|
|
|
68939
69181
|
"adjective",
|
|
68940
69182
|
false
|
|
68941
69183
|
],
|
|
69184
|
+
[
|
|
69185
|
+
"ageMarker",
|
|
69186
|
+
"propertyMarker",
|
|
69187
|
+
false
|
|
69188
|
+
],
|
|
68942
69189
|
[
|
|
68943
69190
|
"all",
|
|
68944
69191
|
"quantifier",
|
|
@@ -70344,6 +70591,11 @@
|
|
|
70344
70591
|
"adjective",
|
|
70345
70592
|
false
|
|
70346
70593
|
],
|
|
70594
|
+
[
|
|
70595
|
+
"heightMarker",
|
|
70596
|
+
"propertyMarker",
|
|
70597
|
+
false
|
|
70598
|
+
],
|
|
70347
70599
|
[
|
|
70348
70600
|
"hierarchyAble",
|
|
70349
70601
|
"queryable",
|
|
@@ -72169,6 +72421,11 @@
|
|
|
72169
72421
|
"thisAble",
|
|
72170
72422
|
false
|
|
72171
72423
|
],
|
|
72424
|
+
[
|
|
72425
|
+
"propertyMarker",
|
|
72426
|
+
"propertyMarker",
|
|
72427
|
+
false
|
|
72428
|
+
],
|
|
72172
72429
|
[
|
|
72173
72430
|
"propertyOf",
|
|
72174
72431
|
"preposition",
|
|
@@ -73849,6 +74106,11 @@
|
|
|
73849
74106
|
"adjective",
|
|
73850
74107
|
false
|
|
73851
74108
|
],
|
|
74109
|
+
[
|
|
74110
|
+
"ageMarker",
|
|
74111
|
+
"propertyMarker",
|
|
74112
|
+
false
|
|
74113
|
+
],
|
|
73852
74114
|
[
|
|
73853
74115
|
"all",
|
|
73854
74116
|
"quantifier",
|
|
@@ -75254,6 +75516,11 @@
|
|
|
75254
75516
|
"adjective",
|
|
75255
75517
|
false
|
|
75256
75518
|
],
|
|
75519
|
+
[
|
|
75520
|
+
"heightMarker",
|
|
75521
|
+
"propertyMarker",
|
|
75522
|
+
false
|
|
75523
|
+
],
|
|
75257
75524
|
[
|
|
75258
75525
|
"hierarchyAble",
|
|
75259
75526
|
"queryable",
|
|
@@ -77079,6 +77346,11 @@
|
|
|
77079
77346
|
"thisAble",
|
|
77080
77347
|
false
|
|
77081
77348
|
],
|
|
77349
|
+
[
|
|
77350
|
+
"propertyMarker",
|
|
77351
|
+
"propertyMarker",
|
|
77352
|
+
false
|
|
77353
|
+
],
|
|
77082
77354
|
[
|
|
77083
77355
|
"propertyOf",
|
|
77084
77356
|
"preposition",
|
|
@@ -78264,7 +78536,7 @@
|
|
|
78264
78536
|
"opChoices": [
|
|
78265
78537
|
{
|
|
78266
78538
|
"op": [
|
|
78267
|
-
"
|
|
78539
|
+
"meter",
|
|
78268
78540
|
0
|
|
78269
78541
|
],
|
|
78270
78542
|
"ops": [
|
|
@@ -78293,7 +78565,7 @@
|
|
|
78293
78565
|
},
|
|
78294
78566
|
{
|
|
78295
78567
|
"op": [
|
|
78296
|
-
"
|
|
78568
|
+
"unitPerUnit",
|
|
78297
78569
|
0
|
|
78298
78570
|
],
|
|
78299
78571
|
"ops": [
|
|
@@ -78302,7 +78574,7 @@
|
|
|
78302
78574
|
0
|
|
78303
78575
|
],
|
|
78304
78576
|
[
|
|
78305
|
-
"
|
|
78577
|
+
"number",
|
|
78306
78578
|
0
|
|
78307
78579
|
],
|
|
78308
78580
|
[
|
|
@@ -78327,7 +78599,7 @@
|
|
|
78327
78599
|
0
|
|
78328
78600
|
],
|
|
78329
78601
|
[
|
|
78330
|
-
"
|
|
78602
|
+
"number",
|
|
78331
78603
|
0
|
|
78332
78604
|
],
|
|
78333
78605
|
[
|
|
@@ -78339,7 +78611,7 @@
|
|
|
78339
78611
|
},
|
|
78340
78612
|
{
|
|
78341
78613
|
"op": [
|
|
78342
|
-
"
|
|
78614
|
+
"amountOfCoordinate",
|
|
78343
78615
|
0
|
|
78344
78616
|
],
|
|
78345
78617
|
"ops": [
|
|
@@ -78348,24 +78620,11 @@
|
|
|
78348
78620
|
0
|
|
78349
78621
|
],
|
|
78350
78622
|
[
|
|
78351
|
-
"
|
|
78623
|
+
"number",
|
|
78352
78624
|
0
|
|
78353
78625
|
]
|
|
78354
78626
|
],
|
|
78355
78627
|
"counter": 4
|
|
78356
|
-
},
|
|
78357
|
-
{
|
|
78358
|
-
"op": [
|
|
78359
|
-
"amountOfCoordinate",
|
|
78360
|
-
0
|
|
78361
|
-
],
|
|
78362
|
-
"ops": [
|
|
78363
|
-
[
|
|
78364
|
-
"amountOfCoordinate",
|
|
78365
|
-
0
|
|
78366
|
-
]
|
|
78367
|
-
],
|
|
78368
|
-
"counter": 5
|
|
78369
78628
|
}
|
|
78370
78629
|
]
|
|
78371
78630
|
},
|
|
@@ -78441,7 +78700,6 @@
|
|
|
78441
78700
|
"level": 0
|
|
78442
78701
|
},
|
|
78443
78702
|
"amount": {
|
|
78444
|
-
"instance": false,
|
|
78445
78703
|
"marker": "number",
|
|
78446
78704
|
"value": "number",
|
|
78447
78705
|
"default": true,
|
|
@@ -78451,11 +78709,10 @@
|
|
|
78451
78709
|
"start": 0,
|
|
78452
78710
|
"end": 5
|
|
78453
78711
|
},
|
|
78454
|
-
"dead": true,
|
|
78455
78712
|
"types": [
|
|
78456
78713
|
"number"
|
|
78457
78714
|
],
|
|
78458
|
-
"level":
|
|
78715
|
+
"level": 0
|
|
78459
78716
|
},
|
|
78460
78717
|
"interpolate": [
|
|
78461
78718
|
{
|
|
@@ -78508,11 +78765,7 @@
|
|
|
78508
78765
|
],
|
|
78509
78766
|
[
|
|
78510
78767
|
[
|
|
78511
|
-
"
|
|
78512
|
-
0
|
|
78513
|
-
],
|
|
78514
|
-
[
|
|
78515
|
-
"second",
|
|
78768
|
+
"number",
|
|
78516
78769
|
0
|
|
78517
78770
|
],
|
|
78518
78771
|
[
|
|
@@ -78574,7 +78827,7 @@
|
|
|
78574
78827
|
{
|
|
78575
78828
|
"marker": [
|
|
78576
78829
|
"number",
|
|
78577
|
-
|
|
78830
|
+
0
|
|
78578
78831
|
],
|
|
78579
78832
|
"range": {
|
|
78580
78833
|
"start": 0,
|
|
@@ -78619,40 +78872,20 @@
|
|
|
78619
78872
|
{
|
|
78620
78873
|
"marker": [
|
|
78621
78874
|
"number",
|
|
78622
|
-
|
|
78875
|
+
0
|
|
78623
78876
|
],
|
|
78624
78877
|
"range": {
|
|
78625
78878
|
"start": 0,
|
|
78626
78879
|
"end": 5
|
|
78627
78880
|
}
|
|
78628
78881
|
},
|
|
78629
|
-
{
|
|
78630
|
-
"marker": [
|
|
78631
|
-
"meter",
|
|
78632
|
-
0
|
|
78633
|
-
],
|
|
78634
|
-
"range": {
|
|
78635
|
-
"start": 7,
|
|
78636
|
-
"end": 12
|
|
78637
|
-
}
|
|
78638
|
-
},
|
|
78639
78882
|
{
|
|
78640
78883
|
"marker": [
|
|
78641
78884
|
"unitPerUnit",
|
|
78642
78885
|
0
|
|
78643
78886
|
],
|
|
78644
78887
|
"range": {
|
|
78645
|
-
"start":
|
|
78646
|
-
"end": 16
|
|
78647
|
-
}
|
|
78648
|
-
},
|
|
78649
|
-
{
|
|
78650
|
-
"marker": [
|
|
78651
|
-
"second",
|
|
78652
|
-
0
|
|
78653
|
-
],
|
|
78654
|
-
"range": {
|
|
78655
|
-
"start": 18,
|
|
78888
|
+
"start": 7,
|
|
78656
78889
|
"end": 23
|
|
78657
78890
|
}
|
|
78658
78891
|
}
|
|
@@ -78664,7 +78897,7 @@
|
|
|
78664
78897
|
{
|
|
78665
78898
|
"marker": [
|
|
78666
78899
|
"number",
|
|
78667
|
-
|
|
78900
|
+
0
|
|
78668
78901
|
],
|
|
78669
78902
|
"range": {
|
|
78670
78903
|
"start": 0,
|
|
@@ -78684,31 +78917,6 @@
|
|
|
78684
78917
|
],
|
|
78685
78918
|
"counter": 4
|
|
78686
78919
|
},
|
|
78687
|
-
{
|
|
78688
|
-
"operators": [
|
|
78689
|
-
{
|
|
78690
|
-
"marker": [
|
|
78691
|
-
"number",
|
|
78692
|
-
1
|
|
78693
|
-
],
|
|
78694
|
-
"range": {
|
|
78695
|
-
"start": 0,
|
|
78696
|
-
"end": 5
|
|
78697
|
-
}
|
|
78698
|
-
},
|
|
78699
|
-
{
|
|
78700
|
-
"marker": [
|
|
78701
|
-
"unitPerUnit",
|
|
78702
|
-
0
|
|
78703
|
-
],
|
|
78704
|
-
"range": {
|
|
78705
|
-
"start": 7,
|
|
78706
|
-
"end": 23
|
|
78707
|
-
}
|
|
78708
|
-
}
|
|
78709
|
-
],
|
|
78710
|
-
"counter": 5
|
|
78711
|
-
},
|
|
78712
78920
|
{
|
|
78713
78921
|
"operators": [
|
|
78714
78922
|
{
|
|
@@ -78722,7 +78930,7 @@
|
|
|
78722
78930
|
}
|
|
78723
78931
|
}
|
|
78724
78932
|
],
|
|
78725
|
-
"counter":
|
|
78933
|
+
"counter": 5
|
|
78726
78934
|
}
|
|
78727
78935
|
],
|
|
78728
78936
|
"length": 1
|
|
@@ -78788,6 +78996,11 @@
|
|
|
78788
78996
|
"adjective",
|
|
78789
78997
|
false
|
|
78790
78998
|
],
|
|
78999
|
+
[
|
|
79000
|
+
"ageMarker",
|
|
79001
|
+
"propertyMarker",
|
|
79002
|
+
false
|
|
79003
|
+
],
|
|
78791
79004
|
[
|
|
78792
79005
|
"all",
|
|
78793
79006
|
"quantifier",
|
|
@@ -80193,6 +80406,11 @@
|
|
|
80193
80406
|
"adjective",
|
|
80194
80407
|
false
|
|
80195
80408
|
],
|
|
80409
|
+
[
|
|
80410
|
+
"heightMarker",
|
|
80411
|
+
"propertyMarker",
|
|
80412
|
+
false
|
|
80413
|
+
],
|
|
80196
80414
|
[
|
|
80197
80415
|
"hierarchyAble",
|
|
80198
80416
|
"queryable",
|
|
@@ -82018,6 +82236,11 @@
|
|
|
82018
82236
|
"thisAble",
|
|
82019
82237
|
false
|
|
82020
82238
|
],
|
|
82239
|
+
[
|
|
82240
|
+
"propertyMarker",
|
|
82241
|
+
"propertyMarker",
|
|
82242
|
+
false
|
|
82243
|
+
],
|
|
82021
82244
|
[
|
|
82022
82245
|
"propertyOf",
|
|
82023
82246
|
"preposition",
|
|
@@ -83462,6 +83685,11 @@
|
|
|
83462
83685
|
"adjective",
|
|
83463
83686
|
false
|
|
83464
83687
|
],
|
|
83688
|
+
[
|
|
83689
|
+
"ageMarker",
|
|
83690
|
+
"propertyMarker",
|
|
83691
|
+
false
|
|
83692
|
+
],
|
|
83465
83693
|
[
|
|
83466
83694
|
"all",
|
|
83467
83695
|
"quantifier",
|
|
@@ -84867,6 +85095,11 @@
|
|
|
84867
85095
|
"adjective",
|
|
84868
85096
|
false
|
|
84869
85097
|
],
|
|
85098
|
+
[
|
|
85099
|
+
"heightMarker",
|
|
85100
|
+
"propertyMarker",
|
|
85101
|
+
false
|
|
85102
|
+
],
|
|
84870
85103
|
[
|
|
84871
85104
|
"hierarchyAble",
|
|
84872
85105
|
"queryable",
|
|
@@ -86692,6 +86925,11 @@
|
|
|
86692
86925
|
"thisAble",
|
|
86693
86926
|
false
|
|
86694
86927
|
],
|
|
86928
|
+
[
|
|
86929
|
+
"propertyMarker",
|
|
86930
|
+
"propertyMarker",
|
|
86931
|
+
false
|
|
86932
|
+
],
|
|
86695
86933
|
[
|
|
86696
86934
|
"propertyOf",
|
|
86697
86935
|
"preposition",
|
|
@@ -87877,7 +88115,7 @@
|
|
|
87877
88115
|
"opChoices": [
|
|
87878
88116
|
{
|
|
87879
88117
|
"op": [
|
|
87880
|
-
"
|
|
88118
|
+
"radian",
|
|
87881
88119
|
0
|
|
87882
88120
|
],
|
|
87883
88121
|
"ops": [
|
|
@@ -87898,7 +88136,7 @@
|
|
|
87898
88136
|
},
|
|
87899
88137
|
{
|
|
87900
88138
|
"op": [
|
|
87901
|
-
"
|
|
88139
|
+
"amountOfCoordinate",
|
|
87902
88140
|
0
|
|
87903
88141
|
],
|
|
87904
88142
|
"ops": [
|
|
@@ -87907,24 +88145,11 @@
|
|
|
87907
88145
|
0
|
|
87908
88146
|
],
|
|
87909
88147
|
[
|
|
87910
|
-
"
|
|
88148
|
+
"number",
|
|
87911
88149
|
0
|
|
87912
88150
|
]
|
|
87913
88151
|
],
|
|
87914
88152
|
"counter": 2
|
|
87915
|
-
},
|
|
87916
|
-
{
|
|
87917
|
-
"op": [
|
|
87918
|
-
"amountOfCoordinate",
|
|
87919
|
-
0
|
|
87920
|
-
],
|
|
87921
|
-
"ops": [
|
|
87922
|
-
[
|
|
87923
|
-
"amountOfCoordinate",
|
|
87924
|
-
0
|
|
87925
|
-
]
|
|
87926
|
-
],
|
|
87927
|
-
"counter": 3
|
|
87928
88153
|
}
|
|
87929
88154
|
]
|
|
87930
88155
|
},
|
|
@@ -87951,7 +88176,6 @@
|
|
|
87951
88176
|
"level": 0
|
|
87952
88177
|
},
|
|
87953
88178
|
"amount": {
|
|
87954
|
-
"instance": false,
|
|
87955
88179
|
"marker": "number",
|
|
87956
88180
|
"value": "number",
|
|
87957
88181
|
"default": true,
|
|
@@ -87961,11 +88185,10 @@
|
|
|
87961
88185
|
"start": 0,
|
|
87962
88186
|
"end": 5
|
|
87963
88187
|
},
|
|
87964
|
-
"dead": true,
|
|
87965
88188
|
"types": [
|
|
87966
88189
|
"number"
|
|
87967
88190
|
],
|
|
87968
|
-
"level":
|
|
88191
|
+
"level": 0
|
|
87969
88192
|
},
|
|
87970
88193
|
"interpolate": [
|
|
87971
88194
|
{
|
|
@@ -88042,33 +88265,8 @@
|
|
|
88042
88265
|
{
|
|
88043
88266
|
"marker": [
|
|
88044
88267
|
"number",
|
|
88045
|
-
1
|
|
88046
|
-
],
|
|
88047
|
-
"range": {
|
|
88048
|
-
"start": 0,
|
|
88049
|
-
"end": 5
|
|
88050
|
-
}
|
|
88051
|
-
},
|
|
88052
|
-
{
|
|
88053
|
-
"marker": [
|
|
88054
|
-
"radian",
|
|
88055
88268
|
0
|
|
88056
88269
|
],
|
|
88057
|
-
"range": {
|
|
88058
|
-
"start": 7,
|
|
88059
|
-
"end": 13
|
|
88060
|
-
}
|
|
88061
|
-
}
|
|
88062
|
-
],
|
|
88063
|
-
"counter": 2
|
|
88064
|
-
},
|
|
88065
|
-
{
|
|
88066
|
-
"operators": [
|
|
88067
|
-
{
|
|
88068
|
-
"marker": [
|
|
88069
|
-
"number",
|
|
88070
|
-
1
|
|
88071
|
-
],
|
|
88072
88270
|
"range": {
|
|
88073
88271
|
"start": 0,
|
|
88074
88272
|
"end": 5
|
|
@@ -88085,7 +88283,7 @@
|
|
|
88085
88283
|
}
|
|
88086
88284
|
}
|
|
88087
88285
|
],
|
|
88088
|
-
"counter":
|
|
88286
|
+
"counter": 2
|
|
88089
88287
|
},
|
|
88090
88288
|
{
|
|
88091
88289
|
"operators": [
|
|
@@ -88100,7 +88298,7 @@
|
|
|
88100
88298
|
}
|
|
88101
88299
|
}
|
|
88102
88300
|
],
|
|
88103
|
-
"counter":
|
|
88301
|
+
"counter": 3
|
|
88104
88302
|
}
|
|
88105
88303
|
],
|
|
88106
88304
|
"length": 1
|
|
@@ -88166,6 +88364,11 @@
|
|
|
88166
88364
|
"adjective",
|
|
88167
88365
|
false
|
|
88168
88366
|
],
|
|
88367
|
+
[
|
|
88368
|
+
"ageMarker",
|
|
88369
|
+
"propertyMarker",
|
|
88370
|
+
false
|
|
88371
|
+
],
|
|
88169
88372
|
[
|
|
88170
88373
|
"all",
|
|
88171
88374
|
"quantifier",
|
|
@@ -89571,6 +89774,11 @@
|
|
|
89571
89774
|
"adjective",
|
|
89572
89775
|
false
|
|
89573
89776
|
],
|
|
89777
|
+
[
|
|
89778
|
+
"heightMarker",
|
|
89779
|
+
"propertyMarker",
|
|
89780
|
+
false
|
|
89781
|
+
],
|
|
89574
89782
|
[
|
|
89575
89783
|
"hierarchyAble",
|
|
89576
89784
|
"queryable",
|
|
@@ -91396,6 +91604,11 @@
|
|
|
91396
91604
|
"thisAble",
|
|
91397
91605
|
false
|
|
91398
91606
|
],
|
|
91607
|
+
[
|
|
91608
|
+
"propertyMarker",
|
|
91609
|
+
"propertyMarker",
|
|
91610
|
+
false
|
|
91611
|
+
],
|
|
91399
91612
|
[
|
|
91400
91613
|
"propertyOf",
|
|
91401
91614
|
"preposition",
|
|
@@ -92581,7 +92794,7 @@
|
|
|
92581
92794
|
"opChoices": [
|
|
92582
92795
|
{
|
|
92583
92796
|
"op": [
|
|
92584
|
-
"
|
|
92797
|
+
"degree",
|
|
92585
92798
|
0
|
|
92586
92799
|
],
|
|
92587
92800
|
"ops": [
|
|
@@ -92610,7 +92823,7 @@
|
|
|
92610
92823
|
},
|
|
92611
92824
|
{
|
|
92612
92825
|
"op": [
|
|
92613
|
-
"
|
|
92826
|
+
"amountOfCoordinate",
|
|
92614
92827
|
0
|
|
92615
92828
|
],
|
|
92616
92829
|
"ops": [
|
|
@@ -92618,33 +92831,12 @@
|
|
|
92618
92831
|
"amountOfCoordinate",
|
|
92619
92832
|
0
|
|
92620
92833
|
],
|
|
92621
|
-
[
|
|
92622
|
-
"degree",
|
|
92623
|
-
0
|
|
92624
|
-
],
|
|
92625
92834
|
[
|
|
92626
92835
|
"delayTime",
|
|
92627
92836
|
0
|
|
92628
92837
|
],
|
|
92629
92838
|
[
|
|
92630
|
-
"
|
|
92631
|
-
0
|
|
92632
|
-
]
|
|
92633
|
-
],
|
|
92634
|
-
"counter": 2
|
|
92635
|
-
},
|
|
92636
|
-
{
|
|
92637
|
-
"op": [
|
|
92638
|
-
"amountOfCoordinate",
|
|
92639
|
-
0
|
|
92640
|
-
],
|
|
92641
|
-
"ops": [
|
|
92642
|
-
[
|
|
92643
|
-
"amountOfCoordinate",
|
|
92644
|
-
0
|
|
92645
|
-
],
|
|
92646
|
-
[
|
|
92647
|
-
"delayTime",
|
|
92839
|
+
"integer",
|
|
92648
92840
|
0
|
|
92649
92841
|
],
|
|
92650
92842
|
[
|
|
@@ -92652,7 +92844,7 @@
|
|
|
92652
92844
|
0
|
|
92653
92845
|
]
|
|
92654
92846
|
],
|
|
92655
|
-
"counter":
|
|
92847
|
+
"counter": 2
|
|
92656
92848
|
},
|
|
92657
92849
|
{
|
|
92658
92850
|
"op": [
|
|
@@ -92669,7 +92861,7 @@
|
|
|
92669
92861
|
0
|
|
92670
92862
|
]
|
|
92671
92863
|
],
|
|
92672
|
-
"counter":
|
|
92864
|
+
"counter": 3
|
|
92673
92865
|
},
|
|
92674
92866
|
{
|
|
92675
92867
|
"op": [
|
|
@@ -92682,7 +92874,7 @@
|
|
|
92682
92874
|
0
|
|
92683
92875
|
]
|
|
92684
92876
|
],
|
|
92685
|
-
"counter":
|
|
92877
|
+
"counter": 4
|
|
92686
92878
|
}
|
|
92687
92879
|
]
|
|
92688
92880
|
},
|
|
@@ -92719,8 +92911,8 @@
|
|
|
92719
92911
|
"level": 0
|
|
92720
92912
|
},
|
|
92721
92913
|
"amount": {
|
|
92722
|
-
"instance": true,
|
|
92723
92914
|
"value": 40,
|
|
92915
|
+
"instance": true,
|
|
92724
92916
|
"text": "40",
|
|
92725
92917
|
"marker": "integer",
|
|
92726
92918
|
"word": "40",
|
|
@@ -92728,11 +92920,10 @@
|
|
|
92728
92920
|
"start": 0,
|
|
92729
92921
|
"end": 1
|
|
92730
92922
|
},
|
|
92731
|
-
"dead": true,
|
|
92732
92923
|
"types": [
|
|
92733
92924
|
"integer"
|
|
92734
92925
|
],
|
|
92735
|
-
"level":
|
|
92926
|
+
"level": 0
|
|
92736
92927
|
},
|
|
92737
92928
|
"interpolate": [
|
|
92738
92929
|
{
|
|
@@ -92810,16 +93001,6 @@
|
|
|
92810
93001
|
"radian",
|
|
92811
93002
|
0
|
|
92812
93003
|
]
|
|
92813
|
-
],
|
|
92814
|
-
[
|
|
92815
|
-
[
|
|
92816
|
-
"degree",
|
|
92817
|
-
0
|
|
92818
|
-
],
|
|
92819
|
-
[
|
|
92820
|
-
"radian",
|
|
92821
|
-
0
|
|
92822
|
-
]
|
|
92823
93004
|
]
|
|
92824
93005
|
],
|
|
92825
93006
|
"summaries": [
|
|
@@ -92875,53 +93056,8 @@
|
|
|
92875
93056
|
{
|
|
92876
93057
|
"marker": [
|
|
92877
93058
|
"integer",
|
|
92878
|
-
1
|
|
92879
|
-
],
|
|
92880
|
-
"range": {
|
|
92881
|
-
"start": 0,
|
|
92882
|
-
"end": 1
|
|
92883
|
-
}
|
|
92884
|
-
},
|
|
92885
|
-
{
|
|
92886
|
-
"marker": [
|
|
92887
|
-
"degree",
|
|
92888
|
-
0
|
|
92889
|
-
],
|
|
92890
|
-
"range": {
|
|
92891
|
-
"start": 3,
|
|
92892
|
-
"end": 9
|
|
92893
|
-
}
|
|
92894
|
-
},
|
|
92895
|
-
{
|
|
92896
|
-
"marker": [
|
|
92897
|
-
"delayTime",
|
|
92898
|
-
0
|
|
92899
|
-
],
|
|
92900
|
-
"range": {
|
|
92901
|
-
"start": 11,
|
|
92902
|
-
"end": 12
|
|
92903
|
-
}
|
|
92904
|
-
},
|
|
92905
|
-
{
|
|
92906
|
-
"marker": [
|
|
92907
|
-
"radian",
|
|
92908
93059
|
0
|
|
92909
93060
|
],
|
|
92910
|
-
"range": {
|
|
92911
|
-
"start": 14,
|
|
92912
|
-
"end": 20
|
|
92913
|
-
}
|
|
92914
|
-
}
|
|
92915
|
-
],
|
|
92916
|
-
"counter": 2
|
|
92917
|
-
},
|
|
92918
|
-
{
|
|
92919
|
-
"operators": [
|
|
92920
|
-
{
|
|
92921
|
-
"marker": [
|
|
92922
|
-
"integer",
|
|
92923
|
-
1
|
|
92924
|
-
],
|
|
92925
93061
|
"range": {
|
|
92926
93062
|
"start": 0,
|
|
92927
93063
|
"end": 1
|
|
@@ -92958,7 +93094,7 @@
|
|
|
92958
93094
|
}
|
|
92959
93095
|
}
|
|
92960
93096
|
],
|
|
92961
|
-
"counter":
|
|
93097
|
+
"counter": 2
|
|
92962
93098
|
},
|
|
92963
93099
|
{
|
|
92964
93100
|
"operators": [
|
|
@@ -92993,7 +93129,7 @@
|
|
|
92993
93129
|
}
|
|
92994
93130
|
}
|
|
92995
93131
|
],
|
|
92996
|
-
"counter":
|
|
93132
|
+
"counter": 3
|
|
92997
93133
|
},
|
|
92998
93134
|
{
|
|
92999
93135
|
"operators": [
|
|
@@ -93028,7 +93164,7 @@
|
|
|
93028
93164
|
}
|
|
93029
93165
|
}
|
|
93030
93166
|
],
|
|
93031
|
-
"counter":
|
|
93167
|
+
"counter": 4
|
|
93032
93168
|
},
|
|
93033
93169
|
{
|
|
93034
93170
|
"operators": [
|
|
@@ -93043,7 +93179,7 @@
|
|
|
93043
93179
|
}
|
|
93044
93180
|
}
|
|
93045
93181
|
],
|
|
93046
|
-
"counter":
|
|
93182
|
+
"counter": 5
|
|
93047
93183
|
}
|
|
93048
93184
|
],
|
|
93049
93185
|
"length": 1
|
|
@@ -93109,6 +93245,11 @@
|
|
|
93109
93245
|
"adjective",
|
|
93110
93246
|
false
|
|
93111
93247
|
],
|
|
93248
|
+
[
|
|
93249
|
+
"ageMarker",
|
|
93250
|
+
"propertyMarker",
|
|
93251
|
+
false
|
|
93252
|
+
],
|
|
93112
93253
|
[
|
|
93113
93254
|
"all",
|
|
93114
93255
|
"quantifier",
|
|
@@ -94514,6 +94655,11 @@
|
|
|
94514
94655
|
"adjective",
|
|
94515
94656
|
false
|
|
94516
94657
|
],
|
|
94658
|
+
[
|
|
94659
|
+
"heightMarker",
|
|
94660
|
+
"propertyMarker",
|
|
94661
|
+
false
|
|
94662
|
+
],
|
|
94517
94663
|
[
|
|
94518
94664
|
"hierarchyAble",
|
|
94519
94665
|
"queryable",
|
|
@@ -96339,6 +96485,11 @@
|
|
|
96339
96485
|
"thisAble",
|
|
96340
96486
|
false
|
|
96341
96487
|
],
|
|
96488
|
+
[
|
|
96489
|
+
"propertyMarker",
|
|
96490
|
+
"propertyMarker",
|
|
96491
|
+
false
|
|
96492
|
+
],
|
|
96342
96493
|
[
|
|
96343
96494
|
"propertyOf",
|
|
96344
96495
|
"preposition",
|
|
@@ -97665,6 +97816,11 @@
|
|
|
97665
97816
|
"adjective",
|
|
97666
97817
|
false
|
|
97667
97818
|
],
|
|
97819
|
+
[
|
|
97820
|
+
"ageMarker",
|
|
97821
|
+
"propertyMarker",
|
|
97822
|
+
false
|
|
97823
|
+
],
|
|
97668
97824
|
[
|
|
97669
97825
|
"all",
|
|
97670
97826
|
"quantifier",
|
|
@@ -99070,6 +99226,11 @@
|
|
|
99070
99226
|
"adjective",
|
|
99071
99227
|
false
|
|
99072
99228
|
],
|
|
99229
|
+
[
|
|
99230
|
+
"heightMarker",
|
|
99231
|
+
"propertyMarker",
|
|
99232
|
+
false
|
|
99233
|
+
],
|
|
99073
99234
|
[
|
|
99074
99235
|
"hierarchyAble",
|
|
99075
99236
|
"queryable",
|
|
@@ -100895,6 +101056,11 @@
|
|
|
100895
101056
|
"thisAble",
|
|
100896
101057
|
false
|
|
100897
101058
|
],
|
|
101059
|
+
[
|
|
101060
|
+
"propertyMarker",
|
|
101061
|
+
"propertyMarker",
|
|
101062
|
+
false
|
|
101063
|
+
],
|
|
100898
101064
|
[
|
|
100899
101065
|
"propertyOf",
|
|
100900
101066
|
"preposition",
|
|
@@ -102470,16 +102636,6 @@
|
|
|
102470
102636
|
0
|
|
102471
102637
|
]
|
|
102472
102638
|
],
|
|
102473
|
-
[
|
|
102474
|
-
[
|
|
102475
|
-
"degree",
|
|
102476
|
-
0
|
|
102477
|
-
],
|
|
102478
|
-
[
|
|
102479
|
-
"radian",
|
|
102480
|
-
0
|
|
102481
|
-
]
|
|
102482
|
-
],
|
|
102483
102639
|
[
|
|
102484
102640
|
[
|
|
102485
102641
|
"direction",
|
|
@@ -102856,15 +103012,11 @@
|
|
|
102856
103012
|
],
|
|
102857
103013
|
[
|
|
102858
103014
|
[
|
|
102859
|
-
"
|
|
102860
|
-
0
|
|
102861
|
-
],
|
|
102862
|
-
[
|
|
102863
|
-
"second",
|
|
103015
|
+
"number",
|
|
102864
103016
|
0
|
|
102865
103017
|
],
|
|
102866
103018
|
[
|
|
102867
|
-
"
|
|
103019
|
+
"radian",
|
|
102868
103020
|
0
|
|
102869
103021
|
]
|
|
102870
103022
|
],
|
|
@@ -102874,7 +103026,7 @@
|
|
|
102874
103026
|
0
|
|
102875
103027
|
],
|
|
102876
103028
|
[
|
|
102877
|
-
"
|
|
103029
|
+
"unitPerUnit",
|
|
102878
103030
|
0
|
|
102879
103031
|
]
|
|
102880
103032
|
]
|
|
@@ -108692,7 +108844,7 @@
|
|
|
108692
108844
|
{
|
|
108693
108845
|
"marker": [
|
|
108694
108846
|
"number",
|
|
108695
|
-
|
|
108847
|
+
0
|
|
108696
108848
|
],
|
|
108697
108849
|
"range": {
|
|
108698
108850
|
"start": 0,
|
|
@@ -108737,53 +108889,8 @@
|
|
|
108737
108889
|
{
|
|
108738
108890
|
"marker": [
|
|
108739
108891
|
"number",
|
|
108740
|
-
1
|
|
108741
|
-
],
|
|
108742
|
-
"range": {
|
|
108743
|
-
"start": 0,
|
|
108744
|
-
"end": 5
|
|
108745
|
-
}
|
|
108746
|
-
},
|
|
108747
|
-
{
|
|
108748
|
-
"marker": [
|
|
108749
|
-
"meter",
|
|
108750
|
-
0
|
|
108751
|
-
],
|
|
108752
|
-
"range": {
|
|
108753
|
-
"start": 7,
|
|
108754
|
-
"end": 12
|
|
108755
|
-
}
|
|
108756
|
-
},
|
|
108757
|
-
{
|
|
108758
|
-
"marker": [
|
|
108759
|
-
"unitPerUnit",
|
|
108760
|
-
0
|
|
108761
|
-
],
|
|
108762
|
-
"range": {
|
|
108763
|
-
"start": 14,
|
|
108764
|
-
"end": 16
|
|
108765
|
-
}
|
|
108766
|
-
},
|
|
108767
|
-
{
|
|
108768
|
-
"marker": [
|
|
108769
|
-
"second",
|
|
108770
108892
|
0
|
|
108771
108893
|
],
|
|
108772
|
-
"range": {
|
|
108773
|
-
"start": 18,
|
|
108774
|
-
"end": 23
|
|
108775
|
-
}
|
|
108776
|
-
}
|
|
108777
|
-
],
|
|
108778
|
-
"counter": 3
|
|
108779
|
-
},
|
|
108780
|
-
{
|
|
108781
|
-
"operators": [
|
|
108782
|
-
{
|
|
108783
|
-
"marker": [
|
|
108784
|
-
"number",
|
|
108785
|
-
1
|
|
108786
|
-
],
|
|
108787
108894
|
"range": {
|
|
108788
108895
|
"start": 0,
|
|
108789
108896
|
"end": 5
|
|
@@ -108800,14 +108907,14 @@
|
|
|
108800
108907
|
}
|
|
108801
108908
|
}
|
|
108802
108909
|
],
|
|
108803
|
-
"counter":
|
|
108910
|
+
"counter": 3
|
|
108804
108911
|
},
|
|
108805
108912
|
{
|
|
108806
108913
|
"operators": [
|
|
108807
108914
|
{
|
|
108808
108915
|
"marker": [
|
|
108809
108916
|
"number",
|
|
108810
|
-
|
|
108917
|
+
0
|
|
108811
108918
|
],
|
|
108812
108919
|
"range": {
|
|
108813
108920
|
"start": 0,
|
|
@@ -108825,7 +108932,7 @@
|
|
|
108825
108932
|
}
|
|
108826
108933
|
}
|
|
108827
108934
|
],
|
|
108828
|
-
"counter":
|
|
108935
|
+
"counter": 4
|
|
108829
108936
|
},
|
|
108830
108937
|
{
|
|
108831
108938
|
"operators": [
|
|
@@ -108840,7 +108947,7 @@
|
|
|
108840
108947
|
}
|
|
108841
108948
|
}
|
|
108842
108949
|
],
|
|
108843
|
-
"counter":
|
|
108950
|
+
"counter": 5
|
|
108844
108951
|
}
|
|
108845
108952
|
],
|
|
108846
108953
|
"length": 1
|
|
@@ -108967,33 +109074,8 @@
|
|
|
108967
109074
|
{
|
|
108968
109075
|
"marker": [
|
|
108969
109076
|
"number",
|
|
108970
|
-
1
|
|
108971
|
-
],
|
|
108972
|
-
"range": {
|
|
108973
|
-
"start": 0,
|
|
108974
|
-
"end": 5
|
|
108975
|
-
}
|
|
108976
|
-
},
|
|
108977
|
-
{
|
|
108978
|
-
"marker": [
|
|
108979
|
-
"radian",
|
|
108980
109077
|
0
|
|
108981
109078
|
],
|
|
108982
|
-
"range": {
|
|
108983
|
-
"start": 7,
|
|
108984
|
-
"end": 13
|
|
108985
|
-
}
|
|
108986
|
-
}
|
|
108987
|
-
],
|
|
108988
|
-
"counter": 2
|
|
108989
|
-
},
|
|
108990
|
-
{
|
|
108991
|
-
"operators": [
|
|
108992
|
-
{
|
|
108993
|
-
"marker": [
|
|
108994
|
-
"number",
|
|
108995
|
-
1
|
|
108996
|
-
],
|
|
108997
109079
|
"range": {
|
|
108998
109080
|
"start": 0,
|
|
108999
109081
|
"end": 5
|
|
@@ -109010,7 +109092,7 @@
|
|
|
109010
109092
|
}
|
|
109011
109093
|
}
|
|
109012
109094
|
],
|
|
109013
|
-
"counter":
|
|
109095
|
+
"counter": 2
|
|
109014
109096
|
},
|
|
109015
109097
|
{
|
|
109016
109098
|
"operators": [
|
|
@@ -109025,7 +109107,7 @@
|
|
|
109025
109107
|
}
|
|
109026
109108
|
}
|
|
109027
109109
|
],
|
|
109028
|
-
"counter":
|
|
109110
|
+
"counter": 3
|
|
109029
109111
|
}
|
|
109030
109112
|
],
|
|
109031
109113
|
"length": 1
|
|
@@ -109082,53 +109164,8 @@
|
|
|
109082
109164
|
{
|
|
109083
109165
|
"marker": [
|
|
109084
109166
|
"integer",
|
|
109085
|
-
1
|
|
109086
|
-
],
|
|
109087
|
-
"range": {
|
|
109088
|
-
"start": 0,
|
|
109089
|
-
"end": 1
|
|
109090
|
-
}
|
|
109091
|
-
},
|
|
109092
|
-
{
|
|
109093
|
-
"marker": [
|
|
109094
|
-
"degree",
|
|
109095
|
-
0
|
|
109096
|
-
],
|
|
109097
|
-
"range": {
|
|
109098
|
-
"start": 3,
|
|
109099
|
-
"end": 9
|
|
109100
|
-
}
|
|
109101
|
-
},
|
|
109102
|
-
{
|
|
109103
|
-
"marker": [
|
|
109104
|
-
"delayTime",
|
|
109105
|
-
0
|
|
109106
|
-
],
|
|
109107
|
-
"range": {
|
|
109108
|
-
"start": 11,
|
|
109109
|
-
"end": 12
|
|
109110
|
-
}
|
|
109111
|
-
},
|
|
109112
|
-
{
|
|
109113
|
-
"marker": [
|
|
109114
|
-
"radian",
|
|
109115
109167
|
0
|
|
109116
109168
|
],
|
|
109117
|
-
"range": {
|
|
109118
|
-
"start": 14,
|
|
109119
|
-
"end": 20
|
|
109120
|
-
}
|
|
109121
|
-
}
|
|
109122
|
-
],
|
|
109123
|
-
"counter": 2
|
|
109124
|
-
},
|
|
109125
|
-
{
|
|
109126
|
-
"operators": [
|
|
109127
|
-
{
|
|
109128
|
-
"marker": [
|
|
109129
|
-
"integer",
|
|
109130
|
-
1
|
|
109131
|
-
],
|
|
109132
109169
|
"range": {
|
|
109133
109170
|
"start": 0,
|
|
109134
109171
|
"end": 1
|
|
@@ -109165,7 +109202,7 @@
|
|
|
109165
109202
|
}
|
|
109166
109203
|
}
|
|
109167
109204
|
],
|
|
109168
|
-
"counter":
|
|
109205
|
+
"counter": 2
|
|
109169
109206
|
},
|
|
109170
109207
|
{
|
|
109171
109208
|
"operators": [
|
|
@@ -109200,7 +109237,7 @@
|
|
|
109200
109237
|
}
|
|
109201
109238
|
}
|
|
109202
109239
|
],
|
|
109203
|
-
"counter":
|
|
109240
|
+
"counter": 3
|
|
109204
109241
|
},
|
|
109205
109242
|
{
|
|
109206
109243
|
"operators": [
|
|
@@ -109235,7 +109272,7 @@
|
|
|
109235
109272
|
}
|
|
109236
109273
|
}
|
|
109237
109274
|
],
|
|
109238
|
-
"counter":
|
|
109275
|
+
"counter": 4
|
|
109239
109276
|
},
|
|
109240
109277
|
{
|
|
109241
109278
|
"operators": [
|
|
@@ -109250,7 +109287,7 @@
|
|
|
109250
109287
|
}
|
|
109251
109288
|
}
|
|
109252
109289
|
],
|
|
109253
|
-
"counter":
|
|
109290
|
+
"counter": 5
|
|
109254
109291
|
}
|
|
109255
109292
|
],
|
|
109256
109293
|
"length": 1
|