tpmkms_4wp 9.5.1-beta.0 → 9.5.1-beta.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/animals.instance.json +21 -61
- package/common/asking.js +102 -100
- package/common/can.instance.json +17 -0
- package/common/can.js +190 -0
- package/common/characters.js +3 -3
- package/common/colors.instance.json +10 -10
- package/common/comparable.instance.json +2 -2
- package/common/concept.test.json +54 -40
- package/common/conjunction.js +13 -5
- package/common/crew.instance.json +26 -26
- package/common/crew.js +1 -1
- package/common/currency.js +1 -1
- package/common/dates.instance.json +3 -3
- package/common/dialogues.js +29 -110
- package/common/dimension.instance.json +1 -1
- package/common/edible.instance.json +23 -95
- package/common/emotions.instance.json +6 -10
- package/common/emotions.js +1 -1
- package/common/english_helpers.js +277 -67
- package/common/fastfood.instance.json +160 -796
- package/common/fastfood.js +4 -4
- package/common/formulas.instance.json +1 -1
- package/common/gdefaults.js +41 -9
- package/common/help.js +2 -2
- package/common/helpers/concept.js +1 -1
- package/common/helpers/conjunction.js +54 -44
- package/common/helpers/dateTimeSelectors.js +2 -2
- package/common/helpers/dialogues.js +1 -1
- package/common/helpers/formulas.js +13 -11
- package/common/helpers/menus.js +12 -12
- package/common/helpers/meta.js +8 -8
- package/common/helpers/properties.js +76 -15
- package/common/helpers.js +82 -46
- package/common/hierarchy.js +3 -3
- package/common/kirk.instance.json +1 -1
- package/common/length.instance.json +2 -2
- package/common/math.instance.json +20 -20
- package/common/math.js +45 -44
- package/common/menus.instance.json +3 -3
- package/common/menus.js +1 -1
- package/common/meta.js +49 -33
- package/common/ordering.instance.json +16 -28
- package/common/ordering.js +1 -1
- package/common/ordering.test.json +354 -296
- package/common/people.instance.json +43 -298
- package/common/people.js +1 -1
- package/common/people.test.json +952 -681
- package/common/pipboy.instance.json +16 -16
- package/common/pokemon.instance.json +8 -8
- package/common/pokemon.js +1 -1
- package/common/pressure.instance.json +2 -2
- package/common/properties.instance.json +1 -1
- package/common/properties.js +16 -3
- package/common/reminders.js +1 -1
- package/common/reports.instance.json +3 -3
- package/common/reports.js +18 -16
- package/common/scorekeeper.js +4 -4
- package/common/sdefaults.js +22 -2
- package/common/spock.instance.json +1 -1
- package/common/stgame.js +1 -1
- package/common/stm.js +2 -2
- package/common/tell.js +1 -1
- package/common/temperature.instance.json +2 -2
- package/common/tester.js +3 -3
- package/common/time.js +3 -3
- package/common/tokenize.js +1 -1
- package/common/weight.instance.json +2 -2
- package/common/wp.instance.json +6 -6
- package/common/wp.js +4 -4
- package/package.json +4 -2
|
@@ -901,7 +901,7 @@
|
|
|
901
901
|
]
|
|
902
902
|
},
|
|
903
903
|
{
|
|
904
|
-
"apply": "({ask, api}) => {\n // see if followup for drink is needed\n\n
|
|
904
|
+
"apply": "({ask, api}) => {\n // see if followup for drink is needed\n\n function hasDrink(isA, item) {\n let hasDrink = false\n for (const modification of (item.modifications || [])) {\n if (isA(modification.id, 'drink')) {\n hasDrink = true\n break\n }\n }\n return hasDrink\n }\n\n function needsDrink (item) {\n return item.needsDrink\n }\n\n function askAbout({api, isA}) {\n const items = []\n for (const item of api.items()) {\n if (needsDrink(item) && !hasDrink(isA, item)) {\n items.push(item)\n }\n }\n return items\n }\n\n ask([\n {\n where: where(),\n oneShot: false,\n onNevermind: ({verbatim, ...args}) => {\n // this is cross km boundaries from the dialogues km to this one so the api if for dialogs. \n // i need to get the one for fastfood here.\n const api = args.kms.fastfood.api\n const needsDrink = askAbout({ args, api })\n for (const item of needsDrink) {\n api.remove(item)\n }\n },\n matchq: (args) => askAbout(args).length > 0 && args.context.marker == 'controlEnd',\n applyq: (args) => {\n args.context.cascade = true\n const needsDrink = askAbout(args)\n // const details = args.gp({ marker: 'list', value: needsDrink.map((item) => item.food)})\n if (needsDrink.length > 1) {\n return `What drinks do you want?`\n } else {\n return `What drink do you want?`\n }\n },\n matchr: (args) => {\n if (args.isA(args.context.marker, 'drink') && askAbout(args).length > 0) {\n const needsDrink = askAbout(args)\n if (args.api.isAvailableModification(needsDrink[0].food, { ...args.context , id: args.context.value })) {\n return true\n }\n }\n return false\n },\n applyr: (args) => {\n // TODO check for is available for all modifications\n const needsDrink = askAbout(args)\n const { api, context } = args\n if (isMany(context)) {\n let count = getCount(context) || Number.MAX_SAFE_INTEGER\n for (const item of needsDrink) {\n if (count < 1) {\n break\n }\n count -= 1\n api.addDrink(item.item_id, { id: context.value }) \n }\n } else {\n const item_id = needsDrink[0].item_id\n api.addDrink(item_id, { id: context.value }) \n }\n }\n },\n ])\n }"
|
|
905
905
|
},
|
|
906
906
|
{
|
|
907
907
|
"operators": [
|
|
@@ -4137,7 +4137,7 @@
|
|
|
4137
4137
|
"word": "food",
|
|
4138
4138
|
"range": {
|
|
4139
4139
|
"start": 0,
|
|
4140
|
-
"end":
|
|
4140
|
+
"end": 3
|
|
4141
4141
|
},
|
|
4142
4142
|
"dead": true,
|
|
4143
4143
|
"types": [
|
|
@@ -7197,7 +7197,7 @@
|
|
|
7197
7197
|
"word": "drinks",
|
|
7198
7198
|
"range": {
|
|
7199
7199
|
"start": 0,
|
|
7200
|
-
"end":
|
|
7200
|
+
"end": 5
|
|
7201
7201
|
},
|
|
7202
7202
|
"dead": true,
|
|
7203
7203
|
"types": [
|
|
@@ -39627,7 +39627,7 @@
|
|
|
39627
39627
|
"word": "club",
|
|
39628
39628
|
"range": {
|
|
39629
39629
|
"start": 0,
|
|
39630
|
-
"end":
|
|
39630
|
+
"end": 3
|
|
39631
39631
|
},
|
|
39632
39632
|
"dead": true,
|
|
39633
39633
|
"types": [
|
|
@@ -69467,7 +69467,7 @@
|
|
|
69467
69467
|
"word": "fries",
|
|
69468
69468
|
"range": {
|
|
69469
69469
|
"start": 0,
|
|
69470
|
-
"end":
|
|
69470
|
+
"end": 11
|
|
69471
69471
|
},
|
|
69472
69472
|
"types": [
|
|
69473
69473
|
"fry",
|
|
@@ -89029,7 +89029,7 @@
|
|
|
89029
89029
|
""
|
|
89030
89030
|
],
|
|
89031
89031
|
"paraphrases": [
|
|
89032
|
-
"strawberry, guava, mango passion, wild berry and strawberry banana
|
|
89032
|
+
"strawberry, guava, mango passion, wild berry and strawberry banana modify smoothie"
|
|
89033
89033
|
],
|
|
89034
89034
|
"paraphrasesParenthesized": [],
|
|
89035
89035
|
"generatedParenthesized": [],
|
|
@@ -96141,7 +96141,7 @@
|
|
|
96141
96141
|
"text": "strawberry, guava, mango passion, wild berry, and strawberry banana",
|
|
96142
96142
|
"range": {
|
|
96143
96143
|
"start": 0,
|
|
96144
|
-
"end":
|
|
96144
|
+
"end": 66
|
|
96145
96145
|
},
|
|
96146
96146
|
"types": [
|
|
96147
96147
|
"guava",
|
|
@@ -96646,24 +96646,6 @@
|
|
|
96646
96646
|
0
|
|
96647
96647
|
]
|
|
96648
96648
|
],
|
|
96649
|
-
[
|
|
96650
|
-
[
|
|
96651
|
-
"countable",
|
|
96652
|
-
0
|
|
96653
|
-
],
|
|
96654
|
-
[
|
|
96655
|
-
"is",
|
|
96656
|
-
0
|
|
96657
|
-
],
|
|
96658
|
-
[
|
|
96659
|
-
"list",
|
|
96660
|
-
1
|
|
96661
|
-
],
|
|
96662
|
-
[
|
|
96663
|
-
"strawberry",
|
|
96664
|
-
0
|
|
96665
|
-
]
|
|
96666
|
-
],
|
|
96667
96649
|
[
|
|
96668
96650
|
[
|
|
96669
96651
|
"countable",
|
|
@@ -109138,7 +109120,7 @@
|
|
|
109138
109120
|
"text": "strawberry, guava, mango passion, wild berry, and strawberry banana",
|
|
109139
109121
|
"range": {
|
|
109140
109122
|
"start": 0,
|
|
109141
|
-
"end":
|
|
109123
|
+
"end": 66
|
|
109142
109124
|
},
|
|
109143
109125
|
"types": [
|
|
109144
109126
|
"guava",
|
|
@@ -109717,28 +109699,6 @@
|
|
|
109717
109699
|
0
|
|
109718
109700
|
]
|
|
109719
109701
|
],
|
|
109720
|
-
[
|
|
109721
|
-
[
|
|
109722
|
-
"ingredient",
|
|
109723
|
-
0
|
|
109724
|
-
],
|
|
109725
|
-
[
|
|
109726
|
-
"is",
|
|
109727
|
-
0
|
|
109728
|
-
],
|
|
109729
|
-
[
|
|
109730
|
-
"list",
|
|
109731
|
-
1
|
|
109732
|
-
],
|
|
109733
|
-
[
|
|
109734
|
-
"smoothie",
|
|
109735
|
-
0
|
|
109736
|
-
],
|
|
109737
|
-
[
|
|
109738
|
-
"strawberry",
|
|
109739
|
-
0
|
|
109740
|
-
]
|
|
109741
|
-
],
|
|
109742
109702
|
[
|
|
109743
109703
|
[
|
|
109744
109704
|
"is",
|
|
@@ -116562,7 +116522,7 @@
|
|
|
116562
116522
|
"word": "smoothie",
|
|
116563
116523
|
"range": {
|
|
116564
116524
|
"start": 0,
|
|
116565
|
-
"end":
|
|
116525
|
+
"end": 9
|
|
116566
116526
|
},
|
|
116567
116527
|
"dead": true,
|
|
116568
116528
|
"types": [
|
|
@@ -122224,7 +122184,7 @@
|
|
|
122224
122184
|
"text": "french fries and waffle fries",
|
|
122225
122185
|
"range": {
|
|
122226
122186
|
"start": 0,
|
|
122227
|
-
"end":
|
|
122187
|
+
"end": 28
|
|
122228
122188
|
},
|
|
122229
122189
|
"types": [
|
|
122230
122190
|
"french_fry",
|
|
@@ -128406,7 +128366,7 @@
|
|
|
128406
128366
|
"text": "single, double, triple, baconator, and bacon deluxe",
|
|
128407
128367
|
"range": {
|
|
128408
128368
|
"start": 0,
|
|
128409
|
-
"end":
|
|
128369
|
+
"end": 50
|
|
128410
128370
|
},
|
|
128411
128371
|
"types": [
|
|
128412
128372
|
"bacon_deluxe",
|
|
@@ -136306,7 +136266,7 @@
|
|
|
136306
136266
|
"text": "spicy, homestyle, asiago ranch chicken club, ultimate chicken grill and premium cod",
|
|
136307
136267
|
"range": {
|
|
136308
136268
|
"start": 0,
|
|
136309
|
-
"end":
|
|
136269
|
+
"end": 82
|
|
136310
136270
|
},
|
|
136311
136271
|
"types": [
|
|
136312
136272
|
"asiago_ranch_chicken_club",
|
|
@@ -136650,6 +136610,60 @@
|
|
|
136650
136610
|
0
|
|
136651
136611
|
]
|
|
136652
136612
|
],
|
|
136613
|
+
[
|
|
136614
|
+
[
|
|
136615
|
+
"asiago",
|
|
136616
|
+
0
|
|
136617
|
+
],
|
|
136618
|
+
[
|
|
136619
|
+
"chicken",
|
|
136620
|
+
0
|
|
136621
|
+
],
|
|
136622
|
+
[
|
|
136623
|
+
"club",
|
|
136624
|
+
0
|
|
136625
|
+
],
|
|
136626
|
+
[
|
|
136627
|
+
"cod",
|
|
136628
|
+
0
|
|
136629
|
+
],
|
|
136630
|
+
[
|
|
136631
|
+
"comma",
|
|
136632
|
+
0
|
|
136633
|
+
],
|
|
136634
|
+
[
|
|
136635
|
+
"grill",
|
|
136636
|
+
0
|
|
136637
|
+
],
|
|
136638
|
+
[
|
|
136639
|
+
"is",
|
|
136640
|
+
0
|
|
136641
|
+
],
|
|
136642
|
+
[
|
|
136643
|
+
"list",
|
|
136644
|
+
0
|
|
136645
|
+
],
|
|
136646
|
+
[
|
|
136647
|
+
"premium",
|
|
136648
|
+
0
|
|
136649
|
+
],
|
|
136650
|
+
[
|
|
136651
|
+
"ranch",
|
|
136652
|
+
0
|
|
136653
|
+
],
|
|
136654
|
+
[
|
|
136655
|
+
"sandwich",
|
|
136656
|
+
0
|
|
136657
|
+
],
|
|
136658
|
+
[
|
|
136659
|
+
"ultimate",
|
|
136660
|
+
0
|
|
136661
|
+
],
|
|
136662
|
+
[
|
|
136663
|
+
"unknown",
|
|
136664
|
+
0
|
|
136665
|
+
]
|
|
136666
|
+
],
|
|
136653
136667
|
[
|
|
136654
136668
|
[
|
|
136655
136669
|
"asiago_ranch_chicken_club",
|
|
@@ -144449,7 +144463,7 @@
|
|
|
144449
144463
|
"word": "meals",
|
|
144450
144464
|
"range": {
|
|
144451
144465
|
"start": 0,
|
|
144452
|
-
"end":
|
|
144466
|
+
"end": 4
|
|
144453
144467
|
},
|
|
144454
144468
|
"dead": true,
|
|
144455
144469
|
"types": [
|
|
@@ -150205,7 +150219,7 @@
|
|
|
150205
150219
|
"word": "combo",
|
|
150206
150220
|
"range": {
|
|
150207
150221
|
"start": 0,
|
|
150208
|
-
"end":
|
|
150222
|
+
"end": 6
|
|
150209
150223
|
},
|
|
150210
150224
|
"dead": true,
|
|
150211
150225
|
"types": [
|
|
@@ -150305,24 +150319,6 @@
|
|
|
150305
150319
|
0
|
|
150306
150320
|
]
|
|
150307
150321
|
],
|
|
150308
|
-
[
|
|
150309
|
-
[
|
|
150310
|
-
"a",
|
|
150311
|
-
0
|
|
150312
|
-
],
|
|
150313
|
-
[
|
|
150314
|
-
"is",
|
|
150315
|
-
0
|
|
150316
|
-
],
|
|
150317
|
-
[
|
|
150318
|
-
"meal",
|
|
150319
|
-
0
|
|
150320
|
-
],
|
|
150321
|
-
[
|
|
150322
|
-
"unknown",
|
|
150323
|
-
0
|
|
150324
|
-
]
|
|
150325
|
-
],
|
|
150326
150322
|
[
|
|
150327
150323
|
[
|
|
150328
150324
|
"is",
|
|
@@ -156182,7 +156178,7 @@
|
|
|
156182
156178
|
"word": "chili",
|
|
156183
156179
|
"range": {
|
|
156184
156180
|
"start": 0,
|
|
156185
|
-
"end":
|
|
156181
|
+
"end": 4
|
|
156186
156182
|
},
|
|
156187
156183
|
"dead": true,
|
|
156188
156184
|
"types": [
|
|
@@ -162092,7 +162088,7 @@
|
|
|
162092
162088
|
"word": "shake",
|
|
162093
162089
|
"range": {
|
|
162094
162090
|
"start": 0,
|
|
162095
|
-
"end":
|
|
162091
|
+
"end": 6
|
|
162096
162092
|
},
|
|
162097
162093
|
"dead": true,
|
|
162098
162094
|
"types": [
|
|
@@ -210058,7 +210054,7 @@
|
|
|
210058
210054
|
"word": "frosty",
|
|
210059
210055
|
"range": {
|
|
210060
210056
|
"start": 0,
|
|
210061
|
-
"end":
|
|
210057
|
+
"end": 5
|
|
210062
210058
|
},
|
|
210063
210059
|
"dead": true,
|
|
210064
210060
|
"types": [
|
|
@@ -327172,7 +327168,7 @@
|
|
|
327172
327168
|
"word": "wrap",
|
|
327173
327169
|
"range": {
|
|
327174
327170
|
"start": 0,
|
|
327175
|
-
"end":
|
|
327171
|
+
"end": 8
|
|
327176
327172
|
},
|
|
327177
327173
|
"types": [
|
|
327178
327174
|
"go_wrap",
|
|
@@ -327312,6 +327308,24 @@
|
|
|
327312
327308
|
0
|
|
327313
327309
|
]
|
|
327314
327310
|
],
|
|
327311
|
+
[
|
|
327312
|
+
[
|
|
327313
|
+
"a",
|
|
327314
|
+
0
|
|
327315
|
+
],
|
|
327316
|
+
[
|
|
327317
|
+
"go_wrap",
|
|
327318
|
+
0
|
|
327319
|
+
],
|
|
327320
|
+
[
|
|
327321
|
+
"is",
|
|
327322
|
+
0
|
|
327323
|
+
],
|
|
327324
|
+
[
|
|
327325
|
+
"sandwich",
|
|
327326
|
+
0
|
|
327327
|
+
]
|
|
327328
|
+
],
|
|
327315
327329
|
[
|
|
327316
327330
|
[
|
|
327317
327331
|
"go_wrap",
|
|
@@ -344610,7 +344624,7 @@
|
|
|
344610
344624
|
"text": "breakfast baconator, french toast sandwich, egg muffin, chicken on french toast, pancake platter, double sausage muffin, pancakes, french toast and oatmeal",
|
|
344611
344625
|
"range": {
|
|
344612
344626
|
"start": 0,
|
|
344613
|
-
"end":
|
|
344627
|
+
"end": 154
|
|
344614
344628
|
},
|
|
344615
344629
|
"types": [
|
|
344616
344630
|
"breakfast_baconator",
|
|
@@ -345517,80 +345531,6 @@
|
|
|
345517
345531
|
0
|
|
345518
345532
|
]
|
|
345519
345533
|
],
|
|
345520
|
-
[
|
|
345521
|
-
[
|
|
345522
|
-
"breakfast",
|
|
345523
|
-
0
|
|
345524
|
-
],
|
|
345525
|
-
[
|
|
345526
|
-
"breakfast_baconator",
|
|
345527
|
-
0
|
|
345528
|
-
],
|
|
345529
|
-
[
|
|
345530
|
-
"chicken",
|
|
345531
|
-
0
|
|
345532
|
-
],
|
|
345533
|
-
[
|
|
345534
|
-
"comma",
|
|
345535
|
-
0
|
|
345536
|
-
],
|
|
345537
|
-
[
|
|
345538
|
-
"double",
|
|
345539
|
-
0
|
|
345540
|
-
],
|
|
345541
|
-
[
|
|
345542
|
-
"egg_muffin",
|
|
345543
|
-
0
|
|
345544
|
-
],
|
|
345545
|
-
[
|
|
345546
|
-
"french",
|
|
345547
|
-
0
|
|
345548
|
-
],
|
|
345549
|
-
[
|
|
345550
|
-
"french_toast_sandwich",
|
|
345551
|
-
0
|
|
345552
|
-
],
|
|
345553
|
-
[
|
|
345554
|
-
"is",
|
|
345555
|
-
0
|
|
345556
|
-
],
|
|
345557
|
-
[
|
|
345558
|
-
"list",
|
|
345559
|
-
0
|
|
345560
|
-
],
|
|
345561
|
-
[
|
|
345562
|
-
"meal",
|
|
345563
|
-
0
|
|
345564
|
-
],
|
|
345565
|
-
[
|
|
345566
|
-
"muffin",
|
|
345567
|
-
0
|
|
345568
|
-
],
|
|
345569
|
-
[
|
|
345570
|
-
"oatmeal",
|
|
345571
|
-
0
|
|
345572
|
-
],
|
|
345573
|
-
[
|
|
345574
|
-
"on",
|
|
345575
|
-
0
|
|
345576
|
-
],
|
|
345577
|
-
[
|
|
345578
|
-
"pancake",
|
|
345579
|
-
0
|
|
345580
|
-
],
|
|
345581
|
-
[
|
|
345582
|
-
"platter",
|
|
345583
|
-
0
|
|
345584
|
-
],
|
|
345585
|
-
[
|
|
345586
|
-
"sausage",
|
|
345587
|
-
0
|
|
345588
|
-
],
|
|
345589
|
-
[
|
|
345590
|
-
"toast",
|
|
345591
|
-
0
|
|
345592
|
-
]
|
|
345593
|
-
],
|
|
345594
345534
|
[
|
|
345595
345535
|
[
|
|
345596
345536
|
"breakfast",
|
|
@@ -345719,7 +345659,7 @@
|
|
|
345719
345659
|
0
|
|
345720
345660
|
],
|
|
345721
345661
|
[
|
|
345722
|
-
"
|
|
345662
|
+
"platter",
|
|
345723
345663
|
0
|
|
345724
345664
|
],
|
|
345725
345665
|
[
|
|
@@ -345749,7 +345689,7 @@
|
|
|
345749
345689
|
0
|
|
345750
345690
|
],
|
|
345751
345691
|
[
|
|
345752
|
-
"
|
|
345692
|
+
"double_sausage_muffin",
|
|
345753
345693
|
0
|
|
345754
345694
|
],
|
|
345755
345695
|
[
|
|
@@ -345776,10 +345716,6 @@
|
|
|
345776
345716
|
"meal",
|
|
345777
345717
|
0
|
|
345778
345718
|
],
|
|
345779
|
-
[
|
|
345780
|
-
"muffin",
|
|
345781
|
-
0
|
|
345782
|
-
],
|
|
345783
345719
|
[
|
|
345784
345720
|
"oatmeal",
|
|
345785
345721
|
0
|
|
@@ -345789,11 +345725,7 @@
|
|
|
345789
345725
|
0
|
|
345790
345726
|
],
|
|
345791
345727
|
[
|
|
345792
|
-
"
|
|
345793
|
-
0
|
|
345794
|
-
],
|
|
345795
|
-
[
|
|
345796
|
-
"sausage",
|
|
345728
|
+
"pancake_platter",
|
|
345797
345729
|
0
|
|
345798
345730
|
],
|
|
345799
345731
|
[
|
|
@@ -345814,10 +345746,6 @@
|
|
|
345814
345746
|
"chicken_on_french_toast",
|
|
345815
345747
|
0
|
|
345816
345748
|
],
|
|
345817
|
-
[
|
|
345818
|
-
"comma",
|
|
345819
|
-
0
|
|
345820
|
-
],
|
|
345821
345749
|
[
|
|
345822
345750
|
"double_sausage_muffin",
|
|
345823
345751
|
0
|
|
@@ -345885,7 +345813,7 @@
|
|
|
345885
345813
|
0
|
|
345886
345814
|
],
|
|
345887
345815
|
[
|
|
345888
|
-
"
|
|
345816
|
+
"french_toast",
|
|
345889
345817
|
0
|
|
345890
345818
|
],
|
|
345891
345819
|
[
|
|
@@ -345915,10 +345843,6 @@
|
|
|
345915
345843
|
[
|
|
345916
345844
|
"pancake_platter",
|
|
345917
345845
|
0
|
|
345918
|
-
],
|
|
345919
|
-
[
|
|
345920
|
-
"toast",
|
|
345921
|
-
0
|
|
345922
345846
|
]
|
|
345923
345847
|
],
|
|
345924
345848
|
[
|
|
@@ -345942,10 +345866,6 @@
|
|
|
345942
345866
|
"egg_muffin",
|
|
345943
345867
|
0
|
|
345944
345868
|
],
|
|
345945
|
-
[
|
|
345946
|
-
"french_toast",
|
|
345947
|
-
0
|
|
345948
|
-
],
|
|
345949
345869
|
[
|
|
345950
345870
|
"french_toast_sandwich",
|
|
345951
345871
|
0
|
|
@@ -345956,57 +345876,7 @@
|
|
|
345956
345876
|
],
|
|
345957
345877
|
[
|
|
345958
345878
|
"list",
|
|
345959
|
-
|
|
345960
|
-
],
|
|
345961
|
-
[
|
|
345962
|
-
"meal",
|
|
345963
|
-
0
|
|
345964
|
-
],
|
|
345965
|
-
[
|
|
345966
|
-
"oatmeal",
|
|
345967
|
-
0
|
|
345968
|
-
],
|
|
345969
|
-
[
|
|
345970
|
-
"pancake",
|
|
345971
|
-
0
|
|
345972
|
-
],
|
|
345973
|
-
[
|
|
345974
|
-
"pancake_platter",
|
|
345975
|
-
0
|
|
345976
|
-
]
|
|
345977
|
-
],
|
|
345978
|
-
[
|
|
345979
|
-
[
|
|
345980
|
-
"breakfast",
|
|
345981
|
-
0
|
|
345982
|
-
],
|
|
345983
|
-
[
|
|
345984
|
-
"breakfast_baconator",
|
|
345985
|
-
0
|
|
345986
|
-
],
|
|
345987
|
-
[
|
|
345988
|
-
"chicken_on_french_toast",
|
|
345989
|
-
0
|
|
345990
|
-
],
|
|
345991
|
-
[
|
|
345992
|
-
"double_sausage_muffin",
|
|
345993
|
-
0
|
|
345994
|
-
],
|
|
345995
|
-
[
|
|
345996
|
-
"egg_muffin",
|
|
345997
|
-
0
|
|
345998
|
-
],
|
|
345999
|
-
[
|
|
346000
|
-
"french_toast_sandwich",
|
|
346001
|
-
0
|
|
346002
|
-
],
|
|
346003
|
-
[
|
|
346004
|
-
"is",
|
|
346005
|
-
0
|
|
346006
|
-
],
|
|
346007
|
-
[
|
|
346008
|
-
"list",
|
|
346009
|
-
1
|
|
345879
|
+
1
|
|
346010
345880
|
],
|
|
346011
345881
|
[
|
|
346012
345882
|
"meal",
|
|
@@ -360063,7 +359933,7 @@
|
|
|
360063
359933
|
"text": "single, double, triple, baconator, bacon deluxe, spicy homestyle and premium cod",
|
|
360064
359934
|
"range": {
|
|
360065
359935
|
"start": 0,
|
|
360066
|
-
"end":
|
|
359936
|
+
"end": 79
|
|
360067
359937
|
},
|
|
360068
359938
|
"types": [
|
|
360069
359939
|
"bacon_deluxe",
|
|
@@ -360346,122 +360216,6 @@
|
|
|
360346
360216
|
""
|
|
360347
360217
|
],
|
|
360348
360218
|
"associations": [
|
|
360349
|
-
[
|
|
360350
|
-
[
|
|
360351
|
-
"bacon",
|
|
360352
|
-
0
|
|
360353
|
-
],
|
|
360354
|
-
[
|
|
360355
|
-
"baconator",
|
|
360356
|
-
0
|
|
360357
|
-
],
|
|
360358
|
-
[
|
|
360359
|
-
"cod",
|
|
360360
|
-
0
|
|
360361
|
-
],
|
|
360362
|
-
[
|
|
360363
|
-
"comma",
|
|
360364
|
-
0
|
|
360365
|
-
],
|
|
360366
|
-
[
|
|
360367
|
-
"deluxe",
|
|
360368
|
-
0
|
|
360369
|
-
],
|
|
360370
|
-
[
|
|
360371
|
-
"double",
|
|
360372
|
-
0
|
|
360373
|
-
],
|
|
360374
|
-
[
|
|
360375
|
-
"homestyle",
|
|
360376
|
-
0
|
|
360377
|
-
],
|
|
360378
|
-
[
|
|
360379
|
-
"is",
|
|
360380
|
-
0
|
|
360381
|
-
],
|
|
360382
|
-
[
|
|
360383
|
-
"list",
|
|
360384
|
-
0
|
|
360385
|
-
],
|
|
360386
|
-
[
|
|
360387
|
-
"meal",
|
|
360388
|
-
0
|
|
360389
|
-
],
|
|
360390
|
-
[
|
|
360391
|
-
"premium",
|
|
360392
|
-
0
|
|
360393
|
-
],
|
|
360394
|
-
[
|
|
360395
|
-
"single",
|
|
360396
|
-
0
|
|
360397
|
-
],
|
|
360398
|
-
[
|
|
360399
|
-
"spicy",
|
|
360400
|
-
0
|
|
360401
|
-
],
|
|
360402
|
-
[
|
|
360403
|
-
"triple",
|
|
360404
|
-
0
|
|
360405
|
-
]
|
|
360406
|
-
],
|
|
360407
|
-
[
|
|
360408
|
-
[
|
|
360409
|
-
"bacon",
|
|
360410
|
-
0
|
|
360411
|
-
],
|
|
360412
|
-
[
|
|
360413
|
-
"baconator",
|
|
360414
|
-
0
|
|
360415
|
-
],
|
|
360416
|
-
[
|
|
360417
|
-
"cod",
|
|
360418
|
-
0
|
|
360419
|
-
],
|
|
360420
|
-
[
|
|
360421
|
-
"comma",
|
|
360422
|
-
0
|
|
360423
|
-
],
|
|
360424
|
-
[
|
|
360425
|
-
"deluxe",
|
|
360426
|
-
0
|
|
360427
|
-
],
|
|
360428
|
-
[
|
|
360429
|
-
"double",
|
|
360430
|
-
0
|
|
360431
|
-
],
|
|
360432
|
-
[
|
|
360433
|
-
"homestyle",
|
|
360434
|
-
0
|
|
360435
|
-
],
|
|
360436
|
-
[
|
|
360437
|
-
"is",
|
|
360438
|
-
0
|
|
360439
|
-
],
|
|
360440
|
-
[
|
|
360441
|
-
"list",
|
|
360442
|
-
0
|
|
360443
|
-
],
|
|
360444
|
-
[
|
|
360445
|
-
"meal",
|
|
360446
|
-
0
|
|
360447
|
-
],
|
|
360448
|
-
[
|
|
360449
|
-
"premium",
|
|
360450
|
-
0
|
|
360451
|
-
],
|
|
360452
|
-
[
|
|
360453
|
-
"single",
|
|
360454
|
-
0
|
|
360455
|
-
],
|
|
360456
|
-
[
|
|
360457
|
-
"spicy",
|
|
360458
|
-
0
|
|
360459
|
-
],
|
|
360460
|
-
[
|
|
360461
|
-
"triple",
|
|
360462
|
-
0
|
|
360463
|
-
]
|
|
360464
|
-
],
|
|
360465
360219
|
[
|
|
360466
360220
|
[
|
|
360467
360221
|
"bacon",
|
|
@@ -395706,7 +395460,7 @@
|
|
|
395706
395460
|
"text": "coke, coca cola, diet coke, sprite, fanta, barqs and iced tea",
|
|
395707
395461
|
"range": {
|
|
395708
395462
|
"start": 0,
|
|
395709
|
-
"end":
|
|
395463
|
+
"end": 60
|
|
395710
395464
|
},
|
|
395711
395465
|
"types": [
|
|
395712
395466
|
"coca_cola",
|
|
@@ -476151,7 +475905,7 @@
|
|
|
476151
475905
|
"text": "fries and drinks",
|
|
476152
475906
|
"range": {
|
|
476153
475907
|
"start": 0,
|
|
476154
|
-
"end":
|
|
475908
|
+
"end": 15
|
|
476155
475909
|
},
|
|
476156
475910
|
"types": [
|
|
476157
475911
|
"drink",
|
|
@@ -485405,7 +485159,7 @@
|
|
|
485405
485159
|
""
|
|
485406
485160
|
],
|
|
485407
485161
|
"paraphrases": [
|
|
485408
|
-
"broccoli and cheddar literally
|
|
485162
|
+
"broccoli and cheddar literally modify potato"
|
|
485409
485163
|
],
|
|
485410
485164
|
"paraphrasesParenthesized": [],
|
|
485411
485165
|
"generatedParenthesized": [],
|
|
@@ -494724,7 +494478,7 @@
|
|
|
494724
494478
|
""
|
|
494725
494479
|
],
|
|
494726
494480
|
"paraphrases": [
|
|
494727
|
-
"bacon and cheddar literally
|
|
494481
|
+
"bacon and cheddar literally modify potato"
|
|
494728
494482
|
],
|
|
494729
494483
|
"paraphrasesParenthesized": [],
|
|
494730
494484
|
"generatedParenthesized": [],
|
|
@@ -504120,7 +503874,7 @@
|
|
|
504120
503874
|
""
|
|
504121
503875
|
],
|
|
504122
503876
|
"paraphrases": [
|
|
504123
|
-
"chili and cheese literally
|
|
503877
|
+
"chili and cheese literally modify potato"
|
|
504124
503878
|
],
|
|
504125
503879
|
"paraphrasesParenthesized": [],
|
|
504126
503880
|
"generatedParenthesized": [],
|
|
@@ -541514,7 +541268,7 @@
|
|
|
541514
541268
|
"word": "water",
|
|
541515
541269
|
"range": {
|
|
541516
541270
|
"start": 0,
|
|
541517
|
-
"end":
|
|
541271
|
+
"end": 12
|
|
541518
541272
|
},
|
|
541519
541273
|
"types": [
|
|
541520
541274
|
"bottled_water",
|
|
@@ -570901,7 +570655,7 @@
|
|
|
570901
570655
|
"text": "hamburgers, cheeseburgers, crispy chicken and nuggets",
|
|
570902
570656
|
"range": {
|
|
570903
570657
|
"start": 0,
|
|
570904
|
-
"end":
|
|
570658
|
+
"end": 52
|
|
570905
570659
|
},
|
|
570906
570660
|
"types": [
|
|
570907
570661
|
"cheeseburger",
|
|
@@ -593232,7 +592986,7 @@
|
|
|
593232
592986
|
"text": "nuggets, junior bacon cheeseburgers, chicken go wraps and junior crispy chicken clubs",
|
|
593233
592987
|
"range": {
|
|
593234
592988
|
"start": 0,
|
|
593235
|
-
"end":
|
|
592989
|
+
"end": 84
|
|
593236
592990
|
},
|
|
593237
592991
|
"types": [
|
|
593238
592992
|
"chicken_go_wrap",
|
|
@@ -593643,60 +593397,6 @@
|
|
|
593643
593397
|
0
|
|
593644
593398
|
]
|
|
593645
593399
|
],
|
|
593646
|
-
[
|
|
593647
|
-
[
|
|
593648
|
-
"bacon",
|
|
593649
|
-
0
|
|
593650
|
-
],
|
|
593651
|
-
[
|
|
593652
|
-
"cheeseburger",
|
|
593653
|
-
0
|
|
593654
|
-
],
|
|
593655
|
-
[
|
|
593656
|
-
"chicken",
|
|
593657
|
-
0
|
|
593658
|
-
],
|
|
593659
|
-
[
|
|
593660
|
-
"club",
|
|
593661
|
-
0
|
|
593662
|
-
],
|
|
593663
|
-
[
|
|
593664
|
-
"comma",
|
|
593665
|
-
0
|
|
593666
|
-
],
|
|
593667
|
-
[
|
|
593668
|
-
"crispy",
|
|
593669
|
-
0
|
|
593670
|
-
],
|
|
593671
|
-
[
|
|
593672
|
-
"go",
|
|
593673
|
-
0
|
|
593674
|
-
],
|
|
593675
|
-
[
|
|
593676
|
-
"is",
|
|
593677
|
-
0
|
|
593678
|
-
],
|
|
593679
|
-
[
|
|
593680
|
-
"junior",
|
|
593681
|
-
0
|
|
593682
|
-
],
|
|
593683
|
-
[
|
|
593684
|
-
"list",
|
|
593685
|
-
0
|
|
593686
|
-
],
|
|
593687
|
-
[
|
|
593688
|
-
"meal",
|
|
593689
|
-
0
|
|
593690
|
-
],
|
|
593691
|
-
[
|
|
593692
|
-
"value",
|
|
593693
|
-
0
|
|
593694
|
-
],
|
|
593695
|
-
[
|
|
593696
|
-
"wrap",
|
|
593697
|
-
0
|
|
593698
|
-
]
|
|
593699
|
-
],
|
|
593700
593400
|
[
|
|
593701
593401
|
[
|
|
593702
593402
|
"bacon_cheeseburger",
|
|
@@ -594099,24 +593799,6 @@
|
|
|
594099
593799
|
0
|
|
594100
593800
|
]
|
|
594101
593801
|
],
|
|
594102
|
-
[
|
|
594103
|
-
[
|
|
594104
|
-
"is",
|
|
594105
|
-
0
|
|
594106
|
-
],
|
|
594107
|
-
[
|
|
594108
|
-
"list",
|
|
594109
|
-
1
|
|
594110
|
-
],
|
|
594111
|
-
[
|
|
594112
|
-
"meal",
|
|
594113
|
-
0
|
|
594114
|
-
],
|
|
594115
|
-
[
|
|
594116
|
-
"value",
|
|
594117
|
-
0
|
|
594118
|
-
]
|
|
594119
|
-
],
|
|
594120
593802
|
[
|
|
594121
593803
|
[
|
|
594122
593804
|
"is",
|
|
@@ -606001,7 +605683,7 @@
|
|
|
606001
605683
|
"text": "combos, chili, fries and drinks",
|
|
606002
605684
|
"range": {
|
|
606003
605685
|
"start": 0,
|
|
606004
|
-
"end":
|
|
605686
|
+
"end": 30
|
|
606005
605687
|
},
|
|
606006
605688
|
"types": [
|
|
606007
605689
|
"chili",
|
|
@@ -606978,7 +606660,7 @@
|
|
|
606978
606660
|
]
|
|
606979
606661
|
},
|
|
606980
606662
|
{
|
|
606981
|
-
"apply": "({ask, api}) => {\n // see if followup for drink is needed\n\n
|
|
606663
|
+
"apply": "({ask, api}) => {\n // see if followup for drink is needed\n\n function hasDrink(isA, item) {\n let hasDrink = false\n for (const modification of (item.modifications || [])) {\n if (isA(modification.id, 'drink')) {\n hasDrink = true\n break\n }\n }\n return hasDrink\n }\n\n function needsDrink (item) {\n return item.needsDrink\n }\n\n function askAbout({api, isA}) {\n const items = []\n for (const item of api.items()) {\n if (needsDrink(item) && !hasDrink(isA, item)) {\n items.push(item)\n }\n }\n return items\n }\n\n ask([\n {\n where: where(),\n oneShot: false,\n onNevermind: ({verbatim, ...args}) => {\n // this is cross km boundaries from the dialogues km to this one so the api if for dialogs. \n // i need to get the one for fastfood here.\n const api = args.kms.fastfood.api\n const needsDrink = askAbout({ args, api })\n for (const item of needsDrink) {\n api.remove(item)\n }\n },\n matchq: (args) => askAbout(args).length > 0 && args.context.marker == 'controlEnd',\n applyq: (args) => {\n args.context.cascade = true\n const needsDrink = askAbout(args)\n // const details = args.gp({ marker: 'list', value: needsDrink.map((item) => item.food)})\n if (needsDrink.length > 1) {\n return `What drinks do you want?`\n } else {\n return `What drink do you want?`\n }\n },\n matchr: (args) => {\n if (args.isA(args.context.marker, 'drink') && askAbout(args).length > 0) {\n const needsDrink = askAbout(args)\n if (args.api.isAvailableModification(needsDrink[0].food, { ...args.context , id: args.context.value })) {\n return true\n }\n }\n return false\n },\n applyr: (args) => {\n // TODO check for is available for all modifications\n const needsDrink = askAbout(args)\n const { api, context } = args\n if (isMany(context)) {\n let count = getCount(context) || Number.MAX_SAFE_INTEGER\n for (const item of needsDrink) {\n if (count < 1) {\n break\n }\n count -= 1\n api.addDrink(item.item_id, { id: context.value }) \n }\n } else {\n const item_id = needsDrink[0].item_id\n api.addDrink(item_id, { id: context.value }) \n }\n }\n },\n ])\n }"
|
|
606982
606664
|
},
|
|
606983
606665
|
{
|
|
606984
606666
|
"extraConfig": true,
|
|
@@ -607519,6 +607201,24 @@
|
|
|
607519
607201
|
0
|
|
607520
607202
|
]
|
|
607521
607203
|
],
|
|
607204
|
+
[
|
|
607205
|
+
[
|
|
607206
|
+
"a",
|
|
607207
|
+
0
|
|
607208
|
+
],
|
|
607209
|
+
[
|
|
607210
|
+
"go_wrap",
|
|
607211
|
+
0
|
|
607212
|
+
],
|
|
607213
|
+
[
|
|
607214
|
+
"is",
|
|
607215
|
+
0
|
|
607216
|
+
],
|
|
607217
|
+
[
|
|
607218
|
+
"sandwich",
|
|
607219
|
+
0
|
|
607220
|
+
]
|
|
607221
|
+
],
|
|
607522
607222
|
[
|
|
607523
607223
|
[
|
|
607524
607224
|
"a",
|
|
@@ -607551,24 +607251,6 @@
|
|
|
607551
607251
|
0
|
|
607552
607252
|
]
|
|
607553
607253
|
],
|
|
607554
|
-
[
|
|
607555
|
-
[
|
|
607556
|
-
"a",
|
|
607557
|
-
0
|
|
607558
|
-
],
|
|
607559
|
-
[
|
|
607560
|
-
"is",
|
|
607561
|
-
0
|
|
607562
|
-
],
|
|
607563
|
-
[
|
|
607564
|
-
"meal",
|
|
607565
|
-
0
|
|
607566
|
-
],
|
|
607567
|
-
[
|
|
607568
|
-
"unknown",
|
|
607569
|
-
0
|
|
607570
|
-
]
|
|
607571
|
-
],
|
|
607572
607254
|
[
|
|
607573
607255
|
[
|
|
607574
607256
|
"a",
|
|
@@ -607671,13 +607353,17 @@
|
|
|
607671
607353
|
],
|
|
607672
607354
|
[
|
|
607673
607355
|
[
|
|
607674
|
-
"
|
|
607356
|
+
"asiago",
|
|
607675
607357
|
0
|
|
607676
607358
|
],
|
|
607677
607359
|
[
|
|
607678
607360
|
"chicken",
|
|
607679
607361
|
0
|
|
607680
607362
|
],
|
|
607363
|
+
[
|
|
607364
|
+
"club",
|
|
607365
|
+
0
|
|
607366
|
+
],
|
|
607681
607367
|
[
|
|
607682
607368
|
"cod",
|
|
607683
607369
|
0
|
|
@@ -607702,6 +607388,10 @@
|
|
|
607702
607388
|
"premium",
|
|
607703
607389
|
0
|
|
607704
607390
|
],
|
|
607391
|
+
[
|
|
607392
|
+
"ranch",
|
|
607393
|
+
0
|
|
607394
|
+
],
|
|
607705
607395
|
[
|
|
607706
607396
|
"sandwich",
|
|
607707
607397
|
0
|
|
@@ -607728,6 +607418,10 @@
|
|
|
607728
607418
|
"cod",
|
|
607729
607419
|
0
|
|
607730
607420
|
],
|
|
607421
|
+
[
|
|
607422
|
+
"comma",
|
|
607423
|
+
0
|
|
607424
|
+
],
|
|
607731
607425
|
[
|
|
607732
607426
|
"grill",
|
|
607733
607427
|
0
|
|
@@ -607762,10 +607456,18 @@
|
|
|
607762
607456
|
"asiago_ranch_chicken_club",
|
|
607763
607457
|
0
|
|
607764
607458
|
],
|
|
607459
|
+
[
|
|
607460
|
+
"chicken",
|
|
607461
|
+
0
|
|
607462
|
+
],
|
|
607765
607463
|
[
|
|
607766
607464
|
"cod",
|
|
607767
607465
|
0
|
|
607768
607466
|
],
|
|
607467
|
+
[
|
|
607468
|
+
"grill",
|
|
607469
|
+
0
|
|
607470
|
+
],
|
|
607769
607471
|
[
|
|
607770
607472
|
"is",
|
|
607771
607473
|
0
|
|
@@ -607783,7 +607485,7 @@
|
|
|
607783
607485
|
0
|
|
607784
607486
|
],
|
|
607785
607487
|
[
|
|
607786
|
-
"
|
|
607488
|
+
"ultimate",
|
|
607787
607489
|
0
|
|
607788
607490
|
],
|
|
607789
607491
|
[
|
|
@@ -607796,6 +607498,10 @@
|
|
|
607796
607498
|
"asiago_ranch_chicken_club",
|
|
607797
607499
|
0
|
|
607798
607500
|
],
|
|
607501
|
+
[
|
|
607502
|
+
"cod",
|
|
607503
|
+
0
|
|
607504
|
+
],
|
|
607799
607505
|
[
|
|
607800
607506
|
"is",
|
|
607801
607507
|
0
|
|
@@ -607805,7 +607511,7 @@
|
|
|
607805
607511
|
0
|
|
607806
607512
|
],
|
|
607807
607513
|
[
|
|
607808
|
-
"
|
|
607514
|
+
"premium",
|
|
607809
607515
|
0
|
|
607810
607516
|
],
|
|
607811
607517
|
[
|
|
@@ -607832,102 +607538,28 @@
|
|
|
607832
607538
|
],
|
|
607833
607539
|
[
|
|
607834
607540
|
"list",
|
|
607835
|
-
1
|
|
607836
|
-
],
|
|
607837
|
-
[
|
|
607838
|
-
"sandwich",
|
|
607839
|
-
0
|
|
607840
|
-
],
|
|
607841
|
-
[
|
|
607842
|
-
"unknown",
|
|
607843
|
-
0
|
|
607844
|
-
]
|
|
607845
|
-
],
|
|
607846
|
-
[
|
|
607847
|
-
[
|
|
607848
|
-
"bacon",
|
|
607849
|
-
0
|
|
607850
|
-
],
|
|
607851
|
-
[
|
|
607852
|
-
"baconator",
|
|
607853
|
-
0
|
|
607854
|
-
],
|
|
607855
|
-
[
|
|
607856
|
-
"cod",
|
|
607857
|
-
0
|
|
607858
|
-
],
|
|
607859
|
-
[
|
|
607860
|
-
"comma",
|
|
607861
|
-
0
|
|
607862
|
-
],
|
|
607863
|
-
[
|
|
607864
|
-
"deluxe",
|
|
607865
|
-
0
|
|
607866
|
-
],
|
|
607867
|
-
[
|
|
607868
|
-
"double",
|
|
607869
|
-
0
|
|
607870
|
-
],
|
|
607871
|
-
[
|
|
607872
|
-
"homestyle",
|
|
607873
|
-
0
|
|
607874
|
-
],
|
|
607875
|
-
[
|
|
607876
|
-
"is",
|
|
607877
|
-
0
|
|
607878
|
-
],
|
|
607879
|
-
[
|
|
607880
|
-
"list",
|
|
607881
|
-
0
|
|
607882
|
-
],
|
|
607883
|
-
[
|
|
607884
|
-
"meal",
|
|
607885
607541
|
0
|
|
607886
607542
|
],
|
|
607887
607543
|
[
|
|
607888
|
-
"
|
|
607544
|
+
"premium_cod",
|
|
607889
607545
|
0
|
|
607890
607546
|
],
|
|
607891
607547
|
[
|
|
607892
|
-
"
|
|
607548
|
+
"sandwich",
|
|
607893
607549
|
0
|
|
607894
607550
|
],
|
|
607895
607551
|
[
|
|
607896
|
-
"
|
|
607552
|
+
"ultimate_chicken_grill",
|
|
607897
607553
|
0
|
|
607898
607554
|
],
|
|
607899
607555
|
[
|
|
607900
|
-
"
|
|
607556
|
+
"unknown",
|
|
607901
607557
|
0
|
|
607902
607558
|
]
|
|
607903
607559
|
],
|
|
607904
607560
|
[
|
|
607905
607561
|
[
|
|
607906
|
-
"
|
|
607907
|
-
0
|
|
607908
|
-
],
|
|
607909
|
-
[
|
|
607910
|
-
"baconator",
|
|
607911
|
-
0
|
|
607912
|
-
],
|
|
607913
|
-
[
|
|
607914
|
-
"cod",
|
|
607915
|
-
0
|
|
607916
|
-
],
|
|
607917
|
-
[
|
|
607918
|
-
"comma",
|
|
607919
|
-
0
|
|
607920
|
-
],
|
|
607921
|
-
[
|
|
607922
|
-
"deluxe",
|
|
607923
|
-
0
|
|
607924
|
-
],
|
|
607925
|
-
[
|
|
607926
|
-
"double",
|
|
607927
|
-
0
|
|
607928
|
-
],
|
|
607929
|
-
[
|
|
607930
|
-
"homestyle",
|
|
607562
|
+
"asiago_ranch_chicken_club",
|
|
607931
607563
|
0
|
|
607932
607564
|
],
|
|
607933
607565
|
[
|
|
@@ -607936,26 +607568,14 @@
|
|
|
607936
607568
|
],
|
|
607937
607569
|
[
|
|
607938
607570
|
"list",
|
|
607939
|
-
|
|
607940
|
-
],
|
|
607941
|
-
[
|
|
607942
|
-
"meal",
|
|
607943
|
-
0
|
|
607944
|
-
],
|
|
607945
|
-
[
|
|
607946
|
-
"premium",
|
|
607947
|
-
0
|
|
607948
|
-
],
|
|
607949
|
-
[
|
|
607950
|
-
"single",
|
|
607951
|
-
0
|
|
607571
|
+
1
|
|
607952
607572
|
],
|
|
607953
607573
|
[
|
|
607954
|
-
"
|
|
607574
|
+
"sandwich",
|
|
607955
607575
|
0
|
|
607956
607576
|
],
|
|
607957
607577
|
[
|
|
607958
|
-
"
|
|
607578
|
+
"unknown",
|
|
607959
607579
|
0
|
|
607960
607580
|
]
|
|
607961
607581
|
],
|
|
@@ -608155,60 +607775,6 @@
|
|
|
608155
607775
|
0
|
|
608156
607776
|
]
|
|
608157
607777
|
],
|
|
608158
|
-
[
|
|
608159
|
-
[
|
|
608160
|
-
"bacon",
|
|
608161
|
-
0
|
|
608162
|
-
],
|
|
608163
|
-
[
|
|
608164
|
-
"cheeseburger",
|
|
608165
|
-
0
|
|
608166
|
-
],
|
|
608167
|
-
[
|
|
608168
|
-
"chicken",
|
|
608169
|
-
0
|
|
608170
|
-
],
|
|
608171
|
-
[
|
|
608172
|
-
"club",
|
|
608173
|
-
0
|
|
608174
|
-
],
|
|
608175
|
-
[
|
|
608176
|
-
"comma",
|
|
608177
|
-
0
|
|
608178
|
-
],
|
|
608179
|
-
[
|
|
608180
|
-
"crispy",
|
|
608181
|
-
0
|
|
608182
|
-
],
|
|
608183
|
-
[
|
|
608184
|
-
"go",
|
|
608185
|
-
0
|
|
608186
|
-
],
|
|
608187
|
-
[
|
|
608188
|
-
"is",
|
|
608189
|
-
0
|
|
608190
|
-
],
|
|
608191
|
-
[
|
|
608192
|
-
"junior",
|
|
608193
|
-
0
|
|
608194
|
-
],
|
|
608195
|
-
[
|
|
608196
|
-
"list",
|
|
608197
|
-
0
|
|
608198
|
-
],
|
|
608199
|
-
[
|
|
608200
|
-
"meal",
|
|
608201
|
-
0
|
|
608202
|
-
],
|
|
608203
|
-
[
|
|
608204
|
-
"value",
|
|
608205
|
-
0
|
|
608206
|
-
],
|
|
608207
|
-
[
|
|
608208
|
-
"wrap",
|
|
608209
|
-
0
|
|
608210
|
-
]
|
|
608211
|
-
],
|
|
608212
607778
|
[
|
|
608213
607779
|
[
|
|
608214
607780
|
"bacon",
|
|
@@ -609645,150 +609211,6 @@
|
|
|
609645
609211
|
0
|
|
609646
609212
|
]
|
|
609647
609213
|
],
|
|
609648
|
-
[
|
|
609649
|
-
[
|
|
609650
|
-
"breakfast",
|
|
609651
|
-
0
|
|
609652
|
-
],
|
|
609653
|
-
[
|
|
609654
|
-
"breakfast_baconator",
|
|
609655
|
-
0
|
|
609656
|
-
],
|
|
609657
|
-
[
|
|
609658
|
-
"chicken",
|
|
609659
|
-
0
|
|
609660
|
-
],
|
|
609661
|
-
[
|
|
609662
|
-
"comma",
|
|
609663
|
-
0
|
|
609664
|
-
],
|
|
609665
|
-
[
|
|
609666
|
-
"double",
|
|
609667
|
-
0
|
|
609668
|
-
],
|
|
609669
|
-
[
|
|
609670
|
-
"egg_muffin",
|
|
609671
|
-
0
|
|
609672
|
-
],
|
|
609673
|
-
[
|
|
609674
|
-
"french",
|
|
609675
|
-
0
|
|
609676
|
-
],
|
|
609677
|
-
[
|
|
609678
|
-
"french_toast_sandwich",
|
|
609679
|
-
0
|
|
609680
|
-
],
|
|
609681
|
-
[
|
|
609682
|
-
"is",
|
|
609683
|
-
0
|
|
609684
|
-
],
|
|
609685
|
-
[
|
|
609686
|
-
"list",
|
|
609687
|
-
0
|
|
609688
|
-
],
|
|
609689
|
-
[
|
|
609690
|
-
"meal",
|
|
609691
|
-
0
|
|
609692
|
-
],
|
|
609693
|
-
[
|
|
609694
|
-
"muffin",
|
|
609695
|
-
0
|
|
609696
|
-
],
|
|
609697
|
-
[
|
|
609698
|
-
"oatmeal",
|
|
609699
|
-
0
|
|
609700
|
-
],
|
|
609701
|
-
[
|
|
609702
|
-
"on",
|
|
609703
|
-
0
|
|
609704
|
-
],
|
|
609705
|
-
[
|
|
609706
|
-
"pancake",
|
|
609707
|
-
0
|
|
609708
|
-
],
|
|
609709
|
-
[
|
|
609710
|
-
"platter",
|
|
609711
|
-
0
|
|
609712
|
-
],
|
|
609713
|
-
[
|
|
609714
|
-
"sausage",
|
|
609715
|
-
0
|
|
609716
|
-
],
|
|
609717
|
-
[
|
|
609718
|
-
"toast",
|
|
609719
|
-
0
|
|
609720
|
-
]
|
|
609721
|
-
],
|
|
609722
|
-
[
|
|
609723
|
-
[
|
|
609724
|
-
"breakfast",
|
|
609725
|
-
0
|
|
609726
|
-
],
|
|
609727
|
-
[
|
|
609728
|
-
"breakfast_baconator",
|
|
609729
|
-
0
|
|
609730
|
-
],
|
|
609731
|
-
[
|
|
609732
|
-
"chicken_on_french_toast",
|
|
609733
|
-
0
|
|
609734
|
-
],
|
|
609735
|
-
[
|
|
609736
|
-
"comma",
|
|
609737
|
-
0
|
|
609738
|
-
],
|
|
609739
|
-
[
|
|
609740
|
-
"double",
|
|
609741
|
-
0
|
|
609742
|
-
],
|
|
609743
|
-
[
|
|
609744
|
-
"egg_muffin",
|
|
609745
|
-
0
|
|
609746
|
-
],
|
|
609747
|
-
[
|
|
609748
|
-
"french",
|
|
609749
|
-
0
|
|
609750
|
-
],
|
|
609751
|
-
[
|
|
609752
|
-
"french_toast_sandwich",
|
|
609753
|
-
0
|
|
609754
|
-
],
|
|
609755
|
-
[
|
|
609756
|
-
"is",
|
|
609757
|
-
0
|
|
609758
|
-
],
|
|
609759
|
-
[
|
|
609760
|
-
"list",
|
|
609761
|
-
0
|
|
609762
|
-
],
|
|
609763
|
-
[
|
|
609764
|
-
"meal",
|
|
609765
|
-
0
|
|
609766
|
-
],
|
|
609767
|
-
[
|
|
609768
|
-
"muffin",
|
|
609769
|
-
0
|
|
609770
|
-
],
|
|
609771
|
-
[
|
|
609772
|
-
"oatmeal",
|
|
609773
|
-
0
|
|
609774
|
-
],
|
|
609775
|
-
[
|
|
609776
|
-
"pancake",
|
|
609777
|
-
0
|
|
609778
|
-
],
|
|
609779
|
-
[
|
|
609780
|
-
"pancake_platter",
|
|
609781
|
-
0
|
|
609782
|
-
],
|
|
609783
|
-
[
|
|
609784
|
-
"sausage",
|
|
609785
|
-
0
|
|
609786
|
-
],
|
|
609787
|
-
[
|
|
609788
|
-
"toast",
|
|
609789
|
-
0
|
|
609790
|
-
]
|
|
609791
|
-
],
|
|
609792
609214
|
[
|
|
609793
609215
|
[
|
|
609794
609216
|
"breakfast",
|
|
@@ -612191,24 +611613,6 @@
|
|
|
612191
611613
|
0
|
|
612192
611614
|
]
|
|
612193
611615
|
],
|
|
612194
|
-
[
|
|
612195
|
-
[
|
|
612196
|
-
"countable",
|
|
612197
|
-
0
|
|
612198
|
-
],
|
|
612199
|
-
[
|
|
612200
|
-
"is",
|
|
612201
|
-
0
|
|
612202
|
-
],
|
|
612203
|
-
[
|
|
612204
|
-
"list",
|
|
612205
|
-
1
|
|
612206
|
-
],
|
|
612207
|
-
[
|
|
612208
|
-
"strawberry",
|
|
612209
|
-
0
|
|
612210
|
-
]
|
|
612211
|
-
],
|
|
612212
611616
|
[
|
|
612213
611617
|
[
|
|
612214
611618
|
"crispy_chicken",
|
|
@@ -612877,28 +612281,6 @@
|
|
|
612877
612281
|
0
|
|
612878
612282
|
]
|
|
612879
612283
|
],
|
|
612880
|
-
[
|
|
612881
|
-
[
|
|
612882
|
-
"ingredient",
|
|
612883
|
-
0
|
|
612884
|
-
],
|
|
612885
|
-
[
|
|
612886
|
-
"is",
|
|
612887
|
-
0
|
|
612888
|
-
],
|
|
612889
|
-
[
|
|
612890
|
-
"list",
|
|
612891
|
-
1
|
|
612892
|
-
],
|
|
612893
|
-
[
|
|
612894
|
-
"smoothie",
|
|
612895
|
-
0
|
|
612896
|
-
],
|
|
612897
|
-
[
|
|
612898
|
-
"strawberry",
|
|
612899
|
-
0
|
|
612900
|
-
]
|
|
612901
|
-
],
|
|
612902
612284
|
[
|
|
612903
612285
|
[
|
|
612904
612286
|
"is",
|
|
@@ -613023,24 +612405,6 @@
|
|
|
613023
612405
|
0
|
|
613024
612406
|
]
|
|
613025
612407
|
],
|
|
613026
|
-
[
|
|
613027
|
-
[
|
|
613028
|
-
"is",
|
|
613029
|
-
0
|
|
613030
|
-
],
|
|
613031
|
-
[
|
|
613032
|
-
"list",
|
|
613033
|
-
1
|
|
613034
|
-
],
|
|
613035
|
-
[
|
|
613036
|
-
"meal",
|
|
613037
|
-
0
|
|
613038
|
-
],
|
|
613039
|
-
[
|
|
613040
|
-
"value",
|
|
613041
|
-
0
|
|
613042
|
-
]
|
|
613043
|
-
],
|
|
613044
612408
|
[
|
|
613045
612409
|
[
|
|
613046
612410
|
"is",
|