-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqa2_two-supporting-facts_test.txt
More file actions
5398 lines (5398 loc) · 176 KB
/
qa2_two-supporting-facts_test.txt
File metadata and controls
5398 lines (5398 loc) · 176 KB
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
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1 Mary got the milk there.
2 John moved to the bedroom.
3 Sandra went back to the kitchen.
4 Mary travelled to the hallway.
5 Where is the milk? hallway 1 4
6 John got the football there.
7 John went to the hallway.
8 Where is the football? hallway 6 7
9 John put down the football.
10 Mary went to the garden.
11 Where is the football? hallway 9 7
12 John went to the kitchen.
13 Sandra travelled to the hallway.
14 Where is the football? hallway 9 7
15 Daniel went to the hallway.
16 Mary discarded the milk.
17 Where is the milk? garden 16 10
1 Mary journeyed to the bathroom.
2 Sandra went to the garden.
3 Daniel went back to the garden.
4 Daniel went to the office.
5 Sandra grabbed the milk there.
6 Sandra put down the milk there.
7 Where is the milk? garden 6 2
8 Daniel went to the hallway.
9 Sandra got the milk there.
10 Daniel went to the garden.
11 Daniel journeyed to the kitchen.
12 Daniel journeyed to the bedroom.
13 Mary journeyed to the garden.
14 Daniel took the football there.
15 Mary moved to the office.
16 Sandra travelled to the bedroom.
17 Daniel dropped the football.
18 Where is the football? bedroom 17 12
19 Sandra left the milk there.
20 Daniel grabbed the football there.
21 Where is the milk? bedroom 19 16
22 Sandra grabbed the milk there.
23 Daniel went to the kitchen.
24 Where is the football? kitchen 20 23
25 John travelled to the kitchen.
26 Mary moved to the hallway.
27 Where is the football? kitchen 20 23
1 Mary picked up the apple there.
2 Mary dropped the apple.
3 Daniel went back to the garden.
4 Mary journeyed to the office.
5 John got the football there.
6 Mary went back to the kitchen.
7 Daniel picked up the milk there.
8 John travelled to the bedroom.
9 Where is the football? bedroom 5 8
10 John moved to the hallway.
11 John discarded the football.
12 Where is the football? hallway 11 10
13 Daniel dropped the milk.
14 John got the football there.
15 Where is the milk? garden 13 3
16 Mary journeyed to the garden.
17 Daniel travelled to the bathroom.
18 Where is the milk? garden 13 3
19 Sandra journeyed to the bathroom.
20 Mary went to the bathroom.
21 Mary took the apple there.
22 Mary dropped the apple.
23 Where is the apple? bathroom 22 20
1 Daniel journeyed to the office.
2 John took the football there.
3 John discarded the football.
4 John travelled to the garden.
5 Daniel travelled to the garden.
6 Sandra went to the garden.
7 Daniel travelled to the kitchen.
8 Daniel moved to the office.
9 Mary grabbed the milk there.
10 Daniel journeyed to the bedroom.
11 John travelled to the office.
12 Daniel travelled to the bathroom.
13 John travelled to the kitchen.
14 Mary travelled to the garden.
15 Mary dropped the milk.
16 John went back to the garden.
17 Where is the milk? garden 15 14
18 Sandra got the milk there.
19 Sandra put down the milk.
20 Where is the milk? garden 19 6
21 Mary went back to the bathroom.
22 Mary travelled to the bedroom.
23 Where is the milk? garden 19 6
24 John got the milk there.
25 Daniel went back to the office.
26 Daniel moved to the kitchen.
27 Daniel grabbed the apple there.
28 John left the milk.
29 Daniel discarded the apple.
30 Where is the apple? kitchen 29 26
31 John picked up the milk there.
32 Daniel went to the hallway.
33 Where is the apple? kitchen 29 26
1 Mary moved to the kitchen.
2 Mary travelled to the office.
3 Daniel grabbed the football there.
4 Mary moved to the hallway.
5 Sandra moved to the bedroom.
6 Mary went back to the bedroom.
7 John grabbed the milk there.
8 John put down the milk.
9 Daniel journeyed to the bathroom.
10 Sandra journeyed to the bathroom.
11 John got the milk there.
12 Mary took the apple there.
13 Mary left the apple.
14 John journeyed to the bedroom.
15 Where is the apple? bedroom 13 6
16 Mary travelled to the office.
17 Daniel put down the football.
18 Where is the apple? bedroom 13 6
19 John went back to the kitchen.
20 Sandra got the football there.
21 John travelled to the hallway.
22 Sandra discarded the football there.
23 Where is the football? bathroom 22 10
24 John left the milk.
25 John grabbed the milk there.
26 Where is the football? bathroom 22 10
27 Mary went to the hallway.
28 John moved to the bedroom.
29 Where is the milk? bedroom 25 28
1 Daniel moved to the kitchen.
2 John grabbed the football there.
3 John left the football there.
4 Mary journeyed to the hallway.
5 John grabbed the milk there.
6 John travelled to the kitchen.
7 Where is the milk? kitchen 5 6
8 Mary journeyed to the kitchen.
9 Sandra went to the office.
10 Where is the milk? kitchen 5 6
11 Daniel went to the bathroom.
12 Daniel picked up the apple there.
13 Sandra travelled to the garden.
14 Daniel dropped the apple there.
15 Where is the apple? bathroom 14 11
16 Sandra went back to the office.
17 Daniel journeyed to the kitchen.
18 Where is the apple? bathroom 14 11
19 John put down the milk.
20 Daniel moved to the bedroom.
21 Where is the milk? kitchen 19 6
1 Daniel journeyed to the office.
2 Daniel went back to the bedroom.
3 Mary went back to the kitchen.
4 Mary got the football there.
5 Daniel travelled to the hallway.
6 John journeyed to the bedroom.
7 Daniel got the apple there.
8 Sandra travelled to the garden.
9 Daniel travelled to the garden.
10 Daniel dropped the apple.
11 Where is the apple? garden 10 9
12 Mary left the football.
13 Mary journeyed to the bedroom.
14 Where is the apple? garden 10 9
15 John moved to the hallway.
16 John went back to the bedroom.
17 Where is the football? kitchen 12 3
18 Sandra got the apple there.
19 John went to the kitchen.
20 Mary went to the bathroom.
21 Mary journeyed to the garden.
22 Sandra went back to the kitchen.
23 Sandra put down the apple there.
24 Where is the apple? kitchen 23 22
25 Mary went back to the bedroom.
26 Mary went back to the kitchen.
27 Where is the apple? kitchen 23 22
1 John went back to the office.
2 Mary went back to the hallway.
3 Daniel journeyed to the bedroom.
4 Mary went back to the bathroom.
5 Sandra went back to the hallway.
6 Sandra got the milk there.
7 Mary moved to the office.
8 Mary went to the hallway.
9 Daniel went to the bathroom.
10 Sandra went to the office.
11 Where is the milk? office 6 10
12 John journeyed to the garden.
13 Sandra journeyed to the hallway.
14 Daniel moved to the office.
15 Mary went back to the office.
16 John moved to the kitchen.
17 Sandra journeyed to the bedroom.
18 Sandra went back to the office.
19 Daniel moved to the kitchen.
20 John took the football there.
21 John left the football.
22 Where is the football? kitchen 21 16
23 Sandra went back to the bedroom.
24 Sandra went back to the hallway.
25 Where is the football? kitchen 21 16
26 John grabbed the football there.
27 Daniel went to the bathroom.
28 John left the football.
29 Sandra went back to the bedroom.
30 Where is the football? kitchen 28 16
31 Mary went to the kitchen.
32 John grabbed the football there.
33 Sandra put down the milk there.
34 John moved to the garden.
35 Where is the milk? bedroom 33 29
1 Daniel moved to the hallway.
2 Mary went back to the kitchen.
3 John got the milk there.
4 John put down the milk.
5 John got the milk there.
6 Mary went back to the garden.
7 John went back to the bedroom.
8 Mary picked up the football there.
9 Where is the milk? bedroom 5 7
10 John went to the office.
11 John left the milk.
12 Where is the milk? office 11 10
13 Mary went to the bedroom.
14 John went to the bedroom.
15 Where is the milk? office 11 10
16 John went to the bathroom.
17 Mary moved to the bathroom.
18 Where is the milk? office 11 10
19 Mary went to the kitchen.
20 Mary travelled to the office.
21 Sandra moved to the kitchen.
22 Daniel picked up the apple there.
23 Sandra travelled to the garden.
24 Mary travelled to the bedroom.
25 Daniel went to the kitchen.
26 Mary put down the football.
27 Where is the apple? kitchen 22 25
1 John travelled to the bathroom.
2 John travelled to the hallway.
3 Mary picked up the milk there.
4 Mary went back to the bedroom.
5 Where is the milk? bedroom 3 4
6 Sandra took the football there.
7 Sandra moved to the office.
8 Where is the football? office 6 7
9 Sandra went back to the bathroom.
10 John journeyed to the bedroom.
11 Where is the football? bathroom 6 9
12 John went back to the bathroom.
13 Sandra put down the football.
14 Where is the football? bathroom 13 9
15 Mary discarded the milk.
16 Sandra moved to the kitchen.
17 Where is the milk? bedroom 15 4
1 Daniel took the milk there.
2 John journeyed to the garden.
3 Daniel went back to the hallway.
4 Daniel journeyed to the bathroom.
5 Where is the milk? bathroom 1 4
6 Daniel dropped the milk.
7 Daniel took the milk there.
8 John grabbed the apple there.
9 Sandra journeyed to the kitchen.
10 John went to the hallway.
11 Sandra went back to the garden.
12 Where is the apple? hallway 8 10
13 Daniel journeyed to the kitchen.
14 Sandra journeyed to the bedroom.
15 Daniel went back to the hallway.
16 Sandra went back to the kitchen.
17 Sandra went back to the bathroom.
18 John went to the kitchen.
19 Sandra got the football there.
20 Sandra went to the kitchen.
21 Where is the football? kitchen 19 20
22 Daniel left the milk.
23 Sandra put down the football.
24 Where is the football? kitchen 23 20
25 Sandra picked up the football there.
26 Sandra put down the football.
27 Where is the football? kitchen 26 20
1 John went to the bathroom.
2 Daniel travelled to the kitchen.
3 John journeyed to the kitchen.
4 Daniel journeyed to the hallway.
5 Sandra travelled to the kitchen.
6 Mary moved to the office.
7 Daniel went back to the office.
8 Sandra went back to the bathroom.
9 John grabbed the milk there.
10 John grabbed the apple there.
11 Sandra journeyed to the office.
12 Mary went to the hallway.
13 John went to the bathroom.
14 John discarded the apple.
15 Where is the apple? bathroom 14 13
16 John put down the milk.
17 John picked up the apple there.
18 Where is the milk? bathroom 16 13
19 Daniel went back to the bathroom.
20 John took the milk there.
21 Daniel travelled to the garden.
22 Sandra journeyed to the bathroom.
23 John travelled to the kitchen.
24 Mary went back to the office.
25 Where is the milk? kitchen 20 23
26 Mary moved to the hallway.
27 John left the milk.
28 Where is the milk? kitchen 27 23
29 John went back to the bedroom.
30 John left the apple there.
31 Where is the apple? bedroom 30 29
1 Daniel moved to the office.
2 Daniel travelled to the bedroom.
3 John took the milk there.
4 John travelled to the garden.
5 Where is the milk? garden 3 4
6 Sandra moved to the office.
7 Daniel went back to the office.
8 Where is the milk? garden 3 4
9 John went to the kitchen.
10 Mary travelled to the garden.
11 John picked up the football there.
12 John dropped the football.
13 Where is the football? kitchen 12 9
14 John put down the milk.
15 Daniel moved to the kitchen.
16 Where is the football? kitchen 12 9
17 Mary travelled to the bathroom.
18 Daniel went to the office.
19 Where is the football? kitchen 12 9
1 Daniel journeyed to the hallway.
2 Daniel journeyed to the garden.
3 Mary went back to the kitchen.
4 Daniel went back to the office.
5 Mary journeyed to the bathroom.
6 John moved to the hallway.
7 Daniel grabbed the football there.
8 Daniel went to the kitchen.
9 Where is the football? kitchen 7 8
10 Daniel discarded the football.
11 John went to the bathroom.
12 Where is the football? kitchen 10 8
13 Daniel took the football there.
14 John travelled to the kitchen.
15 Mary travelled to the office.
16 John travelled to the hallway.
17 John went back to the office.
18 Daniel journeyed to the bedroom.
19 Daniel got the milk there.
20 Daniel discarded the milk.
21 Where is the milk? bedroom 20 18
22 Sandra went to the bathroom.
23 Mary went back to the bedroom.
24 Where is the milk? bedroom 20 18
25 Daniel took the apple there.
26 Daniel dropped the football.
27 Where is the football? bedroom 26 18
1 Sandra moved to the garden.
2 Daniel took the apple there.
3 Daniel dropped the apple.
4 Sandra travelled to the office.
5 John moved to the kitchen.
6 Sandra moved to the garden.
7 Daniel went back to the bathroom.
8 Mary travelled to the hallway.
9 Sandra went to the bathroom.
10 John went back to the bedroom.
11 Mary moved to the garden.
12 John picked up the apple there.
13 John went back to the kitchen.
14 John went back to the garden.
15 Where is the apple? garden 12 14
16 Mary went to the office.
17 Daniel went to the bedroom.
18 Where is the apple? garden 12 14
19 John went to the bathroom.
20 John dropped the apple.
21 Where is the apple? bathroom 20 19
22 Mary journeyed to the bedroom.
23 Sandra grabbed the apple there.
24 Daniel moved to the kitchen.
25 Sandra left the apple.
26 Where is the apple? bathroom 25 9
27 John grabbed the apple there.
28 Sandra journeyed to the kitchen.
29 Sandra journeyed to the bathroom.
30 Daniel travelled to the office.
31 John put down the apple.
32 Mary journeyed to the kitchen.
33 Where is the apple? bathroom 31 19
1 Sandra journeyed to the garden.
2 Sandra travelled to the bathroom.
3 Daniel went back to the garden.
4 Sandra got the apple there.
5 Mary travelled to the bedroom.
6 John went to the hallway.
7 Sandra travelled to the office.
8 Mary grabbed the milk there.
9 Where is the apple? office 4 7
10 John went to the kitchen.
11 Mary moved to the hallway.
12 Where is the milk? hallway 8 11
13 Sandra discarded the apple.
14 Mary left the milk.
15 Where is the milk? hallway 14 11
16 Mary took the milk there.
17 Mary left the milk.
18 Where is the milk? hallway 17 11
19 John got the football there.
20 John moved to the hallway.
21 Where is the milk? hallway 17 11
1 Daniel moved to the bedroom.
2 Daniel went to the bathroom.
3 John moved to the garden.
4 Mary travelled to the bedroom.
5 Sandra travelled to the garden.
6 Daniel journeyed to the garden.
7 Sandra travelled to the hallway.
8 John got the football there.
9 John moved to the bathroom.
10 Sandra travelled to the bathroom.
11 Where is the football? bathroom 8 9
12 Daniel moved to the bedroom.
13 Daniel travelled to the kitchen.
14 Where is the football? bathroom 8 9
15 Mary moved to the hallway.
16 Sandra travelled to the office.
17 Daniel moved to the hallway.
18 Daniel went back to the kitchen.
19 John went back to the hallway.
20 Daniel went back to the hallway.
21 Daniel went to the bedroom.
22 John moved to the kitchen.
23 Mary moved to the office.
24 John went back to the garden.
25 Sandra took the apple there.
26 Daniel went to the office.
27 Mary went back to the kitchen.
28 Mary went to the bedroom.
29 John journeyed to the bathroom.
30 Sandra went back to the hallway.
31 Sandra moved to the bedroom.
32 Daniel moved to the garden.
33 John went back to the bedroom.
34 Mary went back to the office.
35 John moved to the kitchen.
36 John grabbed the milk there.
37 Daniel journeyed to the bedroom.
38 John discarded the football.
39 Where is the football? kitchen 38 35
40 John left the milk.
41 John took the milk there.
42 Where is the football? kitchen 38 35
43 John picked up the football there.
44 John put down the football.
45 Where is the football? kitchen 44 35
1 John went to the hallway.
2 John went back to the bathroom.
3 John grabbed the milk there.
4 Sandra went back to the office.
5 Sandra journeyed to the kitchen.
6 Sandra got the apple there.
7 Sandra dropped the apple there.
8 John dropped the milk.
9 Where is the milk? bathroom 8 2
10 Mary went back to the garden.
11 Sandra journeyed to the hallway.
12 Where is the apple? kitchen 7 5
13 Sandra got the football there.
14 Mary moved to the kitchen.
15 Where is the milk? bathroom 8 2
16 Sandra journeyed to the bedroom.
17 Mary grabbed the apple there.
18 Where is the football? bedroom 13 16
19 Sandra went back to the office.
20 Mary discarded the apple.
21 Where is the apple? kitchen 20 14
1 Daniel moved to the bathroom.
2 Sandra went back to the kitchen.
3 John moved to the bathroom.
4 Mary picked up the milk there.
5 John travelled to the garden.
6 Mary dropped the milk there.
7 Sandra journeyed to the bedroom.
8 John journeyed to the bathroom.
9 Daniel went back to the office.
10 John moved to the hallway.
11 Mary got the milk there.
12 Daniel took the apple there.
13 John picked up the football there.
14 Mary went to the kitchen.
15 Where is the milk? kitchen 11 14
16 Mary dropped the milk.
17 Daniel travelled to the bedroom.
18 Where is the milk? kitchen 16 14
19 John journeyed to the office.
20 Daniel went to the garden.
21 Where is the milk? kitchen 16 14
22 Mary picked up the milk there.
23 Mary left the milk.
24 Where is the milk? kitchen 23 14
25 John travelled to the garden.
26 Mary travelled to the office.
27 Where is the milk? kitchen 23 14
1 Mary went to the garden.
2 John picked up the milk there.
3 Mary journeyed to the bedroom.
4 Sandra went back to the hallway.
5 John discarded the milk.
6 John journeyed to the bedroom.
7 John got the football there.
8 John moved to the bathroom.
9 Where is the football? bathroom 7 8
10 Sandra went to the office.
11 Daniel went back to the hallway.
12 Where is the football? bathroom 7 8
13 John put down the football.
14 Mary journeyed to the kitchen.
15 Where is the football? bathroom 13 8
16 Mary picked up the milk there.
17 Mary moved to the hallway.
18 Where is the football? bathroom 13 8
19 John went to the garden.
20 Mary discarded the milk.
21 Where is the milk? hallway 20 17
1 Mary moved to the bathroom.
2 Sandra went to the kitchen.
3 John travelled to the bedroom.
4 Mary journeyed to the kitchen.
5 Mary moved to the office.
6 Sandra travelled to the bathroom.
7 John travelled to the bathroom.
8 John journeyed to the office.
9 John took the milk there.
10 Daniel travelled to the garden.
11 Mary went to the kitchen.
12 Daniel journeyed to the bathroom.
13 John discarded the milk.
14 Sandra went back to the kitchen.
15 Where is the milk? office 13 8
16 Daniel journeyed to the office.
17 Sandra went back to the office.
18 Where is the milk? office 13 8
19 Daniel picked up the milk there.
20 Sandra went back to the bedroom.
21 John went to the garden.
22 Daniel travelled to the kitchen.
23 Where is the milk? kitchen 19 22
24 John journeyed to the bedroom.
25 Sandra journeyed to the garden.
26 Sandra moved to the kitchen.
27 Daniel discarded the milk.
28 Where is the milk? kitchen 27 22
29 John picked up the football there.
30 Daniel took the milk there.
31 John left the football.
32 Mary went to the bedroom.
33 Where is the football? bedroom 31 24
1 Sandra took the football there.
2 Mary travelled to the kitchen.
3 John went to the office.
4 Daniel travelled to the bedroom.
5 Daniel journeyed to the bathroom.
6 Mary went back to the bedroom.
7 Sandra travelled to the kitchen.
8 Mary went to the bathroom.
9 Sandra went back to the bathroom.
10 Sandra discarded the football.
11 Where is the football? bathroom 10 9
12 Mary journeyed to the bedroom.
13 Sandra picked up the football there.
14 Mary grabbed the milk there.
15 Mary discarded the milk.
16 Where is the milk? bedroom 15 12
17 Daniel moved to the bedroom.
18 Mary picked up the milk there.
19 Mary got the apple there.
20 Sandra went back to the kitchen.
21 Mary discarded the apple there.
22 Daniel took the apple there.
23 Mary put down the milk there.
24 Daniel travelled to the bathroom.
25 Where is the apple? bathroom 22 24
26 Mary journeyed to the hallway.
27 Daniel went to the kitchen.
28 Where is the milk? bedroom 23 12
29 Daniel went back to the bathroom.
30 Daniel dropped the apple.
31 Where is the apple? bathroom 30 29
1 Mary went back to the kitchen.
2 Mary travelled to the hallway.
3 John journeyed to the bedroom.
4 John moved to the garden.
5 Daniel went to the hallway.
6 John moved to the hallway.
7 Daniel journeyed to the bathroom.
8 Mary travelled to the garden.
9 Daniel went to the hallway.
10 John travelled to the office.
11 John travelled to the bedroom.
12 Mary journeyed to the bedroom.
13 John picked up the football there.
14 John dropped the football.
15 Where is the football? bedroom 14 11
16 Sandra travelled to the office.
17 Mary travelled to the hallway.
18 Where is the football? bedroom 14 11
19 Sandra grabbed the apple there.
20 John grabbed the football there.
21 Mary went back to the bathroom.
22 John discarded the football.
23 Where is the football? bedroom 22 11
24 John picked up the football there.
25 Daniel went to the office.
26 Sandra discarded the apple.
27 Sandra grabbed the apple there.
28 John put down the football.
29 Daniel moved to the garden.
30 Where is the football? bedroom 28 11
31 Sandra left the apple.
32 John journeyed to the garden.
33 Where is the apple? office 31 16
1 John grabbed the football there.
2 John journeyed to the office.
3 Where is the football? office 1 2
4 John went back to the garden.
5 John went to the hallway.
6 Where is the football? hallway 1 5
7 John dropped the football.
8 John grabbed the football there.
9 Sandra travelled to the bathroom.
10 Sandra picked up the milk there.
11 Sandra went to the office.
12 John moved to the bathroom.
13 Where is the milk? office 10 11
14 John grabbed the apple there.
15 Sandra travelled to the bedroom.
16 Where is the milk? bedroom 10 15
17 John discarded the apple.
18 Mary went back to the hallway.
19 Where is the apple? bathroom 17 12
1 Sandra grabbed the football there.
2 Sandra put down the football.
3 John grabbed the apple there.
4 Sandra went to the hallway.
5 John journeyed to the hallway.
6 Mary grabbed the milk there.
7 Where is the apple? hallway 3 5
8 John journeyed to the garden.
9 Sandra moved to the bathroom.
10 Mary journeyed to the bedroom.
11 John picked up the football there.
12 Where is the milk? bedroom 6 10
13 John dropped the football.
14 John discarded the apple.
15 Where is the apple? garden 14 8
16 John got the apple there.
17 John picked up the football there.
18 Daniel moved to the garden.
19 Sandra journeyed to the kitchen.
20 John discarded the football.
21 Daniel travelled to the bedroom.
22 Where is the football? garden 20 8
23 John grabbed the football there.
24 Daniel went back to the hallway.
25 Mary journeyed to the hallway.
26 Mary went back to the kitchen.
27 John dropped the football.
28 Daniel went to the kitchen.
29 Where is the football? garden 27 8
1 Daniel got the apple there.
2 Daniel dropped the apple.
3 Mary moved to the bedroom.
4 Daniel journeyed to the hallway.
5 Mary travelled to the hallway.
6 Sandra moved to the bedroom.
7 Mary went back to the bathroom.
8 Daniel moved to the kitchen.
9 Mary went to the kitchen.
10 Daniel moved to the office.
11 Mary picked up the football there.
12 Mary put down the football.
13 Where is the football? kitchen 12 9
14 John travelled to the office.
15 Daniel went to the bathroom.
16 Where is the football? kitchen 12 9
17 Mary got the football there.
18 Mary discarded the football.
19 Where is the football? kitchen 18 9
20 Daniel went back to the kitchen.
21 Daniel picked up the football there.
22 John travelled to the bedroom.
23 Daniel moved to the bedroom.
24 Where is the football? bedroom 21 23
25 Mary journeyed to the bathroom.
26 Mary went back to the kitchen.
27 Where is the football? bedroom 21 23
1 Daniel travelled to the hallway.
2 Mary moved to the kitchen.
3 John grabbed the football there.
4 John discarded the football.
5 Sandra journeyed to the kitchen.
6 Sandra picked up the milk there.
7 Daniel moved to the office.
8 John took the football there.
9 John went to the kitchen.
10 Mary moved to the office.
11 Where is the football? kitchen 8 9
12 Sandra put down the milk.
13 John left the football.
14 Where is the football? kitchen 13 9
15 John moved to the hallway.
16 Sandra picked up the football there.
17 Where is the milk? kitchen 12 5
18 Daniel went to the garden.
19 Daniel went to the bathroom.
20 Mary moved to the bedroom.
21 Mary took the apple there.
22 Sandra went back to the hallway.
23 Sandra discarded the football.
24 Where is the football? hallway 23 22
25 Sandra grabbed the football there.
26 Daniel moved to the garden.
27 Daniel travelled to the bedroom.
28 Daniel moved to the garden.
29 Sandra discarded the football.
30 John travelled to the office.
31 Where is the football? hallway 29 22
1 Sandra went back to the hallway.
2 Mary travelled to the hallway.
3 Mary picked up the football there.
4 John travelled to the bathroom.
5 Daniel moved to the bedroom.
6 Sandra moved to the bedroom.
7 Sandra travelled to the hallway.
8 Sandra travelled to the office.
9 Mary moved to the office.
10 Mary put down the football.
11 Where is the football? office 10 9
12 Sandra grabbed the milk there.
13 Sandra left the milk.
14 Where is the milk? office 13 8
15 Mary took the football there.
16 Sandra took the milk there.
17 Mary dropped the football.
18 Mary travelled to the bedroom.
19 Where is the football? office 17 9
20 John went to the hallway.
21 Sandra took the football there.
22 Mary went back to the hallway.
23 Sandra travelled to the kitchen.
24 Where is the football? kitchen 21 23
25 John journeyed to the garden.
26 Sandra journeyed to the bathroom.
27 Where is the football? bathroom 21 26
1 Daniel journeyed to the hallway.
2 Daniel picked up the football there.
3 Daniel journeyed to the bedroom.
4 Daniel dropped the football.
5 Where is the football? bedroom 4 3
6 Sandra travelled to the bedroom.
7 Daniel journeyed to the kitchen.
8 Where is the football? bedroom 4 3
9 Sandra grabbed the football there.
10 John travelled to the office.
11 Sandra discarded the football.
12 Mary went back to the hallway.
13 Where is the football? bedroom 11 6
14 Daniel went to the hallway.
15 Daniel travelled to the bedroom.
16 Where is the football? bedroom 11 6
17 Mary travelled to the office.
18 John journeyed to the kitchen.
19 Sandra went back to the office.
20 Daniel took the football there.
21 Daniel went to the garden.
22 Mary travelled to the bedroom.
23 Where is the football? garden 20 21
1 John got the football there.
2 John left the football.
3 Daniel went back to the bathroom.
4 Mary went back to the bathroom.
5 Sandra travelled to the office.
6 Daniel got the apple there.
7 John got the football there.
8 John left the football.
9 Daniel journeyed to the kitchen.
10 John moved to the bathroom.
11 Where is the apple? kitchen 6 9
12 John went to the office.
13 Mary took the milk there.
14 John journeyed to the garden.
15 Sandra went to the garden.
16 Daniel grabbed the football there.
17 Mary discarded the milk.
18 Where is the milk? bathroom 17 4
19 Sandra moved to the office.
20 Mary got the milk there.
21 Mary moved to the garden.
22 Mary left the milk.
23 Where is the milk? garden 22 21
24 Daniel dropped the apple.
25 Sandra went back to the bathroom.
26 Where is the apple? kitchen 24 9
27 John went back to the hallway.
28 Mary got the milk there.
29 Where is the apple? kitchen 24 9
1 Daniel travelled to the garden.
2 Sandra went back to the bedroom.
3 John travelled to the bedroom.
4 Sandra grabbed the apple there.
5 Daniel travelled to the kitchen.
6 Sandra left the apple.
7 Where is the apple? bedroom 6 2
8 Sandra travelled to the office.
9 Sandra went back to the bathroom.
10 Where is the apple? bedroom 6 2
11 John travelled to the bathroom.
12 Daniel went back to the hallway.
13 Where is the apple? bedroom 6 2
14 Sandra travelled to the bedroom.
15 Sandra journeyed to the hallway.
16 Sandra went back to the kitchen.
17 Mary travelled to the office.
18 Sandra journeyed to the hallway.
19 Mary went back to the hallway.
20 Mary travelled to the garden.
21 Mary took the football there.
22 Mary went to the kitchen.
23 Mary grabbed the milk there.
24 Where is the football? kitchen 21 22
25 John went to the garden.
26 John travelled to the kitchen.
27 Where is the football? kitchen 21 22
1 Mary travelled to the bathroom.
2 John took the milk there.
3 Sandra moved to the hallway.
4 Sandra grabbed the football there.
5 Daniel went back to the bedroom.
6 Daniel travelled to the kitchen.
7 Sandra put down the football.
8 John moved to the bedroom.
9 Where is the football? hallway 7 3
10 Mary journeyed to the hallway.
11 John dropped the milk.
12 Where is the football? hallway 7 3
13 Mary travelled to the bathroom.
14 Mary moved to the kitchen.
15 Where is the milk? bedroom 11 8
16 Daniel travelled to the bedroom.
17 Daniel travelled to the bathroom.
18 Where is the milk? bedroom 11 8
19 Sandra grabbed the football there.
20 Sandra left the football.
21 Where is the football? hallway 20 3
1 John moved to the bedroom.
2 Sandra journeyed to the office.
3 Sandra moved to the kitchen.
4 Daniel travelled to the bedroom.
5 John went back to the office.
6 Mary travelled to the garden.
7 Sandra moved to the hallway.
8 Sandra went to the garden.
9 John went back to the kitchen.
10 Daniel went to the office.
11 Sandra moved to the hallway.
12 Daniel picked up the apple there.
13 Mary went to the bedroom.
14 Daniel went back to the garden.
15 Where is the apple? garden 12 14
16 Daniel left the apple.
17 Daniel grabbed the apple there.
18 Sandra took the football there.
19 Daniel discarded the apple.
20 Where is the apple? garden 19 14
21 Mary journeyed to the kitchen.
22 Sandra journeyed to the kitchen.
23 Where is the apple? garden 19 14
24 Daniel travelled to the bedroom.
25 Sandra went to the bedroom.
26 Where is the apple? garden 19 14
27 Daniel went back to the hallway.
28 John went to the hallway.
29 John went to the office.
30 John moved to the kitchen.
31 Sandra dropped the football.
32 Daniel went to the garden.
33 Where is the football? bedroom 31 25
1 John went back to the garden.
2 Daniel went to the bathroom.
3 Daniel went to the hallway.
4 Daniel grabbed the football there.
5 Daniel travelled to the bathroom.
6 Daniel went to the garden.
7 Where is the football? garden 4 6
8 John went back to the kitchen.
9 Daniel discarded the football.
10 Where is the football? garden 9 6
11 Sandra picked up the football there.
12 Mary went back to the office.
13 John picked up the apple there.
14 John journeyed to the hallway.
15 Where is the apple? hallway 13 14
16 Mary travelled to the bedroom.
17 Daniel went back to the bathroom.
18 Where is the apple? hallway 13 14
19 Sandra went back to the office.
20 Sandra discarded the football.
21 Where is the football? office 20 19
1 John went back to the bedroom.
2 John journeyed to the kitchen.
3 John took the milk there.
4 Sandra took the football there.
5 Daniel travelled to the hallway.
6 Daniel picked up the apple there.
7 Mary travelled to the bedroom.
8 Daniel journeyed to the bedroom.
9 Where is the apple? bedroom 6 8
10 John went back to the hallway.
11 Daniel went back to the bathroom.
12 Where is the apple? bathroom 6 11
13 John dropped the milk there.
14 Sandra went back to the garden.
15 Where is the milk? hallway 13 10
16 John went back to the kitchen.
17 Mary moved to the office.
18 Where is the milk? hallway 13 10
19 Sandra went to the hallway.
20 Sandra grabbed the milk there.
21 Daniel dropped the apple.
22 John went back to the hallway.
23 Where is the apple? bathroom 21 11
1 Mary went back to the bathroom.
2 Daniel went back to the bathroom.
3 Mary got the milk there.
4 Mary journeyed to the kitchen.
5 Where is the milk? kitchen 3 4
6 Mary got the apple there.
7 Mary moved to the hallway.
8 Where is the apple? hallway 6 7
9 Mary went back to the bedroom.
10 Mary moved to the kitchen.
11 Where is the apple? kitchen 6 10
12 John journeyed to the bathroom.
13 John went back to the hallway.
14 John moved to the bedroom.
15 Mary journeyed to the garden.
16 Daniel travelled to the office.
17 Daniel picked up the football there.
18 Mary journeyed to the office.
19 John journeyed to the bathroom.
20 Daniel discarded the football.
21 Mary discarded the milk.
22 Where is the milk? office 21 18
23 Mary grabbed the football there.
24 Sandra went back to the bathroom.
25 Where is the milk? office 21 18
1 Sandra took the milk there.
2 Sandra journeyed to the garden.
3 Where is the milk? garden 1 2
4 Sandra dropped the milk there.
5 Sandra journeyed to the bathroom.
6 Where is the milk? garden 4 2
7 John travelled to the garden.
8 John went to the kitchen.
9 Where is the milk? garden 4 2
10 John got the apple there.
11 Daniel moved to the bathroom.
12 John dropped the apple.
13 Daniel moved to the hallway.
14 Where is the apple? kitchen 12 8
15 John picked up the apple there.
16 Mary went back to the office.
17 Mary journeyed to the kitchen.
18 John discarded the apple.
19 Where is the apple? kitchen 18 8
1 Sandra journeyed to the bathroom.
2 Mary took the apple there.
3 Sandra went back to the kitchen.
4 Mary went back to the office.
5 Where is the apple? office 2 4
6 Sandra took the milk there.
7 Mary discarded the apple.
8 Where is the apple? office 7 4
9 Mary got the apple there.
10 Daniel moved to the bedroom.
11 John went to the bedroom.
12 Sandra dropped the milk there.
13 Where is the milk? kitchen 12 3
14 Mary put down the apple.
15 Daniel went back to the hallway.
16 Where is the apple? office 14 4
17 Daniel went back to the garden.
18 John moved to the office.
19 Where is the milk? kitchen 12 3
1 Mary travelled to the bedroom.
2 Daniel grabbed the apple there.