-
Notifications
You must be signed in to change notification settings - Fork 0
/
InterpreterTestCases.ts
659 lines (604 loc) · 20.4 KB
/
InterpreterTestCases.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
/********************************************************************************
** InterpreterTestCases
This file contains several test cases, some of which have not been authored yet.
You should add your own interpretation where it says so.
You are also free to add new test cases.
********************************************************************************/
export interface TestCase {
world : string;
utterance : string;
interpretations : string[][]
}
export var testCases : TestCase[] = [];
//////////////////////////////////////////////////////////////////////
// Examples that test the physical laws
// "Balls must be in boxes or on the floor, otherwise they roll away"
// #0
testCases.push({
world: "small",
utterance: "put a ball on a table",
interpretations: []
});
// "Objects are “inside” boxes, but “ontop” of other objects"
// #1
testCases.push({
world: "small",
utterance: "put a ball on a box",
interpretations: []
});
// #2
testCases.push({
world: "small",
utterance: "put a box in a brick",
interpretations: []
});
// "Boxes cannot contain pyramids, planks or boxes of the same size"
// #3
testCases.push({
world: "medium",
utterance: "put a plank in a box",
interpretations: [["inside(SmlGrnPlnk,LrgRedBox)", "inside(SmlGrnPlnk,LrgYlwBox)"]]
});
// #4
testCases.push({
world: "medium",
utterance: "put a large plank in a box",
interpretations: []
});
// #5
testCases.push({
world: "medium",
utterance: "put a pyramid in a box",
interpretations: [["inside(SmlRedPrmd,LrgRedBox)", "inside(SmlRedPrmd,LrgYlwBox)"]]
});
// #6
testCases.push({
world: "medium",
utterance: "put a pyramid in a small box",
interpretations: []
});
// #7
testCases.push({
world: "medium",
utterance: "put a box in a box",
interpretations: [["inside(SmlBluBox,LrgRedBox)", "inside(SmlBluBox,LrgYlwBox)"]]
});
// #8
testCases.push({
world: "medium",
utterance: "put a large box in a box",
interpretations: []
});
// #9
testCases.push({
world: "medium",
utterance: "put a plank in a small box",
interpretations: []
});
// #10
testCases.push({
world: "small",
utterance: "put a big ball in a small box",
interpretations: []
});
// "Small boxes cannot be supported by small bricks or pyramids."
// #11
testCases.push({
world: "medium",
utterance: "put a large box on a large brick",
interpretations: [["ontop(LrgRedBox,LrgGrnBrck1)", "ontop(LrgRedBox,LrgGrnBrck2)", "ontop(LrgRedBox,LrgGrnBrck3)", "ontop(LrgYlwBox,LrgGrnBrck1)", "ontop(LrgYlwBox,LrgGrnBrck2)", "ontop(LrgYlwBox,LrgGrnBrck3)"]]
});
// #12
testCases.push({
world: "medium",
utterance: "put a small box on a small brick",
interpretations: []
});
// #13
testCases.push({
world: "medium",
utterance: "put a small box on a small pyramid",
interpretations: []
});
// "Large boxes cannot be supported by large pyramids."
// #14
testCases.push({
world: "medium",
utterance: "put a large box on a large pyramid",
interpretations: []
});
// Common errors with the floor
// #15
testCases.push({
world: "small",
utterance: "take the floor",
interpretations: []
});
// #16
testCases.push({
world: "small",
utterance: "put a brick on a floor",
interpretations: []
});
// #17
testCases.push({
world: "small",
utterance: "put a brick on the red floor",
interpretations: []
});
// #18
testCases.push({
world: "small",
utterance: "take a ball on a box",
interpretations: []
});
// #19
testCases.push({
world: "small",
utterance: "take a ball in the floor",
interpretations: []
});
// #20
testCases.push({
world: "small",
utterance: "take a box in a table",
interpretations: []
});
//////////////////////////////////////////////////////////////////////
// Simple examples with a clear interpretation
// #21
testCases.push({
world: "small",
utterance: "take an object",
interpretations: [["holding(LargeBlueTable)", "holding(LargeWhiteBall)", "holding(LargeRedBox)", "holding(LargeYellowBox)", "holding(SmallBlackBall)", "holding(SmallBlueBox)"]]
});
// #22
testCases.push({
world: "small",
utterance: "take a blue object",
interpretations: [["holding(LargeBlueTable)", "holding(SmallBlueBox)"]]
});
// #23
testCases.push({
world: "small",
utterance: "take a box",
interpretations: [["holding(LargeRedBox)", "holding(LargeYellowBox)", "holding(SmallBlueBox)"]]
});
// #24
testCases.push({
world: "small",
utterance: "put a ball in a box",
interpretations: [["inside(LargeWhiteBall,LargeRedBox)", "inside(LargeWhiteBall,LargeYellowBox)", "inside(SmallBlackBall,LargeRedBox)", "inside(SmallBlackBall,LargeYellowBox)", "inside(SmallBlackBall,SmallBlueBox)"]]
});
// #25
testCases.push({
world: "small",
utterance: "put a ball above a table",
interpretations: [["above(LargeWhiteBall,LargeBlueTable)", "above(SmallBlackBall,LargeBlueTable)"]]
});
// #26
testCases.push({
world: "small",
utterance: "put a ball left of a ball",
interpretations: [["leftof(LargeWhiteBall,SmallBlackBall)", "leftof(SmallBlackBall,LargeWhiteBall)"]]
});
// #27
testCases.push({
world: "small",
utterance: "take a white object beside a blue object",
interpretations: [["holding(LargeWhiteBall)"]]
});
// #28
testCases.push({
world: "small",
utterance: "put a white object beside a blue object",
interpretations: [["beside(LargeWhiteBall,LargeBlueTable)", "beside(LargeWhiteBall,SmallBlueBox)"]]
});
// #29
testCases.push({
world: "small",
utterance: "put a white ball in a box on the floor",
interpretations: [["inside(LargeWhiteBall,LargeYellowBox)"]]
});
// #30
testCases.push({
world: "small",
utterance: "put a black ball in a box on the floor",
interpretations: [["inside(SmallBlackBall,LargeYellowBox)"], ["ontop(SmallBlackBall,floor)"]]
});
//////////////////////////////////////////////////////////////////////
// Examples where YOU shuold define the interpretation
// #31
testCases.push({
world: "small",
utterance: "put a ball in a box on the floor",
interpretations: [
[
// put a ball INTO a box THAT IS ON the floor
"inside(LargeWhiteBall,LargeYellowBox)",
"inside(SmallBlackBall,LargeYellowBox)"
/* ],[
// put a ball INTO a box ONTO the floor
"inside(LargeWhiteBall,LargeRedBox) & ontop(LargeRedBox,floor)",
"inside(LargeWhiteBall,LargeYellowBox) & ontop(LargeYellowBox,floor)",
"inside(SmallBlackBall,LargeRedBox) & ontop(LargeRedBox,floor)",
"inside(SmallBlackBall,LargeYellowBox) & ontop(LargeYellowBox,floor)",
"inside(SmallBlackBall,SmallBlueBox) & ontop(SmallBlueBox,floor)" */
],[
// put a ball THAT IS IN a box ONTO the floor
"ontop(SmallBlackBall,floor)"
]]
});
// "put it"
// #32
testCases.push({
world: "small",
utterance: "put it on the floor",
interpretations: [] // No held object to put on the floor
});
// Deep recursion
// #33
testCases.push({
world: "small",
utterance: "take a ball in a box in a box",
interpretations: [["holding(SmallBlackBall)"]]
});
// #34
testCases.push({
world: "small",
utterance: "take a ball in a box in a box on the floor",
interpretations: [["holding(SmallBlackBall)"]]
});
// #35
testCases.push({
world: "small",
utterance: "put a box on a table on the floor",
interpretations: [
[
// put a box ONTO a table THAT IS ON the floor
"ontop(LargeRedBox,LargeBlueTable)", // Remove this interpretation since already there??
"ontop(LargeYellowBox,LargeBlueTable)",
"ontop(SmallBlueBox,LargeBlueTable)"
/* ],[
// put a box ONTO a table ONTO the floor
"ontop(LargeRedBox,LargeBlueTable) & ontop(LargeBlueTable,floor)", // Remove this interpretation since already there??
"ontop(LargeYellowBox,LargeBlueTable) & ontop(LargeBlueTable,floor)",
"ontop(SmallBlueBox,LargeBlueTable) & ontop(LargeBlueTable,floor)" */
],[
// put a box THAT IS ON a table ONTO the floor
"ontop(LargeRedBox,floor)"
]]
});
// #36
testCases.push({
world: "small",
utterance: "put a box in a box on a table",
interpretations: [
[
// put a box INTO a box THAT IS ON a table
"inside(SmallBlueBox,LargeRedBox)"
/* ],[
// put a box INTO a box ONTO a table
"inside(SmallBlueBox,LargeRedBox) & ontop(LargeRedBox,LargeBlueTable)",
"inside(SmallBlueBox,LargeYellowBox) & ontop(LargeYellowBox,LargeBlueTable)" */
],[
// put a box THAT IS IN a box ONTO a table
"ontop(SmallBlueBox,LargeBlueTable)"
]]
});
// #37
testCases.push({
world: "small",
utterance: "put a box in a box on a table on the floor",
interpretations: [
[
// put a box INTO a box THAT IS ON a table THAT IS ON the floor
"inside(SmallBlueBox,LargeRedBox)"
/* ],[
// put a box INTO a box ONTO a table THAT IS ON the floor
"inside(SmallBlueBox,LargeRedBox) & ontop(LargeRedBox,LargeBlueTable)",
"inside(SmallBlueBox,LargeYellowBox) & ontop(LargeYellowBox,LargeBlueTable)"
],[
// put a box INTO a box ONTO a table ONTO the floor
"inside(SmallBlueBox,LargeRedBox) & ontop(LargeBlueTable,floor) & ontop(LargeRedBox,LargeBlueTable)",
"inside(SmallBlueBox,LargeYellowBox) & ontop(LargeBlueTable,floor) & ontop(LargeYellowBox,LargeBlueTable)"
],[
// put a box THAT IS IN a box ONTO a table ONTO the floor
"ontop(LargeBlueTable,floor) & ontop(SmallBlueBox,LargeBlueTable)" */
],[
// put a box THAT IS IN a box ONTO a table THAT IS ON the floor
"ontop(SmallBlueBox,LargeBlueTable)"
]
// put a box THAT IS IN a box THAT IS ON a table ONTO the floor
// no boxes in boxes on tables in small
]
});
// #38
testCases.push({
world: "medium",
utterance: "put a brick on a brick on a brick on the floor",
interpretations: [
[
/* // put a brick ONTO a brick THAT IS ON a brick THAT IS ON the floor
// no bricks on bricks on the floor in medium
// put a brick ONTO a brick ONTO a brick THAT IS ON the floor
"ontop(LrgGrnBrck1,LrgGrnBrck2)",
"ontop(LrgGrnBrck3,LrgGrnBrck2)",
"ontop(SmlWhtBrck,LrgGrnBrck2)"
],[
// put a brick ONTO a brick ONTO a brick ONTO the floor
"ontop(LrgGrnBrck1,floor) & ontop(LrgGrnBrck2,LrgGrnBrck1)",
"ontop(LrgGrnBrck1,floor) & ontop(LrgGrnBrck3,LrgGrnBrck1)",
"ontop(LrgGrnBrck1,floor) & ontop(SmlWhtBrck,LrgGrnBrck1)",
"ontop(LrgGrnBrck1,LrgGrnBrck2) & ontop(LrgGrnBrck2,floor)",
"ontop(LrgGrnBrck1,LrgGrnBrck3) & ontop(LrgGrnBrck3,floor)",
"ontop(LrgGrnBrck2,floor) & ontop(LrgGrnBrck3,LrgGrnBrck2)",
"ontop(LrgGrnBrck2,floor) & ontop(SmlWhtBrck,LrgGrnBrck2)",
"ontop(LrgGrnBrck2,LrgGrnBrck3) & ontop(LrgGrnBrck3,floor)",
"ontop(LrgGrnBrck3,floor) & ontop(SmlWhtBrck,LrgGrnBrck3)"
*/
// put a brick THAT IS ON a brick ONTO a brick THAT IS ON the floor
"ontop(SmlWhtBrck,LrgGrnBrck2)"
// put a brick THAT IS ON a brick ONTO a brick ONTO the floor
/* ],[
"ontop(LrgGrnBrck1,floor) & ontop(SmlWhtBrck,LrgGrnBrck1)",
"ontop(LrgGrnBrck2,floor) & ontop(SmlWhtBrck,LrgGrnBrck2)",
"ontop(LrgGrnBrck3,floor) & ontop(SmlWhtBrck,LrgGrnBrck3)"
// put a brick THAT IS ON a brick THAT IS ON a brick ONTO the floor
// no bricks on bricks on bricks in medium */
]]
});
//////////////////////////////////////////////////////////////////////
// Test cases for the ALL quantifier
// These are not necessary to solve if you only aim for grade 3/G
testCases.push({
world: "small",
utterance: "put all balls on the floor",
interpretations: [["ontop(LargeWhiteBall,floor) & ontop(SmallBlackBall,floor)"]]
});
// #40
testCases.push({
world: "small",
utterance: "put every ball to the right of all blue things",
interpretations: [
[
"rightof(LargeWhiteBall,LargeBlueTable) & rightof(LargeWhiteBall,SmallBlueBox) & rightof(SmallBlackBall,LargeBlueTable) & rightof(SmallBlackBall,SmallBlueBox)"
]]
});
// #41
testCases.push({
world: "small",
utterance: "put all balls left of a box on the floor",
interpretations: [
[
// put all balls LEFT OF a box THAT IS ON the floor
"leftof(LargeWhiteBall,LargeYellowBox) & leftof(SmallBlackBall,LargeYellowBox)"
],[
// put all balls THAT ARE LEFT OF a box ONTO the floor
"ontop(LargeWhiteBall,floor)" // remove?
]]
});
// #42
testCases.push({
world: "small",
utterance: "put a ball in every large box",
interpretations: [
[
"inside(LargeWhiteBall,LargeRedBox) & inside(SmallBlackBall,LargeYellowBox)",
"inside(LargeWhiteBall,LargeYellowBox) & inside(SmallBlackBall,LargeRedBox)"
]]
});
// #43
testCases.push({
world: "small",
utterance: "put every ball in a box",
interpretations: [
[
"inside(LargeWhiteBall,LargeRedBox) & inside(SmallBlackBall,LargeYellowBox)",
"inside(LargeWhiteBall,LargeRedBox) & inside(SmallBlackBall,SmallBlueBox)",
"inside(LargeWhiteBall,LargeYellowBox) & inside(SmallBlackBall,LargeRedBox)",
"inside(LargeWhiteBall,LargeYellowBox) & inside(SmallBlackBall,SmallBlueBox)"
]]
});
// #44
testCases.push({
world: "medium",
utterance: "put all large green bricks beside a large green brick",
interpretations: [
[
"beside(LrgGrnBrck1,LrgGrnBrck2) & beside(LrgGrnBrck1,LrgGrnBrck3)",
"beside(LrgGrnBrck1,LrgGrnBrck2) & beside(LrgGrnBrck2,LrgGrnBrck3)",
"beside(LrgGrnBrck1,LrgGrnBrck3) & beside(LrgGrnBrck2,LrgGrnBrck3)"
]]
});
// #45
testCases.push({
world: "medium",
utterance: "put all green objects left of all red objects",
interpretations: [
[
"leftof(LrgGrnBrck1,LrgRedBox) & leftof(LrgGrnBrck1,LrgRedPlnk) & leftof(LrgGrnBrck1,SmlRedPrmd) & leftof(LrgGrnBrck1,SmlRedTble) & leftof(LrgGrnBrck2,LrgRedBox) & leftof(LrgGrnBrck2,LrgRedPlnk) & leftof(LrgGrnBrck2,SmlRedPrmd) & leftof(LrgGrnBrck2,SmlRedTble) & leftof(LrgGrnBrck3,LrgRedBox) & leftof(LrgGrnBrck3,LrgRedPlnk) & leftof(LrgGrnBrck3,SmlRedPrmd) & leftof(LrgGrnBrck3,SmlRedTble) & leftof(SmlGrnPlnk,LrgRedBox) & leftof(SmlGrnPlnk,LrgRedPlnk) & leftof(SmlGrnPlnk,SmlRedPrmd) & leftof(SmlGrnPlnk,SmlRedTble)"
]]
});
/////////////////////////////////////////////////////////////////////////////
// Test cases defined by bukka
/////////////////////////////////////////////////////////////////////////////
// #46
testCases.push({
world: "small",
utterance: "put the white ball in a box",
interpretations: [
[
"inside(LargeWhiteBall,LargeRedBox)",
"inside(LargeWhiteBall,LargeYellowBox)"
]
]
});
// #47
testCases.push({
world: "small",
utterance: "put the white ball left of every box",
interpretations: [
[
"leftof(LargeWhiteBall,LargeRedBox) & " +
"leftof(LargeWhiteBall,LargeYellowBox) & " +
"leftof(LargeWhiteBall,SmallBlueBox)"
]
]
});
// #48
testCases.push({
world: "small",
utterance: "put the white ball in the yellow box",
interpretations: [
[
"inside(LargeWhiteBall,LargeYellowBox)"
]]
});
// #49
testCases.push({
world: "small",
utterance: "put the white ball on the floor",
interpretations: [
[
"ontop(LargeWhiteBall,floor)"
]]
});
// #50
testCases.push({
world: "small",
utterance: "put a ball beside every blue object",
interpretations: [
[
"beside(LargeWhiteBall,LargeBlueTable) & " +
"beside(LargeWhiteBall,SmallBlueBox)",
"beside(SmallBlackBall,LargeBlueTable) & " +
"beside(SmallBlackBall,SmallBlueBox)"
]]
});
// #51
testCases.push({
world: "small",
utterance: "put every small object inside every big box",
interpretations: [
[
"inside(SmallBlackBall,LargeRedBox) & inside(SmallBlueBox,LargeYellowBox)",
"inside(SmallBlackBall,LargeYellowBox) & inside(SmallBlueBox,LargeRedBox)"
]
]
});
// #52
testCases.push({
world: "small",
utterance: "put every small object beside the big yellow box",
interpretations: [
[
"beside(SmallBlackBall,LargeYellowBox) & beside(SmallBlueBox,LargeYellowBox)"
]
]
});
// #53
testCases.push({
world: "small",
utterance: "put every small ball inside the big yellow box",
interpretations: [
[
"inside(SmallBlackBall,LargeYellowBox)"
]
]
});
// #54
testCases.push({
world: "medium-3d",
utterance: "put all green objects beside a blue object",
interpretations: [
[
"beside(LrgBluBall,LrgGrnBrck1) & beside(LrgBluBall,LrgGrnBrck2) & beside(LrgBluBall,LrgGrnBrck3) & beside(LrgBluBall,SmlGrnPlnk)",
"beside(LrgBluTble,LrgGrnBrck1) & beside(LrgBluTble,LrgGrnBrck2) & beside(LrgBluTble,LrgGrnBrck3) & beside(LrgBluTble,SmlGrnPlnk)",
"beside(LrgGrnBrck1,SmlBluBox) & beside(LrgGrnBrck2,SmlBluBox) & beside(LrgGrnBrck3,SmlBluBox) & beside(SmlBluBox,SmlGrnPlnk)"
]
]
});
// #55
testCases.push({
world: "medium-3d",
utterance: "put it on the floor",
interpretations: [
[
"ontop(LrgGrnBrck1,floor)"
]
]
});
// #56
testCases.push({
world: "medium-3d",
utterance: "put all yellow objects left of all black objects",
interpretations: [
[
"leftof(LrgYlwBox,SmlBlkBall) & leftof(LrgYlwBox,SmlBlkBox) & " +
"leftof(LrgYlwPrmd,SmlBlkBall) & leftof(LrgYlwPrmd,SmlBlkBox)"
]
]
});
// #57
testCases.push({
world: "medium-3d",
utterance: "put all black objects above all green objects",
interpretations: [
[
"above(SmlBlkBall,LrgGrnBrck1) & above(SmlBlkBall,LrgGrnBrck2) & " +
"above(SmlBlkBall,LrgGrnBrck3) & above(SmlBlkBall,SmlGrnPlnk) & " +
"above(SmlBlkBox,LrgGrnBrck1) & above(SmlBlkBox,LrgGrnBrck2) & " +
"above(SmlBlkBox,LrgGrnBrck3) & above(SmlBlkBox,SmlGrnPlnk)"
]
]
});
// #58
testCases.push({
world: "medium-3d",
utterance: "put the white ball inside all yellow boxes",
interpretations: [
[
"inside(LrgWhtBall,LrgYlwBox)"
]
]
});
// "put all red objects beside all red objects", duplicates are created... check that?
// #59
testCases.push({
world: "medium-3d",
utterance: "move all bricks above a table",
interpretations: [
[
"above(LrgGrnBrck1,LrgBluTble) & " +
"above(LrgGrnBrck2,LrgBluTble) & " +
"above(LrgGrnBrck3,LrgBluTble) & "+
"above(SmlWhtBrck,LrgBluTble)"
]
]
});
// #60
testCases.push({
world: "medium-3d",
utterance: "move all bricks above the blue table",
interpretations: [
[
"above(LrgGrnBrck1,LrgBluTble) & " +
"above(LrgGrnBrck2,LrgBluTble) & " +
"above(LrgGrnBrck3,LrgBluTble) & "+
"above(SmlWhtBrck,LrgBluTble)"
]
]
});
// #61
testCases.push({
world: "small",
utterance: "put a ball above all boxes",
interpretations: [
[
"above(SmallBlackBall,LargeRedBox) & "+
"above(SmallBlackBall,LargeYellowBox) & "+
"above(SmallBlackBall,SmallBlueBox)"
]
]
});