tpmkms 9.7.1-beta.12 → 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/angle.instance.json +27 -0
- package/common/articles.js +38 -4
- package/common/can.instance.json +1 -1
- package/common/conjunction.js +2 -2
- package/common/countable.js +39 -5
- package/common/crew.instance.json +1029 -98
- package/common/crew.js +3 -3
- package/common/dialogues.js +3 -4
- package/common/dimension.instance.json +124 -6
- package/common/dimension.js +3 -4
- package/common/drone.instance.json +33 -42
- package/common/drone.js +3 -3
- package/common/edible.instance.json +72 -0
- package/common/emotions.instance.json +143 -4
- package/common/fastfood.instance.json +304 -197
- 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/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 +314 -37
- package/common/properties.js +21 -24
- package/common/reports.instance.json +2 -2
- package/common/stm.js +0 -1
- package/common/temperature.instance.json +27 -0
- package/common/time.instance.json +27 -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
package/common/crew.js
CHANGED
|
@@ -13,10 +13,10 @@ const template = {
|
|
|
13
13
|
"kirk's rank is captain",
|
|
14
14
|
({config}) => {
|
|
15
15
|
config.updateBridge('rank', ({ bridge }) => {
|
|
16
|
-
if (!bridge.
|
|
17
|
-
bridge.
|
|
16
|
+
if (!bridge.initial) {
|
|
17
|
+
bridge.initial = {}
|
|
18
18
|
}
|
|
19
|
-
bridge.
|
|
19
|
+
bridge.initial['typeIsSingular'] = true
|
|
20
20
|
})
|
|
21
21
|
},
|
|
22
22
|
"kirk's eyes are blue",
|
package/common/dialogues.js
CHANGED
|
@@ -93,7 +93,7 @@ const config = {
|
|
|
93
93
|
...after[0],
|
|
94
94
|
verb: after[0],
|
|
95
95
|
that: operator,
|
|
96
|
-
|
|
96
|
+
interpolate: [ { property: 'that' }, { property: 'verb' }],
|
|
97
97
|
localPriorities: { actLike: ["subordinatedVerb", 0] },
|
|
98
98
|
bridge_override: {
|
|
99
99
|
operator: after[0].marker,
|
|
@@ -101,7 +101,7 @@ const config = {
|
|
|
101
101
|
...bridge.subject,
|
|
102
102
|
postModifiers: ["conditions"],
|
|
103
103
|
modifiers: [],
|
|
104
|
-
|
|
104
|
+
interpolate: map(bridge.interpolate, { inside: "thatClause", value: element }),
|
|
105
105
|
thatClause: bridge,
|
|
106
106
|
conditions: append(bridge.subject.conditions, [bridge])
|
|
107
107
|
}'
|
|
@@ -211,7 +211,7 @@ const config = {
|
|
|
211
211
|
{
|
|
212
212
|
id: "isQuery",
|
|
213
213
|
localHierarchy: [['unknown', 'queryable']],
|
|
214
|
-
bridge: "{ ...operator, marker: operator('is', 1), one: after[0], two: after[1], query: true,
|
|
214
|
+
bridge: "{ ...operator, marker: operator('is', 1), one: after[0], two: after[1], query: true, interpolate: [ { context: operator }, { property: 'one' }, { property: 'two' }] }" ,
|
|
215
215
|
isA: ['verb'],
|
|
216
216
|
},
|
|
217
217
|
|
|
@@ -643,7 +643,6 @@ const config = {
|
|
|
643
643
|
}
|
|
644
644
|
|
|
645
645
|
// if not isA add to stm
|
|
646
|
-
// debug.counter('greg57', { breakAt: 1 })
|
|
647
646
|
if (!onePrime.sameWasProcessed && !twoPrime.sameWasProcessed) {
|
|
648
647
|
for (const child of propertyToArray(one)) {
|
|
649
648
|
await api.makeObject({ context: child, config, types: context.two.types || [] })
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"dimension and measurement unit are concepts",
|
|
6
6
|
"unit means measurement unit",
|
|
7
7
|
{
|
|
8
|
-
"apply": "({apis}) => {\n apis('properties').addHierarchyWatcher({\n match: ({parentId, isA}) => isA(parentId, 'unit') && parentId.startsWith('unit_'),\n apply: ({config, childId, parent, parentId}) => {\n config.updateBridge(childId, ({ bridge }) => {\n if (!bridge.
|
|
8
|
+
"apply": "({apis}) => {\n apis('properties').addHierarchyWatcher({\n match: ({parentId, isA}) => isA(parentId, 'unit') && parentId.startsWith('unit_'),\n apply: ({config, childId, parent, parentId}) => {\n config.updateBridge(childId, ({ bridge }) => {\n if (!bridge.initial) {\n bridge.initial = {}\n }\n bridge.initial['dimension'] = parent.object.value\n })\n }\n })\n }"
|
|
9
9
|
},
|
|
10
10
|
"metric modifies system",
|
|
11
11
|
"imperial modifies system",
|
|
@@ -7062,7 +7062,7 @@
|
|
|
7062
7062
|
}
|
|
7063
7063
|
},
|
|
7064
7064
|
{
|
|
7065
|
-
"apply": "({apis}) => {\n apis('properties').addHierarchyWatcher({\n match: ({parentId, isA}) => isA(parentId, 'unit') && parentId.startsWith('unit_'),\n apply: ({config, childId, parent, parentId}) => {\n config.updateBridge(childId, ({ bridge }) => {\n if (!bridge.
|
|
7065
|
+
"apply": "({apis}) => {\n apis('properties').addHierarchyWatcher({\n match: ({parentId, isA}) => isA(parentId, 'unit') && parentId.startsWith('unit_'),\n apply: ({config, childId, parent, parentId}) => {\n config.updateBridge(childId, ({ bridge }) => {\n if (!bridge.initial) {\n bridge.initial = {}\n }\n bridge.initial['dimension'] = parent.object.value\n })\n }\n })\n }"
|
|
7066
7066
|
},
|
|
7067
7067
|
{
|
|
7068
7068
|
"hierarchy": [
|
|
@@ -14415,14 +14415,73 @@
|
|
|
14415
14415
|
"atomic": true,
|
|
14416
14416
|
"dead": true,
|
|
14417
14417
|
"modifiers": [
|
|
14418
|
-
"determiner",
|
|
14419
14418
|
"modifier_metric"
|
|
14420
14419
|
],
|
|
14421
14420
|
"focusableForPhrase": true,
|
|
14422
14421
|
"pullFromContext": true,
|
|
14423
14422
|
"concept": true,
|
|
14424
14423
|
"wantsValue": true,
|
|
14425
|
-
"
|
|
14424
|
+
"checks": [
|
|
14425
|
+
"determiner"
|
|
14426
|
+
],
|
|
14427
|
+
"determiner": {
|
|
14428
|
+
"modifiers": [],
|
|
14429
|
+
"text": "the",
|
|
14430
|
+
"marker": "the",
|
|
14431
|
+
"word": "the",
|
|
14432
|
+
"range": {
|
|
14433
|
+
"start": 0,
|
|
14434
|
+
"end": 2
|
|
14435
|
+
},
|
|
14436
|
+
"level": 0
|
|
14437
|
+
},
|
|
14438
|
+
"theable": {
|
|
14439
|
+
"value": "metric_system",
|
|
14440
|
+
"number": "one",
|
|
14441
|
+
"text": "metric system",
|
|
14442
|
+
"marker": "metric_system",
|
|
14443
|
+
"word": "system",
|
|
14444
|
+
"range": {
|
|
14445
|
+
"start": 4,
|
|
14446
|
+
"end": 16
|
|
14447
|
+
},
|
|
14448
|
+
"types": [
|
|
14449
|
+
"metric_system",
|
|
14450
|
+
"system"
|
|
14451
|
+
],
|
|
14452
|
+
"modifier_metric": {
|
|
14453
|
+
"value": "metric",
|
|
14454
|
+
"number": "one",
|
|
14455
|
+
"text": "metric",
|
|
14456
|
+
"marker": "metric",
|
|
14457
|
+
"word": "metric",
|
|
14458
|
+
"range": {
|
|
14459
|
+
"start": 4,
|
|
14460
|
+
"end": 9
|
|
14461
|
+
},
|
|
14462
|
+
"types": [
|
|
14463
|
+
"metric"
|
|
14464
|
+
],
|
|
14465
|
+
"level": 0
|
|
14466
|
+
},
|
|
14467
|
+
"atomic": true,
|
|
14468
|
+
"dead": true,
|
|
14469
|
+
"modifiers": [
|
|
14470
|
+
"modifier_metric"
|
|
14471
|
+
],
|
|
14472
|
+
"level": 0
|
|
14473
|
+
},
|
|
14474
|
+
"flatten_ignore": [
|
|
14475
|
+
"theable"
|
|
14476
|
+
],
|
|
14477
|
+
"interpolate": [
|
|
14478
|
+
{
|
|
14479
|
+
"property": "determiner"
|
|
14480
|
+
},
|
|
14481
|
+
{
|
|
14482
|
+
"property": "theable"
|
|
14483
|
+
}
|
|
14484
|
+
],
|
|
14426
14485
|
"level": 0
|
|
14427
14486
|
},
|
|
14428
14487
|
"two": {
|
|
@@ -16822,14 +16881,73 @@
|
|
|
16822
16881
|
"atomic": true,
|
|
16823
16882
|
"dead": true,
|
|
16824
16883
|
"modifiers": [
|
|
16825
|
-
"determiner",
|
|
16826
16884
|
"modifier_imperial"
|
|
16827
16885
|
],
|
|
16828
16886
|
"focusableForPhrase": true,
|
|
16829
16887
|
"pullFromContext": true,
|
|
16830
16888
|
"concept": true,
|
|
16831
16889
|
"wantsValue": true,
|
|
16832
|
-
"
|
|
16890
|
+
"checks": [
|
|
16891
|
+
"determiner"
|
|
16892
|
+
],
|
|
16893
|
+
"determiner": {
|
|
16894
|
+
"modifiers": [],
|
|
16895
|
+
"text": "the",
|
|
16896
|
+
"marker": "the",
|
|
16897
|
+
"word": "the",
|
|
16898
|
+
"range": {
|
|
16899
|
+
"start": 0,
|
|
16900
|
+
"end": 2
|
|
16901
|
+
},
|
|
16902
|
+
"level": 0
|
|
16903
|
+
},
|
|
16904
|
+
"theable": {
|
|
16905
|
+
"value": "imperial_system",
|
|
16906
|
+
"number": "one",
|
|
16907
|
+
"text": "imperial system",
|
|
16908
|
+
"marker": "imperial_system",
|
|
16909
|
+
"word": "system",
|
|
16910
|
+
"range": {
|
|
16911
|
+
"start": 4,
|
|
16912
|
+
"end": 18
|
|
16913
|
+
},
|
|
16914
|
+
"types": [
|
|
16915
|
+
"imperial_system",
|
|
16916
|
+
"system"
|
|
16917
|
+
],
|
|
16918
|
+
"modifier_imperial": {
|
|
16919
|
+
"value": "imperial",
|
|
16920
|
+
"number": "one",
|
|
16921
|
+
"text": "imperial",
|
|
16922
|
+
"marker": "imperial",
|
|
16923
|
+
"word": "imperial",
|
|
16924
|
+
"range": {
|
|
16925
|
+
"start": 4,
|
|
16926
|
+
"end": 11
|
|
16927
|
+
},
|
|
16928
|
+
"types": [
|
|
16929
|
+
"imperial"
|
|
16930
|
+
],
|
|
16931
|
+
"level": 0
|
|
16932
|
+
},
|
|
16933
|
+
"atomic": true,
|
|
16934
|
+
"dead": true,
|
|
16935
|
+
"modifiers": [
|
|
16936
|
+
"modifier_imperial"
|
|
16937
|
+
],
|
|
16938
|
+
"level": 0
|
|
16939
|
+
},
|
|
16940
|
+
"flatten_ignore": [
|
|
16941
|
+
"theable"
|
|
16942
|
+
],
|
|
16943
|
+
"interpolate": [
|
|
16944
|
+
{
|
|
16945
|
+
"property": "determiner"
|
|
16946
|
+
},
|
|
16947
|
+
{
|
|
16948
|
+
"property": "theable"
|
|
16949
|
+
}
|
|
16950
|
+
],
|
|
16833
16951
|
"level": 0
|
|
16834
16952
|
},
|
|
16835
16953
|
"two": {
|
package/common/dimension.js
CHANGED
|
@@ -287,11 +287,10 @@ const template = {
|
|
|
287
287
|
match: ({parentId, isA}) => isA(parentId, 'unit') && parentId.startsWith('unit_'),
|
|
288
288
|
apply: ({config, childId, parent, parentId}) => {
|
|
289
289
|
config.updateBridge(childId, ({ bridge }) => {
|
|
290
|
-
if (!bridge.
|
|
291
|
-
bridge.
|
|
290
|
+
if (!bridge.initial) {
|
|
291
|
+
bridge.initial = {}
|
|
292
292
|
}
|
|
293
|
-
|
|
294
|
-
bridge.init['dimension'] = parent.object.value
|
|
293
|
+
bridge.initial['dimension'] = parent.object.value
|
|
295
294
|
})
|
|
296
295
|
}
|
|
297
296
|
})
|
|
@@ -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",
|
|
@@ -843,7 +843,7 @@
|
|
|
843
843
|
},
|
|
844
844
|
{
|
|
845
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
|
|
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
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 }",
|
|
@@ -20773,6 +20773,33 @@
|
|
|
20773
20773
|
"property"
|
|
20774
20774
|
],
|
|
20775
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
|
+
},
|
|
20776
20803
|
"object": {
|
|
20777
20804
|
"value": "path",
|
|
20778
20805
|
"number": "one",
|
|
@@ -21444,7 +21471,7 @@
|
|
|
21444
21471
|
}
|
|
21445
21472
|
},
|
|
21446
21473
|
{
|
|
21447
|
-
"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 }"
|
|
21448
21475
|
},
|
|
21449
21476
|
{
|
|
21450
21477
|
"hierarchy": [
|
|
@@ -53883,24 +53910,6 @@
|
|
|
53883
53910
|
0
|
|
53884
53911
|
]
|
|
53885
53912
|
],
|
|
53886
|
-
[
|
|
53887
|
-
[
|
|
53888
|
-
"is",
|
|
53889
|
-
0
|
|
53890
|
-
],
|
|
53891
|
-
[
|
|
53892
|
-
"list",
|
|
53893
|
-
1
|
|
53894
|
-
],
|
|
53895
|
-
[
|
|
53896
|
-
"point",
|
|
53897
|
-
0
|
|
53898
|
-
],
|
|
53899
|
-
[
|
|
53900
|
-
"unknown",
|
|
53901
|
-
0
|
|
53902
|
-
]
|
|
53903
|
-
],
|
|
53904
53913
|
[
|
|
53905
53914
|
[
|
|
53906
53915
|
"is",
|
|
@@ -59728,13 +59737,13 @@
|
|
|
59728
59737
|
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:1462"
|
|
59729
59738
|
},
|
|
59730
59739
|
{
|
|
59731
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:
|
|
59740
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:1496"
|
|
59732
59741
|
},
|
|
59733
59742
|
{
|
|
59734
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:
|
|
59743
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:1522"
|
|
59735
59744
|
},
|
|
59736
59745
|
{
|
|
59737
|
-
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:
|
|
59746
|
+
"where": "/home/dev/code/theprogrammablemind/kms/common/drone.js:1529"
|
|
59738
59747
|
}
|
|
59739
59748
|
]
|
|
59740
59749
|
}
|
|
@@ -102867,24 +102876,6 @@
|
|
|
102867
102876
|
0
|
|
102868
102877
|
]
|
|
102869
102878
|
],
|
|
102870
|
-
[
|
|
102871
|
-
[
|
|
102872
|
-
"is",
|
|
102873
|
-
0
|
|
102874
|
-
],
|
|
102875
|
-
[
|
|
102876
|
-
"list",
|
|
102877
|
-
1
|
|
102878
|
-
],
|
|
102879
|
-
[
|
|
102880
|
-
"point",
|
|
102881
|
-
0
|
|
102882
|
-
],
|
|
102883
|
-
[
|
|
102884
|
-
"unknown",
|
|
102885
|
-
0
|
|
102886
|
-
]
|
|
102887
|
-
],
|
|
102888
102879
|
[
|
|
102889
102880
|
[
|
|
102890
102881
|
"is",
|
package/common/drone.js
CHANGED
|
@@ -851,10 +851,10 @@ const template = {
|
|
|
851
851
|
match: ({childId}) => childId == 'point',
|
|
852
852
|
apply: ({config, childId}) => {
|
|
853
853
|
config.updateBridge(childId, ({ bridge }) => {
|
|
854
|
-
if (!bridge.
|
|
855
|
-
bridge.
|
|
854
|
+
if (!bridge.initial) {
|
|
855
|
+
bridge.initial = {}
|
|
856
856
|
}
|
|
857
|
-
bridge.
|
|
857
|
+
bridge.initial['notConjunctableWith'] = ['quantity', 'number']
|
|
858
858
|
})
|
|
859
859
|
}
|
|
860
860
|
})
|
|
@@ -48135,6 +48135,24 @@
|
|
|
48135
48135
|
0
|
|
48136
48136
|
]
|
|
48137
48137
|
],
|
|
48138
|
+
[
|
|
48139
|
+
[
|
|
48140
|
+
"a",
|
|
48141
|
+
0
|
|
48142
|
+
],
|
|
48143
|
+
[
|
|
48144
|
+
"is",
|
|
48145
|
+
0
|
|
48146
|
+
],
|
|
48147
|
+
[
|
|
48148
|
+
"sandwich",
|
|
48149
|
+
0
|
|
48150
|
+
],
|
|
48151
|
+
[
|
|
48152
|
+
"unknown",
|
|
48153
|
+
0
|
|
48154
|
+
]
|
|
48155
|
+
],
|
|
48138
48156
|
[
|
|
48139
48157
|
[
|
|
48140
48158
|
"is",
|
|
@@ -51027,6 +51045,24 @@
|
|
|
51027
51045
|
0
|
|
51028
51046
|
]
|
|
51029
51047
|
],
|
|
51048
|
+
[
|
|
51049
|
+
[
|
|
51050
|
+
"a",
|
|
51051
|
+
0
|
|
51052
|
+
],
|
|
51053
|
+
[
|
|
51054
|
+
"hamburger",
|
|
51055
|
+
0
|
|
51056
|
+
],
|
|
51057
|
+
[
|
|
51058
|
+
"is",
|
|
51059
|
+
0
|
|
51060
|
+
],
|
|
51061
|
+
[
|
|
51062
|
+
"unknown",
|
|
51063
|
+
0
|
|
51064
|
+
]
|
|
51065
|
+
],
|
|
51030
51066
|
[
|
|
51031
51067
|
[
|
|
51032
51068
|
"hamburger",
|
|
@@ -72542,6 +72578,24 @@
|
|
|
72542
72578
|
0
|
|
72543
72579
|
]
|
|
72544
72580
|
],
|
|
72581
|
+
[
|
|
72582
|
+
[
|
|
72583
|
+
"a",
|
|
72584
|
+
0
|
|
72585
|
+
],
|
|
72586
|
+
[
|
|
72587
|
+
"hamburger",
|
|
72588
|
+
0
|
|
72589
|
+
],
|
|
72590
|
+
[
|
|
72591
|
+
"is",
|
|
72592
|
+
0
|
|
72593
|
+
],
|
|
72594
|
+
[
|
|
72595
|
+
"unknown",
|
|
72596
|
+
0
|
|
72597
|
+
]
|
|
72598
|
+
],
|
|
72545
72599
|
[
|
|
72546
72600
|
[
|
|
72547
72601
|
"a",
|
|
@@ -72578,6 +72632,24 @@
|
|
|
72578
72632
|
0
|
|
72579
72633
|
]
|
|
72580
72634
|
],
|
|
72635
|
+
[
|
|
72636
|
+
[
|
|
72637
|
+
"a",
|
|
72638
|
+
0
|
|
72639
|
+
],
|
|
72640
|
+
[
|
|
72641
|
+
"is",
|
|
72642
|
+
0
|
|
72643
|
+
],
|
|
72644
|
+
[
|
|
72645
|
+
"sandwich",
|
|
72646
|
+
0
|
|
72647
|
+
],
|
|
72648
|
+
[
|
|
72649
|
+
"unknown",
|
|
72650
|
+
0
|
|
72651
|
+
]
|
|
72652
|
+
],
|
|
72581
72653
|
[
|
|
72582
72654
|
[
|
|
72583
72655
|
"apple",
|
|
@@ -910,11 +910,113 @@
|
|
|
910
910
|
"pullFromContext": true,
|
|
911
911
|
"concept": true,
|
|
912
912
|
"wantsValue": true,
|
|
913
|
-
"
|
|
914
|
-
"modifiers": [
|
|
913
|
+
"checks": [
|
|
915
914
|
"determiner"
|
|
916
915
|
],
|
|
916
|
+
"determiner": {
|
|
917
|
+
"modifiers": [],
|
|
918
|
+
"text": "the",
|
|
919
|
+
"marker": "the",
|
|
920
|
+
"word": "the",
|
|
921
|
+
"range": {
|
|
922
|
+
"start": 36,
|
|
923
|
+
"end": 38
|
|
924
|
+
},
|
|
925
|
+
"level": 0
|
|
926
|
+
},
|
|
927
|
+
"theable": {
|
|
928
|
+
"value": "emotion",
|
|
929
|
+
"unknown": true,
|
|
930
|
+
"text": "emotion",
|
|
931
|
+
"marker": "unknown",
|
|
932
|
+
"word": "emotion",
|
|
933
|
+
"range": {
|
|
934
|
+
"start": 40,
|
|
935
|
+
"end": 46
|
|
936
|
+
},
|
|
937
|
+
"dead": true,
|
|
938
|
+
"types": [
|
|
939
|
+
"unknown"
|
|
940
|
+
],
|
|
941
|
+
"level": 0
|
|
942
|
+
},
|
|
943
|
+
"flatten_ignore": [
|
|
944
|
+
"theable"
|
|
945
|
+
],
|
|
946
|
+
"interpolate": [
|
|
947
|
+
{
|
|
948
|
+
"property": "property"
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"word": "of"
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
"property": "object"
|
|
955
|
+
}
|
|
956
|
+
],
|
|
917
957
|
"propertyOf": true,
|
|
958
|
+
"property": {
|
|
959
|
+
"value": "emotion",
|
|
960
|
+
"unknown": true,
|
|
961
|
+
"text": "the emotion",
|
|
962
|
+
"marker": "property",
|
|
963
|
+
"word": "emotion",
|
|
964
|
+
"range": {
|
|
965
|
+
"start": 36,
|
|
966
|
+
"end": 46
|
|
967
|
+
},
|
|
968
|
+
"dead": true,
|
|
969
|
+
"types": [
|
|
970
|
+
"property",
|
|
971
|
+
"unknown"
|
|
972
|
+
],
|
|
973
|
+
"focusableForPhrase": true,
|
|
974
|
+
"pullFromContext": true,
|
|
975
|
+
"concept": true,
|
|
976
|
+
"wantsValue": true,
|
|
977
|
+
"checks": [
|
|
978
|
+
"determiner"
|
|
979
|
+
],
|
|
980
|
+
"determiner": {
|
|
981
|
+
"modifiers": [],
|
|
982
|
+
"text": "the",
|
|
983
|
+
"marker": "the",
|
|
984
|
+
"word": "the",
|
|
985
|
+
"range": {
|
|
986
|
+
"start": 36,
|
|
987
|
+
"end": 38
|
|
988
|
+
},
|
|
989
|
+
"level": 0
|
|
990
|
+
},
|
|
991
|
+
"theable": {
|
|
992
|
+
"value": "emotion",
|
|
993
|
+
"unknown": true,
|
|
994
|
+
"text": "emotion",
|
|
995
|
+
"marker": "unknown",
|
|
996
|
+
"word": "emotion",
|
|
997
|
+
"range": {
|
|
998
|
+
"start": 40,
|
|
999
|
+
"end": 46
|
|
1000
|
+
},
|
|
1001
|
+
"dead": true,
|
|
1002
|
+
"types": [
|
|
1003
|
+
"unknown"
|
|
1004
|
+
],
|
|
1005
|
+
"level": 0
|
|
1006
|
+
},
|
|
1007
|
+
"flatten_ignore": [
|
|
1008
|
+
"theable"
|
|
1009
|
+
],
|
|
1010
|
+
"interpolate": [
|
|
1011
|
+
{
|
|
1012
|
+
"property": "determiner"
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
"property": "theable"
|
|
1016
|
+
}
|
|
1017
|
+
],
|
|
1018
|
+
"level": 0
|
|
1019
|
+
},
|
|
918
1020
|
"object": {
|
|
919
1021
|
"value": "sentientbeing1",
|
|
920
1022
|
"unknown": true,
|
|
@@ -952,10 +1054,47 @@
|
|
|
952
1054
|
"pullFromContext": true,
|
|
953
1055
|
"concept": true,
|
|
954
1056
|
"wantsValue": true,
|
|
955
|
-
"
|
|
956
|
-
"modifiers": [
|
|
1057
|
+
"checks": [
|
|
957
1058
|
"determiner"
|
|
958
1059
|
],
|
|
1060
|
+
"determiner": {
|
|
1061
|
+
"modifiers": [],
|
|
1062
|
+
"text": "the",
|
|
1063
|
+
"marker": "the",
|
|
1064
|
+
"word": "the",
|
|
1065
|
+
"range": {
|
|
1066
|
+
"start": 36,
|
|
1067
|
+
"end": 38
|
|
1068
|
+
},
|
|
1069
|
+
"level": 0
|
|
1070
|
+
},
|
|
1071
|
+
"theable": {
|
|
1072
|
+
"value": "emotion",
|
|
1073
|
+
"unknown": true,
|
|
1074
|
+
"text": "emotion",
|
|
1075
|
+
"marker": "unknown",
|
|
1076
|
+
"word": "emotion",
|
|
1077
|
+
"range": {
|
|
1078
|
+
"start": 40,
|
|
1079
|
+
"end": 46
|
|
1080
|
+
},
|
|
1081
|
+
"dead": true,
|
|
1082
|
+
"types": [
|
|
1083
|
+
"unknown"
|
|
1084
|
+
],
|
|
1085
|
+
"level": 0
|
|
1086
|
+
},
|
|
1087
|
+
"flatten_ignore": [
|
|
1088
|
+
"theable"
|
|
1089
|
+
],
|
|
1090
|
+
"interpolate": [
|
|
1091
|
+
{
|
|
1092
|
+
"property": "determiner"
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
"property": "theable"
|
|
1096
|
+
}
|
|
1097
|
+
],
|
|
959
1098
|
"level": 0
|
|
960
1099
|
},
|
|
961
1100
|
{
|