tpmkms_4wp 9.2.0 → 9.3.0-beta.0

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.
Files changed (52) hide show
  1. package/common/animals.instance.json +21 -8
  2. package/common/avatar.js +2 -10
  3. package/common/colors.instance.json +32 -46
  4. package/common/comparable.instance.json +3 -0
  5. package/common/comparable.js +2 -2
  6. package/common/crew.instance.json +4736 -964
  7. package/common/crew.test.json +1904 -0
  8. package/common/dates.instance.json +28643 -0
  9. package/common/dates.js +167 -0
  10. package/common/dates.test.json +16226 -0
  11. package/common/dialogues.js +28 -9
  12. package/common/dimension.instance.json +3 -2
  13. package/common/edible.instance.json +1474 -759
  14. package/common/emotions.instance.json +7 -14
  15. package/common/emotions.js +4 -5
  16. package/common/fastfood.instance.json +3914 -722
  17. package/common/fastfood.js +7 -0
  18. package/common/formulas.instance.json +1 -0
  19. package/common/gdefaults.js +18 -0
  20. package/common/helpers/concept.js +1 -0
  21. package/common/helpers/dialogues.js +3 -0
  22. package/common/helpers/properties.js +2 -27
  23. package/common/helpers.js +70 -1
  24. package/common/hierarchy.js +4 -3
  25. package/common/kirk.instance.json +186 -124
  26. package/common/length.instance.json +17 -2
  27. package/common/math.instance.json +1 -0
  28. package/common/menus.instance.json +7 -0
  29. package/common/menus.js +1 -0
  30. package/common/menus.test.json +2418 -1355
  31. package/common/meta.js +3 -3
  32. package/common/ordering.instance.json +4 -2
  33. package/common/people.instance.json +8 -0
  34. package/common/pipboy.instance.json +29 -68
  35. package/common/pokemon.instance.json +24 -3
  36. package/common/pressure.instance.json +6 -2
  37. package/common/properties.instance.json +1 -0
  38. package/common/properties.js +19 -5
  39. package/common/punctuation.js +3 -0
  40. package/common/reports.instance.json +24 -14
  41. package/common/reports.js +2 -2
  42. package/common/self.instance.json +2 -0
  43. package/common/self.js +49 -0
  44. package/common/self.test.json +2 -0
  45. package/common/spock.instance.json +186 -124
  46. package/common/temperature.instance.json +6 -2
  47. package/common/ui.instance.json +1 -0
  48. package/common/weight.instance.json +12 -0
  49. package/common/wp.instance.json +777 -151
  50. package/common/wp.js +15 -2
  51. package/main.js +4 -0
  52. package/package.json +10 -2
package/common/meta.js CHANGED
@@ -51,9 +51,9 @@ const config = {
51
51
  ],
52
52
  associations: {
53
53
  positive: [
54
- { "context": [['*', 0], ['means', 0], ['*', 0]], "choose": 1 },
55
- { "context": [['*', 1], ['means', 0], ['*', 0]], "choose": 1 },
56
- { "context": [['*', 1], ['means', 0], ['*', 1]], "choose": 1 },
54
+ { "context": [['*', 0], ['means', 0], ['*', 0]], "choose": { index: 1, increment: true } },
55
+ { "context": [['*', 1], ['means', 0], ['*', 0]], "choose": { index: 1, increment: true } },
56
+ { "context": [['*', 1], ['means', 0], ['*', 1]], "choose": { index: 1, increment: true } },
57
57
  ]
58
58
  },
59
59
  priorities: [
@@ -648,10 +648,10 @@
648
648
  "start": 21,
649
649
  "end": 26
650
650
  },
651
+ "dead": true,
651
652
  "types": [
652
653
  "unknown"
653
654
  ],
654
- "dead": true,
655
655
  "level": 0
656
656
  },
657
657
  {
@@ -664,10 +664,10 @@
664
664
  "start": 32,
665
665
  "end": 37
666
666
  },
667
+ "dead": true,
667
668
  "types": [
668
669
  "unknown"
669
670
  ],
670
- "dead": true,
671
671
  "level": 0
672
672
  }
673
673
  ],
@@ -1247,6 +1247,7 @@
1247
1247
  }
1248
1248
  ],
1249
1249
  "learned_contextual_priorities": [],
1250
+ "rtf_associations": [],
1250
1251
  "query": "wants is xfx between wanter and wantee",
1251
1252
  "key": {
1252
1253
  "query": "wants is xfx between wanter and wantee"
@@ -3935,6 +3936,7 @@
3935
3936
  }
3936
3937
  ],
3937
3938
  "learned_contextual_priorities": [],
3939
+ "rtf_associations": [],
3938
3940
  "query": "if x likes y or x loves y then x wants y",
3939
3941
  "key": {
3940
3942
  "query": "if x likes y or x loves y then x wants y"
@@ -652,6 +652,7 @@
652
652
  }
653
653
  ],
654
654
  "learned_contextual_priorities": [],
655
+ "rtf_associations": [],
655
656
  "query": "first modifies name",
656
657
  "key": {
657
658
  "query": "first modifies name"
@@ -1450,6 +1451,7 @@
1450
1451
  }
1451
1452
  ],
1452
1453
  "learned_contextual_priorities": [],
1454
+ "rtf_associations": [],
1453
1455
  "query": "last modifies name",
1454
1456
  "key": {
1455
1457
  "query": "last modifies name"
@@ -2399,6 +2401,7 @@
2399
2401
  }
2400
2402
  ],
2401
2403
  "learned_contextual_priorities": [],
2404
+ "rtf_associations": [],
2402
2405
  "query": "surname means last name",
2403
2406
  "key": {
2404
2407
  "query": "surname means last name"
@@ -3312,6 +3315,7 @@
3312
3315
  }
3313
3316
  ],
3314
3317
  "learned_contextual_priorities": [],
3318
+ "rtf_associations": [],
3315
3319
  "query": "given modifies name",
3316
3320
  "key": {
3317
3321
  "query": "given modifies name"
@@ -4418,6 +4422,7 @@
4418
4422
  }
4419
4423
  ],
4420
4424
  "learned_contextual_priorities": [],
4425
+ "rtf_associations": [],
4421
4426
  "query": "given name means first name",
4422
4427
  "key": {
4423
4428
  "query": "given name means first name"
@@ -6130,6 +6135,7 @@
6130
6135
  }
6131
6136
  ],
6132
6137
  "learned_contextual_priorities": [],
6138
+ "rtf_associations": [],
6133
6139
  "query": "ownee is owned by owner means owner owns ownee",
6134
6140
  "key": {
6135
6141
  "query": "ownee is owned by owner means owner owns ownee"
@@ -7474,6 +7480,7 @@
7474
7480
  }
7475
7481
  ],
7476
7482
  "learned_contextual_priorities": [],
7483
+ "rtf_associations": [],
7477
7484
  "query": "ownervar is owneevar owned by",
7478
7485
  "skipSemantics": false,
7479
7486
  "key": {
@@ -8781,6 +8788,7 @@
8781
8788
  }
8782
8789
  ],
8783
8790
  "learned_contextual_priorities": [],
8791
+ "rtf_associations": [],
8784
8792
  "query": "owneevar is owned by ownervar",
8785
8793
  "skipSemantics": false,
8786
8794
  "key": {
@@ -1640,10 +1640,10 @@
1640
1640
  "start": 24,
1641
1641
  "end": 28
1642
1642
  },
1643
+ "dead": true,
1643
1644
  "types": [
1644
1645
  "unknown"
1645
1646
  ],
1646
- "dead": true,
1647
1647
  "level": 0
1648
1648
  },
1649
1649
  {
@@ -1656,10 +1656,10 @@
1656
1656
  "start": 34,
1657
1657
  "end": 41
1658
1658
  },
1659
+ "dead": true,
1659
1660
  "types": [
1660
1661
  "unknown"
1661
1662
  ],
1662
- "dead": true,
1663
1663
  "level": 0
1664
1664
  }
1665
1665
  ],
@@ -1718,20 +1718,6 @@
1718
1718
  0
1719
1719
  ]
1720
1720
  ],
1721
- [
1722
- [
1723
- "is",
1724
- 0
1725
- ],
1726
- [
1727
- "list",
1728
- 1
1729
- ],
1730
- [
1731
- "unknown",
1732
- 0
1733
- ]
1734
- ],
1735
1721
  [
1736
1722
  [
1737
1723
  "is",
@@ -2580,6 +2566,7 @@
2580
2566
  }
2581
2567
  ],
2582
2568
  "learned_contextual_priorities": [],
2569
+ "rtf_associations": [],
2583
2570
  "query": "pistols rifles grenades mines and shotguns are weapons",
2584
2571
  "key": {
2585
2572
  "query": "pistols rifles grenades mines and shotguns are weapons"
@@ -4117,6 +4104,7 @@
4117
4104
  }
4118
4105
  ],
4119
4106
  "learned_contextual_priorities": [],
4107
+ "rtf_associations": [],
4120
4108
  "query": "mines and grenades are explosives",
4121
4109
  "key": {
4122
4110
  "query": "mines and grenades are explosives"
@@ -5507,6 +5495,7 @@
5507
5495
  }
5508
5496
  ],
5509
5497
  "learned_contextual_priorities": [],
5498
+ "rtf_associations": [],
5510
5499
  "query": "explosives are weapons",
5511
5500
  "key": {
5512
5501
  "query": "explosives are weapons"
@@ -7324,6 +7313,7 @@
7324
7313
  }
7325
7314
  ],
7326
7315
  "learned_contextual_priorities": [],
7316
+ "rtf_associations": [],
7327
7317
  "query": "pistols rifles and shotguns are firearms",
7328
7318
  "key": {
7329
7319
  "query": "pistols rifles and shotguns are firearms"
@@ -8769,6 +8759,7 @@
8769
8759
  }
8770
8760
  ],
8771
8761
  "learned_contextual_priorities": [],
8762
+ "rtf_associations": [],
8772
8763
  "query": "firearms are weapons",
8773
8764
  "key": {
8774
8765
  "query": "firearms are weapons"
@@ -10143,10 +10134,10 @@
10143
10134
  "start": 5,
10144
10135
  "end": 9
10145
10136
  },
10137
+ "dead": true,
10146
10138
  "types": [
10147
10139
  "unknown"
10148
10140
  ],
10149
- "dead": true,
10150
10141
  "level": 0
10151
10142
  },
10152
10143
  {
@@ -10159,10 +10150,10 @@
10159
10150
  "start": 15,
10160
10151
  "end": 19
10161
10152
  },
10153
+ "dead": true,
10162
10154
  "types": [
10163
10155
  "unknown"
10164
10156
  ],
10165
- "dead": true,
10166
10157
  "level": 0
10167
10158
  }
10168
10159
  ],
@@ -10221,20 +10212,6 @@
10221
10212
  0
10222
10213
  ]
10223
10214
  ],
10224
- [
10225
- [
10226
- "is",
10227
- 0
10228
- ],
10229
- [
10230
- "list",
10231
- 1
10232
- ],
10233
- [
10234
- "unknown",
10235
- 0
10236
- ]
10237
- ],
10238
10215
  [
10239
10216
  [
10240
10217
  "is",
@@ -10693,6 +10670,7 @@
10693
10670
  }
10694
10671
  ],
10695
10672
  "learned_contextual_priorities": [],
10673
+ "rtf_associations": [],
10696
10674
  "query": "hats armor and suits are clothes",
10697
10675
  "key": {
10698
10676
  "query": "hats armor and suits are clothes"
@@ -12424,6 +12402,7 @@
12424
12402
  }
12425
12403
  ],
12426
12404
  "learned_contextual_priorities": [],
12405
+ "rtf_associations": [],
12427
12406
  "query": "a weapon is equipable",
12428
12407
  "key": {
12429
12408
  "query": "a weapon is equipable"
@@ -14069,6 +14048,7 @@
14069
14048
  }
14070
14049
  ],
14071
14050
  "learned_contextual_priorities": [],
14051
+ "rtf_associations": [],
14072
14052
  "query": "clothes are wearable",
14073
14053
  "key": {
14074
14054
  "query": "clothes are wearable"
@@ -15801,6 +15781,7 @@
15801
15781
  }
15802
15782
  ],
15803
15783
  "learned_contextual_priorities": [],
15784
+ "rtf_associations": [],
15804
15785
  "query": "edible is a concept",
15805
15786
  "key": {
15806
15787
  "query": "edible is a concept"
@@ -17527,6 +17508,7 @@
17527
17508
  }
17528
17509
  ],
17529
17510
  "learned_contextual_priorities": [],
17511
+ "rtf_associations": [],
17530
17512
  "query": "food is edible",
17531
17513
  "key": {
17532
17514
  "query": "food is edible"
@@ -19279,6 +19261,7 @@
19279
19261
  }
19280
19262
  ],
19281
19263
  "learned_contextual_priorities": [],
19264
+ "rtf_associations": [],
19282
19265
  "query": "drinks are drinkable",
19283
19266
  "key": {
19284
19267
  "query": "drinks are drinkable"
@@ -21120,6 +21103,7 @@
21120
21103
  }
21121
21104
  ],
21122
21105
  "learned_contextual_priorities": [],
21106
+ "rtf_associations": [],
21123
21107
  "query": "meat is food",
21124
21108
  "key": {
21125
21109
  "query": "meat is food"
@@ -22858,10 +22842,10 @@
22858
22842
  "start": 0,
22859
22843
  "end": 9
22860
22844
  },
22845
+ "dead": true,
22861
22846
  "types": [
22862
22847
  "unknown"
22863
22848
  ],
22864
- "dead": true,
22865
22849
  "level": 0
22866
22850
  },
22867
22851
  {
@@ -22874,10 +22858,10 @@
22874
22858
  "start": 15,
22875
22859
  "end": 19
22876
22860
  },
22861
+ "dead": true,
22877
22862
  "types": [
22878
22863
  "unknown"
22879
22864
  ],
22880
- "dead": true,
22881
22865
  "level": 0
22882
22866
  }
22883
22867
  ],
@@ -23238,6 +23222,7 @@
23238
23222
  }
23239
23223
  ],
23240
23224
  "learned_contextual_priorities": [],
23225
+ "rtf_associations": [],
23241
23226
  "query": "vegetables and fruit are food",
23242
23227
  "key": {
23243
23228
  "query": "vegetables and fruit are food"
@@ -25056,10 +25041,10 @@
25056
25041
  "start": 0,
25057
25042
  "end": 3
25058
25043
  },
25044
+ "dead": true,
25059
25045
  "types": [
25060
25046
  "unknown"
25061
25047
  ],
25062
- "dead": true,
25063
25048
  "level": 0
25064
25049
  },
25065
25050
  {
@@ -25072,10 +25057,10 @@
25072
25057
  "start": 9,
25073
25058
  "end": 11
25074
25059
  },
25060
+ "dead": true,
25075
25061
  "types": [
25076
25062
  "unknown"
25077
25063
  ],
25078
- "dead": true,
25079
25064
  "level": 0
25080
25065
  }
25081
25066
  ],
@@ -25436,6 +25421,7 @@
25436
25421
  }
25437
25422
  ],
25438
25423
  "learned_contextual_priorities": [],
25424
+ "rtf_associations": [],
25439
25425
  "query": "cola and pop are drinks",
25440
25426
  "key": {
25441
25427
  "query": "cola and pop are drinks"
@@ -27334,10 +27320,10 @@
27334
27320
  "start": 0,
27335
27321
  "end": 7
27336
27322
  },
27323
+ "dead": true,
27337
27324
  "types": [
27338
27325
  "unknown"
27339
27326
  ],
27340
- "dead": true,
27341
27327
  "level": 0
27342
27328
  },
27343
27329
  {
@@ -27350,10 +27336,10 @@
27350
27336
  "start": 13,
27351
27337
  "end": 20
27352
27338
  },
27339
+ "dead": true,
27353
27340
  "types": [
27354
27341
  "unknown"
27355
27342
  ],
27356
- "dead": true,
27357
27343
  "level": 0
27358
27344
  }
27359
27345
  ],
@@ -27720,6 +27706,7 @@
27720
27706
  }
27721
27707
  ],
27722
27708
  "learned_contextual_priorities": [],
27709
+ "rtf_associations": [],
27723
27710
  "query": "medicine and stimpaks are takeable",
27724
27711
  "key": {
27725
27712
  "query": "medicine and stimpaks are takeable"
@@ -29777,6 +29764,7 @@
29777
29764
  }
29778
29765
  ],
29779
29766
  "learned_contextual_priorities": [],
29767
+ "rtf_associations": [],
29780
29768
  "query": "item modifies property",
29781
29769
  "key": {
29782
29770
  "query": "item modifies property"
@@ -32556,10 +32544,10 @@
32556
32544
  "start": 38,
32557
32545
  "end": 42
32558
32546
  },
32547
+ "dead": true,
32559
32548
  "types": [
32560
32549
  "unknown"
32561
32550
  ],
32562
- "dead": true,
32563
32551
  "level": 0
32564
32552
  },
32565
32553
  {
@@ -32572,10 +32560,10 @@
32572
32560
  "start": 48,
32573
32561
  "end": 55
32574
32562
  },
32563
+ "dead": true,
32575
32564
  "types": [
32576
32565
  "unknown"
32577
32566
  ],
32578
- "dead": true,
32579
32567
  "level": 0
32580
32568
  }
32581
32569
  ],
@@ -34775,6 +34763,7 @@
34775
34763
  }
34776
34764
  ],
34777
34765
  "learned_contextual_priorities": [],
34766
+ "rtf_associations": [],
34778
34767
  "query": "damage luck hp rads value ap charisma range and accuracy are item properties",
34779
34768
  "key": {
34780
34769
  "query": "damage luck hp rads value ap charisma range and accuracy are item properties"
@@ -35709,34 +35698,6 @@
35709
35698
  0
35710
35699
  ]
35711
35700
  ],
35712
- [
35713
- [
35714
- "is",
35715
- 0
35716
- ],
35717
- [
35718
- "list",
35719
- 1
35720
- ],
35721
- [
35722
- "unknown",
35723
- 0
35724
- ]
35725
- ],
35726
- [
35727
- [
35728
- "is",
35729
- 0
35730
- ],
35731
- [
35732
- "list",
35733
- 1
35734
- ],
35735
- [
35736
- "unknown",
35737
- 0
35738
- ]
35739
- ],
35740
35701
  [
35741
35702
  [
35742
35703
  "is",
@@ -556,6 +556,7 @@
556
556
  }
557
557
  ],
558
558
  "learned_contextual_priorities": [],
559
+ "rtf_associations": [],
559
560
  "query": "pokemon modifies type",
560
561
  "key": {
561
562
  "query": "pokemon modifies type"
@@ -1139,7 +1140,7 @@
1139
1140
  ],
1140
1141
  "modifier_pokemon": {
1141
1142
  "value": "pokemon",
1142
- "number": "many",
1143
+ "number": "one",
1143
1144
  "text": "pokemon",
1144
1145
  "marker": "pokemon",
1145
1146
  "word": "pokemon",
@@ -1431,6 +1432,7 @@
1431
1432
  }
1432
1433
  ],
1433
1434
  "learned_contextual_priorities": [],
1435
+ "rtf_associations": [],
1434
1436
  "query": "pokemon type is a type",
1435
1437
  "key": {
1436
1438
  "query": "pokemon type is a type"
@@ -2218,10 +2220,10 @@
2218
2220
  "start": 17,
2219
2221
  "end": 22
2220
2222
  },
2223
+ "dead": true,
2221
2224
  "types": [
2222
2225
  "unknown"
2223
2226
  ],
2224
- "dead": true,
2225
2227
  "level": 0
2226
2228
  },
2227
2229
  {
@@ -2234,10 +2236,10 @@
2234
2236
  "start": 28,
2235
2237
  "end": 34
2236
2238
  },
2239
+ "dead": true,
2237
2240
  "types": [
2238
2241
  "unknown"
2239
2242
  ],
2240
- "dead": true,
2241
2243
  "level": 0
2242
2244
  }
2243
2245
  ],
@@ -2291,6 +2293,10 @@
2291
2293
  "list",
2292
2294
  0
2293
2295
  ],
2296
+ [
2297
+ "pokemon",
2298
+ 0
2299
+ ],
2294
2300
  [
2295
2301
  "unknown",
2296
2302
  0
@@ -2922,6 +2928,7 @@
2922
2928
  }
2923
2929
  ],
2924
2930
  "learned_contextual_priorities": [],
2931
+ "rtf_associations": [],
2925
2932
  "query": "pikachu squirtle weedle and pidgeot are pokemon",
2926
2933
  "key": {
2927
2934
  "query": "pikachu squirtle weedle and pidgeot are pokemon"
@@ -3768,6 +3775,7 @@
3768
3775
  }
3769
3776
  ],
3770
3777
  "learned_contextual_priorities": [],
3778
+ "rtf_associations": [],
3771
3779
  "query": "fire modifies type",
3772
3780
  "key": {
3773
3781
  "query": "fire modifies type"
@@ -4704,6 +4712,7 @@
4704
4712
  }
4705
4713
  ],
4706
4714
  "learned_contextual_priorities": [],
4715
+ "rtf_associations": [],
4707
4716
  "query": "water modifies type",
4708
4717
  "key": {
4709
4718
  "query": "water modifies type"
@@ -5730,6 +5739,7 @@
5730
5739
  }
5731
5740
  ],
5732
5741
  "learned_contextual_priorities": [],
5742
+ "rtf_associations": [],
5733
5743
  "query": "earth modifies type",
5734
5744
  "key": {
5735
5745
  "query": "earth modifies type"
@@ -6846,6 +6856,7 @@
6846
6856
  }
6847
6857
  ],
6848
6858
  "learned_contextual_priorities": [],
6859
+ "rtf_associations": [],
6849
6860
  "query": "electric modifies type",
6850
6861
  "key": {
6851
6862
  "query": "electric modifies type"
@@ -8366,6 +8377,7 @@
8366
8377
  }
8367
8378
  ],
8368
8379
  "learned_contextual_priorities": [],
8380
+ "rtf_associations": [],
8369
8381
  "query": "fire type is a pokemon type",
8370
8382
  "key": {
8371
8383
  "query": "fire type is a pokemon type"
@@ -9891,6 +9903,7 @@
9891
9903
  }
9892
9904
  ],
9893
9905
  "learned_contextual_priorities": [],
9906
+ "rtf_associations": [],
9894
9907
  "query": "water type is a pokemon type",
9895
9908
  "key": {
9896
9909
  "query": "water type is a pokemon type"
@@ -11421,6 +11434,7 @@
11421
11434
  }
11422
11435
  ],
11423
11436
  "learned_contextual_priorities": [],
11437
+ "rtf_associations": [],
11424
11438
  "query": "electric type is a pokemon type",
11425
11439
  "key": {
11426
11440
  "query": "electric type is a pokemon type"
@@ -12956,6 +12970,7 @@
12956
12970
  }
12957
12971
  ],
12958
12972
  "learned_contextual_priorities": [],
12973
+ "rtf_associations": [],
12959
12974
  "query": "earth type is a pokemon type",
12960
12975
  "key": {
12961
12976
  "query": "earth type is a pokemon type"
@@ -14461,6 +14476,7 @@
14461
14476
  }
14462
14477
  ],
14463
14478
  "learned_contextual_priorities": [],
14479
+ "rtf_associations": [],
14464
14480
  "query": "pikachu is an electric type",
14465
14481
  "key": {
14466
14482
  "query": "pikachu is an electric type"
@@ -15968,6 +15984,7 @@
15968
15984
  }
15969
15985
  ],
15970
15986
  "learned_contextual_priorities": [],
15987
+ "rtf_associations": [],
15971
15988
  "query": "charmander is a fire type",
15972
15989
  "key": {
15973
15990
  "query": "charmander is a fire type"
@@ -16304,6 +16321,10 @@
16304
16321
  "list",
16305
16322
  0
16306
16323
  ],
16324
+ [
16325
+ "pokemon",
16326
+ 0
16327
+ ],
16307
16328
  [
16308
16329
  "unknown",
16309
16330
  0
@@ -1432,6 +1432,7 @@
1432
1432
  }
1433
1433
  ],
1434
1434
  "learned_contextual_priorities": [],
1435
+ "rtf_associations": [],
1435
1436
  "query": "pressure is a dimension",
1436
1437
  "key": {
1437
1438
  "query": "pressure is a dimension"
@@ -2685,10 +2686,10 @@
2685
2686
  "start": 0,
2686
2687
  "end": 6
2687
2688
  },
2689
+ "dead": true,
2688
2690
  "types": [
2689
2691
  "unknown"
2690
2692
  ],
2691
- "dead": true,
2692
2693
  "level": 0
2693
2694
  },
2694
2695
  {
@@ -2701,10 +2702,10 @@
2701
2702
  "start": 12,
2702
2703
  "end": 22
2703
2704
  },
2705
+ "dead": true,
2704
2706
  "types": [
2705
2707
  "unknown"
2706
2708
  ],
2707
- "dead": true,
2708
2709
  "level": 0
2709
2710
  }
2710
2711
  ],
@@ -3351,6 +3352,7 @@
3351
3352
  }
3352
3353
  ],
3353
3354
  "learned_contextual_priorities": [],
3355
+ "rtf_associations": [],
3354
3356
  "query": "pascals and atmospheres are units of pressure",
3355
3357
  "key": {
3356
3358
  "query": "pascals and atmospheres are units of pressure"
@@ -5026,6 +5028,7 @@
5026
5028
  }
5027
5029
  ],
5028
5030
  "learned_contextual_priorities": [],
5031
+ "rtf_associations": [],
5029
5032
  "query": "pascals = atmospheres * 101325",
5030
5033
  "key": {
5031
5034
  "query": "pascals = atmospheres * 101325"
@@ -6701,6 +6704,7 @@
6701
6704
  }
6702
6705
  ],
6703
6706
  "learned_contextual_priorities": [],
6707
+ "rtf_associations": [],
6704
6708
  "query": "atmospheres = pascals / 101325",
6705
6709
  "key": {
6706
6710
  "query": "atmospheres = pascals / 101325"
@@ -1115,6 +1115,7 @@
1115
1115
  }
1116
1116
  ],
1117
1117
  "learned_contextual_priorities": [],
1118
+ "rtf_associations": [],
1118
1119
  "query": "the property1 of object1 is value1",
1119
1120
  "skipSemantics": false,
1120
1121
  "key": {